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