rubygems-update 3.6.9 → 3.7.1
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 +873 -790
- data/CODE_OF_CONDUCT.md +1 -1
- data/CONTRIBUTING.md +9 -0
- data/Manifest.txt +4 -21
- data/README.md +1 -1
- data/SECURITY.md +7 -0
- data/bundler/CHANGELOG.md +1110 -1033
- data/bundler/README.md +7 -7
- data/bundler/bundler.gemspec +2 -2
- data/bundler/lib/bundler/build_metadata.rb +10 -11
- data/bundler/lib/bundler/cli/common.rb +1 -1
- data/bundler/lib/bundler/cli/config.rb +2 -2
- data/bundler/lib/bundler/cli/gem.rb +62 -30
- data/bundler/lib/bundler/cli/install.rb +5 -5
- data/bundler/lib/bundler/cli/outdated.rb +1 -1
- data/bundler/lib/bundler/cli/update.rb +3 -3
- data/bundler/lib/bundler/cli.rb +24 -38
- data/bundler/lib/bundler/compact_index_client.rb +1 -5
- data/bundler/lib/bundler/current_ruby.rb +27 -3
- data/bundler/lib/bundler/definition.rb +21 -22
- data/bundler/lib/bundler/dependency.rb +1 -1
- data/bundler/lib/bundler/dsl.rb +33 -23
- data/bundler/lib/bundler/feature_flag.rb +15 -12
- data/bundler/lib/bundler/fetcher/dependency.rb +2 -1
- data/bundler/lib/bundler/fetcher/downloader.rb +33 -7
- data/bundler/lib/bundler/fetcher.rb +49 -19
- data/bundler/lib/bundler/friendly_errors.rb +2 -1
- data/bundler/lib/bundler/index.rb +7 -2
- data/bundler/lib/bundler/installer.rb +5 -4
- data/bundler/lib/bundler/lazy_specification.rb +9 -7
- data/bundler/lib/bundler/lockfile_parser.rb +21 -5
- data/bundler/lib/bundler/man/bundle-add.1 +1 -1
- data/bundler/lib/bundler/man/bundle-binstubs.1 +1 -1
- data/bundler/lib/bundler/man/bundle-cache.1 +1 -1
- data/bundler/lib/bundler/man/bundle-check.1 +1 -1
- data/bundler/lib/bundler/man/bundle-clean.1 +1 -1
- data/bundler/lib/bundler/man/bundle-config.1 +172 -126
- data/bundler/lib/bundler/man/bundle-config.1.ronn +91 -91
- data/bundler/lib/bundler/man/bundle-console.1 +1 -1
- data/bundler/lib/bundler/man/bundle-doctor.1 +43 -4
- data/bundler/lib/bundler/man/bundle-doctor.1.ronn +48 -4
- data/bundler/lib/bundler/man/bundle-env.1 +1 -1
- data/bundler/lib/bundler/man/bundle-exec.1 +1 -1
- data/bundler/lib/bundler/man/bundle-fund.1 +1 -1
- data/bundler/lib/bundler/man/bundle-gem.1 +67 -44
- data/bundler/lib/bundler/man/bundle-gem.1.ronn +8 -4
- data/bundler/lib/bundler/man/bundle-help.1 +1 -1
- data/bundler/lib/bundler/man/bundle-info.1 +1 -1
- data/bundler/lib/bundler/man/bundle-init.1 +1 -1
- data/bundler/lib/bundler/man/bundle-inject.1 +2 -2
- data/bundler/lib/bundler/man/bundle-inject.1.ronn +1 -1
- data/bundler/lib/bundler/man/bundle-install.1 +4 -4
- data/bundler/lib/bundler/man/bundle-install.1.ronn +3 -4
- data/bundler/lib/bundler/man/bundle-issue.1 +1 -1
- data/bundler/lib/bundler/man/bundle-licenses.1 +1 -1
- data/bundler/lib/bundler/man/bundle-list.1 +1 -1
- data/bundler/lib/bundler/man/bundle-lock.1 +1 -1
- data/bundler/lib/bundler/man/bundle-open.1 +1 -1
- data/bundler/lib/bundler/man/bundle-outdated.1 +1 -1
- data/bundler/lib/bundler/man/bundle-platform.1 +1 -1
- data/bundler/lib/bundler/man/bundle-plugin.1 +1 -1
- data/bundler/lib/bundler/man/bundle-pristine.1 +1 -1
- data/bundler/lib/bundler/man/bundle-remove.1 +1 -1
- data/bundler/lib/bundler/man/bundle-show.1 +1 -1
- data/bundler/lib/bundler/man/bundle-update.1 +5 -5
- data/bundler/lib/bundler/man/bundle-update.1.ronn +4 -4
- data/bundler/lib/bundler/man/bundle-version.1 +1 -1
- data/bundler/lib/bundler/man/bundle-viz.1 +1 -1
- data/bundler/lib/bundler/man/bundle.1 +1 -1
- data/bundler/lib/bundler/man/gemfile.5 +1 -1
- data/bundler/lib/bundler/match_platform.rb +31 -12
- data/bundler/lib/bundler/materialization.rb +2 -2
- data/bundler/lib/bundler/resolver/package.rb +1 -1
- data/bundler/lib/bundler/resolver.rb +1 -3
- data/bundler/lib/bundler/rubygems_ext.rb +116 -120
- data/bundler/lib/bundler/rubygems_integration.rb +11 -6
- data/bundler/lib/bundler/runtime.rb +1 -1
- data/bundler/lib/bundler/self_manager.rb +32 -42
- data/bundler/lib/bundler/settings/validator.rb +0 -23
- data/bundler/lib/bundler/settings.rb +4 -6
- data/bundler/lib/bundler/shared_helpers.rb +6 -4
- data/bundler/lib/bundler/source/git/git_proxy.rb +3 -3
- data/bundler/lib/bundler/source/path.rb +7 -0
- data/bundler/lib/bundler/source_list.rb +1 -5
- data/bundler/lib/bundler/source_map.rb +1 -1
- data/bundler/lib/bundler/spec_set.rb +7 -3
- data/bundler/lib/bundler/templates/Executable +0 -11
- data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +2 -0
- data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +6 -5
- data/bundler/lib/bundler/ui/shell.rb +2 -2
- data/bundler/lib/bundler/vendor/net-http-persistent/README.rdoc +1 -1
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +2 -1
- data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +81 -42
- data/bundler/lib/bundler/version.rb +10 -2
- data/bundler/lib/bundler/worker.rb +1 -1
- data/bundler/lib/bundler.rb +14 -12
- data/doc/bundler/UPGRADING.md +132 -127
- data/doc/rubygems/CONTRIBUTING.md +1 -1
- data/lib/rubygems/basic_specification.rb +7 -0
- data/lib/rubygems/commands/pristine_command.rb +9 -12
- data/lib/rubygems/commands/setup_command.rb +2 -2
- data/lib/rubygems/core_ext/kernel_require.rb +5 -2
- data/lib/rubygems/ext/cargo_builder.rb +4 -0
- data/lib/rubygems/gemcutter_utilities/webauthn_listener.rb +10 -3
- data/lib/rubygems/gemcutter_utilities.rb +1 -1
- data/lib/rubygems/installer.rb +45 -50
- data/lib/rubygems/platform.rb +142 -39
- data/lib/rubygems/remote_fetcher.rb +3 -3
- data/lib/rubygems/request_set.rb +3 -6
- data/lib/rubygems/resolver/best_set.rb +1 -1
- data/lib/rubygems/resolver/source_set.rb +1 -1
- data/lib/rubygems/resolver.rb +1 -1
- data/lib/rubygems/s3_uri_signer.rb +5 -3
- data/lib/rubygems/source.rb +28 -22
- data/lib/rubygems/specification.rb +2 -2
- data/lib/rubygems/uri_formatter.rb +2 -1
- data/lib/rubygems/util/licenses.rb +21 -0
- data/lib/rubygems/vendor/net-http/lib/net/http.rb +14 -19
- data/lib/rubygems/vendor/resolv/lib/resolv.rb +50 -22
- data/lib/rubygems.rb +72 -7
- data/rubygems-update.gemspec +2 -2
- data/setup.rb +1 -1
- metadata +7 -24
- data/bundler/lib/bundler/gem_helpers.rb +0 -144
- data/bundler/lib/bundler/templates/Executable.bundler +0 -109
- data/bundler/lib/bundler/vendor/fileutils/.document +0 -1
- data/bundler/lib/bundler/vendor/net-http-persistent/.document +0 -1
- data/bundler/lib/bundler/vendor/pub_grub/.document +0 -1
- data/bundler/lib/bundler/vendor/securerandom/.document +0 -1
- data/bundler/lib/bundler/vendor/thor/.document +0 -1
- data/bundler/lib/bundler/vendor/tsort/.document +0 -1
- data/bundler/lib/bundler/vendor/uri/.document +0 -1
- data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA.pem +0 -21
- data/lib/rubygems/vendor/molinillo/.document +0 -1
- data/lib/rubygems/vendor/net-http/.document +0 -1
- data/lib/rubygems/vendor/net-protocol/.document +0 -1
- data/lib/rubygems/vendor/optparse/.document +0 -1
- data/lib/rubygems/vendor/resolv/.document +0 -1
- data/lib/rubygems/vendor/securerandom/.document +0 -1
- data/lib/rubygems/vendor/timeout/.document +0 -1
- data/lib/rubygems/vendor/tsort/.document +0 -1
- data/lib/rubygems/vendor/uri/.document +0 -1
- /data/lib/rubygems/ssl_certs/rubygems.org/{GlobalSignRootCA_R3.pem → GlobalSign.pem} +0 -0
- /data/{bundler/lib/bundler/vendor/connection_pool → lib/rubygems/vendor}/.document +0 -0
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,93 @@
|
|
1
|
-
#
|
1
|
+
# Changelog
|
2
2
|
|
3
|
-
##
|
3
|
+
## 3.7.1 / 2025-07-21
|
4
|
+
|
5
|
+
### Enhancements:
|
6
|
+
|
7
|
+
* Fix regression in presence of RVM gems. Pull request
|
8
|
+
[#8854](https://github.com/rubygems/rubygems/pull/8854) by
|
9
|
+
deivid-rodriguez
|
10
|
+
* Restore parsing "--" as an unknown platform rather than crashing. Pull
|
11
|
+
request [#8846](https://github.com/rubygems/rubygems/pull/8846) by
|
12
|
+
deivid-rodriguez
|
13
|
+
* Installs bundler 2.7.1 as a default gem.
|
14
|
+
|
15
|
+
### Documentation:
|
16
|
+
|
17
|
+
* Use mailto link in Code of Conduct. Pull request
|
18
|
+
[#8849](https://github.com/rubygems/rubygems/pull/8849) by
|
19
|
+
deivid-rodriguez
|
20
|
+
* Update Code of Conduct email to conduct@rubygems.org. Pull request
|
21
|
+
[#8848](https://github.com/rubygems/rubygems/pull/8848) by indirect
|
22
|
+
|
23
|
+
## 3.7.0 / 2025-07-16
|
24
|
+
|
25
|
+
### Security:
|
26
|
+
|
27
|
+
* Update vendored resolv to 0.6.2. Pull request
|
28
|
+
[#8831](https://github.com/rubygems/rubygems/pull/8831) by hsbt
|
29
|
+
|
30
|
+
### Breaking changes:
|
31
|
+
|
32
|
+
* Stop generating binstubs with support for RubyGems before 2.6.2. Pull
|
33
|
+
request [#8833](https://github.com/rubygems/rubygems/pull/8833) by
|
34
|
+
deivid-rodriguez
|
35
|
+
* Drop support for Ruby 3.1. Pull request
|
36
|
+
[#8634](https://github.com/rubygems/rubygems/pull/8634) by segiddins
|
37
|
+
|
38
|
+
### Enhancements:
|
39
|
+
|
40
|
+
* Update SPDX license list as of 2025-07-01. Pull request
|
41
|
+
[#8829](https://github.com/rubygems/rubygems/pull/8829) by
|
42
|
+
github-actions[bot]
|
43
|
+
* Add `push_rubygem` as a default scope for `gem signin` command. Pull
|
44
|
+
request [#8672](https://github.com/rubygems/rubygems/pull/8672) by hsbt
|
45
|
+
* Update bundled tls certs. Pull request
|
46
|
+
[#8731](https://github.com/rubygems/rubygems/pull/8731) by segiddins
|
47
|
+
* Install the best matching gem for the current platform in `gem install`.
|
48
|
+
Pull request [#8751](https://github.com/rubygems/rubygems/pull/8751) by
|
49
|
+
segiddins
|
50
|
+
* Move most of `Bundler::GemHelpers` to `Gem::Platform`. Pull request
|
51
|
+
[#8703](https://github.com/rubygems/rubygems/pull/8703) by segiddins
|
52
|
+
* Ensure that `Gem::Platform` parses strings to a fix point. Pull request
|
53
|
+
[#8584](https://github.com/rubygems/rubygems/pull/8584) by segiddins
|
54
|
+
* Installs bundler 2.7.0 as a default gem.
|
55
|
+
|
56
|
+
### Bug fixes:
|
57
|
+
|
58
|
+
* Fix signing HEAD and date formatting in S3 signer. Pull request
|
59
|
+
[#8763](https://github.com/rubygems/rubygems/pull/8763) by rye-stripe
|
60
|
+
* Fix `--bindir <foo>` flag to gem install failing when `<foo>` is not in
|
61
|
+
the default GEM_HOME and its parent directory does not exist yet. Pull
|
62
|
+
request [#8783](https://github.com/rubygems/rubygems/pull/8783) by larouxn
|
63
|
+
* Fix `gem install` sometimes compiling the wrong source files. Pull
|
64
|
+
request [#8764](https://github.com/rubygems/rubygems/pull/8764) by
|
65
|
+
deivid-rodriguez
|
66
|
+
* Workaround rust extension compilation when `ccache` or `sccache` are
|
67
|
+
used. Pull request [#8521](https://github.com/rubygems/rubygems/pull/8521)
|
68
|
+
by hsbt
|
69
|
+
* Fix `gem pristine` not recompiling extensions sometimes. Pull request
|
70
|
+
[#8757](https://github.com/rubygems/rubygems/pull/8757) by
|
71
|
+
deivid-rodriguez
|
72
|
+
* Fix `--prerelease` flag to `gem install` sometimes not respected. Pull
|
73
|
+
request [#8648](https://github.com/rubygems/rubygems/pull/8648) by ntl
|
74
|
+
|
75
|
+
### Documentation:
|
76
|
+
|
77
|
+
* Fix incorrect UPGRADING link in README.md. Pull request
|
78
|
+
[#8838](https://github.com/rubygems/rubygems/pull/8838) by djbender
|
79
|
+
* Add a root CONTRIBUTING.md file. Pull request
|
80
|
+
[#8822](https://github.com/rubygems/rubygems/pull/8822) by
|
81
|
+
deivid-rodriguez
|
82
|
+
* Add a SECURITY.md file. Pull request
|
83
|
+
[#8812](https://github.com/rubygems/rubygems/pull/8812) by
|
84
|
+
deivid-rodriguez
|
85
|
+
* Fix heading ranks in documentation. Pull request
|
86
|
+
[#8711](https://github.com/rubygems/rubygems/pull/8711) by antoinem
|
87
|
+
|
88
|
+
## 3.6.9 / 2025-05-13
|
89
|
+
|
90
|
+
### Enhancements:
|
4
91
|
|
5
92
|
* Add mtime to Gem::Package::TarWriter#add_file argument. Pull request
|
6
93
|
[#8673](https://github.com/rubygems/rubygems/pull/8673) by unasuke
|
@@ -12,25 +99,25 @@
|
|
12
99
|
deivid-rodriguez
|
13
100
|
* Installs bundler 2.6.9 as a default gem.
|
14
101
|
|
15
|
-
|
102
|
+
### Performance:
|
16
103
|
|
17
104
|
* Avoid unnecessary splat allocation. Pull request
|
18
105
|
[#8640](https://github.com/rubygems/rubygems/pull/8640) by jeremyevans
|
19
106
|
|
20
|
-
|
107
|
+
### Documentation:
|
21
108
|
|
22
109
|
* Fix typo in Changelog for 3.6.0 / 2024-12-16. Pull request
|
23
110
|
[#8638](https://github.com/rubygems/rubygems/pull/8638) by thatrobotdev
|
24
111
|
|
25
|
-
|
112
|
+
## 3.6.8 / 2025-04-13
|
26
113
|
|
27
|
-
|
114
|
+
### Enhancements:
|
28
115
|
|
29
116
|
* Installs bundler 2.6.8 as a default gem.
|
30
117
|
|
31
|
-
|
118
|
+
## 3.6.7 / 2025-04-03
|
32
119
|
|
33
|
-
|
120
|
+
### Enhancements:
|
34
121
|
|
35
122
|
* Sorting files in metadata for build reproducibility. Pull request
|
36
123
|
[#8569](https://github.com/rubygems/rubygems/pull/8569) by
|
@@ -43,54 +130,54 @@
|
|
43
130
|
deivid-rodriguez
|
44
131
|
* Installs bundler 2.6.7 as a default gem.
|
45
132
|
|
46
|
-
|
133
|
+
### Performance:
|
47
134
|
|
48
135
|
* Speed up Version#<=> ~20-50% when lengths differ. Pull request
|
49
136
|
[#8565](https://github.com/rubygems/rubygems/pull/8565) by skipkayhil
|
50
137
|
|
51
|
-
|
138
|
+
## 3.6.6 / 2025-03-13
|
52
139
|
|
53
|
-
|
140
|
+
### Enhancements:
|
54
141
|
|
55
142
|
* Update vendored uri to 1.0.3. Pull request
|
56
143
|
[#8534](https://github.com/rubygems/rubygems/pull/8534) by hsbt
|
57
144
|
* Installs bundler 2.6.6 as a default gem.
|
58
145
|
|
59
|
-
|
146
|
+
### Bug fixes:
|
60
147
|
|
61
148
|
* Fix `gem rdoc` not working with newer versions of rdoc when not
|
62
149
|
installed as default gems. Pull request
|
63
150
|
[#8549](https://github.com/rubygems/rubygems/pull/8549) by
|
64
151
|
deivid-rodriguez
|
65
152
|
|
66
|
-
|
153
|
+
## 3.6.5 / 2025-02-20
|
67
154
|
|
68
|
-
|
155
|
+
### Enhancements:
|
69
156
|
|
70
157
|
* Installs bundler 2.6.5 as a default gem.
|
71
158
|
|
72
|
-
|
159
|
+
### Documentation:
|
73
160
|
|
74
161
|
* Removed `gem server` from `gem help`. Pull request
|
75
162
|
[#8507](https://github.com/rubygems/rubygems/pull/8507) by hsbt
|
76
163
|
|
77
|
-
|
164
|
+
## 3.6.4 / 2025-02-17
|
78
165
|
|
79
|
-
|
166
|
+
### Enhancements:
|
80
167
|
|
81
168
|
* Raise a simpler error when RubyGems fails to activate a dependency. Pull
|
82
169
|
request [#8449](https://github.com/rubygems/rubygems/pull/8449) by
|
83
170
|
deivid-rodriguez
|
84
171
|
* Installs bundler 2.6.4 as a default gem.
|
85
172
|
|
86
|
-
|
173
|
+
### Performance:
|
87
174
|
|
88
175
|
* Allocate strings from Requirement match only once. Pull request
|
89
176
|
[#8245](https://github.com/rubygems/rubygems/pull/8245) by segiddins
|
90
177
|
|
91
|
-
|
178
|
+
## 3.6.3 / 2025-01-16
|
92
179
|
|
93
|
-
|
180
|
+
### Enhancements:
|
94
181
|
|
95
182
|
* Add credentials file path to `gem env`. Pull request
|
96
183
|
[#8375](https://github.com/rubygems/rubygems/pull/8375) by duckinator
|
@@ -99,14 +186,14 @@
|
|
99
186
|
github-actions[bot]
|
100
187
|
* Installs bundler 2.6.3 as a default gem.
|
101
188
|
|
102
|
-
|
189
|
+
### Bug fixes:
|
103
190
|
|
104
191
|
* Fix `@licenses` array unmarshalling. Pull request
|
105
192
|
[#8411](https://github.com/rubygems/rubygems/pull/8411) by rykov
|
106
193
|
|
107
|
-
|
194
|
+
## 3.6.2 / 2024-12-23
|
108
195
|
|
109
|
-
|
196
|
+
### Security:
|
110
197
|
|
111
198
|
* Fix Gem::SafeMarshal buffer overrun when given lengths larger than fit
|
112
199
|
into a byte. Pull request
|
@@ -114,55 +201,55 @@
|
|
114
201
|
* Improve type checking in marshal_load methods. Pull request
|
115
202
|
[#8306](https://github.com/rubygems/rubygems/pull/8306) by segiddins
|
116
203
|
|
117
|
-
|
204
|
+
### Enhancements:
|
118
205
|
|
119
206
|
* Skip rdoc hooks and their tests on newer rdoc versions. Pull request
|
120
207
|
[#8340](https://github.com/rubygems/rubygems/pull/8340) by
|
121
208
|
deivid-rodriguez
|
122
209
|
* Installs bundler 2.6.2 as a default gem.
|
123
210
|
|
124
|
-
|
211
|
+
### Bug fixes:
|
125
212
|
|
126
213
|
* Fix serialized metadata including an empty `@original_platform`
|
127
214
|
attribute. Pull request
|
128
215
|
[#8355](https://github.com/rubygems/rubygems/pull/8355) by
|
129
216
|
deivid-rodriguez
|
130
217
|
|
131
|
-
|
218
|
+
## 3.6.1 / 2024-12-17
|
132
219
|
|
133
|
-
|
220
|
+
### Enhancements:
|
134
221
|
|
135
222
|
* Installs bundler 2.6.1 as a default gem.
|
136
223
|
|
137
|
-
|
224
|
+
### Bug fixes:
|
138
225
|
|
139
226
|
* Fix `gem info` tagging some non default gems as default. Pull request
|
140
227
|
[#8321](https://github.com/rubygems/rubygems/pull/8321) by
|
141
228
|
deivid-rodriguez
|
142
229
|
|
143
|
-
|
230
|
+
### Documentation:
|
144
231
|
|
145
232
|
* Fix broken links. Pull request
|
146
233
|
[#8327](https://github.com/rubygems/rubygems/pull/8327) by st0012
|
147
234
|
|
148
|
-
|
235
|
+
## 3.6.0 / 2024-12-16
|
149
236
|
|
150
|
-
|
237
|
+
### Security:
|
151
238
|
|
152
239
|
* Stop storing executable names in ivars. Pull request
|
153
240
|
[#8307](https://github.com/rubygems/rubygems/pull/8307) by segiddins
|
154
241
|
|
155
|
-
|
242
|
+
### Breaking changes:
|
156
243
|
|
157
244
|
* Drop ruby 3.0 support. Pull request
|
158
245
|
[#8091](https://github.com/rubygems/rubygems/pull/8091) by segiddins
|
159
246
|
|
160
|
-
|
247
|
+
### Features:
|
161
248
|
|
162
249
|
* Add --attestation option to gem push. Pull request
|
163
250
|
[#8239](https://github.com/rubygems/rubygems/pull/8239) by segiddins
|
164
251
|
|
165
|
-
|
252
|
+
### Enhancements:
|
166
253
|
|
167
254
|
* Skip unresolved deps warning on `Gem::Specification.reset` on benign
|
168
255
|
cases. Pull request
|
@@ -184,7 +271,7 @@
|
|
184
271
|
[#6463](https://github.com/rubygems/rubygems/pull/6463) by hsbt
|
185
272
|
* Installs bundler 2.6.0 as a default gem.
|
186
273
|
|
187
|
-
|
274
|
+
### Bug fixes:
|
188
275
|
|
189
276
|
* Set $0 to exe when running `gem exec` to fix name in CLI output. Pull
|
190
277
|
request [#8267](https://github.com/rubygems/rubygems/pull/8267) by adam12
|
@@ -192,7 +279,7 @@
|
|
192
279
|
request [#8202](https://github.com/rubygems/rubygems/pull/8202) by
|
193
280
|
deivid-rodriguez
|
194
281
|
|
195
|
-
|
282
|
+
### Documentation:
|
196
283
|
|
197
284
|
* Fix missing single quote in git source example. Pull request
|
198
285
|
[#8303](https://github.com/rubygems/rubygems/pull/8303) by nobu
|
@@ -202,9 +289,9 @@
|
|
202
289
|
* Unify rubygems and bundler docs directory. Pull request
|
203
290
|
[#8159](https://github.com/rubygems/rubygems/pull/8159) by hsbt
|
204
291
|
|
205
|
-
|
292
|
+
## 3.5.23 / 2024-11-05
|
206
293
|
|
207
|
-
|
294
|
+
### Enhancements:
|
208
295
|
|
209
296
|
* Validate user input encoding of `gem` CLI arguments. Pull request
|
210
297
|
[#6471](https://github.com/rubygems/rubygems/pull/6471) by
|
@@ -215,7 +302,7 @@
|
|
215
302
|
deivid-rodriguez
|
216
303
|
* Installs bundler 2.5.23 as a default gem.
|
217
304
|
|
218
|
-
|
305
|
+
### Bug fixes:
|
219
306
|
|
220
307
|
* Fix commands with 2 MFA requests when webauthn is enabled. Pull request
|
221
308
|
[#8174](https://github.com/rubygems/rubygems/pull/8174) by
|
@@ -225,20 +312,20 @@
|
|
225
312
|
[#7872](https://github.com/rubygems/rubygems/pull/7872) by
|
226
313
|
deivid-rodriguez
|
227
314
|
|
228
|
-
|
315
|
+
### Performance:
|
229
316
|
|
230
317
|
* Speed up `gem install <nonexistent-gem>` by finding alternative name
|
231
318
|
suggestions faster. Pull request
|
232
319
|
[#8084](https://github.com/rubygems/rubygems/pull/8084) by duckinator
|
233
320
|
|
234
|
-
|
321
|
+
### Documentation:
|
235
322
|
|
236
323
|
* Add missing comma in documentation. Pull request
|
237
324
|
[#8152](https://github.com/rubygems/rubygems/pull/8152) by leoarnold
|
238
325
|
|
239
|
-
|
326
|
+
## 3.5.22 / 2024-10-16
|
240
327
|
|
241
|
-
|
328
|
+
### Enhancements:
|
242
329
|
|
243
330
|
* Prevent `._*` files in packages generated from macOS. Pull request
|
244
331
|
[#8150](https://github.com/rubygems/rubygems/pull/8150) by
|
@@ -253,7 +340,7 @@
|
|
253
340
|
[#8112](https://github.com/rubygems/rubygems/pull/8112) by segiddins
|
254
341
|
* Installs bundler 2.5.22 as a default gem.
|
255
342
|
|
256
|
-
|
343
|
+
### Bug fixes:
|
257
344
|
|
258
345
|
* Fix `gem contents` for default gems. Pull request
|
259
346
|
[#8132](https://github.com/rubygems/rubygems/pull/8132) by
|
@@ -271,9 +358,9 @@
|
|
271
358
|
[#8121](https://github.com/rubygems/rubygems/pull/8121) by
|
272
359
|
deivid-rodriguez
|
273
360
|
|
274
|
-
|
361
|
+
## 3.5.21 / 2024-10-03
|
275
362
|
|
276
|
-
|
363
|
+
### Enhancements:
|
277
364
|
|
278
365
|
* Fix `Gem::MissingSpecVersionError#to_s` not showing exception message.
|
279
366
|
Pull request [#8074](https://github.com/rubygems/rubygems/pull/8074) by
|
@@ -287,7 +374,7 @@
|
|
287
374
|
deivid-rodriguez
|
288
375
|
* Installs bundler 2.5.21 as a default gem.
|
289
376
|
|
290
|
-
|
377
|
+
### Bug fixes:
|
291
378
|
|
292
379
|
* Fix error in one source when fetching dependency APIs clearing results
|
293
380
|
from all sources. Pull request
|
@@ -297,15 +384,15 @@
|
|
297
384
|
request [#8072](https://github.com/rubygems/rubygems/pull/8072) by
|
298
385
|
deivid-rodriguez
|
299
386
|
|
300
|
-
|
387
|
+
## 3.5.20 / 2024-09-24
|
301
388
|
|
302
|
-
|
389
|
+
### Enhancements:
|
303
390
|
|
304
391
|
* Installs bundler 2.5.20 as a default gem.
|
305
392
|
|
306
|
-
|
393
|
+
## 3.5.19 / 2024-09-18
|
307
394
|
|
308
|
-
|
395
|
+
### Enhancements:
|
309
396
|
|
310
397
|
* Standardize pretty-print output for `Gem::Source` and subclasses. Pull
|
311
398
|
request [#7994](https://github.com/rubygems/rubygems/pull/7994) by
|
@@ -315,7 +402,7 @@
|
|
315
402
|
hsbt
|
316
403
|
* Installs bundler 2.5.19 as a default gem.
|
317
404
|
|
318
|
-
|
405
|
+
### Bug fixes:
|
319
406
|
|
320
407
|
* Fix `bundle exec rake install` failing when local gem has extensions.
|
321
408
|
Pull request [#7977](https://github.com/rubygems/rubygems/pull/7977) by
|
@@ -337,33 +424,33 @@
|
|
337
424
|
unmarshalled. Pull request
|
338
425
|
[#7975](https://github.com/rubygems/rubygems/pull/7975) by djberube
|
339
426
|
|
340
|
-
|
427
|
+
### Performance:
|
341
428
|
|
342
429
|
* Fix `gem install does-not-exist` being super slow. Pull request
|
343
430
|
[#8006](https://github.com/rubygems/rubygems/pull/8006) by
|
344
431
|
deivid-rodriguez
|
345
432
|
|
346
|
-
|
433
|
+
## 3.5.18 / 2024-08-26
|
347
434
|
|
348
|
-
|
435
|
+
### Enhancements:
|
349
436
|
|
350
437
|
* Installs bundler 2.5.18 as a default gem.
|
351
438
|
|
352
|
-
|
439
|
+
### Bug fixes:
|
353
440
|
|
354
441
|
* Fix `gem uninstall <name>:<version>` failing on shadowed default gems.
|
355
442
|
Pull request [#7949](https://github.com/rubygems/rubygems/pull/7949) by
|
356
443
|
deivid-rodriguez
|
357
444
|
|
358
|
-
|
445
|
+
## 3.5.17 / 2024-08-01
|
359
446
|
|
360
|
-
|
447
|
+
### Enhancements:
|
361
448
|
|
362
449
|
* Explicitly encode `Gem::Dependency` to yaml. Pull request
|
363
450
|
[#7867](https://github.com/rubygems/rubygems/pull/7867) by segiddins
|
364
451
|
* Installs bundler 2.5.17 as a default gem.
|
365
452
|
|
366
|
-
|
453
|
+
### Bug fixes:
|
367
454
|
|
368
455
|
* Fix `gem list` regression when a regular gem shadows a default one. Pull
|
369
456
|
request [#7892](https://github.com/rubygems/rubygems/pull/7892) by
|
@@ -374,13 +461,13 @@
|
|
374
461
|
* Fix line comment issue for hash when loading gemrc. Pull request
|
375
462
|
[#7857](https://github.com/rubygems/rubygems/pull/7857) by leetking
|
376
463
|
|
377
|
-
|
464
|
+
## 3.5.16 / 2024-07-18
|
378
465
|
|
379
|
-
|
466
|
+
### Enhancements:
|
380
467
|
|
381
468
|
* Installs bundler 2.5.16 as a default gem.
|
382
469
|
|
383
|
-
|
470
|
+
### Bug fixes:
|
384
471
|
|
385
472
|
* Fix gemspec `require_paths` validation. Pull request
|
386
473
|
[#7866](https://github.com/rubygems/rubygems/pull/7866) by
|
@@ -389,18 +476,18 @@
|
|
389
476
|
Pull request [#7851](https://github.com/rubygems/rubygems/pull/7851) by
|
390
477
|
moofkit
|
391
478
|
|
392
|
-
|
479
|
+
### Performance:
|
393
480
|
|
394
481
|
* Use `caller_locations` instead of splitting `caller`. Pull request
|
395
482
|
[#7708](https://github.com/rubygems/rubygems/pull/7708) by nobu
|
396
483
|
|
397
|
-
|
484
|
+
## 3.5.15 / 2024-07-09
|
398
485
|
|
399
|
-
|
486
|
+
### Enhancements:
|
400
487
|
|
401
488
|
* Installs bundler 2.5.15 as a default gem.
|
402
489
|
|
403
|
-
|
490
|
+
### Bug fixes:
|
404
491
|
|
405
492
|
* Restrict generic `arm` to only match 32-bit arm. Pull request
|
406
493
|
[#7830](https://github.com/rubygems/rubygems/pull/7830) by ntkme
|
@@ -408,42 +495,42 @@
|
|
408
495
|
[#7806](https://github.com/rubygems/rubygems/pull/7806) by
|
409
496
|
deivid-rodriguez
|
410
497
|
|
411
|
-
|
498
|
+
### Documentation:
|
412
499
|
|
413
500
|
* Make it clearer that `add_dependency` is the main way to add
|
414
501
|
non-development dependencies. Pull request
|
415
502
|
[#7800](https://github.com/rubygems/rubygems/pull/7800) by jeromedalbert
|
416
503
|
|
417
|
-
|
504
|
+
## 3.5.14 / 2024-06-21
|
418
505
|
|
419
|
-
|
506
|
+
### Enhancements:
|
420
507
|
|
421
508
|
* Installs bundler 2.5.14 as a default gem.
|
422
509
|
|
423
|
-
|
510
|
+
### Bug fixes:
|
424
511
|
|
425
512
|
* Make "bundler? update --bundler" behave identically. Pull request
|
426
513
|
[#7778](https://github.com/rubygems/rubygems/pull/7778) by x-yuri
|
427
514
|
|
428
|
-
|
515
|
+
## 3.5.13 / 2024-06-14
|
429
516
|
|
430
|
-
|
517
|
+
### Enhancements:
|
431
518
|
|
432
519
|
* Installs bundler 2.5.13 as a default gem.
|
433
520
|
|
434
|
-
|
521
|
+
### Bug fixes:
|
435
522
|
|
436
523
|
* Never remove executables that may belong to a default gem. Pull request
|
437
524
|
[#7747](https://github.com/rubygems/rubygems/pull/7747) by
|
438
525
|
deivid-rodriguez
|
439
526
|
|
440
|
-
|
527
|
+
## 3.5.12 / 2024-06-13
|
441
528
|
|
442
|
-
|
529
|
+
### Enhancements:
|
443
530
|
|
444
531
|
* Installs bundler 2.5.12 as a default gem.
|
445
532
|
|
446
|
-
|
533
|
+
### Bug fixes:
|
447
534
|
|
448
535
|
* Fix `gem uninstall` unresolved specifications warning. Pull request
|
449
536
|
[#7667](https://github.com/rubygems/rubygems/pull/7667) by
|
@@ -452,9 +539,9 @@
|
|
452
539
|
Pull request [#7664](https://github.com/rubygems/rubygems/pull/7664) by
|
453
540
|
deivid-rodriguez
|
454
541
|
|
455
|
-
|
542
|
+
## 3.5.11 / 2024-05-28
|
456
543
|
|
457
|
-
|
544
|
+
### Enhancements:
|
458
545
|
|
459
546
|
* Update SPDX license list as of 2024-05-22. Pull request
|
460
547
|
[#7689](https://github.com/rubygems/rubygems/pull/7689) by
|
@@ -469,7 +556,7 @@
|
|
469
556
|
deivid-rodriguez
|
470
557
|
* Installs bundler 2.5.11 as a default gem.
|
471
558
|
|
472
|
-
|
559
|
+
### Bug fixes:
|
473
560
|
|
474
561
|
* Fix binstubs sometimes not getting regenerated when `--destdir` is
|
475
562
|
given. Pull request
|
@@ -485,26 +572,26 @@
|
|
485
572
|
* Fix plugins uninstallation for user installed gems. Pull request
|
486
573
|
[#6456](https://github.com/rubygems/rubygems/pull/6456) by voxik
|
487
574
|
|
488
|
-
|
575
|
+
### Performance:
|
489
576
|
|
490
577
|
* Use a constant empty tar header to avoid extra allocations. Pull request
|
491
578
|
[#7484](https://github.com/rubygems/rubygems/pull/7484) by segiddins
|
492
579
|
|
493
|
-
|
580
|
+
### Documentation:
|
494
581
|
|
495
582
|
* Recommend `bin/rake` over `rake` in contributing docs. Pull request
|
496
583
|
[#7648](https://github.com/rubygems/rubygems/pull/7648) by
|
497
584
|
deivid-rodriguez
|
498
585
|
|
499
|
-
|
586
|
+
## 3.5.10 / 2024-05-03
|
500
587
|
|
501
|
-
|
588
|
+
### Security:
|
502
589
|
|
503
590
|
* Add a limit to the size of the metadata and checksums files in a gem
|
504
591
|
package. Pull request
|
505
592
|
[#7568](https://github.com/rubygems/rubygems/pull/7568) by segiddins
|
506
593
|
|
507
|
-
|
594
|
+
### Enhancements:
|
508
595
|
|
509
596
|
* Don't fully require `rubygems` from `rubygems/package` to prevent some
|
510
597
|
circular require warnings when using Bundler. Pull request
|
@@ -512,26 +599,26 @@
|
|
512
599
|
deivid-rodriguez
|
513
600
|
* Installs bundler 2.5.10 as a default gem.
|
514
601
|
|
515
|
-
|
602
|
+
### Bug fixes:
|
516
603
|
|
517
604
|
* Rename credential email to identifier in WebAuthn poller. Pull request
|
518
605
|
[#7623](https://github.com/rubygems/rubygems/pull/7623) by jenshenny
|
519
606
|
|
520
|
-
|
607
|
+
## 3.5.9 / 2024-04-12
|
521
608
|
|
522
|
-
|
609
|
+
### Enhancements:
|
523
610
|
|
524
611
|
* Installs bundler 2.5.9 as a default gem.
|
525
612
|
|
526
|
-
|
613
|
+
## 3.5.8 / 2024-04-11
|
527
614
|
|
528
|
-
|
615
|
+
### Security:
|
529
616
|
|
530
617
|
* Respect global umask when writing regular files. Pull request
|
531
618
|
[#7518](https://github.com/rubygems/rubygems/pull/7518) by
|
532
619
|
deivid-rodriguez
|
533
620
|
|
534
|
-
|
621
|
+
### Enhancements:
|
535
622
|
|
536
623
|
* Allow string keys with gemrc. Pull request
|
537
624
|
[#7543](https://github.com/rubygems/rubygems/pull/7543) by hsbt
|
@@ -539,7 +626,7 @@
|
|
539
626
|
[#4913](https://github.com/rubygems/rubygems/pull/4913) by duckinator
|
540
627
|
* Installs bundler 2.5.8 as a default gem.
|
541
628
|
|
542
|
-
|
629
|
+
### Bug fixes:
|
543
630
|
|
544
631
|
* Fix NoMethodError crash when building errors about corrupt package
|
545
632
|
files. Pull request
|
@@ -549,9 +636,9 @@
|
|
549
636
|
[#7537](https://github.com/rubygems/rubygems/pull/7537) by
|
550
637
|
deivid-rodriguez
|
551
638
|
|
552
|
-
|
639
|
+
## 3.5.7 / 2024-03-22
|
553
640
|
|
554
|
-
|
641
|
+
### Enhancements:
|
555
642
|
|
556
643
|
* Warn on empty or open required_ruby_version specification attribute.
|
557
644
|
Pull request [#5010](https://github.com/rubygems/rubygems/pull/5010) by
|
@@ -564,22 +651,22 @@
|
|
564
651
|
github-actions[bot]
|
565
652
|
* Installs bundler 2.5.7 as a default gem.
|
566
653
|
|
567
|
-
|
654
|
+
### Bug fixes:
|
568
655
|
|
569
656
|
* Allow prerelease activation (even if requirement is not explicit about
|
570
657
|
it) when it's the only possibility. Pull request
|
571
658
|
[#7428](https://github.com/rubygems/rubygems/pull/7428) by kimesf
|
572
659
|
|
573
|
-
|
660
|
+
### Documentation:
|
574
661
|
|
575
662
|
* Fix a typo. Pull request
|
576
663
|
[#7505](https://github.com/rubygems/rubygems/pull/7505) by hsbt
|
577
664
|
* Use https instead of http in documentation links. Pull request
|
578
665
|
[#7481](https://github.com/rubygems/rubygems/pull/7481) by hsbt
|
579
666
|
|
580
|
-
|
667
|
+
## 3.5.6 / 2024-02-06
|
581
668
|
|
582
|
-
|
669
|
+
### Enhancements:
|
583
670
|
|
584
671
|
* Deep copy requirements in `Gem::Specification` and `Gem::Requirement`.
|
585
672
|
Pull request [#7439](https://github.com/rubygems/rubygems/pull/7439) by
|
@@ -596,20 +683,20 @@
|
|
596
683
|
deivid-rodriguez
|
597
684
|
* Installs bundler 2.5.6 as a default gem.
|
598
685
|
|
599
|
-
|
686
|
+
### Bug fixes:
|
600
687
|
|
601
688
|
* Skip to load commented out words. Pull request
|
602
689
|
[#7413](https://github.com/rubygems/rubygems/pull/7413) by hsbt
|
603
690
|
* Fix rake runtime dependency warning for rake based extension. Pull
|
604
691
|
request [#7395](https://github.com/rubygems/rubygems/pull/7395) by ntkme
|
605
692
|
|
606
|
-
|
693
|
+
## 3.5.5 / 2024-01-18
|
607
694
|
|
608
|
-
|
695
|
+
### Enhancements:
|
609
696
|
|
610
697
|
* Installs bundler 2.5.5 as a default gem.
|
611
698
|
|
612
|
-
|
699
|
+
### Bug fixes:
|
613
700
|
|
614
701
|
* Fix `require` activation conflicts when requiring default gems under
|
615
702
|
some situations. Pull request
|
@@ -618,63 +705,63 @@
|
|
618
705
|
* Use cache_home instead of data_home in default_spec_cache_dir. Pull
|
619
706
|
request [#7331](https://github.com/rubygems/rubygems/pull/7331) by mrkn
|
620
707
|
|
621
|
-
|
708
|
+
### Documentation:
|
622
709
|
|
623
710
|
* Use squiggly heredocs in `Gem::Specification#description` documentation,
|
624
711
|
so it doesn't add leading whitespace. Pull request
|
625
712
|
[#7373](https://github.com/rubygems/rubygems/pull/7373) by bravehager
|
626
713
|
|
627
|
-
|
714
|
+
## 3.5.4 / 2024-01-04
|
628
715
|
|
629
|
-
|
716
|
+
### Enhancements:
|
630
717
|
|
631
718
|
* Always avoid "Updating rubygems-update" message. Pull request
|
632
719
|
[#7335](https://github.com/rubygems/rubygems/pull/7335) by
|
633
720
|
deivid-rodriguez
|
634
721
|
* Installs bundler 2.5.4 as a default gem.
|
635
722
|
|
636
|
-
|
723
|
+
### Bug fixes:
|
637
724
|
|
638
725
|
* Make `gem update --system` respect ruby version constraints. Pull
|
639
726
|
request [#7334](https://github.com/rubygems/rubygems/pull/7334) by
|
640
727
|
deivid-rodriguez
|
641
728
|
|
642
|
-
|
729
|
+
## 3.5.3 / 2023-12-22
|
643
730
|
|
644
|
-
|
731
|
+
### Enhancements:
|
645
732
|
|
646
733
|
* Installs bundler 2.5.3 as a default gem.
|
647
734
|
|
648
|
-
|
735
|
+
## 3.5.2 / 2023-12-21
|
649
736
|
|
650
|
-
|
737
|
+
### Enhancements:
|
651
738
|
|
652
739
|
* Support dynamic library loading with extension .so or .o. Pull request
|
653
740
|
[#7241](https://github.com/rubygems/rubygems/pull/7241) by hogelog
|
654
741
|
* Installs bundler 2.5.2 as a default gem.
|
655
742
|
|
656
|
-
|
743
|
+
### Performance:
|
657
744
|
|
658
745
|
* Replace `object_id` comparison with identity Hash. Pull request
|
659
746
|
[#7303](https://github.com/rubygems/rubygems/pull/7303) by amomchilov
|
660
747
|
* Use IO.copy_stream when reading, writing. Pull request
|
661
748
|
[#6958](https://github.com/rubygems/rubygems/pull/6958) by martinemde
|
662
749
|
|
663
|
-
|
750
|
+
## 3.5.1 / 2023-12-15
|
664
751
|
|
665
|
-
|
752
|
+
### Enhancements:
|
666
753
|
|
667
754
|
* Installs bundler 2.5.1 as a default gem.
|
668
755
|
|
669
|
-
|
756
|
+
## 3.5.0 / 2023-12-15
|
670
757
|
|
671
|
-
|
758
|
+
### Security:
|
672
759
|
|
673
760
|
* Replace `Marshal.load` with a fully-checked safe gemspec loader. Pull
|
674
761
|
request [#6896](https://github.com/rubygems/rubygems/pull/6896) by
|
675
762
|
segiddins
|
676
763
|
|
677
|
-
|
764
|
+
### Breaking changes:
|
678
765
|
|
679
766
|
* Drop ruby 2.6 and 2.7 support. Pull request
|
680
767
|
[#7116](https://github.com/rubygems/rubygems/pull/7116) by
|
@@ -686,14 +773,14 @@
|
|
686
773
|
* Deprecated `Gem.datadir` has been removed. Pull request
|
687
774
|
[#6469](https://github.com/rubygems/rubygems/pull/6469) by hsbt
|
688
775
|
|
689
|
-
|
776
|
+
### Deprecations:
|
690
777
|
|
691
778
|
* Deprecate `Gem::Platform.match?`. Pull request
|
692
779
|
[#6783](https://github.com/rubygems/rubygems/pull/6783) by hsbt
|
693
780
|
* Deprecate `Gem::List`. Pull request
|
694
781
|
[#6311](https://github.com/rubygems/rubygems/pull/6311) by segiddins
|
695
782
|
|
696
|
-
|
783
|
+
### Features:
|
697
784
|
|
698
785
|
* The `generate_index` command can now generate compact index files and
|
699
786
|
lives as an external `rubygems-generate_index` gem. Pull request
|
@@ -705,7 +792,7 @@
|
|
705
792
|
that will be turned into bundled gems in the future. Pull request
|
706
793
|
[#6840](https://github.com/rubygems/rubygems/pull/6840) by hsbt
|
707
794
|
|
708
|
-
|
795
|
+
### Performance:
|
709
796
|
|
710
797
|
* Use match? when regexp match data is unused. Pull request
|
711
798
|
[#7263](https://github.com/rubygems/rubygems/pull/7263) by segiddins
|
@@ -714,7 +801,7 @@
|
|
714
801
|
* Optimize allocations in `Gem::Version`. Pull request
|
715
802
|
[#6970](https://github.com/rubygems/rubygems/pull/6970) by segiddins
|
716
803
|
|
717
|
-
|
804
|
+
### Enhancements:
|
718
805
|
|
719
806
|
* Warn for duplicate meta data links when building gems. Pull request
|
720
807
|
[#7213](https://github.com/rubygems/rubygems/pull/7213) by etherbob
|
@@ -750,22 +837,22 @@
|
|
750
837
|
[#6436](https://github.com/rubygems/rubygems/pull/6436) by hsbt
|
751
838
|
* Installs bundler 2.5.0 as a default gem.
|
752
839
|
|
753
|
-
|
840
|
+
### Bug fixes:
|
754
841
|
|
755
842
|
* Fix installing from source with same default bundler version already
|
756
843
|
installed. Pull request
|
757
844
|
[#7244](https://github.com/rubygems/rubygems/pull/7244) by
|
758
845
|
deivid-rodriguez
|
759
846
|
|
760
|
-
|
847
|
+
### Documentation:
|
761
848
|
|
762
849
|
* Improve comment explaining the necessity of `write_default_spec` method.
|
763
850
|
Pull request [#6563](https://github.com/rubygems/rubygems/pull/6563) by
|
764
851
|
voxik
|
765
852
|
|
766
|
-
|
853
|
+
## 3.4.22 / 2023-11-09
|
767
854
|
|
768
|
-
|
855
|
+
### Enhancements:
|
769
856
|
|
770
857
|
* Update SPDX license list as of 2023-10-05. Pull request
|
771
858
|
[#7040](https://github.com/rubygems/rubygems/pull/7040) by
|
@@ -775,7 +862,7 @@
|
|
775
862
|
deivid-rodriguez
|
776
863
|
* Installs bundler 2.4.22 as a default gem.
|
777
864
|
|
778
|
-
|
865
|
+
### Bug fixes:
|
779
866
|
|
780
867
|
* Handle empty array at built-in YAML serializer. Pull request
|
781
868
|
[#7099](https://github.com/rubygems/rubygems/pull/7099) by hsbt
|
@@ -785,20 +872,20 @@
|
|
785
872
|
request [#7063](https://github.com/rubygems/rubygems/pull/7063) by
|
786
873
|
kstevens715
|
787
874
|
|
788
|
-
|
875
|
+
### Performance:
|
789
876
|
|
790
877
|
* Avoid regexp match on every call to `Gem::Platform.local`. Pull request
|
791
878
|
[#7104](https://github.com/rubygems/rubygems/pull/7104) by segiddins
|
792
879
|
|
793
|
-
|
880
|
+
### Documentation:
|
794
881
|
|
795
882
|
* Get `Gem::Specification#extensions_dir` documented. Pull request
|
796
883
|
[#6218](https://github.com/rubygems/rubygems/pull/6218) by
|
797
884
|
deivid-rodriguez
|
798
885
|
|
799
|
-
|
886
|
+
## 3.4.21 / 2023-10-17
|
800
887
|
|
801
|
-
|
888
|
+
### Enhancements:
|
802
889
|
|
803
890
|
* Abort `setup.rb` if Ruby is too old. Pull request
|
804
891
|
[#7011](https://github.com/rubygems/rubygems/pull/7011) by
|
@@ -811,16 +898,16 @@
|
|
811
898
|
request [#6615](https://github.com/rubygems/rubygems/pull/6615) by hsbt
|
812
899
|
* Installs bundler 2.4.21 as a default gem.
|
813
900
|
|
814
|
-
|
901
|
+
### Documentation:
|
815
902
|
|
816
903
|
* Update suggested variable for bindir. Pull request
|
817
904
|
[#7028](https://github.com/rubygems/rubygems/pull/7028) by hsbt
|
818
905
|
* Fix invalid links in documentation. Pull request
|
819
906
|
[#7008](https://github.com/rubygems/rubygems/pull/7008) by simi
|
820
907
|
|
821
|
-
|
908
|
+
## 3.4.20 / 2023-09-27
|
822
909
|
|
823
|
-
|
910
|
+
### Enhancements:
|
824
911
|
|
825
912
|
* Raise `Gem::Package::FormatError` when gem encounters corrupt EOF.
|
826
913
|
Pull request [#6882](https://github.com/rubygems/rubygems/pull/6882)
|
@@ -837,7 +924,7 @@
|
|
837
924
|
[#6310](https://github.com/rubygems/rubygems/pull/6310) by segiddins
|
838
925
|
* Installs bundler 2.4.20 as a default gem.
|
839
926
|
|
840
|
-
|
927
|
+
### Bug fixes:
|
841
928
|
|
842
929
|
* Fixed false positive SymlinkError in symbolic link directory. Pull
|
843
930
|
request [#6947](https://github.com/rubygems/rubygems/pull/6947) by
|
@@ -849,26 +936,26 @@
|
|
849
936
|
Pull request [#6901](https://github.com/rubygems/rubygems/pull/6901) by
|
850
937
|
amatsuda
|
851
938
|
|
852
|
-
|
939
|
+
### Performance:
|
853
940
|
|
854
941
|
* Reduce allocations for stub specifications. Pull request
|
855
942
|
[#6972](https://github.com/rubygems/rubygems/pull/6972) by segiddins
|
856
943
|
|
857
|
-
|
944
|
+
## 3.4.19 / 2023-08-17
|
858
945
|
|
859
|
-
|
946
|
+
### Enhancements:
|
860
947
|
|
861
948
|
* Installs bundler 2.4.19 as a default gem.
|
862
949
|
|
863
|
-
|
950
|
+
### Performance:
|
864
951
|
|
865
952
|
* Speedup building docs when updating rubygems. Pull request
|
866
953
|
[#6864](https://github.com/rubygems/rubygems/pull/6864) by
|
867
954
|
deivid-rodriguez
|
868
955
|
|
869
|
-
|
956
|
+
## 3.4.18 / 2023-08-02
|
870
957
|
|
871
|
-
|
958
|
+
### Enhancements:
|
872
959
|
|
873
960
|
* Add poller to fetch WebAuthn OTP. Pull request
|
874
961
|
[#6774](https://github.com/rubygems/rubygems/pull/6774) by jenshenny
|
@@ -878,83 +965,83 @@
|
|
878
965
|
[#6704](https://github.com/rubygems/rubygems/pull/6704) by hsbt
|
879
966
|
* Installs bundler 2.4.18 as a default gem.
|
880
967
|
|
881
|
-
|
968
|
+
## 3.4.17 / 2023-07-14
|
882
969
|
|
883
|
-
|
970
|
+
### Enhancements:
|
884
971
|
|
885
972
|
* Installs bundler 2.4.17 as a default gem.
|
886
973
|
|
887
|
-
|
974
|
+
### Performance:
|
888
975
|
|
889
976
|
* Avoid unnecessary work for private local gem installation. Pull request
|
890
977
|
[#6810](https://github.com/rubygems/rubygems/pull/6810) by
|
891
978
|
deivid-rodriguez
|
892
979
|
|
893
|
-
|
980
|
+
## 3.4.16 / 2023-07-10
|
894
981
|
|
895
|
-
|
982
|
+
### Enhancements:
|
896
983
|
|
897
984
|
* Installs bundler 2.4.16 as a default gem.
|
898
985
|
|
899
|
-
|
986
|
+
## 3.4.15 / 2023-06-29
|
900
987
|
|
901
|
-
|
988
|
+
### Enhancements:
|
902
989
|
|
903
990
|
* Installs bundler 2.4.15 as a default gem.
|
904
991
|
|
905
|
-
|
992
|
+
### Bug fixes:
|
906
993
|
|
907
994
|
* Autoload shellwords when it's needed. Pull request
|
908
995
|
[#6734](https://github.com/rubygems/rubygems/pull/6734) by ioquatix
|
909
996
|
|
910
|
-
|
997
|
+
### Documentation:
|
911
998
|
|
912
999
|
* Update command to test local gem command changes. Pull request
|
913
1000
|
[#6761](https://github.com/rubygems/rubygems/pull/6761) by jenshenny
|
914
1001
|
|
915
|
-
|
1002
|
+
## 3.4.14 / 2023-06-12
|
916
1003
|
|
917
|
-
|
1004
|
+
### Enhancements:
|
918
1005
|
|
919
1006
|
* Load plugin immediately. Pull request
|
920
1007
|
[#6673](https://github.com/rubygems/rubygems/pull/6673) by kou
|
921
1008
|
* Installs bundler 2.4.14 as a default gem.
|
922
1009
|
|
923
|
-
|
1010
|
+
### Documentation:
|
924
1011
|
|
925
1012
|
* Clarify what the `rubygems-update` gem is for, and link to source code
|
926
1013
|
and guides. Pull request
|
927
1014
|
[#6710](https://github.com/rubygems/rubygems/pull/6710) by davetron5000
|
928
1015
|
|
929
|
-
|
1016
|
+
## 3.4.13 / 2023-05-09
|
930
1017
|
|
931
|
-
|
1018
|
+
### Enhancements:
|
932
1019
|
|
933
1020
|
* Installs bundler 2.4.13 as a default gem.
|
934
1021
|
|
935
|
-
|
1022
|
+
## 3.4.12 / 2023-04-11
|
936
1023
|
|
937
|
-
|
1024
|
+
### Enhancements:
|
938
1025
|
|
939
1026
|
* [Experimental] Add WebAuthn Support to the CLI. Pull request
|
940
1027
|
[#6560](https://github.com/rubygems/rubygems/pull/6560) by jenshenny
|
941
1028
|
* Installs bundler 2.4.12 as a default gem.
|
942
1029
|
|
943
|
-
|
1030
|
+
## 3.4.11 / 2023-04-10
|
944
1031
|
|
945
|
-
|
1032
|
+
### Enhancements:
|
946
1033
|
|
947
1034
|
* Installs bundler 2.4.11 as a default gem.
|
948
1035
|
|
949
|
-
|
1036
|
+
## 3.4.10 / 2023-03-27
|
950
1037
|
|
951
|
-
|
1038
|
+
### Enhancements:
|
952
1039
|
|
953
1040
|
* Installs bundler 2.4.10 as a default gem.
|
954
1041
|
|
955
|
-
|
1042
|
+
## 3.4.9 / 2023-03-20
|
956
1043
|
|
957
|
-
|
1044
|
+
### Enhancements:
|
958
1045
|
|
959
1046
|
* Improve `TarHeader#calculate_checksum` speed and readability. Pull
|
960
1047
|
request [#6476](https://github.com/rubygems/rubygems/pull/6476) by
|
@@ -963,7 +1050,7 @@
|
|
963
1050
|
[#6446](https://github.com/rubygems/rubygems/pull/6446) by hsbt
|
964
1051
|
* Installs bundler 2.4.9 as a default gem.
|
965
1052
|
|
966
|
-
|
1053
|
+
### Bug fixes:
|
967
1054
|
|
968
1055
|
* Fix `$LOAD_PATH` in rake and ext_conf builder. Pull request
|
969
1056
|
[#6490](https://github.com/rubygems/rubygems/pull/6490) by ntkme
|
@@ -971,15 +1058,15 @@
|
|
971
1058
|
[#6481](https://github.com/rubygems/rubygems/pull/6481) by
|
972
1059
|
deivid-rodriguez
|
973
1060
|
|
974
|
-
|
1061
|
+
### Documentation:
|
975
1062
|
|
976
1063
|
* Document our current release policy. Pull request
|
977
1064
|
[#6450](https://github.com/rubygems/rubygems/pull/6450) by
|
978
1065
|
deivid-rodriguez
|
979
1066
|
|
980
|
-
|
1067
|
+
## 3.4.8 / 2023-03-08
|
981
1068
|
|
982
|
-
|
1069
|
+
### Enhancements:
|
983
1070
|
|
984
1071
|
* Add TarReader::Entry#seek to seek within the tar file entry. Pull
|
985
1072
|
request [#6390](https://github.com/rubygems/rubygems/pull/6390) by
|
@@ -994,7 +1081,7 @@
|
|
994
1081
|
[#6309](https://github.com/rubygems/rubygems/pull/6309) by segiddins
|
995
1082
|
* Installs bundler 2.4.8 as a default gem.
|
996
1083
|
|
997
|
-
|
1084
|
+
### Bug fixes:
|
998
1085
|
|
999
1086
|
* Fix installation error of same version of default gems with local
|
1000
1087
|
installation. Pull request
|
@@ -1002,101 +1089,101 @@
|
|
1002
1089
|
* Use proper memoized var name for Gem.state_home. Pull request
|
1003
1090
|
[#6420](https://github.com/rubygems/rubygems/pull/6420) by simi
|
1004
1091
|
|
1005
|
-
|
1092
|
+
### Documentation:
|
1006
1093
|
|
1007
1094
|
* Switch supporting explanations to all Ruby Central. Pull request
|
1008
1095
|
[#6419](https://github.com/rubygems/rubygems/pull/6419) by indirect
|
1009
1096
|
* Update the link to OpenSource.org. Pull request
|
1010
1097
|
[#6392](https://github.com/rubygems/rubygems/pull/6392) by nobu
|
1011
1098
|
|
1012
|
-
|
1099
|
+
## 3.4.7 / 2023-02-15
|
1013
1100
|
|
1014
|
-
|
1101
|
+
### Enhancements:
|
1015
1102
|
|
1016
1103
|
* Warn on self referencing gemspec dependency. Pull request
|
1017
1104
|
[#6335](https://github.com/rubygems/rubygems/pull/6335) by simi
|
1018
1105
|
* Installs bundler 2.4.7 as a default gem.
|
1019
1106
|
|
1020
|
-
|
1107
|
+
### Bug fixes:
|
1021
1108
|
|
1022
1109
|
* Fix inconsistent behavior of zero byte files in archive. Pull request
|
1023
1110
|
[#6329](https://github.com/rubygems/rubygems/pull/6329) by martinemde
|
1024
1111
|
|
1025
|
-
|
1112
|
+
## 3.4.6 / 2023-01-31
|
1026
1113
|
|
1027
|
-
|
1114
|
+
### Enhancements:
|
1028
1115
|
|
1029
1116
|
* Allow `require` decorations be disabled. Pull request
|
1030
1117
|
[#6319](https://github.com/rubygems/rubygems/pull/6319) by
|
1031
1118
|
deivid-rodriguez
|
1032
1119
|
* Installs bundler 2.4.6 as a default gem.
|
1033
1120
|
|
1034
|
-
|
1121
|
+
### Bug fixes:
|
1035
1122
|
|
1036
1123
|
* Include directory in CargoBuilder install path. Pull request
|
1037
1124
|
[#6298](https://github.com/rubygems/rubygems/pull/6298) by matsadler
|
1038
1125
|
|
1039
|
-
|
1126
|
+
### Documentation:
|
1040
1127
|
|
1041
1128
|
* Include links to pull requests in changelog. Pull request
|
1042
1129
|
[#6316](https://github.com/rubygems/rubygems/pull/6316) by
|
1043
1130
|
deivid-rodriguez
|
1044
1131
|
|
1045
|
-
|
1132
|
+
## 3.4.5 / 2023-01-21
|
1046
1133
|
|
1047
|
-
|
1134
|
+
### Enhancements:
|
1048
1135
|
|
1049
1136
|
* Installs bundler 2.4.5 as a default gem.
|
1050
1137
|
|
1051
|
-
|
1138
|
+
## 3.4.4 / 2023-01-16
|
1052
1139
|
|
1053
|
-
|
1140
|
+
### Enhancements:
|
1054
1141
|
|
1055
1142
|
* Installs bundler 2.4.4 as a default gem.
|
1056
1143
|
|
1057
|
-
|
1144
|
+
### Documentation:
|
1058
1145
|
|
1059
1146
|
* Improve documentation about `Kernel` monkeypatches. Pull request [#6217](https://github.com/rubygems/rubygems/pull/6217)
|
1060
1147
|
by nobu
|
1061
1148
|
|
1062
|
-
|
1149
|
+
## 3.4.3 / 2023-01-06
|
1063
1150
|
|
1064
|
-
|
1151
|
+
### Enhancements:
|
1065
1152
|
|
1066
1153
|
* Installs bundler 2.4.3 as a default gem.
|
1067
1154
|
|
1068
|
-
|
1155
|
+
### Documentation:
|
1069
1156
|
|
1070
1157
|
* Fix several typos. Pull request [#6224](https://github.com/rubygems/rubygems/pull/6224) by jdufresne
|
1071
1158
|
|
1072
|
-
|
1159
|
+
## 3.4.2 / 2023-01-01
|
1073
1160
|
|
1074
|
-
|
1161
|
+
### Enhancements:
|
1075
1162
|
|
1076
1163
|
* Add global flag (`-C`) to change execution directory. Pull request [#6180](https://github.com/rubygems/rubygems/pull/6180)
|
1077
1164
|
by gustavothecoder
|
1078
1165
|
* Installs bundler 2.4.2 as a default gem.
|
1079
1166
|
|
1080
|
-
|
1167
|
+
## 3.4.1 / 2022-12-24
|
1081
1168
|
|
1082
|
-
|
1169
|
+
### Enhancements:
|
1083
1170
|
|
1084
1171
|
* Installs bundler 2.4.1 as a default gem.
|
1085
1172
|
|
1086
|
-
|
1173
|
+
## 3.4.0 / 2022-12-24
|
1087
1174
|
|
1088
|
-
|
1175
|
+
### Breaking changes:
|
1089
1176
|
|
1090
1177
|
* Drop support for Ruby 2.3, 2.4, 2.5 and RubyGems 2.5, 2.6, 2.7. Pull
|
1091
1178
|
request [#6107](https://github.com/rubygems/rubygems/pull/6107) by deivid-rodriguez
|
1092
1179
|
* Remove support for deprecated OS. Pull request [#6041](https://github.com/rubygems/rubygems/pull/6041) by peterzhu2118
|
1093
1180
|
|
1094
|
-
|
1181
|
+
### Features:
|
1095
1182
|
|
1096
1183
|
* Add 'call for update' to RubyGems install command. Pull request [#5922](https://github.com/rubygems/rubygems/pull/5922) by
|
1097
1184
|
simi
|
1098
1185
|
|
1099
|
-
|
1186
|
+
### Enhancements:
|
1100
1187
|
|
1101
1188
|
* Add `mswin` support for cargo builder. Pull request [#6167](https://github.com/rubygems/rubygems/pull/6167) by ianks
|
1102
1189
|
* Validate Cargo.lock is present for Rust based extensions. Pull request
|
@@ -1105,23 +1192,23 @@
|
|
1105
1192
|
deivid-rodriguez
|
1106
1193
|
* Installs bundler 2.4.0 as a default gem.
|
1107
1194
|
|
1108
|
-
|
1195
|
+
### Bug fixes:
|
1109
1196
|
|
1110
1197
|
* Fix crash due to `BundlerVersionFinder` not defined. Pull request [#6152](https://github.com/rubygems/rubygems/pull/6152)
|
1111
1198
|
by deivid-rodriguez
|
1112
1199
|
* Don't leave corrupted partial package download around when running out
|
1113
1200
|
of disk space. Pull request [#5681](https://github.com/rubygems/rubygems/pull/5681) by duckinator
|
1114
1201
|
|
1115
|
-
|
1202
|
+
## 3.3.26 / 2022-11-16
|
1116
1203
|
|
1117
|
-
|
1204
|
+
### Enhancements:
|
1118
1205
|
|
1119
1206
|
* Upgrade rb-sys to 0.9.37. Pull request [#6047](https://github.com/rubygems/rubygems/pull/6047) by ianks
|
1120
1207
|
* Installs bundler 2.3.26 as a default gem.
|
1121
1208
|
|
1122
|
-
|
1209
|
+
## 3.3.25 / 2022-11-02
|
1123
1210
|
|
1124
|
-
|
1211
|
+
### Enhancements:
|
1125
1212
|
|
1126
1213
|
* Github source should default to secure protocol. Pull request [#6026](https://github.com/rubygems/rubygems/pull/6026) by
|
1127
1214
|
jasonkarns
|
@@ -1129,21 +1216,21 @@
|
|
1129
1216
|
by enebo
|
1130
1217
|
* Installs bundler 2.3.25 as a default gem.
|
1131
1218
|
|
1132
|
-
|
1219
|
+
## 3.3.24 / 2022-10-17
|
1133
1220
|
|
1134
|
-
|
1221
|
+
### Enhancements:
|
1135
1222
|
|
1136
1223
|
* Installs bundler 2.3.24 as a default gem.
|
1137
1224
|
|
1138
|
-
|
1225
|
+
## 3.3.23 / 2022-10-05
|
1139
1226
|
|
1140
|
-
|
1227
|
+
### Enhancements:
|
1141
1228
|
|
1142
1229
|
* Add better error handling for permanent redirect responses. Pull request
|
1143
1230
|
[#5931](https://github.com/rubygems/rubygems/pull/5931) by jenshenny
|
1144
1231
|
* Installs bundler 2.3.23 as a default gem.
|
1145
1232
|
|
1146
|
-
|
1233
|
+
### Bug fixes:
|
1147
1234
|
|
1148
1235
|
* Fix generic arm platform matching against runtime arm platforms with
|
1149
1236
|
eabi modifiers. Pull request [#5957](https://github.com/rubygems/rubygems/pull/5957) by deivid-rodriguez
|
@@ -1154,30 +1241,30 @@
|
|
1154
1241
|
* Mask the file mode when extracting files. Pull request [#5906](https://github.com/rubygems/rubygems/pull/5906) by
|
1155
1242
|
kddnewton
|
1156
1243
|
|
1157
|
-
|
1244
|
+
## 3.3.22 / 2022-09-07
|
1158
1245
|
|
1159
|
-
|
1246
|
+
### Enhancements:
|
1160
1247
|
|
1161
1248
|
* Support non gnu libc arm-linux-eabi platforms. Pull request [#5889](https://github.com/rubygems/rubygems/pull/5889) by
|
1162
1249
|
ntkme
|
1163
1250
|
* Installs bundler 2.3.22 as a default gem.
|
1164
1251
|
|
1165
|
-
|
1252
|
+
### Bug fixes:
|
1166
1253
|
|
1167
1254
|
* Fix `gem info` with explicit `--version`. Pull request [#5884](https://github.com/rubygems/rubygems/pull/5884) by
|
1168
1255
|
tonyaraujop
|
1169
1256
|
|
1170
|
-
|
1257
|
+
## 3.3.21 / 2022-08-24
|
1171
1258
|
|
1172
|
-
|
1259
|
+
### Enhancements:
|
1173
1260
|
|
1174
1261
|
* Support non gnu libc linux platforms. Pull request [#5852](https://github.com/rubygems/rubygems/pull/5852) by
|
1175
1262
|
deivid-rodriguez
|
1176
1263
|
* Installs bundler 2.3.21 as a default gem.
|
1177
1264
|
|
1178
|
-
|
1265
|
+
## 3.3.20 / 2022-08-10
|
1179
1266
|
|
1180
|
-
|
1267
|
+
### Enhancements:
|
1181
1268
|
|
1182
1269
|
* Include backtrace with crashes by default. Pull request [#5811](https://github.com/rubygems/rubygems/pull/5811) by
|
1183
1270
|
deivid-rodriguez
|
@@ -1187,7 +1274,7 @@
|
|
1187
1274
|
request [#5794](https://github.com/rubygems/rubygems/pull/5794) by deivid-rodriguez
|
1188
1275
|
* Installs bundler 2.3.20 as a default gem.
|
1189
1276
|
|
1190
|
-
|
1277
|
+
### Bug fixes:
|
1191
1278
|
|
1192
1279
|
* Always consider installed specs for resolution, even if prereleases.
|
1193
1280
|
Pull request [#5821](https://github.com/rubygems/rubygems/pull/5821) by deivid-rodriguez
|
@@ -1195,9 +1282,9 @@
|
|
1195
1282
|
correctly. Pull request [#5820](https://github.com/rubygems/rubygems/pull/5820) by deivid-rodriguez
|
1196
1283
|
* Fix platform matching for index specs. Pull request [#5795](https://github.com/rubygems/rubygems/pull/5795) by Ilushkanama
|
1197
1284
|
|
1198
|
-
|
1285
|
+
## 3.3.19 / 2022-07-27
|
1199
1286
|
|
1200
|
-
|
1287
|
+
### Enhancements:
|
1201
1288
|
|
1202
1289
|
* Display mfa warnings on `gem signin`. Pull request [#5590](https://github.com/rubygems/rubygems/pull/5590) by aellispierce
|
1203
1290
|
* Require fileutils more lazily when installing gems. Pull request [#5738](https://github.com/rubygems/rubygems/pull/5738)
|
@@ -1209,19 +1296,19 @@
|
|
1209
1296
|
* Unify loading `Gem::Requirement`. Pull request [#5596](https://github.com/rubygems/rubygems/pull/5596) by deivid-rodriguez
|
1210
1297
|
* Installs bundler 2.3.19 as a default gem.
|
1211
1298
|
|
1212
|
-
|
1299
|
+
### Bug fixes:
|
1213
1300
|
|
1214
1301
|
* Fix `ruby setup.rb` with `--destdir` writing outside of `--destdir`.
|
1215
1302
|
Pull request [#5737](https://github.com/rubygems/rubygems/pull/5737) by deivid-rodriguez
|
1216
1303
|
|
1217
|
-
|
1304
|
+
### Documentation:
|
1218
1305
|
|
1219
1306
|
* Fix wrong information about default RubyGems source. Pull request [#5723](https://github.com/rubygems/rubygems/pull/5723)
|
1220
1307
|
by tnir
|
1221
1308
|
|
1222
|
-
|
1309
|
+
## 3.3.18 / 2022-07-14
|
1223
1310
|
|
1224
|
-
|
1311
|
+
### Enhancements:
|
1225
1312
|
|
1226
1313
|
* Make platform `universal-mingw32` match "x64-mingw-ucrt". Pull request
|
1227
1314
|
[#5655](https://github.com/rubygems/rubygems/pull/5655) by johnnyshields
|
@@ -1229,14 +1316,14 @@
|
|
1229
1316
|
gems. Pull request [#5676](https://github.com/rubygems/rubygems/pull/5676) by brianleshopify
|
1230
1317
|
* Installs bundler 2.3.18 as a default gem.
|
1231
1318
|
|
1232
|
-
|
1319
|
+
### Bug fixes:
|
1233
1320
|
|
1234
1321
|
* Make sure RubyGems prints no warnings when loading plugins. Pull request
|
1235
1322
|
[#5607](https://github.com/rubygems/rubygems/pull/5607) by deivid-rodriguez
|
1236
1323
|
|
1237
|
-
|
1324
|
+
## 3.3.17 / 2022-06-29
|
1238
1325
|
|
1239
|
-
|
1326
|
+
### Enhancements:
|
1240
1327
|
|
1241
1328
|
* Document `gem env` argument aliases and add `gem env user_gemhome` and
|
1242
1329
|
`gem env user_gemdir`. Pull request [#5644](https://github.com/rubygems/rubygems/pull/5644) by deivid-rodriguez
|
@@ -1247,66 +1334,66 @@
|
|
1247
1334
|
* Simplify extension builder. Pull request [#5626](https://github.com/rubygems/rubygems/pull/5626) by deivid-rodriguez
|
1248
1335
|
* Installs bundler 2.3.17 as a default gem.
|
1249
1336
|
|
1250
|
-
|
1337
|
+
### Documentation:
|
1251
1338
|
|
1252
1339
|
* Modify RubyGems issue template to be like the one for Bundler. Pull
|
1253
1340
|
request [#5643](https://github.com/rubygems/rubygems/pull/5643) by deivid-rodriguez
|
1254
1341
|
|
1255
|
-
|
1342
|
+
## 3.3.16 / 2022-06-15
|
1256
1343
|
|
1257
|
-
|
1344
|
+
### Enhancements:
|
1258
1345
|
|
1259
1346
|
* Auto-fix and warn gem packages including a gemspec with `require_paths`
|
1260
1347
|
as an array of arrays. Pull request [#5615](https://github.com/rubygems/rubygems/pull/5615) by deivid-rodriguez
|
1261
1348
|
* Misc cargo builder improvements. Pull request [#5459](https://github.com/rubygems/rubygems/pull/5459) by ianks
|
1262
1349
|
* Installs bundler 2.3.16 as a default gem.
|
1263
1350
|
|
1264
|
-
|
1351
|
+
### Bug fixes:
|
1265
1352
|
|
1266
1353
|
* Fix incorrect password redaction when there's an error in `gem source
|
1267
1354
|
-a`. Pull request [#5623](https://github.com/rubygems/rubygems/pull/5623) by deivid-rodriguez
|
1268
1355
|
* Fix another regression when loading old marshaled specs. Pull request
|
1269
1356
|
[#5610](https://github.com/rubygems/rubygems/pull/5610) by deivid-rodriguez
|
1270
1357
|
|
1271
|
-
|
1358
|
+
## 3.3.15 / 2022-06-01
|
1272
1359
|
|
1273
|
-
|
1360
|
+
### Enhancements:
|
1274
1361
|
|
1275
1362
|
* Support the change of did_you_mean about `Exception#detailed_message`.
|
1276
1363
|
Pull request [#5560](https://github.com/rubygems/rubygems/pull/5560) by mame
|
1277
1364
|
* Installs bundler 2.3.15 as a default gem.
|
1278
1365
|
|
1279
|
-
|
1366
|
+
### Bug fixes:
|
1280
1367
|
|
1281
1368
|
* Fix loading old marshaled specs including `YAML::PrivateType` constant.
|
1282
1369
|
Pull request [#5415](https://github.com/rubygems/rubygems/pull/5415) by deivid-rodriguez
|
1283
1370
|
* Fix rubygems update when non default `--install-dir` is configured. Pull
|
1284
1371
|
request [#5566](https://github.com/rubygems/rubygems/pull/5566) by deivid-rodriguez
|
1285
1372
|
|
1286
|
-
|
1373
|
+
## 3.3.14 / 2022-05-18
|
1287
1374
|
|
1288
|
-
|
1375
|
+
### Enhancements:
|
1289
1376
|
|
1290
1377
|
* Installs bundler 2.3.14 as a default gem.
|
1291
1378
|
|
1292
|
-
|
1379
|
+
## 3.3.13 / 2022-05-04
|
1293
1380
|
|
1294
|
-
|
1381
|
+
### Enhancements:
|
1295
1382
|
|
1296
1383
|
* Installs bundler 2.3.13 as a default gem.
|
1297
1384
|
|
1298
|
-
|
1385
|
+
### Bug fixes:
|
1299
1386
|
|
1300
1387
|
* Fix regression when resolving ruby constraints. Pull request [#5486](https://github.com/rubygems/rubygems/pull/5486) by
|
1301
1388
|
deivid-rodriguez
|
1302
1389
|
|
1303
|
-
|
1390
|
+
### Documentation:
|
1304
1391
|
|
1305
1392
|
* Clarify description of owner-flags. Pull request [#5497](https://github.com/rubygems/rubygems/pull/5497) by kronn
|
1306
1393
|
|
1307
|
-
|
1394
|
+
## 3.3.12 / 2022-04-20
|
1308
1395
|
|
1309
|
-
|
1396
|
+
### Enhancements:
|
1310
1397
|
|
1311
1398
|
* Less error swallowing when installing gems. Pull request [#5475](https://github.com/rubygems/rubygems/pull/5475) by
|
1312
1399
|
deivid-rodriguez
|
@@ -1316,14 +1403,14 @@
|
|
1316
1403
|
deivid-rodriguez
|
1317
1404
|
* Installs bundler 2.3.12 as a default gem.
|
1318
1405
|
|
1319
|
-
|
1406
|
+
### Documentation:
|
1320
1407
|
|
1321
1408
|
* Fix formatting in docs. Pull request [#5470](https://github.com/rubygems/rubygems/pull/5470) by peterzhu2118
|
1322
1409
|
* Fix a typo. Pull request [#5401](https://github.com/rubygems/rubygems/pull/5401) by znz
|
1323
1410
|
|
1324
|
-
|
1411
|
+
## 3.3.11 / 2022-04-07
|
1325
1412
|
|
1326
|
-
|
1413
|
+
### Enhancements:
|
1327
1414
|
|
1328
1415
|
* Enable mfa on specific keys during gem signin. Pull request [#5305](https://github.com/rubygems/rubygems/pull/5305) by
|
1329
1416
|
aellispierce
|
@@ -1331,48 +1418,48 @@
|
|
1331
1418
|
* Add cargo builder for rust extensions. Pull request [#5175](https://github.com/rubygems/rubygems/pull/5175) by ianks
|
1332
1419
|
* Installs bundler 2.3.11 as a default gem.
|
1333
1420
|
|
1334
|
-
|
1421
|
+
### Documentation:
|
1335
1422
|
|
1336
1423
|
* Improve RDoc setup. Pull request [#5398](https://github.com/rubygems/rubygems/pull/5398) by deivid-rodriguez
|
1337
1424
|
|
1338
|
-
|
1425
|
+
## 3.3.10 / 2022-03-23
|
1339
1426
|
|
1340
|
-
|
1427
|
+
### Enhancements:
|
1341
1428
|
|
1342
1429
|
* Installs bundler 2.3.10 as a default gem.
|
1343
1430
|
|
1344
|
-
|
1431
|
+
### Documentation:
|
1345
1432
|
|
1346
1433
|
* Enable `Gem::Package` example in RDoc documentation. Pull request [#5399](https://github.com/rubygems/rubygems/pull/5399)
|
1347
1434
|
by nobu
|
1348
1435
|
* Unhide RDoc documentation from top level `Gem` module. Pull request
|
1349
1436
|
[#5396](https://github.com/rubygems/rubygems/pull/5396) by nobu
|
1350
1437
|
|
1351
|
-
|
1438
|
+
## 3.3.9 / 2022-03-09
|
1352
1439
|
|
1353
|
-
|
1440
|
+
### Enhancements:
|
1354
1441
|
|
1355
1442
|
* Installs bundler 2.3.9 as a default gem.
|
1356
1443
|
|
1357
|
-
|
1444
|
+
## 3.3.8 / 2022-02-23
|
1358
1445
|
|
1359
|
-
|
1446
|
+
### Enhancements:
|
1360
1447
|
|
1361
1448
|
* Installs bundler 2.3.8 as a default gem.
|
1362
1449
|
|
1363
|
-
|
1450
|
+
## 3.3.7 / 2022-02-09
|
1364
1451
|
|
1365
|
-
|
1452
|
+
### Enhancements:
|
1366
1453
|
|
1367
1454
|
* Installs bundler 2.3.7 as a default gem.
|
1368
1455
|
|
1369
|
-
|
1456
|
+
### Documentation:
|
1370
1457
|
|
1371
1458
|
* Fix missing rdoc for `Gem::Version`. Pull request [#5299](https://github.com/rubygems/rubygems/pull/5299) by nevans
|
1372
1459
|
|
1373
|
-
|
1460
|
+
## 3.3.6 / 2022-01-26
|
1374
1461
|
|
1375
|
-
|
1462
|
+
### Enhancements:
|
1376
1463
|
|
1377
1464
|
* Forbid downgrading past the originally shipped version on Ruby 3.1. Pull
|
1378
1465
|
request [#5301](https://github.com/rubygems/rubygems/pull/5301) by deivid-rodriguez
|
@@ -1381,16 +1468,16 @@
|
|
1381
1468
|
* Let `Version#<=>` accept a String. Pull request [#5275](https://github.com/rubygems/rubygems/pull/5275) by amatsuda
|
1382
1469
|
* Installs bundler 2.3.6 as a default gem.
|
1383
1470
|
|
1384
|
-
|
1471
|
+
### Bug fixes:
|
1385
1472
|
|
1386
1473
|
* Avoid `flock` on non Windows systems, since it causing issues on NFS
|
1387
1474
|
file systems. Pull request [#5278](https://github.com/rubygems/rubygems/pull/5278) by deivid-rodriguez
|
1388
1475
|
* Fix `gem update --system` for already installed version of
|
1389
1476
|
`rubygems-update`. Pull request [#5285](https://github.com/rubygems/rubygems/pull/5285) by loadkpi
|
1390
1477
|
|
1391
|
-
|
1478
|
+
## 3.3.5 / 2022-01-12
|
1392
1479
|
|
1393
|
-
|
1480
|
+
### Enhancements:
|
1394
1481
|
|
1395
1482
|
* Don't activate `yaml` gem from RubyGems. Pull request [#5266](https://github.com/rubygems/rubygems/pull/5266) by
|
1396
1483
|
deivid-rodriguez
|
@@ -1398,89 +1485,89 @@
|
|
1398
1485
|
`--[no-]suggestions` flag. Pull request [#5242](https://github.com/rubygems/rubygems/pull/5242) by ximenasandoval
|
1399
1486
|
* Installs bundler 2.3.5 as a default gem.
|
1400
1487
|
|
1401
|
-
|
1488
|
+
### Bug fixes:
|
1402
1489
|
|
1403
1490
|
* Fix `gem install <non-existent-gem> --force` crash. Pull request [#5262](https://github.com/rubygems/rubygems/pull/5262)
|
1404
1491
|
by deivid-rodriguez
|
1405
1492
|
* Fix longstanding `gem install` failure on JRuby. Pull request [#5228](https://github.com/rubygems/rubygems/pull/5228) by
|
1406
1493
|
deivid-rodriguez
|
1407
1494
|
|
1408
|
-
|
1495
|
+
### Documentation:
|
1409
1496
|
|
1410
1497
|
* Markup `Gem::Specification` documentation with RDoc notations. Pull
|
1411
1498
|
request [#5268](https://github.com/rubygems/rubygems/pull/5268) by nobu
|
1412
1499
|
|
1413
|
-
|
1500
|
+
## 3.3.4 / 2021-12-29
|
1414
1501
|
|
1415
|
-
|
1502
|
+
### Enhancements:
|
1416
1503
|
|
1417
1504
|
* Don't redownload `rubygems-update` package if already there. Pull
|
1418
1505
|
request [#5230](https://github.com/rubygems/rubygems/pull/5230) by deivid-rodriguez
|
1419
1506
|
* Installs bundler 2.3.4 as a default gem.
|
1420
1507
|
|
1421
|
-
|
1508
|
+
### Bug fixes:
|
1422
1509
|
|
1423
1510
|
* Fix `gem update --system` crashing when latest version not supported.
|
1424
1511
|
Pull request [#5191](https://github.com/rubygems/rubygems/pull/5191) by deivid-rodriguez
|
1425
1512
|
|
1426
|
-
|
1513
|
+
### Performance:
|
1427
1514
|
|
1428
1515
|
* Make SpecificationPolicy autoload constant. Pull request [#5222](https://github.com/rubygems/rubygems/pull/5222) by pocke
|
1429
1516
|
|
1430
|
-
|
1517
|
+
## 3.3.3 / 2021-12-24
|
1431
1518
|
|
1432
|
-
|
1519
|
+
### Enhancements:
|
1433
1520
|
|
1434
1521
|
* Installs bundler 2.3.3 as a default gem.
|
1435
1522
|
|
1436
|
-
|
1523
|
+
### Bug fixes:
|
1437
1524
|
|
1438
1525
|
* Fix gem installation failing in Solaris due to bad `IO#flock` usage.
|
1439
1526
|
Pull request [#5216](https://github.com/rubygems/rubygems/pull/5216) by mame
|
1440
1527
|
|
1441
|
-
|
1528
|
+
## 3.3.2 / 2021-12-23
|
1442
1529
|
|
1443
|
-
|
1530
|
+
### Enhancements:
|
1444
1531
|
|
1445
1532
|
* Fix deprecations when activating DidYouMean for misspelled command
|
1446
1533
|
suggestions. Pull request [#5211](https://github.com/rubygems/rubygems/pull/5211) by yuki24
|
1447
1534
|
* Installs bundler 2.3.2 as a default gem.
|
1448
1535
|
|
1449
|
-
|
1536
|
+
### Bug fixes:
|
1450
1537
|
|
1451
1538
|
* Fix gemspec truncation. Pull request [#5208](https://github.com/rubygems/rubygems/pull/5208) by deivid-rodriguez
|
1452
1539
|
|
1453
|
-
|
1540
|
+
## 3.3.1 / 2021-12-22
|
1454
1541
|
|
1455
|
-
|
1542
|
+
### Enhancements:
|
1456
1543
|
|
1457
1544
|
* Fix compatibility with OpenSSL 3.0. Pull request [#5196](https://github.com/rubygems/rubygems/pull/5196) by rhenium
|
1458
1545
|
* Remove hard errors when matching major bundler not found. Pull request
|
1459
1546
|
[#5181](https://github.com/rubygems/rubygems/pull/5181) by deivid-rodriguez
|
1460
1547
|
* Installs bundler 2.3.1 as a default gem.
|
1461
1548
|
|
1462
|
-
|
1549
|
+
## 3.3.0 / 2021-12-21
|
1463
1550
|
|
1464
|
-
|
1551
|
+
### Breaking changes:
|
1465
1552
|
|
1466
1553
|
* Removed deprecated `gem server` command. Pull request [#5034](https://github.com/rubygems/rubygems/pull/5034) by hsbt
|
1467
1554
|
* Remove macOS specific gem layout. Pull request [#4833](https://github.com/rubygems/rubygems/pull/4833) by deivid-rodriguez
|
1468
1555
|
* Default `gem update` documentation format is now only `ri`. Pull request
|
1469
1556
|
[#3888](https://github.com/rubygems/rubygems/pull/3888) by hsbt
|
1470
1557
|
|
1471
|
-
|
1558
|
+
### Features:
|
1472
1559
|
|
1473
1560
|
* Give command misspelled suggestions via `did_you_mean` gem. Pull request
|
1474
1561
|
[#3904](https://github.com/rubygems/rubygems/pull/3904) by hsbt
|
1475
1562
|
|
1476
|
-
|
1563
|
+
### Performance:
|
1477
1564
|
|
1478
1565
|
* Avoid some unnecessary stat calls. Pull request [#3887](https://github.com/rubygems/rubygems/pull/3887) by kares
|
1479
1566
|
* Improve spell checking suggestion performance by
|
1480
1567
|
vendoring`DidYouMean::Levenshtein.distance` from `did_you_mean-1.4.0`.
|
1481
1568
|
Pull request [#3856](https://github.com/rubygems/rubygems/pull/3856) by austinpray
|
1482
1569
|
|
1483
|
-
|
1570
|
+
### Enhancements:
|
1484
1571
|
|
1485
1572
|
* Set `BUNDLER_VERSION` when `bundle _<version>_` is passed. Pull request
|
1486
1573
|
[#5180](https://github.com/rubygems/rubygems/pull/5180) by deivid-rodriguez
|
@@ -1489,7 +1576,7 @@
|
|
1489
1576
|
information on errors. Pull request [#4189](https://github.com/rubygems/rubygems/pull/4189) by deivid-rodriguez
|
1490
1577
|
* Installs bundler 2.3.0 as a default gem.
|
1491
1578
|
|
1492
|
-
|
1579
|
+
### Bug fixes:
|
1493
1580
|
|
1494
1581
|
* Fix encoding mismatch issues when writing gem packages. Pull request
|
1495
1582
|
[#5162](https://github.com/rubygems/rubygems/pull/5162) by deivid-rodriguez
|
@@ -1500,13 +1587,13 @@
|
|
1500
1587
|
* Fix upgrade crashing when multiple versions of `fileutils` installed.
|
1501
1588
|
Pull request [#5140](https://github.com/rubygems/rubygems/pull/5140) by deivid-rodriguez
|
1502
1589
|
|
1503
|
-
|
1590
|
+
## 3.2.33 / 2021-12-07
|
1504
1591
|
|
1505
|
-
|
1592
|
+
### Deprecations:
|
1506
1593
|
|
1507
1594
|
* Deprecate typo name. Pull request [#5109](https://github.com/rubygems/rubygems/pull/5109) by nobu
|
1508
1595
|
|
1509
|
-
|
1596
|
+
### Enhancements:
|
1510
1597
|
|
1511
1598
|
* Add login & logout alias for the signin & signout commands. Pull request
|
1512
1599
|
[#5133](https://github.com/rubygems/rubygems/pull/5133) by colby-swandale
|
@@ -1514,21 +1601,21 @@
|
|
1514
1601
|
request [#4408](https://github.com/rubygems/rubygems/pull/4408) by deivid-rodriguez
|
1515
1602
|
* Installs bundler 2.2.33 as a default gem.
|
1516
1603
|
|
1517
|
-
|
1604
|
+
### Bug fixes:
|
1518
1605
|
|
1519
1606
|
* Fix `ruby setup.rb` trying to write outside of `--destdir`. Pull request
|
1520
1607
|
[#5053](https://github.com/rubygems/rubygems/pull/5053) by deivid-rodriguez
|
1521
1608
|
|
1522
|
-
|
1609
|
+
### Documentation:
|
1523
1610
|
|
1524
1611
|
* Move required_ruby_version gemspec attribute to recommended section.
|
1525
1612
|
Pull request [#5130](https://github.com/rubygems/rubygems/pull/5130) by simi
|
1526
1613
|
* Ignore to generate the documentation from vendored libraries. Pull
|
1527
1614
|
request [#5118](https://github.com/rubygems/rubygems/pull/5118) by hsbt
|
1528
1615
|
|
1529
|
-
|
1616
|
+
## 3.2.32 / 2021-11-23
|
1530
1617
|
|
1531
|
-
|
1618
|
+
### Enhancements:
|
1532
1619
|
|
1533
1620
|
* Refactor installer thread safety protections. Pull request [#5050](https://github.com/rubygems/rubygems/pull/5050) by
|
1534
1621
|
deivid-rodriguez
|
@@ -1536,9 +1623,9 @@
|
|
1536
1623
|
deivid-rodriguez
|
1537
1624
|
* Installs bundler 2.2.32 as a default gem.
|
1538
1625
|
|
1539
|
-
|
1626
|
+
## 3.2.31 / 2021-11-08
|
1540
1627
|
|
1541
|
-
|
1628
|
+
### Enhancements:
|
1542
1629
|
|
1543
1630
|
* Don't pass empty `DESTDIR` to `nmake` since it works differently from
|
1544
1631
|
standard `make`. Pull request [#5057](https://github.com/rubygems/rubygems/pull/5057) by hsbt
|
@@ -1550,16 +1637,16 @@
|
|
1550
1637
|
deivid-rodriguez
|
1551
1638
|
* Install bundler 2.2.31 as a default gem.
|
1552
1639
|
|
1553
|
-
|
1640
|
+
### Bug fixes:
|
1554
1641
|
|
1555
1642
|
* Fix `ruby setup.rb` when `--prefix` is passed. Pull request [#5051](https://github.com/rubygems/rubygems/pull/5051) by
|
1556
1643
|
deivid-rodriguez
|
1557
1644
|
* Don't apply `--destdir` twice when running `setup.rb`. Pull request
|
1558
1645
|
[#2768](https://github.com/rubygems/rubygems/pull/2768) by alyssais
|
1559
1646
|
|
1560
|
-
|
1647
|
+
## 3.2.30 / 2021-10-26
|
1561
1648
|
|
1562
|
-
|
1649
|
+
### Enhancements:
|
1563
1650
|
|
1564
1651
|
* Add support to build and sign certificates with multiple key algorithms.
|
1565
1652
|
Pull request [#4991](https://github.com/rubygems/rubygems/pull/4991) by doodzik
|
@@ -1571,32 +1658,32 @@
|
|
1571
1658
|
`Gem::Request.verify_certificate_message`. Pull request [#4975](https://github.com/rubygems/rubygems/pull/4975) by nobu
|
1572
1659
|
* Install bundler 2.2.30 as a default gem.
|
1573
1660
|
|
1574
|
-
|
1661
|
+
### Performance:
|
1575
1662
|
|
1576
1663
|
* Speed up `gem install`, specially under Windows. Pull request [#4960](https://github.com/rubygems/rubygems/pull/4960) by
|
1577
1664
|
deivid-rodriguez
|
1578
1665
|
|
1579
|
-
|
1666
|
+
## 3.2.29 / 2021-10-08
|
1580
1667
|
|
1581
|
-
|
1668
|
+
### Enhancements:
|
1582
1669
|
|
1583
1670
|
* Only disallow FIXME/TODO for first word of gemspec description. Pull
|
1584
1671
|
request [#4937](https://github.com/rubygems/rubygems/pull/4937) by duckinator
|
1585
1672
|
* Install bundler 2.2.29 as a default gem.
|
1586
1673
|
|
1587
|
-
|
1674
|
+
### Bug fixes:
|
1588
1675
|
|
1589
1676
|
* Fix `wordy` method in `SourceFetchProblem` changing the password of
|
1590
1677
|
source. Pull request [#4910](https://github.com/rubygems/rubygems/pull/4910) by Huangxiaodui
|
1591
1678
|
|
1592
|
-
|
1679
|
+
### Performance:
|
1593
1680
|
|
1594
1681
|
* Improve `require` performance, particularly on systems with a lot of
|
1595
1682
|
gems installed. Pull request [#4951](https://github.com/rubygems/rubygems/pull/4951) by pocke
|
1596
1683
|
|
1597
|
-
|
1684
|
+
## 3.2.28 / 2021-09-23
|
1598
1685
|
|
1599
|
-
|
1686
|
+
### Enhancements:
|
1600
1687
|
|
1601
1688
|
* Support MINGW-UCRT. Pull request [#4925](https://github.com/rubygems/rubygems/pull/4925) by hsbt
|
1602
1689
|
* Only check if descriptions *start with* FIXME/TODO. Pull request [#4841](https://github.com/rubygems/rubygems/pull/4841)
|
@@ -1605,14 +1692,14 @@
|
|
1605
1692
|
[#4897](https://github.com/rubygems/rubygems/pull/4897) by deivid-rodriguez
|
1606
1693
|
* Install bundler 2.2.28 as a default gem.
|
1607
1694
|
|
1608
|
-
|
1695
|
+
### Bug fixes:
|
1609
1696
|
|
1610
1697
|
* Fix redacted credentials being sent to gemserver. Pull request [#4919](https://github.com/rubygems/rubygems/pull/4919) by
|
1611
1698
|
jdliss
|
1612
1699
|
|
1613
|
-
|
1700
|
+
## 3.2.27 / 2021-09-03
|
1614
1701
|
|
1615
|
-
|
1702
|
+
### Enhancements:
|
1616
1703
|
|
1617
1704
|
* Redact credentials when printing URI. Pull request [#4868](https://github.com/rubygems/rubygems/pull/4868) by intuxicated
|
1618
1705
|
* Prefer `require_relative` to `require` for internal requires. Pull
|
@@ -1621,9 +1708,9 @@
|
|
1621
1708
|
fetching once we find a valid candidate. Pull request [#4843](https://github.com/rubygems/rubygems/pull/4843) by intuxicated
|
1622
1709
|
* Install bundler 2.2.27 as a default gem.
|
1623
1710
|
|
1624
|
-
|
1711
|
+
## 3.2.26 / 2021-08-17
|
1625
1712
|
|
1626
|
-
|
1713
|
+
### Enhancements:
|
1627
1714
|
|
1628
1715
|
* Enhance the error handling for loading the
|
1629
1716
|
`rubygems/defaults/operating_system` file. Pull request [#4824](https://github.com/rubygems/rubygems/pull/4824) by
|
@@ -1632,14 +1719,14 @@
|
|
1632
1719
|
deivid-rodriguez
|
1633
1720
|
* Install bundler 2.2.26 as a default gem.
|
1634
1721
|
|
1635
|
-
|
1722
|
+
### Bug fixes:
|
1636
1723
|
|
1637
1724
|
* Also load user installed rubygems plugins. Pull request [#4829](https://github.com/rubygems/rubygems/pull/4829) by
|
1638
1725
|
deivid-rodriguez
|
1639
1726
|
|
1640
|
-
|
1727
|
+
## 3.2.25 / 2021-07-30
|
1641
1728
|
|
1642
|
-
|
1729
|
+
### Enhancements:
|
1643
1730
|
|
1644
1731
|
* Don't load the `base64` library since it's not used. Pull request [#4785](https://github.com/rubygems/rubygems/pull/4785)
|
1645
1732
|
by deivid-rodriguez
|
@@ -1650,38 +1737,38 @@
|
|
1650
1737
|
request [#4651](https://github.com/rubygems/rubygems/pull/4651) by nobu
|
1651
1738
|
* Install bundler 2.2.25 as a default gem.
|
1652
1739
|
|
1653
|
-
|
1740
|
+
### Bug fixes:
|
1654
1741
|
|
1655
1742
|
* Add missing `require 'fileutils'` in `Gem::ConfigFile`. Pull request
|
1656
1743
|
[#4768](https://github.com/rubygems/rubygems/pull/4768) by ybiquitous
|
1657
1744
|
|
1658
|
-
|
1745
|
+
## 3.2.24 / 2021-07-15
|
1659
1746
|
|
1660
|
-
|
1747
|
+
### Enhancements:
|
1661
1748
|
|
1662
1749
|
* Install bundler 2.2.24 as a default gem.
|
1663
1750
|
|
1664
|
-
|
1751
|
+
### Bug fixes:
|
1665
1752
|
|
1666
1753
|
* Fix contradictory message about deletion of default gem. Pull request
|
1667
1754
|
[#4739](https://github.com/rubygems/rubygems/pull/4739) by jaredbeck
|
1668
1755
|
|
1669
|
-
|
1756
|
+
### Documentation:
|
1670
1757
|
|
1671
1758
|
* Add a description about `GEM_HOST_OTP_CODE` to help text. Pull request
|
1672
1759
|
[#4742](https://github.com/rubygems/rubygems/pull/4742) by ybiquitous
|
1673
1760
|
|
1674
|
-
|
1761
|
+
## 3.2.23 / 2021-07-09
|
1675
1762
|
|
1676
|
-
|
1763
|
+
### Enhancements:
|
1677
1764
|
|
1678
1765
|
* Rewind IO source to allow working with contents in memory. Pull request
|
1679
1766
|
[#4729](https://github.com/rubygems/rubygems/pull/4729) by drcapulet
|
1680
1767
|
* Install bundler 2.2.23 as a default gem.
|
1681
1768
|
|
1682
|
-
|
1769
|
+
## 3.2.22 / 2021-07-06
|
1683
1770
|
|
1684
|
-
|
1771
|
+
### Enhancements:
|
1685
1772
|
|
1686
1773
|
* Allow setting `--otp` via `GEM_HOST_OTP_CODE`. Pull request [#4697](https://github.com/rubygems/rubygems/pull/4697) by
|
1687
1774
|
CGA1123
|
@@ -1689,9 +1776,9 @@
|
|
1689
1776
|
[#4695](https://github.com/rubygems/rubygems/pull/4695) by rhenium
|
1690
1777
|
* Install bundler 2.2.22 as a default gem.
|
1691
1778
|
|
1692
|
-
|
1779
|
+
## 3.2.21 / 2021-06-23
|
1693
1780
|
|
1694
|
-
|
1781
|
+
### Enhancements:
|
1695
1782
|
|
1696
1783
|
* Fix typo in OpenSSL detection. Pull request [#4679](https://github.com/rubygems/rubygems/pull/4679) by osyoyu
|
1697
1784
|
* Add the most recent licenses from spdx.org. Pull request [#4662](https://github.com/rubygems/rubygems/pull/4662) by nobu
|
@@ -1699,42 +1786,42 @@
|
|
1699
1786
|
truffleruby 21.0 and 21.1. Pull request [#4624](https://github.com/rubygems/rubygems/pull/4624) by deivid-rodriguez
|
1700
1787
|
* Install bundler 2.2.21 as a default gem.
|
1701
1788
|
|
1702
|
-
|
1789
|
+
### Bug fixes:
|
1703
1790
|
|
1704
1791
|
* Create credentials folder when setting API keys if not there yet. Pull
|
1705
1792
|
request [#4665](https://github.com/rubygems/rubygems/pull/4665) by deivid-rodriguez
|
1706
1793
|
|
1707
|
-
|
1794
|
+
## 3.2.20 / 2021-06-11
|
1708
1795
|
|
1709
|
-
|
1796
|
+
### Security fixes:
|
1710
1797
|
|
1711
1798
|
* Verify platform before installing to avoid potential remote code
|
1712
1799
|
execution. Pull request [#4667](https://github.com/rubygems/rubygems/pull/4667) by sonalkr132
|
1713
1800
|
|
1714
|
-
|
1801
|
+
### Enhancements:
|
1715
1802
|
|
1716
1803
|
* Add better specification policy error description. Pull request [#4658](https://github.com/rubygems/rubygems/pull/4658) by
|
1717
1804
|
ceritium
|
1718
1805
|
* Install bundler 2.2.20 as a default gem.
|
1719
1806
|
|
1720
|
-
|
1807
|
+
## 3.2.19 / 2021-05-31
|
1721
1808
|
|
1722
|
-
|
1809
|
+
### Enhancements:
|
1723
1810
|
|
1724
1811
|
* Fix `gem help build` output format. Pull request [#4613](https://github.com/rubygems/rubygems/pull/4613) by tnir
|
1725
1812
|
* Install bundler 2.2.19 as a default gem.
|
1726
1813
|
|
1727
|
-
|
1814
|
+
## 3.2.18 / 2021-05-25
|
1728
1815
|
|
1729
|
-
|
1816
|
+
### Enhancements:
|
1730
1817
|
|
1731
1818
|
* Don't leave temporary directory around when building extensions to
|
1732
1819
|
improve build reproducibility. Pull request [#4610](https://github.com/rubygems/rubygems/pull/4610) by baloo
|
1733
1820
|
* Install bundler 2.2.18 as a default gem.
|
1734
1821
|
|
1735
|
-
|
1822
|
+
## 3.2.17 / 2021-05-05
|
1736
1823
|
|
1737
|
-
|
1824
|
+
### Enhancements:
|
1738
1825
|
|
1739
1826
|
* Only print month & year in deprecation messages. Pull request [#3085](https://github.com/rubygems/rubygems/pull/3085) by
|
1740
1827
|
Schwad
|
@@ -1744,94 +1831,94 @@
|
|
1744
1831
|
* Prefer File.open instead of Kernel#open. Pull request [#4529](https://github.com/rubygems/rubygems/pull/4529) by mame
|
1745
1832
|
* Install bundler 2.2.17 as a default gem.
|
1746
1833
|
|
1747
|
-
|
1834
|
+
### Documentation:
|
1748
1835
|
|
1749
1836
|
* Fix usage messages to reflect the current POSIX-compatible behaviour.
|
1750
1837
|
Pull request [#4551](https://github.com/rubygems/rubygems/pull/4551) by graywolf-at-work
|
1751
1838
|
|
1752
|
-
|
1839
|
+
## 3.2.16 / 2021-04-08
|
1753
1840
|
|
1754
|
-
|
1841
|
+
### Enhancements:
|
1755
1842
|
|
1756
1843
|
* Install bundler 2.2.16 as a default gem.
|
1757
1844
|
|
1758
|
-
|
1845
|
+
### Bug fixes:
|
1759
1846
|
|
1760
1847
|
* Correctly handle symlinks. Pull request [#2836](https://github.com/rubygems/rubygems/pull/2836) by voxik
|
1761
1848
|
|
1762
|
-
|
1849
|
+
## 3.2.15 / 2021-03-19
|
1763
1850
|
|
1764
|
-
|
1851
|
+
### Enhancements:
|
1765
1852
|
|
1766
1853
|
* Prevent downgrades to untested rubygems versions. Pull request [#4460](https://github.com/rubygems/rubygems/pull/4460) by
|
1767
1854
|
deivid-rodriguez
|
1768
1855
|
* Install bundler 2.2.15 as a default gem.
|
1769
1856
|
|
1770
|
-
|
1857
|
+
### Bug fixes:
|
1771
1858
|
|
1772
1859
|
* Fix missing require breaking `gem cert`. Pull request [#4464](https://github.com/rubygems/rubygems/pull/4464) by lukehinds
|
1773
1860
|
|
1774
|
-
|
1861
|
+
## 3.2.14 / 2021-03-08
|
1775
1862
|
|
1776
|
-
|
1863
|
+
### Enhancements:
|
1777
1864
|
|
1778
1865
|
* Less wrapping of network errors. Pull request [#4064](https://github.com/rubygems/rubygems/pull/4064) by deivid-rodriguez
|
1779
1866
|
* Install bundler 2.2.14 as a default gem.
|
1780
1867
|
|
1781
|
-
|
1868
|
+
### Bug fixes:
|
1782
1869
|
|
1783
1870
|
* Revert addition of support for `musl` variants to restore graceful
|
1784
1871
|
fallback on Alpine. Pull request [#4434](https://github.com/rubygems/rubygems/pull/4434) by deivid-rodriguez
|
1785
1872
|
|
1786
|
-
|
1873
|
+
## 3.2.13 / 2021-03-03
|
1787
1874
|
|
1788
|
-
|
1875
|
+
### Enhancements:
|
1789
1876
|
|
1790
1877
|
* Install bundler 2.2.13 as a default gem.
|
1791
1878
|
|
1792
|
-
|
1879
|
+
### Bug fixes:
|
1793
1880
|
|
1794
1881
|
* Support non-gnu libc linux platforms. Pull request [#4082](https://github.com/rubygems/rubygems/pull/4082) by lloeki
|
1795
1882
|
|
1796
|
-
|
1883
|
+
## 3.2.12 / 2021-03-01
|
1797
1884
|
|
1798
|
-
|
1885
|
+
### Enhancements:
|
1799
1886
|
|
1800
1887
|
* Install bundler 2.2.12 as a default gem.
|
1801
1888
|
|
1802
|
-
|
1889
|
+
### Bug fixes:
|
1803
1890
|
|
1804
1891
|
* Restore the ability to manually install extension gems. Pull request
|
1805
1892
|
[#4384](https://github.com/rubygems/rubygems/pull/4384) by cfis
|
1806
1893
|
|
1807
|
-
|
1894
|
+
## 3.2.11 / 2021-02-17
|
1808
1895
|
|
1809
|
-
|
1896
|
+
### Enhancements:
|
1810
1897
|
|
1811
1898
|
* Optionally fallback to IPv4 when IPv6 is unreachable. Pull request [#2662](https://github.com/rubygems/rubygems/pull/2662)
|
1812
1899
|
by sonalkr132
|
1813
1900
|
* Install bundler 2.2.11 as a default gem.
|
1814
1901
|
|
1815
|
-
|
1902
|
+
## 3.2.10 / 2021-02-15
|
1816
1903
|
|
1817
|
-
|
1904
|
+
### Enhancements:
|
1818
1905
|
|
1819
1906
|
* Install bundler 2.2.10 as a default gem.
|
1820
1907
|
|
1821
|
-
|
1908
|
+
### Documentation:
|
1822
1909
|
|
1823
1910
|
* Add a `gem push` example to `gem help`. Pull request [#4373](https://github.com/rubygems/rubygems/pull/4373) by
|
1824
1911
|
deivid-rodriguez
|
1825
1912
|
* Improve documentation for `required_ruby_version`. Pull request [#4343](https://github.com/rubygems/rubygems/pull/4343) by
|
1826
1913
|
AlexWayfer
|
1827
1914
|
|
1828
|
-
|
1915
|
+
## 3.2.9 / 2021-02-08
|
1829
1916
|
|
1830
|
-
|
1917
|
+
### Enhancements:
|
1831
1918
|
|
1832
1919
|
* Install bundler 2.2.9 as a default gem.
|
1833
1920
|
|
1834
|
-
|
1921
|
+
### Bug fixes:
|
1835
1922
|
|
1836
1923
|
* Fix error message when underscore selection can't find bundler. Pull
|
1837
1924
|
request [#4363](https://github.com/rubygems/rubygems/pull/4363) by deivid-rodriguez
|
@@ -1842,59 +1929,59 @@
|
|
1842
1929
|
* Fix `gem outdated` incorrectly handling platform specific gems. Pull
|
1843
1930
|
request [#4248](https://github.com/rubygems/rubygems/pull/4248) by deivid-rodriguez
|
1844
1931
|
|
1845
|
-
|
1932
|
+
## 3.2.8 / 2021-02-02
|
1846
1933
|
|
1847
|
-
|
1934
|
+
### Enhancements:
|
1848
1935
|
|
1849
1936
|
* Install bundler 2.2.8 as a default gem.
|
1850
1937
|
|
1851
|
-
|
1938
|
+
### Bug fixes:
|
1852
1939
|
|
1853
1940
|
* Fix `gem install` crashing on gemspec with nil required_ruby_version.
|
1854
1941
|
Pull request [#4334](https://github.com/rubygems/rubygems/pull/4334) by pbernays
|
1855
1942
|
|
1856
|
-
|
1943
|
+
## 3.2.7 / 2021-01-26
|
1857
1944
|
|
1858
|
-
|
1945
|
+
### Enhancements:
|
1859
1946
|
|
1860
1947
|
* Install bundler 2.2.7 as a default gem.
|
1861
1948
|
|
1862
|
-
|
1949
|
+
### Bug fixes:
|
1863
1950
|
|
1864
1951
|
* Generate plugin wrappers with relative requires. Pull request [#4317](https://github.com/rubygems/rubygems/pull/4317) by
|
1865
1952
|
deivid-rodriguez
|
1866
1953
|
|
1867
|
-
|
1954
|
+
## 3.2.6 / 2021-01-18
|
1868
1955
|
|
1869
|
-
|
1956
|
+
### Enhancements:
|
1870
1957
|
|
1871
1958
|
* Fix `Gem::Platform#inspect` showing duplicate information. Pull request
|
1872
1959
|
[#4276](https://github.com/rubygems/rubygems/pull/4276) by deivid-rodriguez
|
1873
1960
|
* Install bundler 2.2.6 as a default gem.
|
1874
1961
|
|
1875
|
-
|
1962
|
+
### Bug fixes:
|
1876
1963
|
|
1877
1964
|
* Swallow any system call error in `ensure_gem_subdirs` to support jruby
|
1878
1965
|
embedded paths. Pull request [#4291](https://github.com/rubygems/rubygems/pull/4291) by kares
|
1879
1966
|
* Restore accepting custom make command with extra options as the `make`
|
1880
1967
|
env variable. Pull request [#4271](https://github.com/rubygems/rubygems/pull/4271) by terceiro
|
1881
1968
|
|
1882
|
-
|
1969
|
+
## 3.2.5 / 2021-01-11
|
1883
1970
|
|
1884
|
-
|
1971
|
+
### Enhancements:
|
1885
1972
|
|
1886
1973
|
* Install bundler 2.2.5 as a default gem.
|
1887
1974
|
|
1888
|
-
|
1975
|
+
### Bug fixes:
|
1889
1976
|
|
1890
1977
|
* Don't load more specs after the whole set of specs has been setup. Pull
|
1891
1978
|
request [#4262](https://github.com/rubygems/rubygems/pull/4262) by deivid-rodriguez
|
1892
1979
|
* Fix broken `bundler` executable after `gem update --system`. Pull
|
1893
1980
|
request [#4221](https://github.com/rubygems/rubygems/pull/4221) by deivid-rodriguez
|
1894
1981
|
|
1895
|
-
|
1982
|
+
## 3.2.4 / 2020-12-31
|
1896
1983
|
|
1897
|
-
|
1984
|
+
### Enhancements:
|
1898
1985
|
|
1899
1986
|
* Use a CHANGELOG in markdown for rubygems. Pull request [#4168](https://github.com/rubygems/rubygems/pull/4168) by
|
1900
1987
|
deivid-rodriguez
|
@@ -1902,33 +1989,33 @@
|
|
1902
1989
|
deivid-rodriguez
|
1903
1990
|
* Install bundler 2.2.4 as a default gem.
|
1904
1991
|
|
1905
|
-
|
1992
|
+
### Bug fixes:
|
1906
1993
|
|
1907
1994
|
* Fix fallback to the old index and installation from it not working. Pull
|
1908
1995
|
request [#4213](https://github.com/rubygems/rubygems/pull/4213) by deivid-rodriguez
|
1909
1996
|
* Fix installing from source on truffleruby. Pull request [#4201](https://github.com/rubygems/rubygems/pull/4201) by
|
1910
1997
|
deivid-rodriguez
|
1911
1998
|
|
1912
|
-
|
1999
|
+
## 3.2.3 / 2020-12-22
|
1913
2000
|
|
1914
|
-
|
2001
|
+
### Enhancements:
|
1915
2002
|
|
1916
2003
|
* Fix misspellings in default API key name. Pull request [#4177](https://github.com/rubygems/rubygems/pull/4177) by hsbt
|
1917
2004
|
* Install bundler 2.2.3 as a default gem.
|
1918
2005
|
|
1919
|
-
|
2006
|
+
### Bug fixes:
|
1920
2007
|
|
1921
2008
|
* Respect `required_ruby_version` and `required_rubygems_version`
|
1922
2009
|
constraints when looking for `gem install` candidates. Pull request [#4110](https://github.com/rubygems/rubygems/pull/4110)
|
1923
2010
|
by deivid-rodriguez
|
1924
2011
|
|
1925
|
-
|
2012
|
+
## 3.2.2 / 2020-12-17
|
1926
2013
|
|
1927
|
-
|
2014
|
+
### Enhancements:
|
1928
2015
|
|
1929
2016
|
* Install bundler 2.2.2 as a default gem.
|
1930
2017
|
|
1931
|
-
|
2018
|
+
### Bug fixes:
|
1932
2019
|
|
1933
2020
|
* Fix issue where CLI commands making more than one request to
|
1934
2021
|
rubygems.org needing an OTP code would crash or ask for the code twice.
|
@@ -1938,24 +2025,24 @@
|
|
1938
2025
|
* Fix `gem update --system` displaying too many changelog entries. Pull
|
1939
2026
|
request [#4145](https://github.com/rubygems/rubygems/pull/4145) by deivid-rodriguez
|
1940
2027
|
|
1941
|
-
|
2028
|
+
## 3.2.1 / 2020-12-14
|
1942
2029
|
|
1943
|
-
|
2030
|
+
### Enhancements:
|
1944
2031
|
|
1945
2032
|
* Added help message for gem i webrick in gem server command. Pull request
|
1946
2033
|
[#4117](https://github.com/rubygems/rubygems/pull/4117) by hsbt
|
1947
2034
|
* Install bundler 2.2.1 as a default gem.
|
1948
2035
|
|
1949
|
-
|
2036
|
+
### Bug fixes:
|
1950
2037
|
|
1951
2038
|
* Added the missing loading of fileutils same as load_specs. Pull request
|
1952
2039
|
[#4124](https://github.com/rubygems/rubygems/pull/4124) by hsbt
|
1953
2040
|
* Fix Resolver::APISet to always include prereleases when necessary. Pull
|
1954
2041
|
request [#4113](https://github.com/rubygems/rubygems/pull/4113) by deivid-rodriguez
|
1955
2042
|
|
1956
|
-
|
2043
|
+
## 3.2.0 / 2020-12-07
|
1957
2044
|
|
1958
|
-
|
2045
|
+
### Enhancements:
|
1959
2046
|
|
1960
2047
|
* Do not override Kernel#warn when there is no need. Pull request [#4075](https://github.com/rubygems/rubygems/pull/4075) by
|
1961
2048
|
eregon
|
@@ -1975,7 +2062,7 @@
|
|
1975
2062
|
eregon
|
1976
2063
|
* Install bundler 2.2.0 as a default gem.
|
1977
2064
|
|
1978
|
-
|
2065
|
+
### Bug fixes:
|
1979
2066
|
|
1980
2067
|
* Use better owner & group for files in rubygems package. Pull request
|
1981
2068
|
[#4065](https://github.com/rubygems/rubygems/pull/4065) by deivid-rodriguez
|
@@ -2001,18 +2088,18 @@
|
|
2001
2088
|
* Make `--default` and `--install-dir` options to `gem install` play nice
|
2002
2089
|
together. Pull request [#3906](https://github.com/rubygems/rubygems/pull/3906) by deivid-rodriguez
|
2003
2090
|
|
2004
|
-
|
2091
|
+
### Deprecations:
|
2005
2092
|
|
2006
2093
|
* Deprecate server command. Pull request [#3868](https://github.com/rubygems/rubygems/pull/3868) by bronzdoc
|
2007
2094
|
|
2008
|
-
|
2095
|
+
### Performance:
|
2009
2096
|
|
2010
2097
|
* Don't change ruby process CWD when building extensions. Pull request
|
2011
2098
|
[#3498](https://github.com/rubygems/rubygems/pull/3498) by deivid-rodriguez
|
2012
2099
|
|
2013
|
-
|
2100
|
+
## 3.2.0.rc.2 / 2020-10-08
|
2014
2101
|
|
2015
|
-
|
2102
|
+
### Enhancements:
|
2016
2103
|
|
2017
2104
|
* Make --dry-run flag consistent across rubygems commands. Pull request
|
2018
2105
|
[#3867](https://github.com/rubygems/rubygems/pull/3867) by bronzdoc
|
@@ -2029,7 +2116,7 @@
|
|
2029
2116
|
* Ignore internal frames in RubyGems' Kernel#warn. Pull request [#3810](https://github.com/rubygems/rubygems/pull/3810) by
|
2030
2117
|
eregon
|
2031
2118
|
|
2032
|
-
|
2119
|
+
### Bug fixes:
|
2033
2120
|
|
2034
2121
|
* Add missing fileutils require. Pull request [#3911](https://github.com/rubygems/rubygems/pull/3911) by deivid-rodriguez
|
2035
2122
|
* Fix false positive warning on Windows when PATH has
|
@@ -2041,7 +2128,7 @@
|
|
2041
2128
|
* `gem install --user` fails with `Gem::FilePermissionError` on the system
|
2042
2129
|
plugins directory. Pull request [#3804](https://github.com/rubygems/rubygems/pull/3804) by nobu
|
2043
2130
|
|
2044
|
-
|
2131
|
+
### Performance:
|
2045
2132
|
|
2046
2133
|
* Avoid duplicated generation of APISpecification objects. Pull request
|
2047
2134
|
[#3940](https://github.com/rubygems/rubygems/pull/3940) by mame
|
@@ -2051,9 +2138,9 @@
|
|
2051
2138
|
casperisfine
|
2052
2139
|
* Optimize Gem.already_loaded?. Pull request [#3793](https://github.com/rubygems/rubygems/pull/3793) by casperisfine
|
2053
2140
|
|
2054
|
-
|
2141
|
+
## 3.2.0.rc.1 / 2020-07-04
|
2055
2142
|
|
2056
|
-
|
2143
|
+
### Enhancements:
|
2057
2144
|
|
2058
2145
|
* Test TruffleRuby in CI. Pull request [#2797](https://github.com/rubygems/rubygems/pull/2797) by Benoit Daloze.
|
2059
2146
|
* Rework plugins system and speed up rubygems. Pull request [#3108](https://github.com/rubygems/rubygems/pull/3108) by David
|
@@ -2100,7 +2187,7 @@
|
|
2100
2187
|
* Only rescue the errors we actually want to rescue. Pull request [#3156](https://github.com/rubygems/rubygems/pull/3156) by
|
2101
2188
|
David Rodríguez.
|
2102
2189
|
|
2103
|
-
|
2190
|
+
### Bug fixes:
|
2104
2191
|
|
2105
2192
|
* Accept not only /usr/bin/env but also /bin/env in some tests. Pull
|
2106
2193
|
request [#3422](https://github.com/rubygems/rubygems/pull/3422) by Yusuke Endoh.
|
@@ -2122,12 +2209,12 @@
|
|
2122
2209
|
* Fix `ruby setup.rb` for new plugins layout. Pull request [#3144](https://github.com/rubygems/rubygems/pull/3144) by David
|
2123
2210
|
Rodríguez.
|
2124
2211
|
|
2125
|
-
|
2212
|
+
### Deprecations:
|
2126
2213
|
|
2127
2214
|
* Set deprecation warning on query command. Pull request [#2967](https://github.com/rubygems/rubygems/pull/2967) by Luis
|
2128
2215
|
Sagastume.
|
2129
2216
|
|
2130
|
-
|
2217
|
+
### Breaking changes:
|
2131
2218
|
|
2132
2219
|
* Remove ruby 1.8 leftovers. Pull request [#3442](https://github.com/rubygems/rubygems/pull/3442) by David Rodríguez.
|
2133
2220
|
* Minitest cleanup. Pull request [#3445](https://github.com/rubygems/rubygems/pull/3445) by David Rodríguez.
|
@@ -2154,9 +2241,9 @@
|
|
2154
2241
|
* Requiring rubygems/source_specific_file is deprecated, remove it. Pull
|
2155
2242
|
request [#3114](https://github.com/rubygems/rubygems/pull/3114) by Luis Sagastume.
|
2156
2243
|
|
2157
|
-
|
2244
|
+
## 3.1.4 / 2020-06-03
|
2158
2245
|
|
2159
|
-
|
2246
|
+
### Enhancements:
|
2160
2247
|
|
2161
2248
|
* Deprecate rubyforge_project attribute only during build
|
2162
2249
|
time. Pull request [#3609](https://github.com/rubygems/rubygems/pull/3609) by Josef Šimánek.
|
@@ -2165,9 +2252,9 @@
|
|
2165
2252
|
* Remove failing ubuntu-rvm CI flow. Pull request [#3611](https://github.com/rubygems/rubygems/pull/3611) by
|
2166
2253
|
Josef Šimánek.
|
2167
2254
|
|
2168
|
-
|
2255
|
+
## 3.1.3 / 2020-05-05
|
2169
2256
|
|
2170
|
-
|
2257
|
+
### Enhancements:
|
2171
2258
|
|
2172
2259
|
* Resolver: require NameTuple before use. Pull request [#3171](https://github.com/rubygems/rubygems/pull/3171) by Olle
|
2173
2260
|
Jonsson.
|
@@ -2178,7 +2265,7 @@
|
|
2178
2265
|
* Add tests to check if Gem.ruby_version works with ruby git master.
|
2179
2266
|
Pull request [#3049](https://github.com/rubygems/rubygems/pull/3049) by Yusuke Endoh.
|
2180
2267
|
|
2181
|
-
|
2268
|
+
### Bug fixes:
|
2182
2269
|
|
2183
2270
|
* Fix platform comparison check in #contains_requirable_file?. Pull
|
2184
2271
|
request [#3495](https://github.com/rubygems/rubygems/pull/3495) by Benoit Daloze.
|
@@ -2190,9 +2277,9 @@
|
|
2190
2277
|
* Fix gem install from a gemdeps file with complex dependencies.
|
2191
2278
|
Pull request [#3054](https://github.com/rubygems/rubygems/pull/3054) by Luis Sagastume.
|
2192
2279
|
|
2193
|
-
|
2280
|
+
## 3.1.2 / 2019-12-20
|
2194
2281
|
|
2195
|
-
|
2282
|
+
### Enhancements:
|
2196
2283
|
|
2197
2284
|
* Restore non prompting `gem update --system` behavior. Pull request [#3040](https://github.com/rubygems/rubygems/pull/3040)
|
2198
2285
|
by David Rodríguez.
|
@@ -2202,24 +2289,24 @@
|
|
2202
2289
|
Pull request [#3042](https://github.com/rubygems/rubygems/pull/3042) by David Rodríguez.
|
2203
2290
|
* Use Bundler 2.1.2. Pull request [#3043](https://github.com/rubygems/rubygems/pull/3043) by SHIBATA Hiroshi.
|
2204
2291
|
|
2205
|
-
|
2292
|
+
### Bug fixes:
|
2206
2293
|
|
2207
2294
|
* Require `uri` in source.rb. Pull request [#3034](https://github.com/rubygems/rubygems/pull/3034) by mihaibuzgau.
|
2208
2295
|
* Fix `gem update --system --force`. Pull request [#3035](https://github.com/rubygems/rubygems/pull/3035) by David
|
2209
2296
|
Rodríguez.
|
2210
2297
|
* Move `require uri` to source_list. Pull request [#3038](https://github.com/rubygems/rubygems/pull/3038) by mihaibuzgau.
|
2211
2298
|
|
2212
|
-
|
2299
|
+
## 3.1.1 / 2019-12-16
|
2213
2300
|
|
2214
|
-
|
2301
|
+
### Bug fixes:
|
2215
2302
|
|
2216
2303
|
* Vendor Bundler 2.1.0 again. The version of Bundler with
|
2217
2304
|
RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request [#3029](https://github.com/rubygems/rubygems/pull/3029) by
|
2218
2305
|
SHIBATA Hiroshi.
|
2219
2306
|
|
2220
|
-
|
2307
|
+
## 3.1.0 / 2019-12-16
|
2221
2308
|
|
2222
|
-
|
2309
|
+
### Enhancements:
|
2223
2310
|
|
2224
2311
|
* Vendor bundler 2.1. Pull request [#3028](https://github.com/rubygems/rubygems/pull/3028) by David Rodríguez.
|
2225
2312
|
* Check for rubygems.org typo squatting sources. Pull request [#2999](https://github.com/rubygems/rubygems/pull/2999) by
|
@@ -2233,25 +2320,25 @@
|
|
2233
2320
|
* Use bundler to manage development dependencies. Pull request [#3012](https://github.com/rubygems/rubygems/pull/3012) by
|
2234
2321
|
David Rodríguez.
|
2235
2322
|
|
2236
|
-
|
2323
|
+
### Bug fixes:
|
2237
2324
|
|
2238
2325
|
* Remove unnecessary executable flags. Pull request [#2982](https://github.com/rubygems/rubygems/pull/2982) by David
|
2239
2326
|
Rodríguez.
|
2240
2327
|
* Remove configuration that contained a typo. Pull request [#2989](https://github.com/rubygems/rubygems/pull/2989) by David
|
2241
2328
|
Rodríguez.
|
2242
2329
|
|
2243
|
-
|
2330
|
+
### Deprecations:
|
2244
2331
|
|
2245
2332
|
* Deprecate `gem generate_index --modern` and `gem generate_index
|
2246
2333
|
--no-modern`. Pull request [#2992](https://github.com/rubygems/rubygems/pull/2992) by David Rodríguez.
|
2247
2334
|
|
2248
|
-
|
2335
|
+
### Breaking changes:
|
2249
2336
|
|
2250
2337
|
* Remove 1.8.7 leftovers. Pull request [#2972](https://github.com/rubygems/rubygems/pull/2972) by David Rodríguez.
|
2251
2338
|
|
2252
|
-
|
2339
|
+
## 3.1.0.pre3 / 2019-11-11
|
2253
2340
|
|
2254
|
-
|
2341
|
+
### Enhancements:
|
2255
2342
|
|
2256
2343
|
* Fix gem pristine not accounting for user installed gems. Pull request
|
2257
2344
|
[#2914](https://github.com/rubygems/rubygems/pull/2914) by Luis Sagastume.
|
@@ -2270,18 +2357,18 @@
|
|
2270
2357
|
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
2271
2358
|
[#2985](https://github.com/rubygems/rubygems/pull/2985) by MSP-Greg.
|
2272
2359
|
|
2273
|
-
|
2360
|
+
## 3.1.0.pre2 / 2019-10-15
|
2274
2361
|
|
2275
|
-
|
2362
|
+
### Enhancements:
|
2276
2363
|
|
2277
2364
|
* Optimize Gem::Package::TarReader#each. Pull request [#2941](https://github.com/rubygems/rubygems/pull/2941) by Jean byroot
|
2278
2365
|
Boussier.
|
2279
2366
|
* Time comparison around date boundary. Pull request [#2944](https://github.com/rubygems/rubygems/pull/2944) by Nobuyoshi
|
2280
2367
|
Nakada.
|
2281
2368
|
|
2282
|
-
|
2369
|
+
## 3.1.0.pre1 / 2019-10-08
|
2283
2370
|
|
2284
|
-
|
2371
|
+
### Enhancements:
|
2285
2372
|
|
2286
2373
|
* Try to use bundler-2.1.0.pre.2. Pull request [#2923](https://github.com/rubygems/rubygems/pull/2923) by SHIBATA Hiroshi.
|
2287
2374
|
* [Require] Ensure -I beats a default gem. Pull request [#1868](https://github.com/rubygems/rubygems/pull/1868) by Samuel
|
@@ -2411,7 +2498,7 @@
|
|
2411
2498
|
Berger.
|
2412
2499
|
* Remove useless TODO comment. Pull request [#2818](https://github.com/rubygems/rubygems/pull/2818) by Luis Sagastume.
|
2413
2500
|
|
2414
|
-
|
2501
|
+
### Bug fixes:
|
2415
2502
|
|
2416
2503
|
* Fix typos in History.txt. Pull request [#2565](https://github.com/rubygems/rubygems/pull/2565) by Igor Zubkov.
|
2417
2504
|
* Remove unused empty sources array. Pull request [#2598](https://github.com/rubygems/rubygems/pull/2598) by Aaron
|
@@ -2444,7 +2531,7 @@
|
|
2444
2531
|
* Fix cryptic error on local and ignore-dependencies combination. Pull
|
2445
2532
|
request [#2650](https://github.com/rubygems/rubygems/pull/2650) by David Rodríguez.
|
2446
2533
|
|
2447
|
-
|
2534
|
+
### Deprecations:
|
2448
2535
|
|
2449
2536
|
* Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
|
2450
2537
|
[#2857](https://github.com/rubygems/rubygems/pull/2857) by SHIBATA Hiroshi.
|
@@ -2458,7 +2545,7 @@
|
|
2458
2545
|
* Add deprecation warnings for cli options. Pull request [#2607](https://github.com/rubygems/rubygems/pull/2607) by Luis
|
2459
2546
|
Sagastume.
|
2460
2547
|
|
2461
|
-
|
2548
|
+
### Breaking changes:
|
2462
2549
|
|
2463
2550
|
* Suppress keywords warning. Pull request [#2934](https://github.com/rubygems/rubygems/pull/2934) by Nobuyoshi Nakada.
|
2464
2551
|
* Suppress Ruby 2.7's real kwargs warning. Pull request [#2912](https://github.com/rubygems/rubygems/pull/2912) by Koichi
|
@@ -2481,16 +2568,16 @@
|
|
2481
2568
|
[#2685](https://github.com/rubygems/rubygems/pull/2685) by SHIBATA Hiroshi.
|
2482
2569
|
* Removing yaml require. Pull request [#2538](https://github.com/rubygems/rubygems/pull/2538) by Luciano Sousa.
|
2483
2570
|
|
2484
|
-
|
2571
|
+
## 3.0.8 / 2020-02-19
|
2485
2572
|
|
2486
|
-
|
2573
|
+
### Bug fixes:
|
2487
2574
|
|
2488
2575
|
* Gem::Specification#to_ruby needs OpenSSL. Pull request [#2937](https://github.com/rubygems/rubygems/pull/2937) by
|
2489
2576
|
Nobuyoshi Nakada.
|
2490
2577
|
|
2491
|
-
|
2578
|
+
## 3.0.7 / 2020-02-18
|
2492
2579
|
|
2493
|
-
|
2580
|
+
### Bug fixes:
|
2494
2581
|
|
2495
2582
|
* Fix underscore version selection for bundler #2908 by David Rodríguez.
|
2496
2583
|
* Add missing wrapper. Pull request [#2690](https://github.com/rubygems/rubygems/pull/2690) by David Rodríguez.
|
@@ -2500,15 +2587,15 @@
|
|
2500
2587
|
* Use IAM role to extract security-credentials for EC2 instance. Pull
|
2501
2588
|
request [#2894](https://github.com/rubygems/rubygems/pull/2894) by Alexander Pakulov.
|
2502
2589
|
|
2503
|
-
|
2590
|
+
## 3.0.6 / 2019-08-17
|
2504
2591
|
|
2505
|
-
|
2592
|
+
### Bug fixes:
|
2506
2593
|
|
2507
2594
|
* Revert #2813. It broke the compatibility with 3.0.x versions.
|
2508
2595
|
|
2509
|
-
|
2596
|
+
## 3.0.5 / 2019-08-16
|
2510
2597
|
|
2511
|
-
|
2598
|
+
### Enhancements:
|
2512
2599
|
|
2513
2600
|
* Use env var to configure api key on push. Pull request [#2559](https://github.com/rubygems/rubygems/pull/2559) by Luis
|
2514
2601
|
Sagastume.
|
@@ -2543,7 +2630,7 @@
|
|
2543
2630
|
by Alexander Pakulov.
|
2544
2631
|
* Fixup #2844. Pull request [#2878](https://github.com/rubygems/rubygems/pull/2878) by SHIBATA Hiroshi.
|
2545
2632
|
|
2546
|
-
|
2633
|
+
### Bug fixes:
|
2547
2634
|
|
2548
2635
|
* Fix intermittent test error on Appveyor & Travis. Pull request [#2568](https://github.com/rubygems/rubygems/pull/2568) by
|
2549
2636
|
MSP-Greg.
|
@@ -2559,9 +2646,9 @@
|
|
2559
2646
|
* Ignore GEMRC variable for test suite. Pull request [#2837](https://github.com/rubygems/rubygems/pull/2837) by SHIBATA
|
2560
2647
|
Hiroshi.
|
2561
2648
|
|
2562
|
-
|
2649
|
+
## 3.0.4 / 2019-06-14
|
2563
2650
|
|
2564
|
-
|
2651
|
+
### Enhancements:
|
2565
2652
|
|
2566
2653
|
* Add support for TruffleRuby #2612 by Benoit Daloze
|
2567
2654
|
* Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
|
@@ -2598,7 +2685,7 @@
|
|
2598
2685
|
request [#2777](https://github.com/rubygems/rubygems/pull/2777) by Yusuke Endoh.
|
2599
2686
|
* Backport ruby core changes. Pull request [#2778](https://github.com/rubygems/rubygems/pull/2778) by SHIBATA Hiroshi.
|
2600
2687
|
|
2601
|
-
|
2688
|
+
### Bug fixes:
|
2602
2689
|
|
2603
2690
|
* Test_gem.rb - intermittent failure fix. Pull request [#2613](https://github.com/rubygems/rubygems/pull/2613) by MSP-Greg.
|
2604
2691
|
* Fix sporadic CI failures. Pull request [#2617](https://github.com/rubygems/rubygems/pull/2617) by David Rodríguez.
|
@@ -2614,7 +2701,7 @@
|
|
2614
2701
|
[#2732](https://github.com/rubygems/rubygems/pull/2732) by Alex Junger.
|
2615
2702
|
* Fix TODOs. Pull request [#2748](https://github.com/rubygems/rubygems/pull/2748) by David Rodríguez.
|
2616
2703
|
|
2617
|
-
|
2704
|
+
## 3.0.3 / 2019-03-05
|
2618
2705
|
|
2619
2706
|
Security fixes:
|
2620
2707
|
|
@@ -2625,14 +2712,14 @@ Security fixes:
|
|
2625
2712
|
* CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
|
2626
2713
|
* CVE-2019-8325: Escape sequence injection vulnerability in errors
|
2627
2714
|
|
2628
|
-
|
2715
|
+
## 3.0.2 / 2019-01-01
|
2629
2716
|
|
2630
|
-
|
2717
|
+
### Enhancements:
|
2631
2718
|
|
2632
2719
|
* Use Bundler-1.17.3. Pull request [#2556](https://github.com/rubygems/rubygems/pull/2556) by SHIBATA Hiroshi.
|
2633
2720
|
* Fix document flag description. Pull request [#2555](https://github.com/rubygems/rubygems/pull/2555) by Luis Sagastume.
|
2634
2721
|
|
2635
|
-
|
2722
|
+
### Bug fixes:
|
2636
2723
|
|
2637
2724
|
* Fix tests when ruby --program-suffix is used without rubygems
|
2638
2725
|
--format-executable. Pull request [#2549](https://github.com/rubygems/rubygems/pull/2549) by Jeremy Evans.
|
@@ -2642,9 +2729,9 @@ Security fixes:
|
|
2642
2729
|
Fukumori.
|
2643
2730
|
* Restore SOURCE_DATE_EPOCH. Pull request [#2560](https://github.com/rubygems/rubygems/pull/2560) by SHIBATA Hiroshi.
|
2644
2731
|
|
2645
|
-
|
2732
|
+
## 3.0.1 / 2018-12-23
|
2646
2733
|
|
2647
|
-
|
2734
|
+
### Bug fixes:
|
2648
2735
|
|
2649
2736
|
* Ensure globbed files paths are expanded. Pull request [#2536](https://github.com/rubygems/rubygems/pull/2536) by Tony Ta.
|
2650
2737
|
* Dup the Dir.home string before passing it on. Pull request [#2545](https://github.com/rubygems/rubygems/pull/2545) by
|
@@ -2653,9 +2740,9 @@ Security fixes:
|
|
2653
2740
|
by SHIBATA Hiroshi.
|
2654
2741
|
* Restore release task without hoe. Pull request [#2547](https://github.com/rubygems/rubygems/pull/2547) by SHIBATA Hiroshi.
|
2655
2742
|
|
2656
|
-
|
2743
|
+
## 3.0.0 / 2018-12-19
|
2657
2744
|
|
2658
|
-
|
2745
|
+
### Enhancements:
|
2659
2746
|
|
2660
2747
|
* S3 source. Pull request [#1690](https://github.com/rubygems/rubygems/pull/1690) by Aditya Prakash.
|
2661
2748
|
* Download gems with threads. Pull request [#1898](https://github.com/rubygems/rubygems/pull/1898) by André Arko.
|
@@ -2820,7 +2907,7 @@ Security fixes:
|
|
2820
2907
|
* Support the environment without OpenSSL. Pull request [#2528](https://github.com/rubygems/rubygems/pull/2528) by SHIBATA
|
2821
2908
|
Hiroshi.
|
2822
2909
|
|
2823
|
-
|
2910
|
+
### Bug fixes:
|
2824
2911
|
|
2825
2912
|
* Fix undefined method error when printing alert. Pull request [#1884](https://github.com/rubygems/rubygems/pull/1884) by
|
2826
2913
|
Robert Ross.
|
@@ -2873,7 +2960,7 @@ Security fixes:
|
|
2873
2960
|
* Fix tests when --program-suffix and similar ruby configure options are
|
2874
2961
|
used. Pull request [#2529](https://github.com/rubygems/rubygems/pull/2529) by Jeremy Evans.
|
2875
2962
|
|
2876
|
-
|
2963
|
+
### Breaking changes:
|
2877
2964
|
|
2878
2965
|
* IO.binread is not provided at Ruby 1.8. Pull request [#2093](https://github.com/rubygems/rubygems/pull/2093) by SHIBATA
|
2879
2966
|
Hiroshi.
|
@@ -2926,9 +3013,9 @@ Security fixes:
|
|
2926
3013
|
* [BudlerVersionFinder] set .filter! and .compatible? to match only on
|
2927
3014
|
major versions. Pull request [#2515](https://github.com/rubygems/rubygems/pull/2515) by Colby Swandale.
|
2928
3015
|
|
2929
|
-
|
3016
|
+
## 2.7.10 / 2019-06-14
|
2930
3017
|
|
2931
|
-
|
3018
|
+
### Enhancements:
|
2932
3019
|
|
2933
3020
|
* Fix bundler rubygems binstub not properly looking for bundler. Pull request [#2426](https://github.com/rubygems/rubygems/pull/2426)
|
2934
3021
|
by David Rodríguez.
|
@@ -2936,7 +3023,7 @@ Security fixes:
|
|
2936
3023
|
Pull request [#2515](https://github.com/rubygems/rubygems/pull/2515) by Colby Swandale.
|
2937
3024
|
+ Update for compatibility with new minitest. Pull request [#2118](https://github.com/rubygems/rubygems/pull/2118) by MSP-Greg.
|
2938
3025
|
|
2939
|
-
|
3026
|
+
## 2.7.9 / 2019-03-05
|
2940
3027
|
|
2941
3028
|
Security fixes:
|
2942
3029
|
|
@@ -2947,9 +3034,9 @@ Security fixes:
|
|
2947
3034
|
* CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
|
2948
3035
|
* CVE-2019-8325: Escape sequence injection vulnerability in errors
|
2949
3036
|
|
2950
|
-
|
3037
|
+
## 2.7.8 / 2018-11-02
|
2951
3038
|
|
2952
|
-
|
3039
|
+
### Enhancements:
|
2953
3040
|
|
2954
3041
|
* [Requirement] Treat requirements with == versions as equal. Pull
|
2955
3042
|
request [#2230](https://github.com/rubygems/rubygems/pull/2230) by Samuel Giddins.
|
@@ -2968,7 +3055,7 @@ Security fixes:
|
|
2968
3055
|
* Improve bindir flag description. Pull request [#2383](https://github.com/rubygems/rubygems/pull/2383) by Luis Sagastume.
|
2969
3056
|
* Update bundler-1.16.6. Pull request [#2423](https://github.com/rubygems/rubygems/pull/2423) by SHIBATA Hiroshi.
|
2970
3057
|
|
2971
|
-
|
3058
|
+
### Bug fixes:
|
2972
3059
|
|
2973
3060
|
* Fix #1470: generate documentation when --install-dir is present. Pull
|
2974
3061
|
request [#2229](https://github.com/rubygems/rubygems/pull/2229) by Elias Hernandis.
|
@@ -2981,9 +3068,9 @@ Security fixes:
|
|
2981
3068
|
* Gem::Version should handle nil like it used to before. Pull request
|
2982
3069
|
[#2363](https://github.com/rubygems/rubygems/pull/2363) by Luis Sagastume.
|
2983
3070
|
|
2984
|
-
|
3071
|
+
## 2.7.7 / 2018-05-08
|
2985
3072
|
|
2986
|
-
|
3073
|
+
### Enhancements:
|
2987
3074
|
|
2988
3075
|
* [RequestSet] Only suggest a gem version with an installable platform.
|
2989
3076
|
Pull request [#2175](https://github.com/rubygems/rubygems/pull/2175) by Samuel Giddins.
|
@@ -2998,7 +3085,7 @@ Security fixes:
|
|
2998
3085
|
Sagastume.
|
2999
3086
|
* Backport ruby core commits. Pull request [#2264](https://github.com/rubygems/rubygems/pull/2264) by SHIBATA Hiroshi.
|
3000
3087
|
|
3001
|
-
|
3088
|
+
### Bug fixes:
|
3002
3089
|
|
3003
3090
|
* Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
|
3004
3091
|
[#2115](https://github.com/rubygems/rubygems/pull/2115) by MSP-Greg.
|
@@ -3011,7 +3098,7 @@ Security fixes:
|
|
3011
3098
|
* Fix path checks for case insensitive filesystem. Pull request [#2211](https://github.com/rubygems/rubygems/pull/2211) by
|
3012
3099
|
Lars Kanis.
|
3013
3100
|
|
3014
|
-
|
3101
|
+
### Deprecations:
|
3015
3102
|
|
3016
3103
|
* Deprecate unused code before removing them at #1524. Pull request [#2197](https://github.com/rubygems/rubygems/pull/2197)
|
3017
3104
|
by SHIBATA Hiroshi.
|
@@ -3019,11 +3106,11 @@ Security fixes:
|
|
3019
3106
|
* Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request [#2269](https://github.com/rubygems/rubygems/pull/2269) by
|
3020
3107
|
SHIBATA Hiroshi.
|
3021
3108
|
|
3022
|
-
|
3109
|
+
### Breaking changes:
|
3023
3110
|
|
3024
3111
|
* Update bundler-1.16.2. Pull request [#2291](https://github.com/rubygems/rubygems/pull/2291) by SHIBATA Hiroshi.
|
3025
3112
|
|
3026
|
-
|
3113
|
+
## 2.7.6 / 2018-02-16
|
3027
3114
|
|
3028
3115
|
Security fixes:
|
3029
3116
|
|
@@ -3042,9 +3129,9 @@ Security fixes:
|
|
3042
3129
|
* Prevent Path Traversal issue during gem installation.
|
3043
3130
|
Discovered by nmalkin.
|
3044
3131
|
|
3045
|
-
|
3132
|
+
## 2.7.5
|
3046
3133
|
|
3047
|
-
|
3134
|
+
### Bug fixes:
|
3048
3135
|
|
3049
3136
|
* To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
|
3050
3137
|
* Fixed leaked FDs. Pull request [#2127](https://github.com/rubygems/rubygems/pull/2127) by Nobuyoshi Nakada.
|
@@ -3056,9 +3143,9 @@ Security fixes:
|
|
3056
3143
|
* Set whether bundler is used for gemdeps with an environmental variable #2126 by SHIBATA Hiroshi.
|
3057
3144
|
* Fix undefined method error when printing alert #1884 by Robert Ross.
|
3058
3145
|
|
3059
|
-
|
3146
|
+
## 2.7.4
|
3060
3147
|
|
3061
|
-
|
3148
|
+
### Bug fixes:
|
3062
3149
|
|
3063
3150
|
* Fixed leaked FDs. Pull request [#2127](https://github.com/rubygems/rubygems/pull/2127) by Nobuyoshi Nakada.
|
3064
3151
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
@@ -3067,9 +3154,9 @@ Security fixes:
|
|
3067
3154
|
* Handle environment that does not have `flock` system call. Pull request
|
3068
3155
|
[#2107](https://github.com/rubygems/rubygems/pull/2107) by SHIBATA Hiroshi.
|
3069
3156
|
|
3070
|
-
|
3157
|
+
## 2.7.3
|
3071
3158
|
|
3072
|
-
|
3159
|
+
### Enhancements:
|
3073
3160
|
|
3074
3161
|
* Removed needless version lock. Pull request [#2074](https://github.com/rubygems/rubygems/pull/2074) by SHIBATA Hiroshi.
|
3075
3162
|
* Add --[no-]check-development option to cleanup command. Pull request
|
@@ -3082,7 +3169,7 @@ Security fixes:
|
|
3082
3169
|
* Remove multi load warning from plugins documentation. Pull request [#2103](https://github.com/rubygems/rubygems/pull/2103)
|
3083
3170
|
by Thibault Jouan.
|
3084
3171
|
|
3085
|
-
|
3172
|
+
### Bug fixes:
|
3086
3173
|
|
3087
3174
|
* Fix test failure on Alpine Linux. Pull request [#2079](https://github.com/rubygems/rubygems/pull/2079) by Ellen Marie
|
3088
3175
|
Dash.
|
@@ -3101,25 +3188,25 @@ Security fixes:
|
|
3101
3188
|
* Use setup command --regenerate-binstubs option flag. Pull request [#2099](https://github.com/rubygems/rubygems/pull/2099)
|
3102
3189
|
by Thibault Jouan.
|
3103
3190
|
|
3104
|
-
|
3191
|
+
## 2.7.2
|
3105
3192
|
|
3106
|
-
|
3193
|
+
### Bug fixes:
|
3107
3194
|
|
3108
3195
|
* Added template files to vendoerd bundler. Pull request [#2065](https://github.com/rubygems/rubygems/pull/2065) by SHIBATA
|
3109
3196
|
Hiroshi.
|
3110
3197
|
* Added workaround for non-git environment. Pull request [#2066](https://github.com/rubygems/rubygems/pull/2066) by SHIBATA
|
3111
3198
|
Hiroshi.
|
3112
3199
|
|
3113
|
-
|
3200
|
+
## 2.7.1 (2017-11-03)
|
3114
3201
|
|
3115
|
-
|
3202
|
+
### Bug fixes:
|
3116
3203
|
|
3117
3204
|
* Fix `gem update --system` with RubyGems 2.7+. Pull request [#2054](https://github.com/rubygems/rubygems/pull/2054) by
|
3118
3205
|
Samuel Giddins.
|
3119
3206
|
|
3120
|
-
|
3207
|
+
## 2.7.0 (2017-11-02)
|
3121
3208
|
|
3122
|
-
|
3209
|
+
### Enhancements:
|
3123
3210
|
|
3124
3211
|
* Update vendored bundler-1.16.0. Pull request [#2051](https://github.com/rubygems/rubygems/pull/2051) by Samuel Giddins.
|
3125
3212
|
* Use Bundler for Gem.use_gemdeps. Pull request [#1674](https://github.com/rubygems/rubygems/pull/1674) by Samuel Giddins.
|
@@ -3210,7 +3297,7 @@ Security fixes:
|
|
3210
3297
|
* Warn when requiring deprecated files. Pull request [#1939](https://github.com/rubygems/rubygems/pull/1939) by Ellen Marie
|
3211
3298
|
Dash.
|
3212
3299
|
|
3213
|
-
|
3300
|
+
### Deprecations:
|
3214
3301
|
|
3215
3302
|
* Deprecate Gem::InstallerTestCase#util_gem_bindir and
|
3216
3303
|
Gem::InstallerTestCase#util_gem_dir. Pull request [#1729](https://github.com/rubygems/rubygems/pull/1729) by Jon Moss.
|
@@ -3220,7 +3307,7 @@ Security fixes:
|
|
3220
3307
|
* Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
|
3221
3308
|
Pull request [#1731](https://github.com/rubygems/rubygems/pull/1731) by Jon Moss.
|
3222
3309
|
|
3223
|
-
|
3310
|
+
### Breaking changes:
|
3224
3311
|
|
3225
3312
|
* Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
|
3226
3313
|
unavailable on Ruby 2.5. Pull request [#2028](https://github.com/rubygems/rubygems/pull/2028) #2027 #2029
|
@@ -3228,7 +3315,7 @@ Security fixes:
|
|
3228
3315
|
* Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
|
3229
3316
|
[#1796](https://github.com/rubygems/rubygems/pull/1796) by Matej.
|
3230
3317
|
|
3231
|
-
|
3318
|
+
### Bug fixes:
|
3232
3319
|
|
3233
3320
|
* Fix issue for MinGW / MSYS2 builds and testing. Pull request [#1876](https://github.com/rubygems/rubygems/pull/1876) by
|
3234
3321
|
MSP-Greg.
|
@@ -3281,7 +3368,7 @@ Security fixes:
|
|
3281
3368
|
* [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
|
3282
3369
|
Pull request [#1738](https://github.com/rubygems/rubygems/pull/1738) by Samuel Giddins.
|
3283
3370
|
|
3284
|
-
|
3371
|
+
## 2.6.14 / 2017-10-09
|
3285
3372
|
|
3286
3373
|
Security fixes:
|
3287
3374
|
|
@@ -3289,7 +3376,7 @@ Security fixes:
|
|
3289
3376
|
See CVE-2017-0903 for full details.
|
3290
3377
|
Fix by Aaron Patterson.
|
3291
3378
|
|
3292
|
-
|
3379
|
+
## 2.6.13 / 2017-08-27
|
3293
3380
|
|
3294
3381
|
Security fixes:
|
3295
3382
|
|
@@ -3303,9 +3390,9 @@ Security fixes:
|
|
3303
3390
|
to overwrite arbitrary files. (CVE-2017-0901)
|
3304
3391
|
Discovered by Yusuke Endoh, fix by Samuel Giddins.
|
3305
3392
|
|
3306
|
-
|
3393
|
+
## 2.6.12 / 2017-04-30
|
3307
3394
|
|
3308
|
-
|
3395
|
+
### Bug fixes:
|
3309
3396
|
|
3310
3397
|
* Fix test_self_find_files_with_gemfile to sort expected files. Pull
|
3311
3398
|
request [#1880](https://github.com/rubygems/rubygems/pull/1880) by Kazuaki Matsuo.
|
@@ -3326,9 +3413,9 @@ Security fixes:
|
|
3326
3413
|
* Allow Gem.finish_resolve to respect already-activated specs. Pull
|
3327
3414
|
request [#1910](https://github.com/rubygems/rubygems/pull/1910) by Samuel Giddins.
|
3328
3415
|
|
3329
|
-
|
3416
|
+
## 2.6.11 / 2017-03-16
|
3330
3417
|
|
3331
|
-
|
3418
|
+
### Bug fixes:
|
3332
3419
|
|
3333
3420
|
* Fixed broken tests on ruby-head. Pull request [#1841](https://github.com/rubygems/rubygems/pull/1841) by
|
3334
3421
|
SHIBATA Hiroshi.
|
@@ -3339,16 +3426,16 @@ Security fixes:
|
|
3339
3426
|
* Use improved resolver sorting algorithm. Pull request [#1856](https://github.com/rubygems/rubygems/pull/1856) by
|
3340
3427
|
Samuel Giddins.
|
3341
3428
|
|
3342
|
-
|
3429
|
+
## 2.6.10 / 2017-01-23
|
3343
3430
|
|
3344
|
-
|
3431
|
+
### Bug fixes:
|
3345
3432
|
|
3346
3433
|
* Fix `require` calling the wrong `gem` method when it is overridden.
|
3347
3434
|
Pull request [#1822](https://github.com/rubygems/rubygems/pull/1822) by Samuel Giddins.
|
3348
3435
|
|
3349
|
-
|
3436
|
+
## 2.6.9 / 2017-01-20
|
3350
3437
|
|
3351
|
-
|
3438
|
+
### Bug fixes:
|
3352
3439
|
|
3353
3440
|
* Allow initializing versions with empty strings. Pull request [#1767](https://github.com/rubygems/rubygems/pull/1767) by
|
3354
3441
|
Luis Sagastume.
|
@@ -3362,9 +3449,9 @@ Security fixes:
|
|
3362
3449
|
* RakeBuilder: avoid frozen string issue. Pull request [#1819](https://github.com/rubygems/rubygems/pull/1819) by Olle
|
3363
3450
|
Jonsson.
|
3364
3451
|
|
3365
|
-
|
3452
|
+
## 2.6.8 / 2016-10-29
|
3366
3453
|
|
3367
|
-
|
3454
|
+
### Bug fixes:
|
3368
3455
|
|
3369
3456
|
* Improve SSL verification failure message. Pull request [#1751](https://github.com/rubygems/rubygems/pull/1751)
|
3370
3457
|
by Eric Hodel.
|
@@ -3373,9 +3460,9 @@ Security fixes:
|
|
3373
3460
|
* Update vendored Molinillo to 0.5.3. Pull request [#1763](https://github.com/rubygems/rubygems/pull/1763) by
|
3374
3461
|
Samuel Giddins.
|
3375
3462
|
|
3376
|
-
|
3463
|
+
## 2.6.7 / 2016-09-26
|
3377
3464
|
|
3378
|
-
|
3465
|
+
### Bug fixes:
|
3379
3466
|
|
3380
3467
|
* Install native extensions in the correct location when using the
|
3381
3468
|
`--user-install` flag. Pull request [#1683](https://github.com/rubygems/rubygems/pull/1683) by Noah Kantrowitz.
|
@@ -3387,24 +3474,24 @@ Security fixes:
|
|
3387
3474
|
* Update vendored Molinillo to 0.5.1. Pull request [#1714](https://github.com/rubygems/rubygems/pull/1714) by
|
3388
3475
|
Samuel Giddins.
|
3389
3476
|
|
3390
|
-
|
3477
|
+
## 2.6.6 / 2016-06-22
|
3391
3478
|
|
3392
|
-
|
3479
|
+
### Bug fixes:
|
3393
3480
|
|
3394
3481
|
* Sort installed versions to make sure we install the latest version when
|
3395
3482
|
running `gem update --system`. As a one-time fix, run
|
3396
3483
|
`gem update --system=2.6.6`. Pull request [#1601](https://github.com/rubygems/rubygems/pull/1601) by David Radcliffe.
|
3397
3484
|
|
3398
|
-
|
3485
|
+
## 2.6.5 / 2016-06-21
|
3399
3486
|
|
3400
|
-
|
3487
|
+
### Enhancements:
|
3401
3488
|
|
3402
3489
|
* Support for unified Integer in Ruby 2.4. Pull request [#1618](https://github.com/rubygems/rubygems/pull/1618)
|
3403
3490
|
by SHIBATA Hiroshi.
|
3404
3491
|
* Update vendored Molinillo to 0.5.0 for performance improvements.
|
3405
3492
|
Pull request [#1638](https://github.com/rubygems/rubygems/pull/1638) by Samuel Giddins.
|
3406
3493
|
|
3407
|
-
|
3494
|
+
### Bug fixes:
|
3408
3495
|
|
3409
3496
|
* Raise an explicit error if Signer#sign is called with no certs. Pull
|
3410
3497
|
request [#1605](https://github.com/rubygems/rubygems/pull/1605) by Daniel Berger.
|
@@ -3424,16 +3511,16 @@ Security fixes:
|
|
3424
3511
|
Pull request [#1644](https://github.com/rubygems/rubygems/pull/1644) by Charles Oliver Nutter.
|
3425
3512
|
* Run Bundler tests on TravisCI. Pull request [#1650](https://github.com/rubygems/rubygems/pull/1650) by Samuel Giddins.
|
3426
3513
|
|
3427
|
-
|
3514
|
+
## 2.6.4 / 2016-04-26
|
3428
3515
|
|
3429
|
-
|
3516
|
+
### Enhancements:
|
3430
3517
|
|
3431
3518
|
* Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request [#1588](https://github.com/rubygems/rubygems/pull/1588)
|
3432
3519
|
by Chris Charabaruk.
|
3433
3520
|
* Use File.symlink on MS Windows if supported. Pull request [#1418](https://github.com/rubygems/rubygems/pull/1418)
|
3434
3521
|
by Nobuyoshi Nakada.
|
3435
3522
|
|
3436
|
-
|
3523
|
+
### Bug fixes:
|
3437
3524
|
|
3438
3525
|
* Redact uri password from error output when gem fetch fails. Pull request
|
3439
3526
|
[#1565](https://github.com/rubygems/rubygems/pull/1565) by Brian Fletcher.
|
@@ -3441,9 +3528,9 @@ Security fixes:
|
|
3441
3528
|
* Escape user-supplied content served on web pages by `gem server` to avoid
|
3442
3529
|
potential XSS vulnerabilities. Samuel Giddins.
|
3443
3530
|
|
3444
|
-
|
3531
|
+
## 2.6.3 / 2016-04-05
|
3445
3532
|
|
3446
|
-
|
3533
|
+
### Enhancements:
|
3447
3534
|
|
3448
3535
|
* Lazily calculate Gem::LoadError exception messages. Pull request [#1550](https://github.com/rubygems/rubygems/pull/1550)
|
3449
3536
|
by Aaron Patterson.
|
@@ -3454,7 +3541,7 @@ Security fixes:
|
|
3454
3541
|
* Show default gems when using "gem list". Pull request [#1570](https://github.com/rubygems/rubygems/pull/1570) by Luis
|
3455
3542
|
Sagastume.
|
3456
3543
|
|
3457
|
-
|
3544
|
+
### Bug fixes:
|
3458
3545
|
|
3459
3546
|
* Stub ordering should be consistent regardless of how cache is populated.
|
3460
3547
|
Pull request [#1552](https://github.com/rubygems/rubygems/pull/1552) by Aaron Patterson.
|
@@ -3470,9 +3557,9 @@ Security fixes:
|
|
3470
3557
|
Giddins.
|
3471
3558
|
* Allow two digit version numbers in the tests. Pull request [#1575](https://github.com/rubygems/rubygems/pull/1575) by unak.
|
3472
3559
|
|
3473
|
-
|
3560
|
+
## 2.6.2 / 2016-03-12
|
3474
3561
|
|
3475
|
-
|
3562
|
+
### Bug fixes:
|
3476
3563
|
|
3477
3564
|
* Fix wrong version of gem activation for bin stub. Pull request [#1527](https://github.com/rubygems/rubygems/pull/1527) by
|
3478
3565
|
Aaron Patterson.
|
@@ -3483,9 +3570,9 @@ Security fixes:
|
|
3483
3570
|
[#1538](https://github.com/rubygems/rubygems/pull/1538) by Charles Oliver Nutter.
|
3484
3571
|
|
3485
3572
|
|
3486
|
-
|
3573
|
+
## 2.6.1 / 2016-02-28
|
3487
3574
|
|
3488
|
-
|
3575
|
+
### Bug fixes:
|
3489
3576
|
|
3490
3577
|
* Ensure `default_path` and `home` are set for paths. Pull request [#1513](https://github.com/rubygems/rubygems/pull/1513)
|
3491
3578
|
by Aaron Patterson.
|
@@ -3494,9 +3581,9 @@ Security fixes:
|
|
3494
3581
|
* Fix invalid gem file preventing gem install from working. Pull request
|
3495
3582
|
[#1499](https://github.com/rubygems/rubygems/pull/1499) by Luis Sagastume.
|
3496
3583
|
|
3497
|
-
|
3584
|
+
## 2.6.0 / 2016-02-26
|
3498
3585
|
|
3499
|
-
|
3586
|
+
### Enhancements:
|
3500
3587
|
|
3501
3588
|
* RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
|
3502
3589
|
metadata setting. Pull request [#1486](https://github.com/rubygems/rubygems/pull/1486) by Josh Lane.
|
@@ -3507,7 +3594,7 @@ Security fixes:
|
|
3507
3594
|
* Allow specifying gem requirements via env variables. Pull request [#1472](https://github.com/rubygems/rubygems/pull/1472)
|
3508
3595
|
by Samuel E. Giddins.
|
3509
3596
|
|
3510
|
-
|
3597
|
+
### Bug fixes:
|
3511
3598
|
|
3512
3599
|
* RubyGems now stores `gem push` credentials under the host you signed-in for.
|
3513
3600
|
Pull request [#1485](https://github.com/rubygems/rubygems/pull/1485) by Josh Lane.
|
@@ -3533,9 +3620,9 @@ Security fixes:
|
|
3533
3620
|
* Find_files only from loaded_gems when using gemdeps. Pull request [#1277](https://github.com/rubygems/rubygems/pull/1277)
|
3534
3621
|
by Michal Papis.
|
3535
3622
|
|
3536
|
-
|
3623
|
+
## 2.5.2 / 2016-01-31
|
3537
3624
|
|
3538
|
-
|
3625
|
+
### Bug fixes:
|
3539
3626
|
|
3540
3627
|
* Fix memoization of Gem::Version#prerelease? Pull request [#1125](https://github.com/rubygems/rubygems/pull/1125) by Matijs van
|
3541
3628
|
Zuijlen.
|
@@ -3551,7 +3638,7 @@ Security fixes:
|
|
3551
3638
|
* Handle symlinks containing ".." correctly. Pull request [#1457](https://github.com/rubygems/rubygems/pull/1457) by Samuel E.
|
3552
3639
|
Giddins.
|
3553
3640
|
|
3554
|
-
|
3641
|
+
### Enhancements:
|
3555
3642
|
|
3556
3643
|
* Add `--no-rc` flag, which skips loading `.gemrc`. Pull request [#1329](https://github.com/rubygems/rubygems/pull/1329) by Luis
|
3557
3644
|
Sagastume.
|
@@ -3576,9 +3663,9 @@ Security fixes:
|
|
3576
3663
|
* Function correctly when string literals are frozen on Ruby 2.3. Pull request
|
3577
3664
|
[#1408](https://github.com/rubygems/rubygems/pull/1408) by Samuel E. Giddins.
|
3578
3665
|
|
3579
|
-
|
3666
|
+
## 2.5.1 / 2015-12-10
|
3580
3667
|
|
3581
|
-
|
3668
|
+
### Bug fixes:
|
3582
3669
|
|
3583
3670
|
* Ensure platform sorting only uses strings. Affected binary installs on Windows.
|
3584
3671
|
Issue #1369 reported by Ryan Atball (among others).
|
@@ -3607,9 +3694,9 @@ Security fixes:
|
|
3607
3694
|
Kudo.
|
3608
3695
|
* Fixed double word typo. Pull request [#1411](https://github.com/rubygems/rubygems/pull/1411) by Jake Worth.
|
3609
3696
|
|
3610
|
-
|
3697
|
+
## 2.5.0 / 2015-11-03
|
3611
3698
|
|
3612
|
-
|
3699
|
+
### Enhancements:
|
3613
3700
|
|
3614
3701
|
* Added the Gem::Licenses class which provides a set of standard license
|
3615
3702
|
identifiers as set by spdx.org. This is now used by the
|
@@ -3679,7 +3766,7 @@ Security fixes:
|
|
3679
3766
|
* Gem::RemoteFetcher allows users to set HTTP headers. Pull request [#1363](https://github.com/rubygems/rubygems/pull/1363) by
|
3680
3767
|
Agis Anastasopoulos.
|
3681
3768
|
|
3682
|
-
|
3769
|
+
### Bug fixes:
|
3683
3770
|
|
3684
3771
|
* Fixed Rake homepage url in example for Gem::Specification#homepage.
|
3685
3772
|
Pull request [#1171](https://github.com/rubygems/rubygems/pull/1171) by Arthur Nogueira Neves
|
@@ -3736,22 +3823,22 @@ Security fixes:
|
|
3736
3823
|
* RubyGems handles invalid config files better. Pull request [#1367](https://github.com/rubygems/rubygems/pull/1367) by Agis
|
3737
3824
|
Anastasopoulos.
|
3738
3825
|
|
3739
|
-
|
3826
|
+
## 2.4.8 / 2015-06-08
|
3740
3827
|
|
3741
|
-
|
3828
|
+
### Bug fixes:
|
3742
3829
|
|
3743
3830
|
* Tightened API endpoint checks for CVE-2015-3900
|
3744
3831
|
|
3745
|
-
|
3832
|
+
## 2.4.7 / 2015-05-14
|
3746
3833
|
|
3747
|
-
|
3834
|
+
### Bug fixes:
|
3748
3835
|
|
3749
3836
|
* Limit API endpoint to original security domain for CVE-2015-3900.
|
3750
3837
|
Fix by claudijd
|
3751
3838
|
|
3752
|
-
|
3839
|
+
## 2.4.6 / 2015-02-05
|
3753
3840
|
|
3754
|
-
|
3841
|
+
### Bug fixes:
|
3755
3842
|
|
3756
3843
|
* Fixed resolving gems with both upper and lower requirement boundaries.
|
3757
3844
|
Issue #1141 by Jakub Jirutka.
|
@@ -3776,9 +3863,9 @@ Security fixes:
|
|
3776
3863
|
Ondruch.
|
3777
3864
|
* Relaxed Psych dependency. Pull request [#1128](https://github.com/rubygems/rubygems/pull/1128) by Vít Ondruch.
|
3778
3865
|
|
3779
|
-
|
3866
|
+
## 2.4.5 / 2014-12-03
|
3780
3867
|
|
3781
|
-
|
3868
|
+
### Bug fixes:
|
3782
3869
|
|
3783
3870
|
* Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
|
3784
3871
|
request [#1060](https://github.com/rubygems/rubygems/pull/1060) by unak.
|
@@ -3818,27 +3905,27 @@ Security fixes:
|
|
3818
3905
|
* Fixed grouped expression warning. Pull request [#1081](https://github.com/rubygems/rubygems/pull/1081) by André Arko.
|
3819
3906
|
* Fixed handling of platforms when writing lockfiles.
|
3820
3907
|
|
3821
|
-
|
3908
|
+
## 2.4.4 / 2014-11-12
|
3822
3909
|
|
3823
|
-
|
3910
|
+
### Bug fixes:
|
3824
3911
|
|
3825
3912
|
* Add alternate Root CA for upcoming certificate change. Fixes #1050 by
|
3826
3913
|
Protosac
|
3827
3914
|
|
3828
|
-
|
3915
|
+
## 2.4.3 / 2014-11-10
|
3829
3916
|
|
3830
|
-
|
3917
|
+
### Bug fixes:
|
3831
3918
|
|
3832
3919
|
* Fix redefine MirrorCommand issue. Pull request [#1044](https://github.com/rubygems/rubygems/pull/1044) by @akr.
|
3833
3920
|
* Fix typo in platform= docs. Pull request [#1048](https://github.com/rubygems/rubygems/pull/1048) by @jasonrclark
|
3834
3921
|
* Add root SSL certificates for upcoming certificate change. Fixes #1050 by
|
3835
3922
|
Protosac
|
3836
3923
|
|
3837
|
-
|
3924
|
+
## 2.4.2 / 2014-10-01
|
3838
3925
|
|
3839
3926
|
This release was sponsored by Ruby Central.
|
3840
3927
|
|
3841
|
-
|
3928
|
+
### Bug fixes:
|
3842
3929
|
|
3843
3930
|
* RubyGems now correctly matches wildcard no_proxy hosts. Issue #997 by
|
3844
3931
|
voelzemo.
|
@@ -3872,16 +3959,16 @@ This release was sponsored by Ruby Central.
|
|
3872
3959
|
* RubyGems now fails immediately when a git reference cannot be found instead
|
3873
3960
|
of spewing git errors. Issue #1031 by Michal Papis
|
3874
3961
|
|
3875
|
-
|
3962
|
+
## 2.4.1 / 2014-07-17
|
3876
3963
|
|
3877
|
-
|
3964
|
+
### Bug fixes:
|
3878
3965
|
|
3879
3966
|
* RubyGems can now be updated on Ruby implementations that do not support
|
3880
3967
|
vendordir in RbConfig::CONFIG. Issue #974 by net1957.
|
3881
3968
|
|
3882
|
-
|
3969
|
+
## 2.4.0 / 2014-07-16
|
3883
3970
|
|
3884
|
-
|
3971
|
+
### Enhancements:
|
3885
3972
|
|
3886
3973
|
* The contents command now supports a --show-install-dir option that shows
|
3887
3974
|
only the directory the gem is installed in. Feature request [#966](https://github.com/rubygems/rubygems/pull/966) by Akinori
|
@@ -3892,7 +3979,7 @@ This release was sponsored by Ruby Central.
|
|
3892
3979
|
in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
|
3893
3980
|
Marcus Rückert.
|
3894
3981
|
|
3895
|
-
|
3982
|
+
### Bug fixes:
|
3896
3983
|
|
3897
3984
|
* Kernel#gem now respects the prerelease flag when activating gems.
|
3898
3985
|
Previously this behavior was undefined which could lead to bugs when a
|
@@ -3942,9 +4029,9 @@ This release was sponsored by Ruby Central.
|
|
3942
4029
|
during gem resolution.
|
3943
4030
|
|
3944
4031
|
|
3945
|
-
|
4032
|
+
## 2.3.0 / 2014-06-10
|
3946
4033
|
|
3947
|
-
|
4034
|
+
### Enhancements:
|
3948
4035
|
|
3949
4036
|
* Added the `open` command which allows you to inspect the source of a gem
|
3950
4037
|
using your editor.
|
@@ -3985,7 +4072,7 @@ This release was sponsored by Ruby Central.
|
|
3985
4072
|
* RubyGems recommends SPDX IDs for licenses now. Pull request [#917](https://github.com/rubygems/rubygems/pull/917) by
|
3986
4073
|
Benjamin Fleischer.
|
3987
4074
|
|
3988
|
-
|
4075
|
+
### Bug fixes:
|
3989
4076
|
|
3990
4077
|
* RubyGems now only fetches the latest specs to find misspellings which speeds
|
3991
4078
|
up gem suggestions. Pull request [#808](https://github.com/rubygems/rubygems/pull/808) by Aaron Patterson.
|
@@ -4065,29 +4152,29 @@ This release was sponsored by Ruby Central.
|
|
4065
4152
|
* Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
|
4066
4153
|
#852 by Vít Ondruch.
|
4067
4154
|
|
4068
|
-
|
4155
|
+
## 2.2.5 / 2015-06-08
|
4069
4156
|
|
4070
|
-
|
4157
|
+
### Bug fixes:
|
4071
4158
|
|
4072
4159
|
* Tightened API endpoint checks for CVE-2015-3900
|
4073
4160
|
|
4074
|
-
|
4161
|
+
## 2.2.4 / 2015-05-14
|
4075
4162
|
|
4076
|
-
|
4163
|
+
### Bug fixes:
|
4077
4164
|
|
4078
4165
|
* Backport: Limit API endpoint to original security domain for CVE-2015-3900.
|
4079
4166
|
Fix by claudijd
|
4080
4167
|
|
4081
|
-
|
4168
|
+
## 2.2.3 / 2014-12-21
|
4082
4169
|
|
4083
|
-
|
4170
|
+
### Bug fixes:
|
4084
4171
|
|
4085
4172
|
* Backport: Add alternate Root CA for upcoming certificate change.
|
4086
4173
|
Fixes #1050 by Protosac
|
4087
4174
|
|
4088
|
-
|
4175
|
+
## 2.2.2 / 2014-02-05
|
4089
4176
|
|
4090
|
-
|
4177
|
+
### Bug fixes:
|
4091
4178
|
|
4092
4179
|
* Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
|
4093
4180
|
Nakada.
|
@@ -4112,9 +4199,9 @@ This release was sponsored by Ruby Central.
|
|
4112
4199
|
* Restored behavior of Gem::Version::new when subclassed. Issue #805 by
|
4113
4200
|
Sergio Rubio.
|
4114
4201
|
|
4115
|
-
|
4202
|
+
## 2.2.1 / 2014-01-06
|
4116
4203
|
|
4117
|
-
|
4204
|
+
### Bug fixes:
|
4118
4205
|
|
4119
4206
|
* Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
|
4120
4207
|
#767 by Diego Viola.
|
@@ -4140,12 +4227,12 @@ This release was sponsored by Ruby Central.
|
|
4140
4227
|
* Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
|
4141
4228
|
request [#763](https://github.com/rubygems/rubygems/pull/763) by James Mead
|
4142
4229
|
|
4143
|
-
|
4230
|
+
## 2.2.0 / 2013-12-26
|
4144
4231
|
|
4145
4232
|
Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
|
4146
4233
|
RubyGems as it was prepared for the 2.2.0 release.
|
4147
4234
|
|
4148
|
-
|
4235
|
+
### Enhancements:
|
4149
4236
|
|
4150
4237
|
* RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
|
4151
4238
|
rubygems executables are started and uses the found dependencies. This
|
@@ -4213,7 +4300,7 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
4213
4300
|
* Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
|
4214
4301
|
Request #755 by strzibny.
|
4215
4302
|
|
4216
|
-
|
4303
|
+
### Bug fixes:
|
4217
4304
|
|
4218
4305
|
* RubyGems now returns an error status when any file given to `gem which`
|
4219
4306
|
cannot be found. Ruby bug #9004 by Eugene Vilensky.
|
@@ -4230,9 +4317,9 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
4230
4317
|
* Improved speed of `gem install --ignore-dependencies`. Patch by Terence
|
4231
4318
|
Lee.
|
4232
4319
|
|
4233
|
-
|
4320
|
+
## 2.1.11 / 2013-11-12
|
4234
4321
|
|
4235
|
-
|
4322
|
+
### Bug fixes:
|
4236
4323
|
|
4237
4324
|
* Gem::Specification::remove_spec no longer checks for existence of the spec
|
4238
4325
|
to be removed. Issue #698 by Tiago Macedo.
|
@@ -4242,9 +4329,9 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
4242
4329
|
* The Gem::RemoteFetcher tests now choose the test server port more reliably.
|
4243
4330
|
Pull Request #706 by akr.
|
4244
4331
|
|
4245
|
-
|
4332
|
+
## 2.1.10 / 2013-10-24
|
4246
4333
|
|
4247
|
-
|
4334
|
+
### Bug fixes:
|
4248
4335
|
|
4249
4336
|
* Use class check instead of :version method check when creating Gem::Version
|
4250
4337
|
objects. Fixes #674 by jkanywhere.
|
@@ -4263,18 +4350,18 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
4263
4350
|
* The --ignore-dependencies option for gem installation works again. Issue
|
4264
4351
|
#695
|
4265
4352
|
|
4266
|
-
|
4353
|
+
## 2.1.9 / 2013-10-14
|
4267
4354
|
|
4268
|
-
|
4355
|
+
### Bug fixes:
|
4269
4356
|
|
4270
4357
|
* Reduce sorting when fetching specifications. This speeds up the update and
|
4271
4358
|
outdated commands, and others. Issue #657 by windwiny.
|
4272
4359
|
* Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
|
4273
4360
|
Masahiro Tomita, Issue #668 by Kouhei Sutou.
|
4274
4361
|
|
4275
|
-
|
4362
|
+
## 2.1.8 / 2013-10-10
|
4276
4363
|
|
4277
|
-
|
4364
|
+
### Bug fixes:
|
4278
4365
|
|
4279
4366
|
* Fixed local installation of platform gem files. Issue #664 by Ryan Melton.
|
4280
4367
|
* Files starting with "." in the root directory are installed again. Issue
|
@@ -4282,9 +4369,9 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
4282
4369
|
* The index generator no longer indexes default gems. Issue #661 by
|
4283
4370
|
Jeremy Hinegardner.
|
4284
4371
|
|
4285
|
-
|
4372
|
+
## 2.1.7 / 2013-10-09
|
4286
4373
|
|
4287
|
-
|
4374
|
+
### Bug fixes:
|
4288
4375
|
|
4289
4376
|
* `gem sources --list` now displays a list of sources. Pull request [#672](https://github.com/rubygems/rubygems/pull/672) by
|
4290
4377
|
Nathan Marley.
|
@@ -4297,9 +4384,9 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
4297
4384
|
* Expand unpack destination directory. This fixes problems when File.realpath
|
4298
4385
|
is missing and $GEM_HOME contains "..". Issue #679 by Charles Nutter.
|
4299
4386
|
|
4300
|
-
|
4387
|
+
## 2.1.6 / 2013-10-08
|
4301
4388
|
|
4302
|
-
|
4389
|
+
### Bug fixes:
|
4303
4390
|
|
4304
4391
|
* Added certificates to follow the s3.amazonaws.com certificate change. Fixes
|
4305
4392
|
#665 by emeyekayee. Fixes #671 by jonforums.
|
@@ -4314,7 +4401,7 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
4314
4401
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
4315
4402
|
Thomas Sänger.
|
4316
4403
|
|
4317
|
-
|
4404
|
+
## 2.1.5 / 2013-09-24
|
4318
4405
|
|
4319
4406
|
Security fixes:
|
4320
4407
|
|
@@ -4323,25 +4410,25 @@ Security fixes:
|
|
4323
4410
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
4324
4411
|
1.8.23.2 (for Ruby 1.9.3).
|
4325
4412
|
|
4326
|
-
|
4413
|
+
## 2.1.4 / 2013-09-17
|
4327
4414
|
|
4328
|
-
|
4415
|
+
### Bug fixes:
|
4329
4416
|
|
4330
4417
|
* `gem uninstall foo --all` now force-uninstalls all versions of foo. Issue
|
4331
4418
|
#650 by Kyle (remkade).
|
4332
4419
|
* Fixed uninstalling gems installed in the home directory (as in
|
4333
4420
|
`--user-install`). Issue #653 by Lin Jen-Shin.
|
4334
4421
|
|
4335
|
-
|
4422
|
+
## 2.1.3 / 2013-09-12
|
4336
4423
|
|
4337
|
-
|
4424
|
+
### Bug fixes:
|
4338
4425
|
|
4339
4426
|
* Gems with files entries starting with "./" no longer install 0 files. Issue
|
4340
4427
|
#644 by Darragh Curran, #645 by Brandon Turner, #646 by Alex Tambellini
|
4341
4428
|
|
4342
|
-
|
4429
|
+
## 2.1.2 / 2013-09-11
|
4343
4430
|
|
4344
|
-
|
4431
|
+
### Bug fixes:
|
4345
4432
|
|
4346
4433
|
* Restore concurrent requires following the fix for ruby bug #8374. Pull
|
4347
4434
|
request [#637](https://github.com/rubygems/rubygems/pull/637) and issue #640 by Charles Nutter.
|
@@ -4350,14 +4437,14 @@ Security fixes:
|
|
4350
4437
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
4351
4438
|
Issue #643 by Brian Shirai.
|
4352
4439
|
|
4353
|
-
|
4440
|
+
## 2.1.1 / 2013-09-10
|
4354
4441
|
|
4355
|
-
|
4442
|
+
### Bug fixes:
|
4356
4443
|
|
4357
4444
|
* Only matching gems matching your local platform are considered for
|
4358
4445
|
installation. Issue #638 by José M. Prieto, issue #639 by sawanoboly.
|
4359
4446
|
|
4360
|
-
|
4447
|
+
## 2.1.0 / 2013-09-09
|
4361
4448
|
|
4362
4449
|
Security fixes:
|
4363
4450
|
|
@@ -4366,7 +4453,7 @@ Security fixes:
|
|
4366
4453
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
4367
4454
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
4368
4455
|
|
4369
|
-
|
4456
|
+
### Enhancements:
|
4370
4457
|
|
4371
4458
|
* RubyGems uses a new dependency resolver for gem installation which works
|
4372
4459
|
similar to the bundler resolver. The new resolver can resolve conflicts the
|
@@ -4442,7 +4529,7 @@ Security fixes:
|
|
4442
4529
|
still slow, but I see a near 50% improvement for 250 gems on a fast
|
4443
4530
|
connection). See also Gem::Specification::outdated_and_latest_version
|
4444
4531
|
|
4445
|
-
|
4532
|
+
### Bug fixes:
|
4446
4533
|
|
4447
4534
|
* rubygems_plugin.rb files are now only loaded from the latest installed gem.
|
4448
4535
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
@@ -4450,29 +4537,29 @@ Security fixes:
|
|
4450
4537
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
4451
4538
|
request [#622](https://github.com/rubygems/rubygems/pull/622) by Arthur Nogueira Neves
|
4452
4539
|
|
4453
|
-
|
4540
|
+
## 2.0.17 / 2015-06-08
|
4454
4541
|
|
4455
|
-
|
4542
|
+
### Bug fixes:
|
4456
4543
|
|
4457
4544
|
* Tightened API endpoint checks for CVE-2015-3900
|
4458
4545
|
|
4459
|
-
|
4546
|
+
## 2.0.16 / 2015-05-14
|
4460
4547
|
|
4461
|
-
|
4548
|
+
### Bug fixes:
|
4462
4549
|
|
4463
4550
|
* Backport: Limit API endpoint to original security domain for CVE-2015-3900.
|
4464
4551
|
Fix by claudijd
|
4465
4552
|
|
4466
|
-
|
4553
|
+
## 2.0.15 / 2014-12-21
|
4467
4554
|
|
4468
|
-
|
4555
|
+
### Bug fixes:
|
4469
4556
|
|
4470
4557
|
* Backport: Add alternate Root CA for upcoming certificate change.
|
4471
4558
|
Fixes #1050 by Protosac
|
4472
4559
|
|
4473
|
-
|
4560
|
+
## 2.0.14 / 2013-11-12
|
4474
4561
|
|
4475
|
-
|
4562
|
+
### Bug fixes:
|
4476
4563
|
|
4477
4564
|
* Gem::Specification::remove_spec no longer checks for existence of the spec
|
4478
4565
|
to be removed. Issue #698 by Tiago Macedo.
|
@@ -4482,9 +4569,9 @@ Security fixes:
|
|
4482
4569
|
* The Gem::RemoteFetcher tests now choose the test server port more reliably.
|
4483
4570
|
Pull Request #706 by akr.
|
4484
4571
|
|
4485
|
-
|
4572
|
+
## 2.0.13 / 2013-10-24
|
4486
4573
|
|
4487
|
-
|
4574
|
+
### Bug fixes:
|
4488
4575
|
|
4489
4576
|
* Use class check instead of :version method check when creating Gem::Version
|
4490
4577
|
objects. Fixes #674 by jkanywhere.
|
@@ -4493,16 +4580,16 @@ Security fixes:
|
|
4493
4580
|
* Fix updating gems which have multiple platforms. Issue #693 by Ookami
|
4494
4581
|
Kenrou.
|
4495
4582
|
|
4496
|
-
|
4583
|
+
## 2.0.12 / 2013-10-14
|
4497
4584
|
|
4498
|
-
|
4585
|
+
### Bug fixes:
|
4499
4586
|
|
4500
4587
|
* Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
|
4501
4588
|
Masahiro Tomita, Issue #668 by Kouhei Sutou.
|
4502
4589
|
|
4503
|
-
|
4590
|
+
## 2.0.11 / 2013-10-08
|
4504
4591
|
|
4505
|
-
|
4592
|
+
### Bug fixes:
|
4506
4593
|
|
4507
4594
|
* Added certificates to follow the s3.amazonaws.com certificate change. Fixes
|
4508
4595
|
#665 by emeyekayee. Fixes #671 by jonforums.
|
@@ -4517,7 +4604,7 @@ Security fixes:
|
|
4517
4604
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
4518
4605
|
Thomas Sänger.
|
4519
4606
|
|
4520
|
-
|
4607
|
+
## 2.0.10 / 2013-09-24
|
4521
4608
|
|
4522
4609
|
Security fixes:
|
4523
4610
|
|
@@ -4526,16 +4613,16 @@ Security fixes:
|
|
4526
4613
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
4527
4614
|
1.8.23.2 (for Ruby 1.9.3).
|
4528
4615
|
|
4529
|
-
|
4616
|
+
## 2.0.9 / 2013-09-13
|
4530
4617
|
|
4531
|
-
|
4618
|
+
### Bug fixes:
|
4532
4619
|
|
4533
4620
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
4534
4621
|
Issue #643 by Brian Shirai.
|
4535
4622
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
4536
4623
|
request [#622](https://github.com/rubygems/rubygems/pull/622) by Arthur Nogueira Neves
|
4537
4624
|
|
4538
|
-
|
4625
|
+
## 2.0.8 / 2013-09-09
|
4539
4626
|
|
4540
4627
|
Security fixes:
|
4541
4628
|
|
@@ -4544,14 +4631,14 @@ Security fixes:
|
|
4544
4631
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
4545
4632
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
4546
4633
|
|
4547
|
-
|
4634
|
+
### Bug fixes:
|
4548
4635
|
|
4549
4636
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
4550
4637
|
[#625](https://github.com/rubygems/rubygems/pull/625) by elarkin
|
4551
4638
|
|
4552
|
-
|
4639
|
+
## 2.0.7 / 2013-08-15
|
4553
4640
|
|
4554
|
-
|
4641
|
+
### Bug fixes:
|
4555
4642
|
|
4556
4643
|
* Extensions may now be built in parallel (therefore gems may be installed in
|
4557
4644
|
parallel). Bug #607 by Hemant Kumar.
|
@@ -4561,9 +4648,9 @@ Security fixes:
|
|
4561
4648
|
Patches by Yui Naruse and Koichi Sasada.
|
4562
4649
|
* Fixed documentation for Kernel#require.
|
4563
4650
|
|
4564
|
-
|
4651
|
+
## 2.0.6 / 2013-07-24
|
4565
4652
|
|
4566
|
-
|
4653
|
+
### Bug fixes:
|
4567
4654
|
|
4568
4655
|
* Fixed the `--no-install` and `-I` options to `gem list` and friends. Bug
|
4569
4656
|
#593 by Blargel.
|
@@ -4575,14 +4662,14 @@ Security fixes:
|
|
4575
4662
|
Bug #599 by Chris Riesbeck
|
4576
4663
|
* Restored default of remote search to `gem search`.
|
4577
4664
|
|
4578
|
-
|
4665
|
+
## 2.0.5 / 2013-07-11
|
4579
4666
|
|
4580
4667
|
* Fixed building of extensions that run ruby in their makefiles. Bug #589 by
|
4581
4668
|
Zachary Salzbank.
|
4582
4669
|
|
4583
|
-
|
4670
|
+
## 2.0.4 / 2013-07-09
|
4584
4671
|
|
4585
|
-
|
4672
|
+
### Bug fixes:
|
4586
4673
|
|
4587
4674
|
* Fixed error caused by gem install not finding the right platform for your
|
4588
4675
|
platform. Bug #576 by John Anderson
|
@@ -4621,9 +4708,9 @@ Security fixes:
|
|
4621
4708
|
* Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
|
4622
4709
|
r41148 by Yui Naruse
|
4623
4710
|
|
4624
|
-
|
4711
|
+
## 2.0.3 / 2013-03-11
|
4625
4712
|
|
4626
|
-
|
4713
|
+
### Bug fixes:
|
4627
4714
|
* Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
|
4628
4715
|
#506 by André Arko
|
4629
4716
|
* Use File.realpath to remove extra / while checking if files are
|
@@ -4638,17 +4725,17 @@ Security fixes:
|
|
4638
4725
|
* Fixed default gem key and cert locations. Pull request [#511](https://github.com/rubygems/rubygems/pull/511) by Samuel
|
4639
4726
|
Cochran.
|
4640
4727
|
|
4641
|
-
|
4728
|
+
## 2.0.2 / 2013-03-06
|
4642
4729
|
|
4643
|
-
|
4730
|
+
### Bug fixes:
|
4644
4731
|
* HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
|
4645
4732
|
upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
|
4646
4733
|
* SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
|
4647
4734
|
* Fixed HTTP to HTTPS upgrade for rubygems.org.
|
4648
4735
|
|
4649
|
-
|
4736
|
+
## 2.0.1 / 2013-03-05
|
4650
4737
|
|
4651
|
-
|
4738
|
+
### Bug fixes:
|
4652
4739
|
* Lazily load RubyGems.org API credentials to avoid failure during
|
4653
4740
|
RubyGems installation. Bug #465 by Isaac Sanders.
|
4654
4741
|
* RubyGems now picks the latest prerelease to install. Fixes bug #468 by
|
@@ -4670,7 +4757,7 @@ Security fixes:
|
|
4670
4757
|
Ruby bug #7713 by nobu
|
4671
4758
|
* Fix tests when an 'a.rb' exists. Ruby bug #7749 by nobu.
|
4672
4759
|
|
4673
|
-
|
4760
|
+
## 2.0.0 / 2013-02-24
|
4674
4761
|
|
4675
4762
|
RubyGems 2.0 includes several new features and many breaking changes. Some of
|
4676
4763
|
these changes will cause existing software to break. These changes are a
|
@@ -4682,7 +4769,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
|
|
4682
4769
|
|
4683
4770
|
Changes since RubyGems 1.8.25 (including past pre-releases):
|
4684
4771
|
|
4685
|
-
|
4772
|
+
### Breaking changes:
|
4686
4773
|
|
4687
4774
|
* Deprecated Gem.unresolved_deps in favor of
|
4688
4775
|
Gem::Specification.unresolved_deps
|
@@ -4704,7 +4791,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
4704
4791
|
* Removed support for Ruby 1.9.1
|
4705
4792
|
* Removed many deprecated methods
|
4706
4793
|
|
4707
|
-
|
4794
|
+
### Enhancements:
|
4708
4795
|
|
4709
4796
|
* Improved support for default gems shipping with ruby 2.0.0+
|
4710
4797
|
* A gem can have arbitrary metadata through Gem::Specification#metadata
|
@@ -4764,7 +4851,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
4764
4851
|
GEM_HOME
|
4765
4852
|
* When building gems with non-world-readable files a warning is shown.
|
4766
4853
|
|
4767
|
-
|
4854
|
+
### Bug fixes:
|
4768
4855
|
* Gem.refresh now maintains the active gem list. Clearing the list would
|
4769
4856
|
cause double-loads which would cause other bugs. Pull Request #427 by
|
4770
4857
|
Jeremy Evans
|
@@ -4821,7 +4908,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
4821
4908
|
|
4822
4909
|
Changes since RubyGems 2.0.0.rc.2:
|
4823
4910
|
|
4824
|
-
|
4911
|
+
### Bug fixes:
|
4825
4912
|
* Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
|
4826
4913
|
#450 by Jeremy Kemper
|
4827
4914
|
* Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
|
@@ -4834,48 +4921,48 @@ Changes since RubyGems 2.0.0.rc.2:
|
|
4834
4921
|
* Fixed verification of gems at LowSecurity due to missing signature.
|
4835
4922
|
Thanks to André Arko.
|
4836
4923
|
|
4837
|
-
|
4924
|
+
## 2.0.0.rc.2 / 2013-02-08
|
4838
4925
|
|
4839
|
-
|
4926
|
+
### Bug fixes:
|
4840
4927
|
* Fixed signature verification of gems which was broken only on master.
|
4841
4928
|
Thanks to Brian Buchanan.
|
4842
4929
|
* Proper exceptions are raised when verifying an unsigned gem. Thanks to
|
4843
4930
|
André Arko.
|
4844
4931
|
|
4845
|
-
|
4932
|
+
## 2.0.0.rc.1 / 2013-01-08
|
4846
4933
|
|
4847
|
-
|
4934
|
+
### Enhancements:
|
4848
4935
|
* This release of RubyGems can push gems to rubygems.org. Ordinarily
|
4849
4936
|
prerelease versions of RubyGems cannot push gems.
|
4850
4937
|
* Added `gem check --doctor` to clean up after failed uninstallation. Bug
|
4851
4938
|
#419 by Erik Hollensbe
|
4852
4939
|
|
4853
|
-
|
4940
|
+
### Bug fixes:
|
4854
4941
|
* Fixed exception raised when attempting to push gems to rubygems.org. Bug
|
4855
4942
|
#418 by André Arko
|
4856
4943
|
* Gem installation will fail if RubyGems cannot load the specification from
|
4857
4944
|
the gem. Bug #419 by Erik Hollensbe
|
4858
4945
|
|
4859
|
-
|
4946
|
+
## 2.0.0.preview2.2 / 2012-12-14
|
4860
4947
|
|
4861
|
-
|
4948
|
+
### Enhancements:
|
4862
4949
|
* Added a cmake builder. Pull request [#265](https://github.com/rubygems/rubygems/pull/265) by Allan Espinosa.
|
4863
4950
|
* Removed rubyforge page from gem list output
|
4864
4951
|
|
4865
|
-
|
4952
|
+
### Bug fixes:
|
4866
4953
|
* Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
|
4867
4954
|
#413 by Jeremy Kemper.
|
4868
4955
|
|
4869
|
-
|
4956
|
+
## 2.0.0.preview2.1 / 2012-12-08
|
4870
4957
|
|
4871
|
-
|
4958
|
+
### Enhancements:
|
4872
4959
|
* Gem::DependencyInstaller now passes build_args down to the installer.
|
4873
4960
|
Pull Request #412 by Sam Rawlins.
|
4874
4961
|
* RubyGems no longer defaults to uninstalling gems if a dependency would be
|
4875
4962
|
broken. Now you must manually say "yes". Pull Request #406 by Shannon
|
4876
4963
|
Skipper.
|
4877
4964
|
|
4878
|
-
|
4965
|
+
### Bug fixes:
|
4879
4966
|
* RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
|
4880
4967
|
* Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
|
4881
4968
|
* Only update the spec cache when we have permission. Ruby Bug #7509
|
@@ -4887,13 +4974,13 @@ Changes since RubyGems 2.0.0.rc.2:
|
|
4887
4974
|
* gem install now ignores directories that match the gem to install. Bug
|
4888
4975
|
#407 by Santiago Pastorino.
|
4889
4976
|
|
4890
|
-
|
4977
|
+
## 2.0.0.preview2 / 2012-12-01
|
4891
4978
|
|
4892
4979
|
This release contains two commits not present in Ruby 2.0.0.preview2. One
|
4893
4980
|
commit is for ruby 1.8.7 support, the second allows RubyGems to work under
|
4894
4981
|
$SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
4895
4982
|
|
4896
|
-
|
4983
|
+
### Breaking changes:
|
4897
4984
|
|
4898
4985
|
* Deprecated Gem.unresolved_deps in favor of
|
4899
4986
|
Gem::Specification.unresolved_deps
|
@@ -4915,7 +5002,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
4915
5002
|
* Removed support for Ruby 1.9.1
|
4916
5003
|
* Removed many deprecated methods
|
4917
5004
|
|
4918
|
-
|
5005
|
+
### Enhancements:
|
4919
5006
|
|
4920
5007
|
* Improved support for default gems shipping with ruby 2.0.0+
|
4921
5008
|
* A gem can have arbitrary metadata through Gem::Specification#metadata
|
@@ -4966,7 +5053,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
4966
5053
|
GEM_HOME
|
4967
5054
|
* When building gems with non-world-readable files a warning is shown.
|
4968
5055
|
|
4969
|
-
|
5056
|
+
### Bug fixes:
|
4970
5057
|
|
4971
5058
|
* Added PID to setup bin_file while installing RubyGems to protect against
|
4972
5059
|
errors. Fixes #328 by ConradIrwin
|
@@ -5007,17 +5094,17 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
5007
5094
|
* URI scheme matching is no longer case-sensitive. Fixes #322
|
5008
5095
|
* ext/builder now checks $MAKE as well as $make (okkez)
|
5009
5096
|
|
5010
|
-
|
5097
|
+
## 1.8.29 / 2013-11-23
|
5011
5098
|
|
5012
|
-
|
5099
|
+
### Bug fixes:
|
5013
5100
|
|
5014
5101
|
* Fixed installation when the LANG environment variable is empty.
|
5015
5102
|
* Added DigiCert High Assurance EV Root CA to the default SSL certificates for
|
5016
5103
|
cloudfront.
|
5017
5104
|
|
5018
|
-
|
5105
|
+
## 1.8.28 / 2013-10-08
|
5019
5106
|
|
5020
|
-
|
5107
|
+
### Bug fixes:
|
5021
5108
|
|
5022
5109
|
* Added the Verisign Class 3 Public Primary Certification Authority G5
|
5023
5110
|
certificate and its intermediary to follow the s3.amazonaws.com certificate
|
@@ -5027,7 +5114,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
5027
5114
|
* Added test for missing certificates for https://s3.amazonaws.com or
|
5028
5115
|
https://rubygems.org. Pull request [#673](https://github.com/rubygems/rubygems/pull/673) by Hannes Georg.
|
5029
5116
|
|
5030
|
-
|
5117
|
+
## 1.8.27 / 2013-09-24
|
5031
5118
|
|
5032
5119
|
Security fixes:
|
5033
5120
|
|
@@ -5036,7 +5123,7 @@ Security fixes:
|
|
5036
5123
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
5037
5124
|
1.8.23.2 (for Ruby 1.9.3).
|
5038
5125
|
|
5039
|
-
|
5126
|
+
## 1.8.26 / 2013-09-09
|
5040
5127
|
|
5041
5128
|
Security fixes:
|
5042
5129
|
|
@@ -5045,13 +5132,13 @@ Security fixes:
|
|
5045
5132
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
5046
5133
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
5047
5134
|
|
5048
|
-
|
5135
|
+
### Bug fixes:
|
5049
5136
|
|
5050
5137
|
* Fixed editing of a Makefile with 8-bit characters. Fixes #181
|
5051
5138
|
|
5052
|
-
|
5139
|
+
## 1.8.25 / 2013-01-24
|
5053
5140
|
|
5054
|
-
|
5141
|
+
### Bug fixes:
|
5055
5142
|
* Added 11627 to setup bin_file location to protect against errors. Fixes
|
5056
5143
|
#328 by ConradIrwin
|
5057
5144
|
* Specification#ruby_code didn't handle Requirement with multiple
|
@@ -5060,14 +5147,14 @@ Security fixes:
|
|
5060
5147
|
* Fix missing load_yaml in YAML-related requirement.rb code.
|
5061
5148
|
* Manually backport encoding-aware YAML gemspec
|
5062
5149
|
|
5063
|
-
|
5150
|
+
## 1.8.24 / 2012-04-27
|
5064
5151
|
|
5065
|
-
|
5152
|
+
### Bug fixes:
|
5066
5153
|
|
5067
5154
|
* Install the .pem files properly. Fixes #320
|
5068
5155
|
* Remove OpenSSL dependency from the http code path
|
5069
5156
|
|
5070
|
-
|
5157
|
+
## 1.8.23.2 / 2013-09-24
|
5071
5158
|
|
5072
5159
|
Security fixes:
|
5073
5160
|
|
@@ -5076,7 +5163,7 @@ Security fixes:
|
|
5076
5163
|
including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
|
5077
5164
|
1.8.23.2 (for Ruby 1.9.3).
|
5078
5165
|
|
5079
|
-
|
5166
|
+
## 1.8.23.1 / 2013-09-09
|
5080
5167
|
|
5081
5168
|
Security fixes:
|
5082
5169
|
|
@@ -5085,7 +5172,7 @@ Security fixes:
|
|
5085
5172
|
including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
|
5086
5173
|
1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
|
5087
5174
|
|
5088
|
-
|
5175
|
+
## 1.8.23 / 2012-04-19
|
5089
5176
|
|
5090
5177
|
This release increases the security used when RubyGems is talking to
|
5091
5178
|
an https server. If you use a custom RubyGems server over SSL, this
|
@@ -5105,49 +5192,49 @@ Security fixes:
|
|
5105
5192
|
* Disallow redirects from https to http
|
5106
5193
|
* Turn on verification of server SSL certs
|
5107
5194
|
|
5108
|
-
|
5195
|
+
### Enhancements:
|
5109
5196
|
* Add --clear-sources to fetch
|
5110
5197
|
|
5111
|
-
|
5198
|
+
### Bug fixes:
|
5112
5199
|
* Use File.identical? to check if two files are the same.
|
5113
5200
|
* Fixed init_with warning when using psych
|
5114
5201
|
|
5115
|
-
|
5202
|
+
## 1.8.22 / 2012-04-13
|
5116
5203
|
|
5117
|
-
|
5204
|
+
### Bug fixes:
|
5118
5205
|
|
5119
5206
|
* Workaround for psych/syck YAML date parsing issue
|
5120
5207
|
* Don't trust the encoding of ARGV. Fixes #307
|
5121
5208
|
* Quiet default warnings about missing spec variables
|
5122
5209
|
* Read a binary file properly (windows fix)
|
5123
5210
|
|
5124
|
-
|
5211
|
+
## 1.8.21 / 2012-03-22
|
5125
5212
|
|
5126
|
-
|
5213
|
+
### Bug fixes:
|
5127
5214
|
|
5128
5215
|
* Add workaround for buggy yaml output from 1.9.2
|
5129
5216
|
* Force 1.9.1 to remove it's prelude code. Fixes #305
|
5130
5217
|
|
5131
|
-
|
5218
|
+
## 1.8.20 / 2012-03-21
|
5132
5219
|
|
5133
|
-
|
5220
|
+
### Bug fixes:
|
5134
5221
|
|
5135
5222
|
* Add --force to `gem build` to skip validation. Fixes #297
|
5136
5223
|
* Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
|
5137
5224
|
* Treat the source as a proper url base. Fixes #304
|
5138
5225
|
* Warn when updating the specs cache fails. Fixes #300
|
5139
5226
|
|
5140
|
-
|
5227
|
+
## 1.8.19 / 2012-03-14
|
5141
5228
|
|
5142
|
-
|
5229
|
+
### Bug fixes:
|
5143
5230
|
|
5144
5231
|
* Handle loading psych vs syck properly. Fixes #298
|
5145
5232
|
* Make sure Date objects don't leak in via Marshal
|
5146
5233
|
* Perform Date => Time coercion on yaml loading. Fixes #266
|
5147
5234
|
|
5148
|
-
|
5235
|
+
## 1.8.18 / 2012-03-11
|
5149
5236
|
|
5150
|
-
|
5237
|
+
### Bug fixes:
|
5151
5238
|
|
5152
5239
|
* Use Psych API to emit more compatible YAML
|
5153
5240
|
* Download and write inside `gem fetch` directly. Fixes #289
|
@@ -5155,14 +5242,14 @@ Security fixes:
|
|
5155
5242
|
* Search everywhere for a spec for `gem spec`. Fixes #288
|
5156
5243
|
* Fix Gem.all_load_path. Fixes #171
|
5157
5244
|
|
5158
|
-
|
5245
|
+
## 1.8.17 / 2012-02-17
|
5159
5246
|
|
5160
|
-
|
5247
|
+
### Enhancements:
|
5161
5248
|
|
5162
5249
|
* Add MacRuby to the list of special cases for platforms (ferrous26)
|
5163
5250
|
* Add a default for where to install rubygems itself
|
5164
5251
|
|
5165
|
-
|
5252
|
+
### Bug fixes:
|
5166
5253
|
|
5167
5254
|
* Fixed gem loading issue caused by dependencies not resolving.
|
5168
5255
|
* Fixed umask error when stdlib is required and unresolved dependencies exist.
|
@@ -5170,59 +5257,59 @@ Security fixes:
|
|
5170
5257
|
* Define SUCKAGE better, ie only MRI 1.9.2
|
5171
5258
|
* Propagate env-shebang to the pristine command if set for install.
|
5172
5259
|
|
5173
|
-
|
5260
|
+
## 1.8.16 / 2012-02-12
|
5174
5261
|
|
5175
|
-
|
5262
|
+
### Bug fixes:
|
5176
5263
|
|
5177
5264
|
* Fix gem specification loading when encoding is not UTF-8. #146
|
5178
5265
|
* Allow group writable if umask allows it already.
|
5179
5266
|
* Uniquify the spec list based on directory order priority
|
5180
5267
|
|
5181
|
-
|
5268
|
+
## 1.8.15 / 2012-01-06
|
5182
5269
|
|
5183
|
-
|
5270
|
+
### Bug fixes:
|
5184
5271
|
|
5185
5272
|
* Don't eager load yaml, it creates a bad loop. Fixes #256
|
5186
5273
|
|
5187
|
-
|
5274
|
+
## 1.8.14 / 2012-01-05
|
5188
5275
|
|
5189
|
-
|
5276
|
+
### Bug fixes:
|
5190
5277
|
|
5191
5278
|
* Ignore old/bad cache data in Version
|
5192
5279
|
* Make sure our YAML workarounds are loaded properly. Fixes #250.
|
5193
5280
|
|
5194
|
-
|
5281
|
+
## 1.8.13 / 2011-12-21
|
5195
5282
|
|
5196
|
-
|
5283
|
+
### Bug fixes:
|
5197
5284
|
|
5198
5285
|
* Check loaded_specs properly when trying to satisfy a dep
|
5199
5286
|
|
5200
|
-
|
5287
|
+
### Enhancements:
|
5201
5288
|
|
5202
5289
|
* Remove using #loaded_path? for performance
|
5203
5290
|
* Remove Zlib workaround for Windows build.
|
5204
5291
|
|
5205
|
-
|
5292
|
+
## 1.8.12 / 2011-12-02
|
5206
5293
|
|
5207
|
-
|
5294
|
+
### Bug fixes:
|
5208
5295
|
|
5209
5296
|
* Handle more cases where Syck's DefaultKey showed up in requirements
|
5210
5297
|
and wasn't cleaned out.
|
5211
5298
|
|
5212
|
-
|
5299
|
+
## 1.8.11 / 2011-10-03
|
5213
5300
|
|
5214
|
-
|
5301
|
+
### Bug fixes:
|
5215
5302
|
|
5216
5303
|
* Deprecate was moved to Gem::Deprecate to stop polluting the top-level
|
5217
5304
|
namespace.
|
5218
5305
|
|
5219
|
-
|
5306
|
+
## 1.8.10 / 2011-08-25
|
5220
5307
|
|
5221
5308
|
RubyGems 1.8.10 contains a security fix that prevents malicious gems from
|
5222
5309
|
executing code when their specification is loaded. See
|
5223
5310
|
https://github.com/rubygems/rubygems/pull/165 for details.
|
5224
5311
|
|
5225
|
-
|
5312
|
+
### Bug fixes:
|
5226
5313
|
|
5227
5314
|
* RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
|
5228
5315
|
and %q to prevent code injection. Issue #165 by Postmodern
|
@@ -5233,21 +5320,21 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
5233
5320
|
* Fixed Syck DefaultKey infecting ruby-format specifications.
|
5234
5321
|
* `gem uninstall a b` no longer stops if gem "a" is not installed.
|
5235
5322
|
|
5236
|
-
|
5323
|
+
## 1.8.9 / 2011-08-23
|
5237
5324
|
|
5238
|
-
|
5325
|
+
### Bug fixes:
|
5239
5326
|
|
5240
5327
|
* Fixed uninstalling multiple gems using `gem uninstall`
|
5241
5328
|
* Gem.use_paths splatted to take multiple paths! Issue #148
|
5242
5329
|
|
5243
|
-
|
5330
|
+
## 1.8.8 / 2011-08-11
|
5244
5331
|
|
5245
|
-
|
5332
|
+
### Bug fixes:
|
5246
5333
|
* The encoding of a gem's YAML spec is now UTF-8. Issue #149
|
5247
5334
|
|
5248
|
-
|
5335
|
+
## 1.8.7 / 2011-08-04
|
5249
5336
|
|
5250
|
-
|
5337
|
+
### Bug fixes:
|
5251
5338
|
* Added missing require for `gem uninstall --format-executable`
|
5252
5339
|
* The correct name of the executable being uninstalled is now displayed with
|
5253
5340
|
--format-executable
|
@@ -5259,14 +5346,14 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
5259
5346
|
* Gem repository directories are no longer created world-writable. Patch by
|
5260
5347
|
Sakuro OZAWA. Ruby Bug #4930
|
5261
5348
|
|
5262
|
-
|
5349
|
+
## 1.8.6 / 2011-07-25
|
5263
5350
|
|
5264
|
-
|
5351
|
+
### Enhancements:
|
5265
5352
|
|
5266
5353
|
* Add autorequires and delay startup of RubyGems until require is called.
|
5267
5354
|
See Ruby bug #4962
|
5268
5355
|
|
5269
|
-
|
5356
|
+
### Bug fixes:
|
5270
5357
|
|
5271
5358
|
* Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
|
5272
5359
|
* Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
|
@@ -5278,27 +5365,27 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
5278
5365
|
* Handle the Syck DefaultKey problem once and for all.
|
5279
5366
|
* Fix SystemStackError occurring with "gem list -r -a" on 1.9.
|
5280
5367
|
|
5281
|
-
|
5368
|
+
## 1.8.5 / 2011-05-31
|
5282
5369
|
|
5283
|
-
|
5370
|
+
### Enhancements:
|
5284
5371
|
|
5285
5372
|
* The -u option to 'update local source cache' is official deprecated.
|
5286
5373
|
* Remove has_rdoc deprecations from Specification.
|
5287
5374
|
|
5288
|
-
|
5375
|
+
### Bug fixes:
|
5289
5376
|
|
5290
5377
|
* Handle bad specs more gracefully.
|
5291
5378
|
* Reset any Gem paths changed in the installer.
|
5292
5379
|
|
5293
|
-
|
5380
|
+
## 1.8.4 / 2011-05-25
|
5294
5381
|
|
5295
|
-
|
5382
|
+
### Enhancements:
|
5296
5383
|
|
5297
5384
|
* Removed default_executable deprecations from Specification.
|
5298
5385
|
|
5299
|
-
|
5386
|
+
## 1.8.3 / 2011-05-19
|
5300
5387
|
|
5301
|
-
|
5388
|
+
### Bug fixes:
|
5302
5389
|
|
5303
5390
|
* Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
|
5304
5391
|
Shota Fukumori
|
@@ -5307,33 +5394,33 @@ https://github.com/rubygems/rubygems/pull/165 for details.
|
|
5307
5394
|
* Fixed some bad calls left behind after rolling out some refactorings.
|
5308
5395
|
* Syck has a parse error on (good) times output from Psych. (dazuma, et al)
|
5309
5396
|
|
5310
|
-
|
5397
|
+
## 1.8.2 / 2011-05-11
|
5311
5398
|
|
5312
|
-
|
5399
|
+
### Enhancements:
|
5313
5400
|
|
5314
5401
|
* Moved #outdated from OutdatedCommand to Specification (for Isolate).
|
5315
5402
|
* Print out a warning about missing executables.
|
5316
5403
|
|
5317
|
-
|
5404
|
+
### Bug fixes:
|
5318
5405
|
|
5319
5406
|
* Added missing requires to fix various upgrade issues.
|
5320
5407
|
* `gem pristine` respects multiple gem repositories.
|
5321
5408
|
* setup.rb now execs with --disable-gems when possible
|
5322
5409
|
|
5323
|
-
|
5410
|
+
## 1.8.1 / 2011-05-05
|
5324
5411
|
|
5325
|
-
|
5412
|
+
### Enhancements:
|
5326
5413
|
|
5327
5414
|
* Added Gem::Requirement#specific? and Gem::Dependency#specific?
|
5328
5415
|
|
5329
|
-
|
5416
|
+
### Bug fixes:
|
5330
5417
|
|
5331
5418
|
* Typo on Indexer rendered it useless on Windows
|
5332
5419
|
* gem dep can fetch remote dependencies for non-latest gems again.
|
5333
5420
|
* gem uninstall with multiple versions no longer crashes with ArgumentError
|
5334
5421
|
* Always use binary mode for File.open to keep Windows happy
|
5335
5422
|
|
5336
|
-
|
5423
|
+
## 1.8.0 / 2011-04-34
|
5337
5424
|
|
5338
5425
|
This release focused on properly encapsulating functionality. Most of this
|
5339
5426
|
work focused on moving functionality out of Gem::SourceIndex and
|
@@ -5348,7 +5435,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
|
|
5348
5435
|
--build-arg` to regenerate a gem with an extension where it requires special
|
5349
5436
|
build arguments.
|
5350
5437
|
|
5351
|
-
|
5438
|
+
### Deprecations:
|
5352
5439
|
|
5353
5440
|
* DependencyList.from_source_index deprecated the source_index argument.
|
5354
5441
|
* Deprecated Dependency.new(/regex/).
|
@@ -5369,7 +5456,7 @@ build arguments.
|
|
5369
5456
|
* Deprecated all of Gem::GemPathSearcher.
|
5370
5457
|
* Deprecated Gem::Specification#default_executable.
|
5371
5458
|
|
5372
|
-
|
5459
|
+
### Enhancements:
|
5373
5460
|
|
5374
5461
|
* Gem::SourceIndex functionality has been moved to Gem::Specification.
|
5375
5462
|
Gem::SourceIndex is completely disconnected from Gem::Specification
|
@@ -5421,7 +5508,7 @@ build arguments.
|
|
5421
5508
|
extensions.
|
5422
5509
|
* `gem pristine` can now restore multiple gems.
|
5423
5510
|
|
5424
|
-
|
5511
|
+
### Bug fixes:
|
5425
5512
|
|
5426
5513
|
* DependencyInstaller passed around a source_index instance but used
|
5427
5514
|
Gem.source_index.
|
@@ -5433,15 +5520,15 @@ build arguments.
|
|
5433
5520
|
* `gem pristine` can now restore non-latest gems where the cached gem was
|
5434
5521
|
removed.
|
5435
5522
|
|
5436
|
-
|
5523
|
+
## 1.7.1 / 2011-03-32
|
5437
5524
|
|
5438
|
-
|
5525
|
+
### Bug fixes:
|
5439
5526
|
* Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
|
5440
5527
|
`rake check_manifest` showing a diff would not exit with an error.)
|
5441
5528
|
|
5442
|
-
|
5529
|
+
## 1.7.0 / 2011-03-32
|
5443
5530
|
|
5444
|
-
|
5531
|
+
### Deprecations:
|
5445
5532
|
* Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
|
5446
5533
|
cache.
|
5447
5534
|
* Deprecated RemoteFetcher#open_uri_or_path.
|
@@ -5453,7 +5540,7 @@ build arguments.
|
|
5453
5540
|
test_suite_file(=).
|
5454
5541
|
* Deprecated Specification#has_rdoc= and default_executable=
|
5455
5542
|
|
5456
|
-
|
5543
|
+
### Enhancements:
|
5457
5544
|
* Added stupid simple deprecation module.
|
5458
5545
|
* Added --spec option to `gem unpack` to output a gem's original metadata
|
5459
5546
|
* Added packaging option to Specification#validate
|
@@ -5485,7 +5572,7 @@ build arguments.
|
|
5485
5572
|
* UpdateCommand#gems_to_update now returns (name, version) pairs.
|
5486
5573
|
* UpdateCommand#which_to_update now takes an optional system argument.
|
5487
5574
|
|
5488
|
-
|
5575
|
+
### Bug fixes:
|
5489
5576
|
* Added missing remote fetcher require to pristine command (aarnell)
|
5490
5577
|
* Building gems now checks to ensure all required fields are non-nil
|
5491
5578
|
* Fix option parser when summary is nil.
|
@@ -5501,17 +5588,17 @@ build arguments.
|
|
5501
5588
|
Elias Baixas
|
5502
5589
|
* `gem update` now uniq's command line arguments.
|
5503
5590
|
|
5504
|
-
|
5591
|
+
## 1.6.2 / 2011-03-08
|
5505
5592
|
|
5506
|
-
|
5593
|
+
### Bug fixes:
|
5507
5594
|
|
5508
5595
|
* require of an activated gem could cause activation conflicts. Fixes
|
5509
5596
|
Bug #29056 by Dave Verwer.
|
5510
5597
|
* `gem outdated` now works with up-to-date prerelease gems.
|
5511
5598
|
|
5512
|
-
|
5599
|
+
## 1.6.1 / 2011-03-03
|
5513
5600
|
|
5514
|
-
|
5601
|
+
### Bug fixes:
|
5515
5602
|
|
5516
5603
|
* Installation no longer fails when a dependency from a version that won't be
|
5517
5604
|
installed is unsatisfied.
|
@@ -5520,9 +5607,9 @@ build arguments.
|
|
5520
5607
|
* Gem files are cached correctly again. Patch #29051 by Mamoru Tasaka.
|
5521
5608
|
* Tests now pass with non-022 umask. Patch #29050 by Mamoru Tasaka.
|
5522
5609
|
|
5523
|
-
|
5610
|
+
## 1.6.0 / 2011-02-29
|
5524
5611
|
|
5525
|
-
|
5612
|
+
### Deprecations:
|
5526
5613
|
|
5527
5614
|
* RubyGems no longer requires 'thread'. Rails < 3 will need to add require
|
5528
5615
|
'thread' to their applications.
|
@@ -5531,7 +5618,7 @@ build arguments.
|
|
5531
5618
|
* Gem::LoadError#version_requirements has been removed. Use
|
5532
5619
|
Gem::LoadError#requirement.
|
5533
5620
|
|
5534
|
-
|
5621
|
+
### Enhancements:
|
5535
5622
|
|
5536
5623
|
* Rewrote how Gem::activate (gem and require) resolves dependencies.
|
5537
5624
|
* Gem::LoadError#version_requirement has been removed. Use
|
@@ -5559,7 +5646,7 @@ build arguments.
|
|
5559
5646
|
locally cached gem specifications.
|
5560
5647
|
* SpecFetcher.fetch_spec can now take a string source_uri.
|
5561
5648
|
|
5562
|
-
|
5649
|
+
### Bug fixes:
|
5563
5650
|
|
5564
5651
|
* Added missing require of Gem::RemoteFetcher to the unpack command.
|
5565
5652
|
* RubyGems now completely removes a previous install when reinstalling.
|
@@ -5572,28 +5659,26 @@ build arguments.
|
|
5572
5659
|
* Gem::Security used FileUtils but didn't require it. Reported by Elia Schito.
|
5573
5660
|
* Gem::Uninstaller now respects --format-executable.
|
5574
5661
|
|
5575
|
-
|
5662
|
+
## 1.5.3 / 2011-02-26
|
5576
5663
|
|
5577
|
-
|
5664
|
+
### Bug fixes:
|
5578
5665
|
|
5579
5666
|
* Fix for a bug in Syck which causes install failures for gems packaged with
|
5580
5667
|
Psych. Bug #28965 by Aaron Patterson.
|
5581
5668
|
|
5582
|
-
|
5669
|
+
## 1.5.2 / 2011-02-10
|
5583
5670
|
|
5584
|
-
|
5671
|
+
### Bug fixes:
|
5585
5672
|
|
5586
5673
|
* Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
|
5587
5674
|
|
5588
|
-
|
5589
|
-
|
5590
|
-
#= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
|
5675
|
+
## 1.5.1 / 2011-02-09
|
5591
5676
|
|
5592
|
-
|
5677
|
+
### Enhancements:
|
5593
5678
|
|
5594
5679
|
* Added ability to do gem update --system X.Y.Z.
|
5595
5680
|
|
5596
|
-
|
5681
|
+
### Bug fixes:
|
5597
5682
|
|
5598
5683
|
* Scrub !!null YAML from 1.9.2 (install and build).
|
5599
5684
|
* Added missing requires for user_interaction.
|
@@ -5602,11 +5687,9 @@ build arguments.
|
|
5602
5687
|
* Fixed SilentUI for cygwin; try /dev/null first then fall back to NUL.
|
5603
5688
|
* RubyGems now enforces ruby 1.8.7 or newer.
|
5604
5689
|
|
5605
|
-
|
5606
|
-
|
5607
|
-
#= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
|
5690
|
+
## 1.5.0 / 2011-01-31
|
5608
5691
|
|
5609
|
-
|
5692
|
+
### Enhancements:
|
5610
5693
|
|
5611
5694
|
* Finally fixed all known 1.9.x issues. Upgrading is now possible!
|
5612
5695
|
* Merged huge 1.3.7/ruby-core changes to master.
|
@@ -5621,7 +5704,7 @@ build arguments.
|
|
5621
5704
|
* Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
|
5622
5705
|
Erik Hollensbe.
|
5623
5706
|
|
5624
|
-
|
5707
|
+
### Bug fixes:
|
5625
5708
|
|
5626
5709
|
* `gem update` was implicitly doing --system.
|
5627
5710
|
* 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
|
@@ -5633,25 +5716,25 @@ build arguments.
|
|
5633
5716
|
Erik Hollensbe.
|
5634
5717
|
* rubygems-update lists its development dependencies again
|
5635
5718
|
|
5636
|
-
|
5719
|
+
## 1.4.2 / 2011-01-06
|
5637
5720
|
|
5638
|
-
|
5721
|
+
### Bug fixes:
|
5639
5722
|
|
5640
5723
|
* Gem::Versions: "1.b1" != "1.b.1", but "1.b1" eql? "1.b.1". Fixes gem indexing.
|
5641
5724
|
* Fixed Gem.find_files.
|
5642
5725
|
* Removed otherwise unused #find_all_dot_rb. Only 6 days old and hella buggy.
|
5643
5726
|
|
5644
|
-
|
5727
|
+
## 1.4.1 / 2010-12-31
|
5645
5728
|
|
5646
5729
|
Since apparently nobody reads my emails, blog posts or the README:
|
5647
5730
|
|
5648
5731
|
DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
|
5649
5732
|
|
5650
|
-
|
5733
|
+
### Bug fixes:
|
5651
5734
|
|
5652
5735
|
* Specification#load was untainting a frozen string (via `gem build *.spec`)
|
5653
5736
|
|
5654
|
-
|
5737
|
+
## 1.4.0 / 2010-12-30
|
5655
5738
|
|
5656
5739
|
NOTE: In order to better maintain rubygems and to get it in sync with
|
5657
5740
|
the world (eg, 1.9's 1.3.7 is different from our 1.3.7), rubygems is
|
@@ -5661,7 +5744,7 @@ You have been warned!
|
|
5661
5744
|
|
5662
5745
|
NOTE: We've switched to git/github. See README.rdoc for details.
|
5663
5746
|
|
5664
|
-
|
5747
|
+
### Features:
|
5665
5748
|
|
5666
5749
|
* Added --launch option to `gem server`. (gthiesfeld)
|
5667
5750
|
* Added fuzzy name matching on install failures. (gstark/presidentbeef)
|
@@ -5671,7 +5754,7 @@ NOTE: We've switched to git/github. See README.rdoc for details.
|
|
5671
5754
|
* --source is now additive with your current sources.
|
5672
5755
|
Use --clear-sources first to maintain previous behavior.
|
5673
5756
|
|
5674
|
-
|
5757
|
+
### Bug fixes:
|
5675
5758
|
|
5676
5759
|
* Dependency "~>"s now respect lower-bound prerelease versions.
|
5677
5760
|
* Ensure the gem directories exist on download.
|
@@ -5682,7 +5765,7 @@ NOTE: We've switched to git/github. See README.rdoc for details.
|
|
5682
5765
|
Do not depend on rubygems to require stdlib stuff for you. (raggi/tmm1)
|
5683
5766
|
* Treat 1.0.a10 like 1.0.a.10 for sorting, etc. Fixes #27903. (dchelimsky)
|
5684
5767
|
|
5685
|
-
|
5768
|
+
## 1.3.7 / 2010-05-13
|
5686
5769
|
|
5687
5770
|
NOTE:
|
5688
5771
|
|
@@ -5693,7 +5776,7 @@ http://gems.rubyforge.org with https://rubygems.org/
|
|
5693
5776
|
|
5694
5777
|
http://gems.rubyforge.org will continue to work for the foreseeable future.
|
5695
5778
|
|
5696
|
-
|
5779
|
+
### Features:
|
5697
5780
|
|
5698
5781
|
* `gem` commands
|
5699
5782
|
* `gem install` and `gem fetch` now report alternate platforms when a
|
@@ -5712,7 +5795,7 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
5712
5795
|
in 1.3.6)
|
5713
5796
|
* RubyGems now has platform support for IronRuby. Patch #27951 by Will Green.
|
5714
5797
|
|
5715
|
-
|
5798
|
+
### Bug fixes:
|
5716
5799
|
|
5717
5800
|
* Require rubygems/custom_require if --disable-gem was set. Bug #27700 by
|
5718
5801
|
Roger Pack.
|
@@ -5724,9 +5807,9 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
5724
5807
|
* Gem::PackageTask depends on the package dir like the other rake package
|
5725
5808
|
tasks so dependencies can be hooked up correctly.
|
5726
5809
|
|
5727
|
-
|
5810
|
+
## 1.3.6 / 2010-02-17
|
5728
5811
|
|
5729
|
-
|
5812
|
+
### Features:
|
5730
5813
|
|
5731
5814
|
* `gem` commands
|
5732
5815
|
* Added `gem push` and `gem owner` for interacting with modern/Gemcutter
|
@@ -5738,7 +5821,7 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
5738
5821
|
force rebuilding. Patch #25982 by Akinori MUSHA.
|
5739
5822
|
* Capital letters are now allowed in prerelease versions.
|
5740
5823
|
|
5741
|
-
|
5824
|
+
### Bug fixes:
|
5742
5825
|
|
5743
5826
|
* Development deps are no longer added to rubygems-update gem so older
|
5744
5827
|
versions can update successfully.
|
@@ -5757,7 +5840,7 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
5757
5840
|
* Gem::RemoteFetcher no longer copies the file if it is where we want it.
|
5758
5841
|
Patch #27409 by Jakub Šťastný.
|
5759
5842
|
|
5760
|
-
|
5843
|
+
### Deprecations:
|
5761
5844
|
|
5762
5845
|
* lib/rubygems/timer.rb has been removed.
|
5763
5846
|
* Gem::Dependency#version_requirements is deprecated and will be removed on or
|
@@ -5766,23 +5849,23 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
5766
5849
|
* Gem::manage_gems was removed in 1.3.3.
|
5767
5850
|
* Time::today was removed in 1.3.3.
|
5768
5851
|
|
5769
|
-
|
5852
|
+
## 1.3.5 / 2009-07-21
|
5770
5853
|
|
5771
|
-
|
5854
|
+
### Bug fixes:
|
5772
5855
|
|
5773
5856
|
* Fix use of prerelease gems.
|
5774
5857
|
* Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
|
5775
5858
|
|
5776
|
-
|
5859
|
+
### Deprecations:
|
5777
5860
|
|
5778
5861
|
* Bulk index update is no longer supported (the code currently remains, but not
|
5779
5862
|
the tests)
|
5780
5863
|
* Gem::manage_gems was removed in 1.3.3.
|
5781
5864
|
* Time::today was removed in 1.3.3.
|
5782
5865
|
|
5783
|
-
|
5866
|
+
## 1.3.4 / 2009-05-03
|
5784
5867
|
|
5785
|
-
|
5868
|
+
### Bug fixes:
|
5786
5869
|
|
5787
5870
|
* Fixed various warnings
|
5788
5871
|
* Gem::ruby_version works correctly for 1.8 branch and trunk
|
@@ -5793,16 +5876,16 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
5793
5876
|
drives. Bug #25882 by Lars Christensen
|
5794
5877
|
* Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
|
5795
5878
|
|
5796
|
-
|
5879
|
+
### Deprecations:
|
5797
5880
|
|
5798
5881
|
* Bulk index update is no longer supported (the code currently remains, but not
|
5799
5882
|
the tests)
|
5800
5883
|
* Gem::manage_gems was removed in 1.3.3.
|
5801
5884
|
* Time::today was removed in 1.3.3.
|
5802
5885
|
|
5803
|
-
|
5886
|
+
## 1.3.3 / 2009-05-04
|
5804
5887
|
|
5805
|
-
|
5888
|
+
### Features:
|
5806
5889
|
|
5807
5890
|
* `gem server` allows port names (from /etc/services) with --port.
|
5808
5891
|
* `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
|
@@ -5812,7 +5895,7 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
5812
5895
|
* Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
|
5813
5896
|
* RDoc is now generated regardless of Gem::Specification#has_rdoc?
|
5814
5897
|
|
5815
|
-
|
5898
|
+
### Bug fixes:
|
5816
5899
|
|
5817
5900
|
* `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
|
5818
5901
|
Eisenberg.
|
@@ -5834,15 +5917,15 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
5834
5917
|
* Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
|
5835
5918
|
reported by Alf Mikula.
|
5836
5919
|
|
5837
|
-
|
5920
|
+
### Deprecations:
|
5838
5921
|
|
5839
5922
|
* Gem::manage_gems has been removed.
|
5840
5923
|
* Time::today has been removed early. There was no way to make it warn and be
|
5841
5924
|
easy to override with user code.
|
5842
5925
|
|
5843
|
-
|
5926
|
+
## 1.3.2 / 2009-04-15
|
5844
5927
|
|
5845
|
-
|
5928
|
+
### Features:
|
5846
5929
|
|
5847
5930
|
* RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
|
5848
5931
|
This can be used to add commands (See Gem::CommandManager) or add
|
@@ -5858,9 +5941,9 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
5858
5941
|
* Various improvements to build arguments for installing gems.
|
5859
5942
|
* `gem contents` added --all and --no-prefix.
|
5860
5943
|
* Gem::Specification
|
5861
|
-
*
|
5862
|
-
*
|
5863
|
-
*
|
5944
|
+
* `#validate` strips directories and errors on not-files.
|
5945
|
+
* `#description` no longer removes newlines.
|
5946
|
+
* `#name` must be a String.
|
5864
5947
|
* FIXME and TODO are no longer allowed in various fields.
|
5865
5948
|
* Added support for a license attribute. Feature #11041 (partial).
|
5866
5949
|
* Removed Gem::Specification::list, too much process growth. Bug #23668 by
|
@@ -5870,7 +5953,7 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
5870
5953
|
* Modern indices can now be updated incrementally.
|
5871
5954
|
* Legacy indices can be updated separately from modern.
|
5872
5955
|
|
5873
|
-
|
5956
|
+
### Bug fixes:
|
5874
5957
|
|
5875
5958
|
* Better gem activation error message. Patch #23082.
|
5876
5959
|
* Kernel methods are now private. Patch #20801 by James M. Lawrence.
|
@@ -5896,7 +5979,7 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
5896
5979
|
* Deal with extraneous quotation mark when autogenerating .bat file on MS
|
5897
5980
|
Windows. Bug #22712.
|
5898
5981
|
|
5899
|
-
|
5982
|
+
### Deprecations:
|
5900
5983
|
|
5901
5984
|
* Gem::manage_gems has been removed.
|
5902
5985
|
* Time::today will be removed in RubyGems 1.4.
|
@@ -5904,9 +5987,9 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
|
|
5904
5987
|
Special thanks to Chad Wooley for backwards compatibility testing and Luis
|
5905
5988
|
Lavena and Daniel Berger for continuing windows support.
|
5906
5989
|
|
5907
|
-
|
5990
|
+
## 1.3.1 / 2008-10-28
|
5908
5991
|
|
5909
|
-
|
5992
|
+
### Bug fixes:
|
5910
5993
|
|
5911
5994
|
* Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
|
5912
5995
|
issues related to no uid support under Windows.
|
@@ -5917,13 +6000,13 @@ Lavena and Daniel Berger for continuing windows support.
|
|
5917
6000
|
* Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
|
5918
6001
|
* Silence PATH warning.
|
5919
6002
|
|
5920
|
-
|
6003
|
+
### Deprecations:
|
5921
6004
|
|
5922
6005
|
* Gem::manage_gems will be removed on or after March 2009.
|
5923
6006
|
|
5924
|
-
|
6007
|
+
## 1.3.0 / 2008-09-25
|
5925
6008
|
|
5926
|
-
|
6009
|
+
### Features:
|
5927
6010
|
|
5928
6011
|
* RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
|
5929
6012
|
stdout is not a TTY, except with --both.
|
@@ -5937,12 +6020,12 @@ Lavena and Daniel Berger for continuing windows support.
|
|
5937
6020
|
* RubyGems now updates the ri cache when the rdoc gem is installed and
|
5938
6021
|
documentation is generated.
|
5939
6022
|
|
5940
|
-
|
6023
|
+
### Deprecations:
|
5941
6024
|
|
5942
6025
|
* Gem::manage_gems now warns when called. It will be removed on or after March
|
5943
6026
|
2009.
|
5944
6027
|
|
5945
|
-
|
6028
|
+
### Bug fixes:
|
5946
6029
|
|
5947
6030
|
* RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
|
5948
6031
|
Bug #20775 by Hemant Kumar.
|
@@ -5966,7 +6049,7 @@ Lavena and Daniel Berger for continuing windows support.
|
|
5966
6049
|
* `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
|
5967
6050
|
* Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
|
5968
6051
|
|
5969
|
-
|
6052
|
+
### Enhancements:
|
5970
6053
|
|
5971
6054
|
* `gem help install` now describes _version_ argument to executable stubs
|
5972
6055
|
* `gem help environment` describes environment variables and ~/.gemrc and
|
@@ -5992,9 +6075,9 @@ Lavena and Daniel Berger for continuing windows support.
|
|
5992
6075
|
* test/test_ext_configure_builder.rb
|
5993
6076
|
* Locale-free patch by Yusuke Endoh [ruby-core:17444].
|
5994
6077
|
|
5995
|
-
|
6078
|
+
## 1.2.0 / 2008-06-21
|
5996
6079
|
|
5997
|
-
|
6080
|
+
### Features:
|
5998
6081
|
|
5999
6082
|
* RubyGems no longer performs bulk updates and instead only fetches the gemspec
|
6000
6083
|
files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
|
@@ -6013,7 +6096,7 @@ Lavena and Daniel Berger for continuing windows support.
|
|
6013
6096
|
* setup.rb now handles --vendor and --destdir for packagers
|
6014
6097
|
* `gem stale` command that lists gems by last access time
|
6015
6098
|
|
6016
|
-
|
6099
|
+
### Bug fixes:
|
6017
6100
|
|
6018
6101
|
* File modes from gems are now honored, patch #19737
|
6019
6102
|
* Marshal Gem::Specification objects from the future can now be loaded.
|
@@ -6028,7 +6111,7 @@ Lavena and Daniel Berger for continuing windows support.
|
|
6028
6111
|
* Gem::DependencyInstaller resets installed gems every install, bug #19444
|
6029
6112
|
* Gem.default_path is now honored if GEM_PATH is not set, patch #19502
|
6030
6113
|
|
6031
|
-
|
6114
|
+
### Enhancements:
|
6032
6115
|
|
6033
6116
|
* setup.rb
|
6034
6117
|
* stub files created by RubyGems 0.7.x and older are no longer removed. When
|
@@ -6047,9 +6130,9 @@ Lavena and Daniel Berger for continuing windows support.
|
|
6047
6130
|
* Gem::RemoteFetcher now performs persistent connections for HEAD requests,
|
6048
6131
|
bug #7973
|
6049
6132
|
|
6050
|
-
|
6133
|
+
## 1.1.1 / 2008-04-11
|
6051
6134
|
|
6052
|
-
|
6135
|
+
### Bug fixes:
|
6053
6136
|
|
6054
6137
|
* Gem.prefix now returns non-nil only when RubyGems was installed outside
|
6055
6138
|
sitelibdir or libdir.
|
@@ -6064,9 +6147,9 @@ Lavena and Daniel Berger for continuing windows support.
|
|
6064
6147
|
* Gem::RemoteFetcher handles Errno::ECONNABORTED.
|
6065
6148
|
* Printing of release notes fixed.
|
6066
6149
|
|
6067
|
-
|
6150
|
+
## 1.1.0 / 2008-03-29
|
6068
6151
|
|
6069
|
-
|
6152
|
+
### Features:
|
6070
6153
|
|
6071
6154
|
* RubyGems now uses persistent connections on index updates. Index updates are
|
6072
6155
|
much faster now.
|
@@ -6078,7 +6161,7 @@ Lavena and Daniel Berger for continuing windows support.
|
|
6078
6161
|
* `gem spec` now extracts specifications from .gem files.
|
6079
6162
|
* `gem query --installed` to aid automation of checking for gems.
|
6080
6163
|
|
6081
|
-
|
6164
|
+
### Bug fixes:
|
6082
6165
|
|
6083
6166
|
* RubyGems works with both Config and RbConfig now.
|
6084
6167
|
* Executables are now cleaned upon uninstall.
|
@@ -6094,7 +6177,7 @@ Lavena and Daniel Berger for continuing windows support.
|
|
6094
6177
|
* Gem stub scripts on windows now work outside Gem.bindir.
|
6095
6178
|
* `gem sources -r` now works without network access.
|
6096
6179
|
|
6097
|
-
|
6180
|
+
### Enhancements:
|
6098
6181
|
|
6099
6182
|
* RubyGems now requires Ruby > 1.8.3.
|
6100
6183
|
* Release notes are now printed upon installation.
|
@@ -6105,26 +6188,26 @@ Lavena and Daniel Berger for continuing windows support.
|
|
6105
6188
|
|
6106
6189
|
For a full list of changes to RubyGems, see the git log.
|
6107
6190
|
|
6108
|
-
|
6191
|
+
## 1.0.1 / 2007-12-20
|
6109
6192
|
|
6110
|
-
|
6193
|
+
### Bug fixes:
|
6111
6194
|
|
6112
6195
|
* Installation on Ruby 1.8.3 through 1.8.5 fixed
|
6113
6196
|
* `gem build` on 1.8.3 fixed
|
6114
6197
|
|
6115
|
-
|
6198
|
+
### Enhancements:
|
6116
6199
|
|
6117
6200
|
* Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
|
6118
6201
|
this is official in RubyGems 1.0.1.
|
6119
6202
|
|
6120
|
-
|
6203
|
+
## 1.0.0 / 2007-12-20
|
6121
6204
|
|
6122
|
-
|
6205
|
+
### Features:
|
6123
6206
|
|
6124
6207
|
* RubyGems warns about various problems with gemspecs during gem building
|
6125
6208
|
* More-consistent versioning for the RubyGems software
|
6126
6209
|
|
6127
|
-
|
6210
|
+
### Enhancements:
|
6128
6211
|
|
6129
6212
|
* Fixed various bugs and problems with installing gems on Windows
|
6130
6213
|
* Fixed using `gem server` for installing gems
|
@@ -6138,7 +6221,7 @@ For a full list of changes to RubyGems, see the git log.
|
|
6138
6221
|
* `gem unpack` can now unpack into a specific directory with --target
|
6139
6222
|
* OpenSSL is no longer required by default
|
6140
6223
|
|
6141
|
-
|
6224
|
+
### Breaking changes:
|
6142
6225
|
|
6143
6226
|
* Kernel#require_gem has been removed
|
6144
6227
|
* Executables without a shebang will not be wrapped in a future version, this
|
@@ -6150,9 +6233,9 @@ For a full list of changes to RubyGems, see the git log.
|
|
6150
6233
|
* Gem::Specification#autorequire= has been deprecated
|
6151
6234
|
* Time::today will be removed in a future version
|
6152
6235
|
|
6153
|
-
|
6236
|
+
## 0.9.5 / 2007-11-19
|
6154
6237
|
|
6155
|
-
|
6238
|
+
### Features:
|
6156
6239
|
|
6157
6240
|
* Platform support
|
6158
6241
|
* Automatic installation of platform gems
|
@@ -6164,7 +6247,7 @@ For a full list of changes to RubyGems, see the git log.
|
|
6164
6247
|
* Improved stubs and `gem.bat` on mswin, including better compatibility
|
6165
6248
|
with the One-Click Installer.
|
6166
6249
|
|
6167
|
-
|
6250
|
+
### Enhancements:
|
6168
6251
|
|
6169
6252
|
* Time::today is deprecated and will be removed at a future date
|
6170
6253
|
* Gem::manage_gems is deprecated and will be removed at a future date
|
@@ -6209,13 +6292,13 @@ Special thanks to:
|
|
6209
6292
|
* Tom Copeland
|
6210
6293
|
* Wilson Bilkovich
|
6211
6294
|
|
6212
|
-
|
6295
|
+
## 0.9.4 / 2007-05-23
|
6213
6296
|
|
6214
6297
|
If you are experiencing problems with the source index (e.g. strange
|
6215
6298
|
"No Method" errors), or problems with zlib (e.g. "Buffer Error"
|
6216
6299
|
message), we recommend upgrading to RubyGems 0.9.4.
|
6217
6300
|
|
6218
|
-
|
6301
|
+
### Bug fixes:
|
6219
6302
|
|
6220
6303
|
* Several people have been experiencing problems with no method errors
|
6221
6304
|
on the source index cache. The source index cache is now a bit more
|
@@ -6227,9 +6310,9 @@ message), we recommend upgrading to RubyGems 0.9.4.
|
|
6227
6310
|
* Several sub-commands were accidentally dropped from the "gem" command.
|
6228
6311
|
These commands have been restored.
|
6229
6312
|
|
6230
|
-
|
6313
|
+
## 0.9.3 / 2007-05-10
|
6231
6314
|
|
6232
|
-
|
6315
|
+
### Bug fixes:
|
6233
6316
|
|
6234
6317
|
The ZLib library on Windows will occasionally complains about a buffer error
|
6235
6318
|
when unpacking gems. The Gems software has a workaround for that problem, but
|
@@ -6237,19 +6320,19 @@ the workaround was only enabled for versions of ZLib 1.2.1 or earlier. We
|
|
6237
6320
|
have received several reports of the error occurring with ZLib 1.2.3, so we
|
6238
6321
|
have permanently enabled the work around on all versions.
|
6239
6322
|
|
6240
|
-
|
6323
|
+
## 0.9.2 / 2007-02-05
|
6241
6324
|
|
6242
|
-
|
6325
|
+
### Bug fixes:
|
6243
6326
|
|
6244
6327
|
* The "unpack" command now works properly.
|
6245
6328
|
* User name and password are now passed properly to the authenticating
|
6246
6329
|
proxy when downloading gems.
|
6247
6330
|
|
6248
|
-
|
6331
|
+
## 0.9.1 / 2007-01-16
|
6249
6332
|
|
6250
6333
|
See git log
|
6251
6334
|
|
6252
|
-
|
6335
|
+
## 0.9.0 / 2006-06-28
|
6253
6336
|
|
6254
6337
|
Finally, the much anticipated RubyGems version 0.9.0 is now available.
|
6255
6338
|
This release includes a number of new features and bug fixes. The
|
@@ -6257,7 +6340,7 @@ number one change is that we can now download the gem index
|
|
6257
6340
|
incrementally. This will greatly speed up the gem command when only a
|
6258
6341
|
few gems are out of date.
|
6259
6342
|
|
6260
|
-
|
6343
|
+
### Enhancements:
|
6261
6344
|
|
6262
6345
|
* The gem index is now downloaded incrementally, only updating entries
|
6263
6346
|
that are out of date. If more than 50 entries are out of date, we
|
@@ -6284,7 +6367,7 @@ few gems are out of date.
|
|
6284
6367
|
* .rbw is now a supported suffix for RubyGem's custom require.
|
6285
6368
|
* Several Ruby 1.9 compatibility fixes (Eric Hodel).
|
6286
6369
|
|
6287
|
-
|
6370
|
+
### Bug fixes:
|
6288
6371
|
|
6289
6372
|
* Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
|
6290
6373
|
cross-Ruby version compatibility issues.
|
@@ -6296,7 +6379,7 @@ few gems are out of date.
|
|
6296
6379
|
* Fixed prefix handling for native expressions (patch by Aaron Patterson).
|
6297
6380
|
* Fixed several Upgrade => Update typos.
|
6298
6381
|
|
6299
|
-
|
6382
|
+
## 0.8.11 / 2005-07-13
|
6300
6383
|
|
6301
6384
|
* -y is a synonym for --include-dependencies.
|
6302
6385
|
* Better handling of errors in the top level rescue clause.
|
@@ -6315,7 +6398,7 @@ few gems are out of date.
|
|
6315
6398
|
* Added David Glasser's install-from-mirror patch.
|
6316
6399
|
* Additional internal structural cleanup and test reorganization.
|
6317
6400
|
|
6318
|
-
|
6401
|
+
## 0.8.10 / 2005-03-27
|
6319
6402
|
|
6320
6403
|
* In multi-user environments, it is common to supply multiple versions of gems
|
6321
6404
|
(for example Rails), allowing individual users to select the version of the
|
@@ -6326,16 +6409,16 @@ few gems are out of date.
|
|
6326
6409
|
installed, then the "gem update --system" command will download a new
|
6327
6410
|
update, but install the latest update prior to the download.
|
6328
6411
|
|
6329
|
-
|
6412
|
+
## 0.8.9
|
6330
6413
|
|
6331
6414
|
Never released
|
6332
6415
|
|
6333
|
-
|
6416
|
+
## 0.8.8 / 2005-03-14
|
6334
6417
|
|
6335
6418
|
* Moved the master definition of class Requirement back under version.
|
6336
6419
|
Kept the body of Requirement under Gem.
|
6337
6420
|
|
6338
|
-
|
6421
|
+
## 0.8.7 / 2005-03-14
|
6339
6422
|
|
6340
6423
|
Even though it has only been a few weeks since that last release,
|
6341
6424
|
there are quite a number of new features in 0.8.7. A complete list of
|
@@ -6388,11 +6471,11 @@ file system. You can read more about them here:
|
|
6388
6471
|
* gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
|
6389
6472
|
* gemwhich: http://docs.rubygems.org/read/chapter/17
|
6390
6473
|
|
6391
|
-
|
6474
|
+
## 0.8.6 / 2005-02-27
|
6392
6475
|
|
6393
6476
|
* Fixed a small bug with shebang construction
|
6394
6477
|
|
6395
|
-
|
6478
|
+
## 0.8.5 / 2005-02-26
|
6396
6479
|
|
6397
6480
|
Do you know how you used to dread getting the following message while
|
6398
6481
|
installing gems?
|
@@ -6414,7 +6497,7 @@ us. No RDoc generation was included in the following times.
|
|
6414
6497
|
The new caching code is at least 3x faster than previous versions. Woo
|
6415
6498
|
Hoo!
|
6416
6499
|
|
6417
|
-
|
6500
|
+
## 0.8.4 / 2005-01-01
|
6418
6501
|
|
6419
6502
|
* Rubygems 0.8.3's installer was broken unless you already had an older
|
6420
6503
|
version of RubyGems installed. That's fixed.
|
@@ -6424,7 +6507,7 @@ Hoo!
|
|
6424
6507
|
* Support for lower-cased Gem file names (for you, Paul Duncan :)
|
6425
6508
|
* Erik Veenstra's patch for making Gem versions sortable.
|
6426
6509
|
|
6427
|
-
|
6510
|
+
## 0.8.3 / 2004-12-07
|
6428
6511
|
|
6429
6512
|
No real earth shattering news here, but there were a number of really
|
6430
6513
|
annoying issues involving other libraries that RubyGems depends upon.
|
@@ -6466,11 +6549,11 @@ There has been some minor usability enhancements and changes ...
|
|
6466
6549
|
names. This was useful for him while testing libs that he had in
|
6467
6550
|
development.
|
6468
6551
|
|
6469
|
-
|
6552
|
+
## 0.8.1 / 2004-09-17
|
6470
6553
|
|
6471
6554
|
* Quick release to capture some bug fixes.
|
6472
6555
|
|
6473
|
-
|
6556
|
+
## 0.8.0 / 2004-09-15
|
6474
6557
|
|
6475
6558
|
* Remove need for library stubs. Set the RUBYOPT environment variable to
|
6476
6559
|
include "rrubygems", and a normal require will find gem files. Continue to
|
@@ -6493,15 +6576,15 @@ There has been some minor usability enhancements and changes ...
|
|
6493
6576
|
to pick.
|
6494
6577
|
* Added "gem unpack" for "unpacking" a gem to the current directory
|
6495
6578
|
|
6496
|
-
|
6579
|
+
## 0.7.0 / 2004-07-09
|
6497
6580
|
|
6498
6581
|
See git log
|
6499
6582
|
|
6500
|
-
|
6583
|
+
## 0.6.1 / 2004-06-08
|
6501
6584
|
|
6502
6585
|
See git log
|
6503
6586
|
|
6504
|
-
|
6587
|
+
## 0.6.0 / 2004-06-08
|
6505
6588
|
|
6506
6589
|
* Collapse output of --search and --list (and gem_server) operations so that
|
6507
6590
|
each gem is listed only once, with each of its versions listed on the same
|
@@ -6514,7 +6597,7 @@ See git log
|
|
6514
6597
|
spec.required_ruby_version = "> 1.8.0"
|
6515
6598
|
* --install-stub defaults to true, so library stubs are created
|
6516
6599
|
|
6517
|
-
|
6600
|
+
## 0.5.0 / 2004-06-06
|
6518
6601
|
|
6519
6602
|
* Jim added the ability to specify version constraints to avoid API
|
6520
6603
|
incompatibilities. This has been the subject of much debate for the past
|
@@ -6537,11 +6620,11 @@ See git log
|
|
6537
6620
|
automatically included.
|
6538
6621
|
* Some small bug fixes
|
6539
6622
|
|
6540
|
-
|
6623
|
+
## 0.4.0 / 2004-05-30
|
6541
6624
|
|
6542
6625
|
* Minor bug fixes including Windows compatibility issues
|
6543
6626
|
|
6544
|
-
|
6627
|
+
## 0.3.0 / 2004-04-30
|
6545
6628
|
|
6546
6629
|
* Cleanup of command-line arguments and handling. Most commands accept a
|
6547
6630
|
--local or --remote modifier.
|
@@ -6562,6 +6645,6 @@ See git log
|
|
6562
6645
|
* Generally improved error messages (still more work to do)
|
6563
6646
|
* Rearranged gem directory structure for cleanliness.
|
6564
6647
|
|
6565
|
-
|
6648
|
+
## 0.2.0 / 2004-03-14
|
6566
6649
|
|
6567
6650
|
* Initial public release
|