-
Hi, I need a fix that is already in |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
It'll be a few weeks, at least -- we don't have any immediate plans for the next release, but I'll add a ticket for it. We'll discuss a timeline for it at our next standup. Note that you can lock mongoid to a github repository via your Gemfile, too. It's not generally recommended to run directly on the master branch (it can be unstable, though we do our best to keep it stable), but it might let you use the fix you need while you wait for the gem to be released: gem 'mongoid', git: 'https://github.com/mongodb/mongoid.git' Additionally, for safety, you can specify the specific commit that you want to lock to, if you know a particular commit works reliably for you: gem 'mongoid', git: 'https://github.com/mongodb/mongoid.git', ref: 'd58d8e1' |
Beta Was this translation helpful? Give feedback.
-
Noting that 9.0.1 was released yesterday (assuming that's why this was closed) |
Beta Was this translation helpful? Give feedback.
It'll be a few weeks, at least -- we don't have any immediate plans for the next release, but I'll add a ticket for it. We'll discuss a timeline for it at our next standup.
Note that you can lock mongoid to a github repository via your Gemfile, too. It's not generally recommended to run directly on the master branch (it can be unstable, though we do our best to keep it stable), but it might let you use the fix you need while you wait for the gem to be released:
Additionally, for safety, you can specify the specific commit that you want to lock to, if you know a particular commit works reliably for you: