railties 7.2.3.1 → 7.2.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -0
- data/lib/rails/gem_version.rb +2 -2
- data/lib/rails/generators/rails/app/templates/Dockerfile.tt +1 -0
- data/lib/rails/generators/rails/app/templates/github/ci.yml.tt +4 -4
- data/lib/rails/generators/rails/plugin/templates/github/ci.yml.tt +2 -2
- metadata +11 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b18d30738c0c90c02807156cecbb7c6cb06ad3179a03a10771e34182721bbd9e
|
|
4
|
+
data.tar.gz: d56e10c0fd257c8d6c433dc8a051cba30af2024cddd1d977020034e11e31c090
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e611fd4d1e931aaebcda226470f56c0fb95976d90ff839f6c60758b5cd252b75660013dfbc774dd8c81bf020b95717d5d2d34a644060d729f85a6021b2a56906
|
|
7
|
+
data.tar.gz: 2c714354378dec0ffe3c36e8708fd1ebb23e04f835e42bda82b40499224d9d74fbac956082a64dec524ec37421096a8abef9efa991af85741a215540056f5ea0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## Rails 7.2.4 (September 24, 2026) ##
|
|
2
|
+
|
|
3
|
+
* Fixed the default Dockerfile to properly include the `vendor/` directory during `bundle install`.
|
|
4
|
+
|
|
5
|
+
*Zhong Sheng*
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
## Rails 7.2.3.2 (July 29, 2026) ##
|
|
9
|
+
|
|
10
|
+
* No changes.
|
|
11
|
+
|
|
12
|
+
|
|
1
13
|
## Rails 7.2.3.1 (March 23, 2026) ##
|
|
2
14
|
|
|
3
15
|
* No changes.
|
data/lib/rails/gem_version.rb
CHANGED
|
@@ -49,6 +49,7 @@ RUN curl -fsSL https://bun.sh/install | bash -s -- "bun-v${BUN_VERSION}"
|
|
|
49
49
|
|
|
50
50
|
<% end -%>
|
|
51
51
|
# Install application gems
|
|
52
|
+
COPY vendor/* ./vendor/
|
|
52
53
|
COPY Gemfile Gemfile.lock ./
|
|
53
54
|
RUN bundle install && \
|
|
54
55
|
rm -rf ~/.bundle/ "${BUNDLE_PATH}"/ruby/*/cache "${BUNDLE_PATH}"/ruby/*/bundler/gems/*/.git<% if depend_on_bootsnap? -%> && \
|
|
@@ -12,7 +12,7 @@ jobs:
|
|
|
12
12
|
|
|
13
13
|
steps:
|
|
14
14
|
- name: Checkout code
|
|
15
|
-
uses: actions/checkout@
|
|
15
|
+
uses: actions/checkout@v6
|
|
16
16
|
|
|
17
17
|
- name: Set up Ruby
|
|
18
18
|
uses: ruby/setup-ruby@v1
|
|
@@ -30,7 +30,7 @@ jobs:
|
|
|
30
30
|
|
|
31
31
|
steps:
|
|
32
32
|
- name: Checkout code
|
|
33
|
-
uses: actions/checkout@
|
|
33
|
+
uses: actions/checkout@v6
|
|
34
34
|
|
|
35
35
|
- name: Set up Ruby
|
|
36
36
|
uses: ruby/setup-ruby@v1
|
|
@@ -47,7 +47,7 @@ jobs:
|
|
|
47
47
|
runs-on: ubuntu-latest
|
|
48
48
|
steps:
|
|
49
49
|
- name: Checkout code
|
|
50
|
-
uses: actions/checkout@
|
|
50
|
+
uses: actions/checkout@v6
|
|
51
51
|
|
|
52
52
|
- name: Set up Ruby
|
|
53
53
|
uses: ruby/setup-ruby@v1
|
|
@@ -103,7 +103,7 @@ jobs:
|
|
|
103
103
|
run: sudo apt-get update && sudo apt-get install --no-install-recommends -y google-chrome-stable <%= dockerfile_base_packages.join(" ") %>
|
|
104
104
|
|
|
105
105
|
- name: Checkout code
|
|
106
|
-
uses: actions/checkout@
|
|
106
|
+
uses: actions/checkout@v6
|
|
107
107
|
|
|
108
108
|
- name: Set up Ruby
|
|
109
109
|
uses: ruby/setup-ruby@v1
|
|
@@ -11,7 +11,7 @@ jobs:
|
|
|
11
11
|
runs-on: ubuntu-latest
|
|
12
12
|
steps:
|
|
13
13
|
- name: Checkout code
|
|
14
|
-
uses: actions/checkout@
|
|
14
|
+
uses: actions/checkout@v6
|
|
15
15
|
|
|
16
16
|
- name: Set up Ruby
|
|
17
17
|
uses: ruby/setup-ruby@v1
|
|
@@ -67,7 +67,7 @@ jobs:
|
|
|
67
67
|
run: sudo apt-get update && sudo apt-get install --no-install-recommends -y google-chrome-stable <%= dockerfile_base_packages.join(" ") %>
|
|
68
68
|
|
|
69
69
|
- name: Checkout code
|
|
70
|
-
uses: actions/checkout@
|
|
70
|
+
uses: actions/checkout@v6
|
|
71
71
|
|
|
72
72
|
- name: Set up Ruby
|
|
73
73
|
uses: ruby/setup-ruby@v1
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: railties
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.2.
|
|
4
|
+
version: 7.2.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David Heinemeier Hansson
|
|
@@ -15,28 +15,28 @@ dependencies:
|
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 7.2.
|
|
18
|
+
version: 7.2.4
|
|
19
19
|
type: :runtime
|
|
20
20
|
prerelease: false
|
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
22
|
requirements:
|
|
23
23
|
- - '='
|
|
24
24
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: 7.2.
|
|
25
|
+
version: 7.2.4
|
|
26
26
|
- !ruby/object:Gem::Dependency
|
|
27
27
|
name: actionpack
|
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
|
29
29
|
requirements:
|
|
30
30
|
- - '='
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 7.2.
|
|
32
|
+
version: 7.2.4
|
|
33
33
|
type: :runtime
|
|
34
34
|
prerelease: false
|
|
35
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - '='
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: 7.2.
|
|
39
|
+
version: 7.2.4
|
|
40
40
|
- !ruby/object:Gem::Dependency
|
|
41
41
|
name: cgi
|
|
42
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -147,14 +147,14 @@ dependencies:
|
|
|
147
147
|
requirements:
|
|
148
148
|
- - '='
|
|
149
149
|
- !ruby/object:Gem::Version
|
|
150
|
-
version: 7.2.
|
|
150
|
+
version: 7.2.4
|
|
151
151
|
type: :development
|
|
152
152
|
prerelease: false
|
|
153
153
|
version_requirements: !ruby/object:Gem::Requirement
|
|
154
154
|
requirements:
|
|
155
155
|
- - '='
|
|
156
156
|
- !ruby/object:Gem::Version
|
|
157
|
-
version: 7.2.
|
|
157
|
+
version: 7.2.4
|
|
158
158
|
description: 'Rails internals: application bootup, plugins, generators, and rake tasks.'
|
|
159
159
|
email: david@loudthinking.com
|
|
160
160
|
executables:
|
|
@@ -496,10 +496,10 @@ licenses:
|
|
|
496
496
|
- MIT
|
|
497
497
|
metadata:
|
|
498
498
|
bug_tracker_uri: https://github.com/rails/rails/issues
|
|
499
|
-
changelog_uri: https://github.com/rails/rails/blob/v7.2.
|
|
500
|
-
documentation_uri: https://api.rubyonrails.org/v7.2.
|
|
499
|
+
changelog_uri: https://github.com/rails/rails/blob/v7.2.4/railties/CHANGELOG.md
|
|
500
|
+
documentation_uri: https://api.rubyonrails.org/v7.2.4/
|
|
501
501
|
mailing_list_uri: https://discuss.rubyonrails.org/c/rubyonrails-talk
|
|
502
|
-
source_code_uri: https://github.com/rails/rails/tree/v7.2.
|
|
502
|
+
source_code_uri: https://github.com/rails/rails/tree/v7.2.4/railties
|
|
503
503
|
rubygems_mfa_required: 'true'
|
|
504
504
|
rdoc_options:
|
|
505
505
|
- "--exclude"
|
|
@@ -517,7 +517,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
517
517
|
- !ruby/object:Gem::Version
|
|
518
518
|
version: '0'
|
|
519
519
|
requirements: []
|
|
520
|
-
rubygems_version: 4.0.
|
|
520
|
+
rubygems_version: 4.0.20
|
|
521
521
|
specification_version: 4
|
|
522
522
|
summary: Tools for creating, working with, and running Rails applications.
|
|
523
523
|
test_files: []
|