mattermost-plugin-rssfeed icon indicating copy to clipboard operation
mattermost-plugin-rssfeed copied to clipboard

Please release a new version

Open moschlar opened this issue 3 years ago • 3 comments

Dear @wbernest, please merge some of the outstanding PRs (#46, #51, #52, #53) - they are all rather small, but address and maybe close some raised issues (#54, #47, #45). Also, since #40 is already merged, #32, #33, #49 could then be closed, too. Thanks!

moschlar avatar Dec 01 '21 08:12 moschlar

Hi! Given that most of the PR:s were merged, can we expect a new release as well?

johanhammar avatar Mar 30 '22 11:03 johanhammar

Building a release from latest master branch doesn't work with Mattermost server >=6.2.5.

/feed command crashed the rssfeed plugin. Please contact your system administrator

{"timestamp":"2022-05-04 18:29:03.617 Z","level":"debug","msg":"plugin process exited","caller":"plugin/hclog_adapter.go:52","plugin_id":"rssfeed","wrapped_extras":"pathplugins/rssfeed/server/dist/plugin-linux-amd64pid19093"}
{"timestamp":"2022-05-04 18:29:03.617 Z","level":"debug","msg":"plugin exited","caller":"plugin/hclog_adapter.go:54","plugin_id":"rssfeed"}

variablenix avatar May 04 '22 18:05 variablenix

@variablenix I had the same problem, but for some reason building it in a Docker container worked

FROM golang:1.17
WORKDIR /app
RUN git clone https://github.com/wbernest/mattermost-plugin-rssfeed
RUN cd mattermost-plugin-rssfeed && make dist

Then:

docker build . -t mm-rss:latest
CID=$(docker create mm-rss:latest); docker cp $CID:/app/mattermost-plugin-rssfeed/dist dist/ ; docker rm $CID

That dumped the .tar.gz out to dist/ for me. I noticed that it was ~47mb, vs the ~35mb version built with my host golang 1.18.1 install.

cheald avatar Aug 31 '22 19:08 cheald