Question about warnings during upgrades

I run a canonical Discourse installation on a Ubuntu 20.04 cloud server. It’s up to date (2.9.0.beta8) and I’m not having any issues at the moment. Nevertheless, I wonder about (presumably harmless) warnings I sometimes see in the log that flashes by when I perform a routine upgrade. Just now there was this:

$ bundle install --deployment --jobs 4 --without test development
[DEPRECATED] The `--deployment` flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use `bundle config set --local deployment 'true'`, and stop using this flag
[DEPRECATED] The `--without` flag is deprecated because it relies on being remembered across bundler invocations, which bundler will no longer do in future versions. Instead please use `bundle config set --local without 'test development'`, and stop using this flag

I mainly wish to know how often the development team pays attention to these kinds of things and updates stuff under the hood, so to speak, to address such warnings. At this point, I’m not terribly worried about any of this. I’d just like to hope these things do eventually get scheduled for improvement.

Thanks, guys. I love the product. I’m having some trouble growing my tiny community right now, but I’m expecting to make some changes in that regard soon as well.

2 Likes

not the team response, but maybe you’ll find this useful:

You can judge by the number of non-feature commits on GitHub:

I wouldn’t worry about those messages. They usually arise because some dependency upon which discourse is built has changed something, which happens insanely often in software development. You usually don’t have enough time to fix all the “noncrucial” things, and you wait until they actually interfere with the way things should work.

You could also notice that the team runs tests on each commit, so once something becomes unusable, they should detect it.

1 Like

Thanks very much, @hiddenseal!

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.