Skip to content

Commit ea56f0f

Browse files
committed
Explicitly support Blacklight 9 releases (not just pre-releases)
1 parent a96b100 commit ea56f0f

File tree

3 files changed

+6
-11
lines changed

3 files changed

+6
-11
lines changed

.github/workflows/ruby.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,30 +54,29 @@ jobs:
5454
additional_name: "/ esbuild"
5555
additional_engine_cart_rails_options: "--css=bootstrap --javascript=esbuild"
5656

57-
# BLACKLIGHT 9, with beta cause that's all that's out as we write this
58-
# and with Rails 8 and 8.1
57+
# BLACKLIGHT 9 and with Rails 8 and 8.1
5958
#
6059

6160
- rails_version: "~> 8.1.0.rc1"
62-
blacklight_version: '~> 9.0.0.beta'
61+
blacklight_version: '~> 9.0'
6362
ruby: "3.4"
6463
additional_name: "/ importmap-rails"
6564
additional_engine_cart_rails_options: "--css=bootstrap"
6665

6766
- rails_version: "~> 8.1.0.rc1"
68-
blacklight_version: '~> 9.0.0.beta'
67+
blacklight_version: '~> 9.0'
6968
ruby: "3.4"
7069
additional_name: "/ esbuild"
7170
additional_engine_cart_rails_options: "--css=bootstrap --javascript=esbuild"
7271

7372
- rails_version: "~> 8.0.0"
74-
blacklight_version: '~> 9.0.0.beta'
73+
blacklight_version: '~> 9.0'
7574
ruby: "3.4"
7675
additional_name: "/ importmap-rails"
7776
additional_engine_cart_rails_options: "--css=bootstrap"
7877

7978
- rails_version: "~> 8.0.0"
80-
blacklight_version: '~> 9.0.0.beta'
79+
blacklight_version: '~> 9.0'
8180
ruby: "3.4"
8281
additional_name: "/ esbuild"
8382
additional_engine_cart_rails_options: "--css=bootstrap --javascript=esbuild"

Gemfile

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,6 @@ group :test do
99
gem 'activerecord-jdbcsqlite3-adapter', platform: :jruby
1010
end
1111

12-
# While gemspec allows BL8 and some people are using BL8... the build
13-
# has never actually passed on BL8 yet. We may choose to run tests on
14-
# a blacklight version other than the latest allowed by gemspec, to get
15-
# tests to pass, or to test on older BL still supported here.
1612
if ENV['BLACKLIGHT_VERSION']
1713
if ENV['BLACKLIGHT_VERSION'].include?("://")
1814
gem "blacklight", git: ENV['BLACKLIGHT_VERSION']

blacklight_range_limit.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Gem::Specification.new do |s|
1717

1818
s.license = 'Apache 2.0'
1919

20-
s.add_dependency 'blacklight', '>= 7.25.2', '< 9'
20+
s.add_dependency 'blacklight', '>= 7.25.2', '< 10'
2121
s.add_dependency 'view_component', ">= 2.54", "< 5"
2222

2323
s.add_development_dependency 'rspec', '~> 3.0'

0 commit comments

Comments
 (0)