File tree 5 files changed +6
-23
lines changed
5 files changed +6
-23
lines changed Original file line number Diff line number Diff line change 33
33
- name : Run tests
34
34
run : bin/test
35
35
36
- rails6 :
37
- runs-on : ubuntu-latest
38
- steps :
39
- - uses : actions/checkout@v4
40
- - run : rm Gemfile.lock
41
- - uses : ruby/setup-ruby@v1
42
- with :
43
- ruby-version : " 3.2"
44
- bundler : latest
45
- - name : " Pin to Rails 6.1"
46
- run : |
47
- bundle remove actionmailer
48
- bundle add actionmailer --version "~> 6.1" --skip-install
49
- bundle add railties --version "~> 6.1" --skip-install
50
- bundle install
51
- - name : Run tests
52
- run : bin/test
53
-
54
36
user-journey :
55
37
strategy :
56
38
fail-fast : false
Original file line number Diff line number Diff line change 1
1
## unreleased
2
2
3
- * Bring the scaffold templates up to date with rails/rails as much as possible without breaking 6.1 compatibility. (#357 ) @kinsomicrote
3
+ * Bring the scaffold templates up to date with rails/rails. (#357 , # 359 ) @kinsomicrote
4
4
* Drop support for Rails 6.0, which reached end-of-life in June 2023.
5
+ * Drop feature and bug fix support for Rails 6.1. The previous minor release will still receive security support while Rails 6.1 is supported.
5
6
6
7
7
8
## v2.5.0 / 2024-04-27
Original file line number Diff line number Diff line change 5
5
gem "debug" , ">= 1.0.0"
6
6
7
7
group :test do
8
- gem "actionmailer" , ">= 6.1 .0"
8
+ gem "actionmailer" , ">= 7.0 .0"
9
9
end
Original file line number Diff line number Diff line change 2
2
remote: .
3
3
specs:
4
4
tailwindcss-rails (2.5.0 )
5
- railties (>= 6.1 .0 )
5
+ railties (>= 7.0 .0 )
6
6
7
7
GEM
8
8
remote: https://rubygems.org/
@@ -141,7 +141,7 @@ PLATFORMS
141
141
x86_64-linux
142
142
143
143
DEPENDENCIES
144
- actionmailer (>= 6.1 .0 )
144
+ actionmailer (>= 7.0 .0 )
145
145
debug (>= 1.0.0 )
146
146
tailwindcss-rails !
147
147
Original file line number Diff line number Diff line change @@ -20,5 +20,5 @@ Gem::Specification.new do |spec|
20
20
spec . bindir = "exe"
21
21
spec . executables << "tailwindcss"
22
22
23
- spec . add_dependency "railties" , ">= 6.1 .0"
23
+ spec . add_dependency "railties" , ">= 7.0 .0"
24
24
end
You can’t perform that action at this time.
0 commit comments