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