Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change Sidekiq requirement to ~> 6.5, and release version 7.1.3 #84

Merged
merged 2 commits into from
Oct 24, 2023

Conversation

robinjam
Copy link
Contributor

@robinjam robinjam commented Oct 24, 2023

The current version range allows Sidekiq 7.0.0.beta1 for some reason (RubyGems' versioning presumably thinks 7.0.0.beta1 < 7.0.0). This is a problem because we don't support Sidekiq 7 yet! It's also really confusing Dependabot.

The current version range allows Sidekiq 7.0.0.beta1 for some reason (RubyGems' versioning presumably thinks 7.0.0.beta1 < 7.0.0).
@robinjam robinjam force-pushed the fix-sidekiq-requirement branch from cb18ce1 to a87599f Compare October 24, 2023 08:42
@robinjam robinjam changed the title Change Sidekiq requirement to ~> 6.5 Change Sidekiq requirement to ~> 6.5, and release version 7.1.3 Oct 24, 2023
@robinjam robinjam merged commit ae3bf5b into main Oct 24, 2023
10 checks passed
@robinjam robinjam deleted the fix-sidekiq-requirement branch October 24, 2023 09:03
brucebolt added a commit that referenced this pull request Nov 28, 2023
Currently, bundler will install version `7.0.0.beta1` of sidekiq as it
considers this to be less than `7`. We do not want this to happen.

In #84, we changed the
requirement from `">= 6.5.12", "< 7"` to `"~> 6.5"`. This has a side
effect of some of our applications ending up on an earlier version of
sidekiq than `6.5.12` (there was a security fix in `6.5.10`).

Therefore in #85 we
changed the requirement to be `"> 6.5.10", "< 7"`, however this once
again resulted in bundler installing `7.0.0.beta`.

Updating the requirements again to be even more explicit, so we always
install a version newer than `6.5.12` but never a version that isn't
`6.5.x`.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants