Skip to content

Commit 24a46f4

Browse files
Merge pull request #8839 from rubygems/release/bundler_2.7.0_rubygems_3.7.0
Prepare RubyGems 3.7.0 and Bundler 2.7.0
2 parents 41529af + c64f11e commit 24a46f4

21 files changed

+151
-19
lines changed

.github/workflows/bundler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
push:
77
branches:
8-
- master
8+
- 3.7
99

1010
concurrency:
1111
group: ci-${{ github.ref }}-${{ github.workflow }}

.github/workflows/install-rubygems.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
push:
77
branches:
8-
- master
8+
- 3.7
99

1010
concurrency:
1111
group: ci-${{ github.ref }}-${{ github.workflow }}

.github/workflows/read-only.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
push:
77
branches:
8-
- master
8+
- 3.7
99

1010
concurrency:
1111
group: ci-${{ github.ref }}-${{ github.workflow }}

.github/workflows/realworld-bundler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
push:
77
branches:
8-
- master
8+
- 3.7
99

1010
concurrency:
1111
group: ci-${{ github.ref }}-${{ github.workflow }}

.github/workflows/ruby-core.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
push:
77
branches:
8-
- master
8+
- 3.7
99

1010
concurrency:
1111
group: ci-${{ github.ref }}-${{ github.workflow }}

.github/workflows/rubygems.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
push:
77
branches:
8-
- master
8+
- 3.7
99

1010
concurrency:
1111
group: ci-${{ github.ref }}-${{ github.workflow }}

.github/workflows/system-rubygems-bundler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
push:
1010
branches:
11-
- master
11+
- 3.7
1212

1313
concurrency:
1414
group: ci-${{ github.ref }}-${{ github.workflow }}

.github/workflows/truffleruby-bundler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
push:
77
branches:
8-
- master
8+
- 3.7
99

1010
concurrency:
1111
group: ci-${{ github.ref }}-${{ github.workflow }}

.github/workflows/ubuntu-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ on:
55

66
push:
77
branches:
8-
- master
8+
- 3.7
99

1010
concurrency:
1111
group: ci-${{ github.ref }}-${{ github.workflow }}

CHANGELOG.md

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,70 @@
11
# Changelog
22

3+
## 3.7.0 / 2025-07-16
4+
5+
### Security:
6+
7+
* Update vendored resolv to 0.6.2. Pull request
8+
[#8831](https://github.com/rubygems/rubygems/pull/8831) by hsbt
9+
10+
### Breaking changes:
11+
12+
* Stop generating binstubs with support for RubyGems before 2.6.2. Pull
13+
request [#8833](https://github.com/rubygems/rubygems/pull/8833) by
14+
deivid-rodriguez
15+
* Drop support for Ruby 3.1. Pull request
16+
[#8634](https://github.com/rubygems/rubygems/pull/8634) by segiddins
17+
18+
### Enhancements:
19+
20+
* Update SPDX license list as of 2025-07-01. Pull request
21+
[#8829](https://github.com/rubygems/rubygems/pull/8829) by
22+
github-actions[bot]
23+
* Add `push_rubygem` as a default scope for `gem signin` command. Pull
24+
request [#8672](https://github.com/rubygems/rubygems/pull/8672) by hsbt
25+
* Update bundled tls certs. Pull request
26+
[#8731](https://github.com/rubygems/rubygems/pull/8731) by segiddins
27+
* Install the best matching gem for the current platform in `gem install`.
28+
Pull request [#8751](https://github.com/rubygems/rubygems/pull/8751) by
29+
segiddins
30+
* Move most of `Bundler::GemHelpers` to `Gem::Platform`. Pull request
31+
[#8703](https://github.com/rubygems/rubygems/pull/8703) by segiddins
32+
* Ensure that `Gem::Platform` parses strings to a fix point. Pull request
33+
[#8584](https://github.com/rubygems/rubygems/pull/8584) by segiddins
34+
* Installs bundler 2.7.0 as a default gem.
35+
36+
### Bug fixes:
37+
38+
* Fix signing HEAD and date formatting in S3 signer. Pull request
39+
[#8763](https://github.com/rubygems/rubygems/pull/8763) by rye-stripe
40+
* Fix `--bindir <foo>` flag to gem install failing when `<foo>` is not in
41+
the default GEM_HOME and its parent directory does not exist yet. Pull
42+
request [#8783](https://github.com/rubygems/rubygems/pull/8783) by larouxn
43+
* Fix `gem install` sometimes compiling the wrong source files. Pull
44+
request [#8764](https://github.com/rubygems/rubygems/pull/8764) by
45+
deivid-rodriguez
46+
* Workaround rust extension compilation when `ccache` or `sccache` are
47+
used. Pull request [#8521](https://github.com/rubygems/rubygems/pull/8521)
48+
by hsbt
49+
* Fix `gem pristine` not recompiling extensions sometimes. Pull request
50+
[#8757](https://github.com/rubygems/rubygems/pull/8757) by
51+
deivid-rodriguez
52+
* Fix `--prerelease` flag to `gem install` sometimes not respected. Pull
53+
request [#8648](https://github.com/rubygems/rubygems/pull/8648) by ntl
54+
55+
### Documentation:
56+
57+
* Fix incorrect UPGRADING link in README.md. Pull request
58+
[#8838](https://github.com/rubygems/rubygems/pull/8838) by djbender
59+
* Add a root CONTRIBUTING.md file. Pull request
60+
[#8822](https://github.com/rubygems/rubygems/pull/8822) by
61+
deivid-rodriguez
62+
* Add a SECURITY.md file. Pull request
63+
[#8812](https://github.com/rubygems/rubygems/pull/8812) by
64+
deivid-rodriguez
65+
* Fix heading ranks in documentation. Pull request
66+
[#8711](https://github.com/rubygems/rubygems/pull/8711) by antoinem
67+
368
## 3.6.9 / 2025-05-13
469

570
### Enhancements:

0 commit comments

Comments
 (0)