Skip to content

Commit 6b07b84

Browse files
authored
Prep 9.0.6 (#5956)
* version bump * Rails 6.1 requires older concurrent-ruby gem See https://stackoverflow.com/questions/79360526
1 parent e3cbe4f commit 6b07b84

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

gemfiles/rails-6.1.gemfile

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# rubocop:todo all
22
source 'https://rubygems.org'
33

4+
# See https://stackoverflow.com/questions/79360526
5+
gem 'concurrent-ruby', '< 1.3.5'
6+
47
gem 'actionpack', '~> 6.1'
58
gem 'activemodel', '~> 6.1'
69

lib/mongoid/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
# rubocop:todo all
33

44
module Mongoid
5-
VERSION = "9.0.5"
5+
VERSION = "9.0.6"
66
end

spec/integration/app_spec.rb

+4
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ def insert_rails_gem_version(cmd)
2626
skip 'Set APP_TESTS=1 in environment to run application tests'
2727
end
2828

29+
if SpecConfig.instance.rails_version < '7.1'
30+
skip 'App tests require Rails > 7.0 (see https://stackoverflow.com/questions/79360526)'
31+
end
32+
2933
require 'fileutils'
3034
require 'mrss/child_process_helper'
3135
require 'open-uri'

0 commit comments

Comments
 (0)