Skip to content

Commit 567c2fe

Browse files
authored
Prep 8.1.10 (#5957)
* version bump * Rails 6.1 requires older concurrent-ruby gem See https://stackoverflow.com/questions/79360526
1 parent 42f7e67 commit 567c2fe

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,5 +1,8 @@
11
source 'https://rubygems.org'
22

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

lib/mongoid/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module Mongoid
4-
VERSION = "8.1.9"
4+
VERSION = "8.1.10"
55
end

spec/integration/app_spec.rb

+4
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ def check_call(cmd, **opts)
1616
skip 'Set APP_TESTS=1 in environment to run application tests'
1717
end
1818

19+
if SpecConfig.instance.rails_version < '7.1'
20+
skip 'App tests require Rails > 7.0 (see https://stackoverflow.com/questions/79360526)'
21+
end
22+
1923
require 'fileutils'
2024
require 'mrss/child_process_helper'
2125
require 'open-uri'

0 commit comments

Comments
 (0)