px_github_changelog_generator 0.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (68) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +9 -0
  3. data/README.md +357 -0
  4. data/Rakefile +19 -0
  5. data/bin/git-generate-changelog +5 -0
  6. data/bin/github_changelog_generator +5 -0
  7. data/lib/github_changelog_generator/argv_parser.rb +225 -0
  8. data/lib/github_changelog_generator/file_parser_chooser.rb +27 -0
  9. data/lib/github_changelog_generator/generator/entry.rb +218 -0
  10. data/lib/github_changelog_generator/generator/generator.rb +177 -0
  11. data/lib/github_changelog_generator/generator/generator_fetcher.rb +202 -0
  12. data/lib/github_changelog_generator/generator/generator_processor.rb +237 -0
  13. data/lib/github_changelog_generator/generator/generator_tags.rb +210 -0
  14. data/lib/github_changelog_generator/generator/section.rb +129 -0
  15. data/lib/github_changelog_generator/helper.rb +37 -0
  16. data/lib/github_changelog_generator/octo_fetcher.rb +535 -0
  17. data/lib/github_changelog_generator/options.rb +159 -0
  18. data/lib/github_changelog_generator/parser.rb +89 -0
  19. data/lib/github_changelog_generator/parser_file.rb +101 -0
  20. data/lib/github_changelog_generator/reader.rb +88 -0
  21. data/lib/github_changelog_generator/ssl_certs/cacert.pem +3138 -0
  22. data/lib/github_changelog_generator/task.rb +68 -0
  23. data/lib/github_changelog_generator/version.rb +5 -0
  24. data/lib/github_changelog_generator.rb +49 -0
  25. data/man/git-generate-changelog.1 +393 -0
  26. data/man/git-generate-changelog.1.html +359 -0
  27. data/man/git-generate-changelog.html +270 -0
  28. data/man/git-generate-changelog.md +274 -0
  29. data/spec/files/angular.js.md +9395 -0
  30. data/spec/files/bundler.md +1911 -0
  31. data/spec/files/config_example +5 -0
  32. data/spec/files/github-changelog-generator.md +305 -0
  33. data/spec/github_changelog_generator_spec.rb +32 -0
  34. data/spec/install_gem_in_bundler.gemfile +5 -0
  35. data/spec/spec_helper.rb +74 -0
  36. data/spec/unit/generator/entry_spec.rb +766 -0
  37. data/spec/unit/generator/generator_processor_spec.rb +203 -0
  38. data/spec/unit/generator/generator_spec.rb +47 -0
  39. data/spec/unit/generator/generator_tags_spec.rb +337 -0
  40. data/spec/unit/generator/section_spec.rb +43 -0
  41. data/spec/unit/octo_fetcher_spec.rb +590 -0
  42. data/spec/unit/options_spec.rb +67 -0
  43. data/spec/unit/parser_file_spec.rb +94 -0
  44. data/spec/unit/parser_spec.rb +54 -0
  45. data/spec/unit/reader_spec.rb +120 -0
  46. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_commits/when_API_is_valid/returns_commits.json +1 -0
  47. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_commits_before/when_API_is_valid/returns_commits.json +1 -0
  48. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_issue_with_proper_key/values.json +1 -0
  49. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_issues.json +1 -0
  50. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_issues_with_labels.json +1 -0
  51. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_pull_request_with_proper_key/values.json +1 -0
  52. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid/returns_pull_requests_with_labels.json +1 -0
  53. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_issues_and_pr/when_API_call_is_valid.json +1 -0
  54. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_pull_requests/when_API_call_is_valid/returns_correct_pull_request_keys.json +1 -0
  55. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_pull_requests/when_API_call_is_valid/returns_pull_requests.json +1 -0
  56. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_closed_pull_requests/when_API_call_is_valid.json +1 -0
  57. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_commit/when_API_call_is_valid/returns_commit.json +1 -0
  58. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_commit/when_API_call_is_valid.json +1 -0
  59. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_date_of_tag/when_API_call_is_valid/returns_date.json +1 -0
  60. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_date_of_tag/when_API_call_is_valid.json +1 -0
  61. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_events_async/when_API_call_is_valid/populates_issues.json +1 -0
  62. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_fetch_events_async/when_API_call_is_valid.json +1 -0
  63. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_API_call_is_valid/should_return_tags.json +1 -0
  64. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_API_call_is_valid/should_return_tags_count.json +1 -0
  65. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_API_call_is_valid.json +1 -0
  66. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_wrong_token_provided/should_raise_Unauthorized_error.json +1 -0
  67. data/spec/vcr/GitHubChangelogGenerator_OctoFetcher/_github_fetch_tags/when_wrong_token_provided.json +1 -0
  68. metadata +250 -0
@@ -0,0 +1,1911 @@
1
+ ## 1.9.1 (2015-03-21)
2
+
3
+ Bugfixes:
4
+
5
+ - avoid exception in 'bundler/gem_tasks' (#3492, @segiddins)
6
+
7
+ ## 1.9.0 (2015-03-20)
8
+
9
+ ## 1.9.0.rc (2015-03-13)
10
+
11
+ Bugfixes:
12
+
13
+ - make Bundler.which stop finding directories (@nohoho)
14
+ - handle Bundler prereleases correctly (#3470, @segiddins)
15
+ - add before_install to .travis.yml template for new gems (@kodnin)
16
+
17
+ ## 1.9.0.pre.1 (2015-03-11)
18
+
19
+ Bugfixes:
20
+
21
+ - make `gem` command work again (@arthurnn)
22
+
23
+ ## 1.9.0.pre (2015-03-11)
24
+
25
+ Features:
26
+
27
+ - prefer gemspecs closest to the directory root (#3428, @segiddins)
28
+ - debug log for API request limits (#3452, @neerfri)
29
+
30
+ "Features":
31
+
32
+ - Molinillo resolver, shared with CocoaPods (@segiddins)
33
+ - updated Thor to v0.19.1 (@segiddins)
34
+
35
+ ## 1.8.5 (2015-03-11)
36
+
37
+ Bugfixes:
38
+
39
+ - remove MIT license from gemspec when removing license file (@indirect)
40
+ - respect 'no' immediately as well as saving it in `gem` config (@kirs)
41
+
42
+ ## 1.8.4 (2015-03-05)
43
+
44
+ Bugfixes:
45
+
46
+ - document --all-platforms option (#3449, @moeffju)
47
+ - find gems from all sources on exec after install (#3450, @TimMoore)
48
+
49
+ ## 1.8.3 (2015-02-24)
50
+
51
+ Bugfixes:
52
+
53
+ - handle boolean values for gem settings (@EduardoBautista)
54
+ - stop always looking for updated `path` gems (#3414, #3417, #3429, @TimMoore)
55
+
56
+ ## 1.8.2 (2015-02-14)
57
+
58
+ Bugfixes:
59
+
60
+ - allow config settings for gems with 'http' in the name again (#3398, @TimMoore)
61
+
62
+ ## 1.8.1 (2015-02-13)
63
+
64
+ Bugfixes:
65
+
66
+ - synchronize building git gem native extensions (#3385, @antifuchs & @indirect)
67
+ - set gemspec bindir correctly (#3392, @TimMoore)
68
+ - request lockfile deletion when it is malformed (#3396, @indirect)
69
+ - explain problem when mirror config is missing (#3386, @indirect)
70
+ - explain problem when caching causes permission error (#3390, @indirect)
71
+ - normalize URLs in config keys (#3391, @indirect)
72
+
73
+ ## 1.8.0 (2015-02-10)
74
+
75
+ Bugfixes:
76
+
77
+ - gemfile `github` blocks now work (#3379, @indirect)
78
+
79
+ Bugfixes from v1.7.13:
80
+
81
+ - look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
82
+ - look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
83
+ - request dependencies for no more than 100 gems at a time (#3367, @segiddins)
84
+
85
+ ## 1.8.0.rc (2015-01-26)
86
+
87
+ Features:
88
+
89
+ - add `config disable_multisource` option to ensure sources can't compete (@indirect)
90
+
91
+ Bugfixes:
92
+
93
+ - don't add extra quotes around long, quoted config values (@aroben, #3338)
94
+
95
+ Security:
96
+
97
+ - warn when more than one top-level source is present (@indirect)
98
+
99
+ ## 1.8.0.pre (2015-01-26)
100
+
101
+ Features:
102
+
103
+ - add metadata allowed_push_host to new gem template (#3002, @juanitofatas)
104
+ - adds a `--no-install` flag to `bundle package` (@d-reinhold)
105
+ - add `bundle config auto_install true` to install automatically (@smashwilson)
106
+ - add `bundle viz --without` to exclude gem groups from resulting graph (@fnichol)
107
+ - prevent whitespace in gem declarations with clear messaging (@benlakey)
108
+ - tries to find a `bundler-<command>` executable on your path for non-bundler commands (@andremedeiros)
109
+ - tries to find `gems.rb` and it's new counterpart, `gems.locked` (@andremedeiros)
110
+ - change the initial version of new gems from `0.0.1` to `0.1.0` (@petedmarsh)
111
+ - add `package --all-platforms` to cache gems for each known platform (@ccutrer)
112
+ - speed up `exec` when running commands on the $PATH (@kirs)
113
+ - add gem code of conduct file and option (@kirs)
114
+ - add config settings for gem license and tests (@kirs)
115
+ - add `bin/setup` and `bin/console` to new gems (@indirect)
116
+ - include configured user-agent in network requests (@indirect)
117
+ - support `github`, `gist`, and `bitbucket` options on git gems (@indirect)
118
+ - add `package --cache-path` and `config cache_path` for cache location (@jnraine)
119
+ - allow `config` to work even when a Gemfile is not present (@dholdren)
120
+ - add `config gemfile /path` for other Gemfile locations (@dholdren)
121
+ - add `github` method alonside the `git` method (@BenMorganIO)
122
+
123
+ Bugfixes:
124
+
125
+ - reduce memory usage with threaded parallel workers (@Who828)
126
+ - support read-only git gems (@pmahoney)
127
+ - various resolver performance improvements (@dubek)
128
+ - untaint git gem paths for Rubygems compatibility (@tdtds)
129
+
130
+ Documentation:
131
+
132
+ - add missing Gemfile global `path` explanation (@agenteo)
133
+
134
+ ## 1.7.13 (2015-02-07)
135
+
136
+ Bugfixes:
137
+
138
+ - Look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
139
+ - Look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
140
+ - Request dependencies for no more than 100 gems at a time (#3367, @segiddins)
141
+
142
+ ## 1.7.12 (2015-01-08)
143
+
144
+ Bugfixes:
145
+
146
+ - Always send credentials for sources, fixing private Gemfury gems (#3342, @TimMoore)
147
+
148
+ ## 1.7.11 (2015-01-04)
149
+
150
+ Bugfixes:
151
+
152
+ - Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` (#3328, @myabc)
153
+
154
+ ## 1.7.10 (2014-12-29)
155
+
156
+ Bugfixes:
157
+
158
+ - Fix source blocks sometimes causing deployment mode to fail wrongly (#3298, @TimMoore)
159
+
160
+ Features(?):
161
+
162
+ - Support `platform :mri_22` and related version bits (#3309, @thomasfedb)
163
+
164
+ ## 1.7.9 (2014-12-09)
165
+
166
+ Bugfixes:
167
+
168
+ - Fix an issue where bundler sometime spams one gem in Gemfile.lock (#3216, @Who828)
169
+ - Ensure bundle update installs the newer version of the gem (#3089, @Who828)
170
+ - Fix an regression which stopped Bundler from resolving some Gemfiles (#3059, #3248, @Who828)
171
+
172
+ ## 1.7.8 (2014-12-06)
173
+
174
+ Bugfixes:
175
+
176
+ - Hide credentials while warning about gems with ambiguous sources (#3256, @TimMoore)
177
+
178
+ ## 1.7.7 (2014-11-19)
179
+
180
+ Bugfixes:
181
+
182
+ - Ensure server credentials stored in config or ENV will be used (#3180, @arronmabrey)
183
+ - Fix race condition causing errors while installing git-based gems (#3174, @Who828)
184
+ - Use single quotes in config so YAML won't add more quotes (#3261, @indirect)
185
+
186
+ ## 1.7.6 (2014-11-11)
187
+
188
+ Bugfixes:
189
+
190
+ - CA certificates that work with all OpenSSLs (@luislavena, @indirect)
191
+
192
+ ## 1.7.5 (2014-11-10)
193
+
194
+ Bugfixes:
195
+
196
+ - Fix --deployment with source blocks and non-alphabetical gems (#3224, @TimMoore)
197
+ - Vendor CA chain to validate new rubygems.org HTTPS certificate (@indirect)
198
+
199
+ ## 1.7.4 (2014-10-19)
200
+
201
+ Bugfixes:
202
+
203
+ - Allow --deployment after `pack` while using source blocks (#3167, @TimMoore)
204
+ - Use dependency API even when HTTP credentials are in ENV (#3191, @fvaleur)
205
+ - Silence warnings (including root warning) in --quiet mode (#3186, @indirect)
206
+ - Stop asking gem servers for gems already found locally (#2909, @dubek)
207
+
208
+ ## 1.7.3 (2014-09-14)
209
+
210
+ Bugfixes:
211
+
212
+ - `extconf.rb` is now generated with the right path for `create_makefile` (@andremedeiros)
213
+ - Fix various Ruby warnings (@piotrsanarki, @indirect)
214
+
215
+ ## 1.7.2 (2014-08-23)
216
+
217
+ Bugfixes:
218
+
219
+ - Revert gem source sorting in lock files (@indirect)
220
+
221
+ ## 1.7.1 (2014-08-20)
222
+
223
+ Bugfixes:
224
+
225
+ - Install gems from one source needed by gems in another source (@indirect)
226
+ - Install the same gem versions even after some are installed (@TimMoore)
227
+ - Download specs only when installing from servers (@indirect)
228
+
229
+ ## 1.7.0 (2014-08-13)
230
+
231
+ Security:
232
+
233
+ - Fix for CVE-2013-0334, installing gems from an unexpected source (@TimMoore)
234
+
235
+ Features:
236
+
237
+ - Gemfile `source` calls now take a block containing gems from that source (@TimMoore)
238
+ - Added the `:source` option to `gem` to specify a source (@TimMoore)
239
+
240
+ Bugfixes:
241
+
242
+ - Warn on ambiguous gems available from more than one source (@TimMoore)
243
+
244
+ ## 1.6.7 (2014-10-19)
245
+
246
+ Features:
247
+
248
+ - warn to upgrade when using useless source blocks (@danfinnie)
249
+
250
+ Documentation:
251
+
252
+ - explain how to use gem server credentials via ENV (@hwartig)
253
+
254
+ ## 1.6.6 (2014-08-23)
255
+
256
+ Bugfixes:
257
+
258
+ - restore Gemfile credentials to Gemfile.lock (@indirect)
259
+
260
+ ## 1.6.5 (2014-07-23)
261
+
262
+ Bugfixes:
263
+
264
+ - require openssl explicitly to fix rare HTTPS request failures (@indirect, #3107)
265
+
266
+ ## 1.6.4 (2014-07-17)
267
+
268
+ Bugfixes:
269
+
270
+ - fix undefined constant error when can't find gem during binstubs (#3095, @jetaggart)
271
+ - work when installed git gems are not writable (#3092, @pmahoney)
272
+ - don't store configured source credentials in Gemfile.lock (#3045, @lhz)
273
+ - don't include config source credentials in the lockfile (Lars Haugseth)
274
+ - use threads for jobs on Rubinius (@YorickPeterse)
275
+ - skip dependencies from other platforms (@mvz)
276
+ - work when Rubygems was built without SSL (@andremedeiros)
277
+
278
+ ## 1.6.3 (2014-06-16)
279
+
280
+ Bugfixes:
281
+
282
+ - fix regression when resolving many conflicts (#2994, @Who828)
283
+ - use local gemspec for builtin gems during install --local (#3041, @Who828)
284
+ - don't warn about sudo when installing on Windows (#2984, @indirect)
285
+ - shell escape `bundle open` arguments (@indirect)
286
+
287
+ ## 1.6.2 (2014-04-13)
288
+
289
+ Bugfixes:
290
+
291
+ - fix an exception when using builtin gems (#2915, #2963, @gnufied)
292
+ - cache gems that are built in to the running ruby (#2975, @indirect)
293
+ - re-allow deploying cached git gems without git installed (#2968, @aughr)
294
+ - keep standalone working even with builtin gems (@indirect)
295
+ - don't update vendor/cache in deployment mode (#2921, @indirect)
296
+
297
+ Features:
298
+
299
+ - warn informatively when `bundle install` is run as root (#2936, @1337807)
300
+
301
+ ## 1.6.1 (2014-04-02)
302
+
303
+ Bugfixes:
304
+
305
+ - update C extensions when git gem versions change (#2948, @dylanahsmith)
306
+
307
+ Features:
308
+
309
+ - add support for C extensions in sudo mode on Rubygems 2.2
310
+
311
+ ## 1.6.0 (2014-03-28)
312
+
313
+ Bugfixes:
314
+
315
+ - many Gemfiles that caused incorrect errors now resolve correctly (@Who828)
316
+ - redirects across hosts now work on rubies without OpenSSL (#2686, @grddev)
317
+ - gemspecs now handle filenames with newlines (#2634, @jasonmp85)
318
+ - support escaped characters in usernames and passwords (@punkie)
319
+ - no more exception on `update GEM` without lock file (@simi)
320
+ - allow long config values (#2823, @kgrz)
321
+ - cache successfully even locked to gems shipped with Ruby (#2869, @aughr)
322
+ - respect NO_PROXY even if a proxy is configured (#2878, @stlay)
323
+ - only retry git commands that hit the network (#2899, @timmoore)
324
+ - fix NameError regression when OpenSSL is not available (#2898, @timmoore)
325
+ - handle exception installing when build_info owned by root (@Who828)
326
+ - skip HTTP redirects from rubygems.org, huge speed boost (@Who828)
327
+
328
+ Features:
329
+
330
+ - resolver rewritten to avoid recursion (@Who828)
331
+ - add `git_source` for custom options like :github and :gist (@strzalek)
332
+ - HTTP auth may now be stored in `bundle config` (@smashwilson)
333
+ - some complex Gemfiles are resolved up to 10x faster (@Who828)
334
+ - add support for IRB alternatives such as Pry and Ripl (@joallard, @postmodern)
335
+ - highlight installed or updated gems (#2722, #2741, @yaotti, @simi)
336
+ - display the `post_install_message` for gems installed via :git (@phallstrom)
337
+ - `bundle outdated --strict` now only reports allowed updates (@davidblondeau)
338
+ - `bundle show --verbose` Add gem summary to the output (@lardcanoe)
339
+ - `bundle gem GEM --ext` now generates a skeleton for a C extension (@superdealloc)
340
+ - Avoid using threequals operator where possible (@as-cii)
341
+ - Add `bundle update --group` to update specific group (#2731 @banyan)
342
+
343
+ Documentation:
344
+
345
+ - Add missing switches for bundle-install(1) and bundle-update(1) (@as-cii)
346
+
347
+ ## 1.5.3 (2014-02-06)
348
+
349
+ Bugfixes:
350
+
351
+ - find "missing" gems that are actually present (#2780, #2818, #2854)
352
+ - use n-1 cores when given n jobs for parallel install (@jdickey)
353
+
354
+ ## 1.5.2 (2014-01-10)
355
+
356
+ Bugfixes:
357
+
358
+ - fix integration with Rubygems 1.8.0-1.8.19
359
+ - handle ENETDOWN exception during network requests
360
+ - gracefully shut down after interrupt during parallel install (@Who828)
361
+ - allow Rails to run Thor without debug mode (@rafaelfranca)
362
+ - set git binstub permissions by umask (@v-yarotsky)
363
+ - remove parallel install debug log
364
+
365
+ ## 1.5.1 (2013-12-28)
366
+
367
+ Bugfixes:
368
+
369
+ - correctly find gems installed with Ruby by default
370
+
371
+ ## 1.5.0 (2013-12-26)
372
+
373
+ Features:
374
+
375
+ - install missing gems if their specs are present (@hone)
376
+
377
+ Bugfixes:
378
+
379
+ - use print for "Installing…" so messages are thread-safe (@TimMoore)
380
+
381
+ ## 1.5.0.rc.2 (2013-12-18)
382
+
383
+ "Features":
384
+
385
+ - Support threaded installation on Rubygems 2.0.7+
386
+ - Debug installation logs in .bundle/install.log
387
+
388
+ "Bugfixes":
389
+
390
+ - Try to catch gem installation race conditions
391
+
392
+ ## 1.5.0.rc.1 (2013-11-09)
393
+
394
+ Features:
395
+
396
+ - bundle update also accepts --jobs (#2692, @mrkn)
397
+ - add fork URL to README for new `bundle gem` (#2665, @zzak)
398
+ - add `bundle outdated --strict` (#2685, @davidblondeau)
399
+ - warn if same gem/version is added twice (#2679, @jendiamond)
400
+ - don't redownload installed specs for `bundle install` (#2680, @cainlevy)
401
+ - override gem sources with mirrors (#2650, @danielsdeleo, @mkristian)
402
+
403
+ Bugfixes:
404
+
405
+ - fix sharing same SSL socket when forking workers for parallel install (#2632)
406
+ - fix msg typo in GitNotAllowedError (#2654, @joyicecloud)
407
+ - fix Bundler.which for directories (#2697, @rhysd)
408
+ - properly require `Capistrano::Version` (#2690, @steveklabnik)
409
+ - search for git.exe and git
410
+ - fix the bug that downloads every spec when API fetcher encouters an error
411
+ - only retry network requests
412
+
413
+ ## 1.4.0.rc.1 (2013-09-29)
414
+
415
+ Features:
416
+
417
+ - add support for the x64-mingw32 platform (#2356, #2590, @larskanis)
418
+ - add :patchlevel option to ruby DSL
419
+ - add `bundler` bin (#2598, @kirs)
420
+ - friendly ambiguous error messages (#2581, #2550, @jlsuttles, @jendiamond, @joyicecloud)
421
+ - add `:jruby_18` and `:jruby_19` platform options (@mcfiredrill)
422
+ - add X.509 client certificates for auth without passwords (@snackbandit)
423
+ - add `exec --keep-file-descriptors` for Ruby 1.9-like behavior on 2.0 (@steved555)
424
+ - print a better error when git is not installed (@joyicecloud)
425
+ - exit non-zero when `outdated` is run with an unknown gem (@joyicecloud)
426
+ - add `:ruby_21` platform option (@brandonblack)
427
+ - add `--retry` to retry failed network and git commands (@schneems)
428
+ - include command and versions in User-Agent (@indirect, @joyicecloud)
429
+
430
+ Bugfixes:
431
+
432
+ - allow passwordless Basic Auth (#2606, @rykov)
433
+ - don't suggest `gem install foo` when `foo` is a git gem that fails (@kirs)
434
+ - revert #2569, staying compatible with git: instead of https: for :github gems
435
+ - handle exceptions while installing gems in parallel (@gnufied)
436
+
437
+ ## 1.4.0.pre.1 (2013-08-04)
438
+
439
+ Features:
440
+
441
+ - retry network requests while installing gems (#2561, @ascherger)
442
+ - faster installs using gemspecs from the local system cache (#2497, @mipearson)
443
+ - add `bundle install -jN` for N parallel gem installations (#2481, @eagletmt)
444
+ - add `ENV['DEBUG_RESOLVER_TREE']` outputs resolver tree (@dblock)
445
+ - set $MANPATH so `bundle exec man name` works (#1624, @sunaku)
446
+ - use `man` instead of `groff` (#2579, @ixti, @simi)
447
+ - add Gemfile dependency info to bundle outdated output (#2487, @rahearn)
448
+ - allow `require: true` as an alias for `require: <name>` (#2538, @ndbroadbent)
449
+ - rescue and report Thor errors (#2478, @pjvds)
450
+ - detect cyclic dependencies (#2564, @gnufied)
451
+ - support multiple gems in `binstubs` (#2576, @lucasmazza)
452
+ - use https instead of git for :github gems (#2569, @fuadsaud)
453
+ - add quiet option to `bundle package` (#2573, @shtirlic)
454
+ - use RUBYLIB instead of RUBYOPT for better Windows support (#2536, @equinux)
455
+
456
+ Bugfixes:
457
+
458
+ - reduce stack size while resolving to fix JRuby overflow (#2510, @headius)
459
+ - display GitErrors while loading specs in --verbose mode (#2461)
460
+ - allow the same options hash to be passed to multiple gems (#2447)
461
+ - handle missing binaries without an exception (#2019, @luismreis)
462
+
463
+ ## 1.3.6 (8 January 2014)
464
+
465
+ Bugfixes:
466
+
467
+ - make gemspec path option preserve relative paths in lock file (@bwillis)
468
+ - use umask when creating binstubs (#1618, @v-yarotsky)
469
+ - warn if graphviz is not installed (#2435, @Agis-)
470
+ - show git errors while loading gemspecs
471
+ - don't mutate gem method options hash (#2447)
472
+ - print Thor errors (#2478, @pjvds)
473
+ - print Rubygems system exit errors (James Cook)
474
+ - more Pathnames into Strings for MacRuby (@kml)
475
+ - preserve original gemspec path (@bwillis)
476
+ - remove warning about deps with :git (#1651, @ixti)
477
+ - split git files on null (#2634, @jasonmp85)
478
+ - handle cross-host redirects without SSL (#2686, @grddev)
479
+ - handle Rubygems 2 security exception (@zzak)
480
+ - reinstall gems if they are missing with spec present
481
+ - set binstub permissions using umask (#1618, @v-yarotsky)
482
+
483
+ ## 1.3.5 (3 April 2013)
484
+
485
+ Features:
486
+
487
+ - progress indicator while resolver is running (@chief)
488
+
489
+ Bugfixes:
490
+
491
+ - update local overrides with orphaned revisions (@jamesferguson)
492
+ - revert to working quoting of RUBYOPT on Windows (@ogra)
493
+ - use basic auth even when SSL is not available (@jayniz)
494
+ - installing git gems without dependencies in deployment now works
495
+
496
+ ## 1.3.4 (15 March 2013)
497
+
498
+ Bugfixes:
499
+
500
+ - load YAML on Rubygems versions that define module YAML
501
+ - fix regression that broke --without on ruby 1.8.7
502
+
503
+ ## 1.3.3 (13 March 2013)
504
+
505
+ Features:
506
+
507
+ - compatible with Rubygems 2.0.2 (higher and lower already work)
508
+ - mention skipped groups in bundle install and bundle update output (@simi)
509
+ - `gem` creates rake tasks for minitest (@coop) and rspec
510
+
511
+ Bugfixes:
512
+
513
+ - require rbconfig for standalone mode
514
+
515
+ ## 1.3.2 (7 March 2013)
516
+
517
+ Features:
518
+
519
+ - include rubygems.org CA chain
520
+
521
+ Bugfixes:
522
+
523
+ - don't store --dry-run as a Bundler setting
524
+
525
+ ## 1.3.1 (3 March 2013)
526
+
527
+ Bugfixes:
528
+
529
+ - include manpages in gem, restoring many help pages
530
+ - handle more SSL certificate verification failures
531
+ - check for the full version of SSL, which we need (@alup)
532
+ - gem rake task 'install' now depends on task 'build' (@sunaku)
533
+
534
+ ## 1.3.0 (24 February 2013)
535
+
536
+ Features:
537
+
538
+ - raise a useful error when the lockfile contains a merge conflict (@zofrex)
539
+ - ensure `rake release` checks for uncommitted as well as unstaged (@benmoss)
540
+ - allow environment variables to be negated with 'false' and '0' (@brettporter)
541
+ - set $MANPATH inside `exec` for gems with man pages (@sunaku)
542
+ - partial gem names for `open` and `update` now return a list (@takkanm)
543
+
544
+ Bugfixes:
545
+
546
+ - `update` now (again) finds gems that aren't listed in the Gemfile
547
+ - `install` now (again) updates cached gems that aren't in the Gemfile
548
+ - install Gemfiles with HTTP sources even without OpenSSL present
549
+ - display CerficateFailureError message in full
550
+
551
+ ## 1.3.0.pre.8 (12 February 2013)
552
+
553
+ Security:
554
+
555
+ - validate SSL certificate chain during HTTPS network requests
556
+ - don't send HTTP Basic Auth creds when redirected to other hosts (@perplexes)
557
+ - add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, #2293)
558
+
559
+ Features:
560
+
561
+ - optimize resolver when too new of a gem is already activated (@rykov, #2248)
562
+ - update Net::HTTP::Persistent for SSL cert validation and no_proxy ENV
563
+ - explain SSL cert validation failures
564
+ - generate gemspecs when installing git repos, removing shellouts
565
+ - add pager selection (@csgui)
566
+ - add `licenses` command (@bryanwoods, #1898)
567
+ - sort output from `outdated` (@richardkmichael, #1896)
568
+ - add a .travis.yml to `gem -t` (@ndbroadbent, #2143)
569
+ - inform users when the resolver starts
570
+ - disable reverse DNS to speed up API requests (@raggi)
571
+
572
+ Bugfixes:
573
+
574
+ - raise errors while requiring dashed gems (#1807)
575
+ - quote the Bundler path on Windows (@jgeiger, #1862, #1856)
576
+ - load gemspecs containing unicode (@gaffneyc, #2301)
577
+ - support any ruby version in --standalone
578
+ - resolve some ruby -w warnings (@chastell, #2193)
579
+ - don't scare users with an error message during API fallback
580
+ - `install --binstubs` is back to overwriting. thanks, SemVer.
581
+
582
+ ## 1.3.0.pre.7 (22 January 2013)
583
+
584
+ Bugfixes:
585
+
586
+ - stubs for gems with dev deps no longer cause exceptions (#2272)
587
+ - don't suggest binstubs to --binstubs users
588
+
589
+ ## 1.3.0.pre.6 (22 January 2013)
590
+
591
+ Features:
592
+
593
+ - `binstubs` lists child gem bins if a gem has no binstubs
594
+ - `bundle gem --edit` will open the new gemspec (@ndbroadbent)
595
+ - `bundle gem --test rspec` now makes working tests (@tricknotes)
596
+ - `bundle env` prints info about bundler's environment (@peeja)
597
+ - add `BUNDLE_IGNORE_CONFIG` environment variable support (@richo)
598
+
599
+ Bugfixes:
600
+
601
+ - don't overwrite custom binstubs during `install --binstubs`
602
+ - don't throw an exception if `binstubs` gem doesn't exist
603
+ - `bundle config` now works in directories without a Gemfile
604
+
605
+ ## 1.3.0.pre.5 (Jan 9, 2013)
606
+
607
+ Features:
608
+
609
+ - make `--standalone` require lines ruby engine/version agnostic
610
+ - add `--dry-run` to `bundle clean` (@wfarr, #2237)
611
+
612
+ Bugfixes:
613
+
614
+ - don't skip writing binstubs when doing `bundle install`
615
+ - distinguish between ruby 1.9/2.0 when using :platforms (@spastorino)
616
+
617
+ ## 1.3.0.pre.4 (Jan 3, 2013)
618
+
619
+ Features:
620
+
621
+ - `bundle binstubs <gem>` to setup individual binstubs
622
+ - `bundle install --binstubs ""` will remove binstubs option
623
+ - `bundle clean --dry-run` will print out gems instead of removing them
624
+
625
+ Bugfixes:
626
+
627
+ - Avoid stack traces when Ctrl+C during bundle command (@mitchellh)
628
+ - fix YAML parsing in in ruby-preview2
629
+
630
+ ## 1.3.0.pre.3 (Dec 21, 2012)
631
+
632
+ Features:
633
+
634
+ - pushing gems during `rake release` can be disabled (@trans)
635
+ - installing gems with `rake install` is much faster (@utkarshkukreti)
636
+ - added platforms :ruby_20 and :mri_20, since the ABI has changed
637
+ - added '--edit' option to open generated gemspec in editor
638
+
639
+ Bugfixes:
640
+
641
+ - :git gems with extensions now work with Rubygems >= 2.0 (@jeremy)
642
+ - revert SemVer breaking change to :github
643
+ - `outdated` exits non-zero if outdated gems found (@rohit, #2021)
644
+ - https Gist URLs for compatibility with Gist 2.0 (@NARKOZ)
645
+ - namespaced gems no longer generate a superfluous directory (@banyan)
646
+
647
+ ## 1.3.0.pre.2 (Dec 9, 2012)
648
+
649
+ Features:
650
+
651
+ - `config` expands local overrides like `local.rack .` (@gkop, #2205)
652
+ - `gem` generates files correctly for names like `jquery-rails` (@banyan, #2201)
653
+ - use gems from gists with the :gist option in the Gemfile (@jgaskins)
654
+
655
+ Bugfixes:
656
+
657
+ - Gemfile sources other than rubygems.org work even when .gemrc contains sources
658
+ - caching git gems now caches specs, fixing e.g. git ls-files (@bison, #2039)
659
+ - `show GEM` now warns if the directory has been deleted (@rohit, #2070)
660
+ - git output hidden when running in --quiet mode (@rohit)
661
+
662
+ ## 1.3.0.pre (Nov 29, 2012)
663
+
664
+ Features:
665
+
666
+ - compatibile with Ruby 2.0.0-preview2
667
+ - compatibile with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
668
+ - ruby 2.0 added to the `:ruby19` ABI-compatible platform
669
+ - lazy load YAML, allowing Psych to be specified in the Gemfile
670
+ - significant performance improvements (@cheald, #2181)
671
+ - `inject` command for scripted Gemfile additions (Engine Yard)
672
+ - :github option uses slashless arguements as repo owner (@rking)
673
+ - `open` suggests gem names for typos (@jdelStrother)
674
+ - `update` reports non-existent gems (@jdelStrother)
675
+ - `gem` option --test can generate rspec stubs (@MafcoCinco)
676
+ - `gem` option --test can generate minitest stubs (@kcurtin)
677
+ - `gem` command generates MIT license (@BrentWheeldon)
678
+ - gem rake task 'release' resuses existing tags (@shtirlic)
679
+
680
+ Bugfixes:
681
+
682
+ - JRuby new works with HTTPS gem sources (@davidcelis)
683
+ - `install` installs both rake rake-built gems at once (@crowbot, #2107)
684
+ - handle Errno::ETIMEDOUT errors (@jmoses)
685
+ - handle Errno::EAGAIN errors on JRuby
686
+ - disable ANSI coloring when output is redirected (@tomykaira)
687
+ - raise LoadErrors correctly during Bundler.require (@Empact)
688
+ - do not swallow --verbose on `bundle exec` (@sol, #2102)
689
+ - `gem` generates gemspecs that block double-requires
690
+ - `gem` generates gemspecs that admit they depend on rake
691
+
692
+ ## 1.2.5 (Feb 24, 2013)
693
+
694
+ Bugfixes:
695
+
696
+ - install Gemfiles with HTTP sources even without OpenSSL present
697
+ - display CerficateFailureError message in full
698
+
699
+ ## 1.2.4 (Feb 12, 2013)
700
+
701
+ Features:
702
+
703
+ - warn about Ruby 2.0 and Rubygems 2.0
704
+ - inform users when the resolver starts
705
+ - disable reverse DNS to speed up API requests (@raggi)
706
+
707
+ Bugfixes:
708
+
709
+ - don't send user/pass when redirected to another host (@perplexes)
710
+ - load gemspecs containing unicode (@gaffneyc, #2301)
711
+ - support any ruby version in --standalone
712
+ - resolve some ruby -w warnings (@chastell, #2193)
713
+ - don't scare users with an error message during API fallback
714
+
715
+ ## 1.2.3 (Nov 29, 2012)
716
+
717
+ Bugfixes:
718
+
719
+ - fix exceptions while loading some gemspecs
720
+
721
+ ## 1.2.2 (Nov 14, 2012)
722
+
723
+ Bugfixes:
724
+
725
+ - support new Psych::SyntaxError for Ruby 2.0.0 (@tenderlove, @sol)
726
+ - `bundle viz` works with git gems again (@hirochachacha)
727
+ - recognize more cases when OpenSSL is not present
728
+
729
+ ## 1.2.1 (Sep 19, 2012)
730
+
731
+ Bugfixes:
732
+
733
+ - `bundle clean` now works with BUNDLE_WITHOUT groups again
734
+ - have a net/http read timeout around the Gemcutter API Endpoint
735
+
736
+ ## 1.2.0 (Aug 30, 2012)
737
+
738
+ Bugfixes:
739
+
740
+ - raise original error message from LoadError's
741
+
742
+ Documentation:
743
+
744
+ - `platform` man pages
745
+
746
+ ## 1.2.0.rc.2 (Aug 8, 2012)
747
+
748
+ Bugfixes:
749
+
750
+ - `clean` doesn't remove gems that are included in the lockfile
751
+
752
+ ## 1.2.0.rc (Jul 17, 2012)
753
+
754
+ Features:
755
+
756
+ - `check` now has a `--dry-run` option (@svenfuchs, #1811)
757
+ - loosen ruby directive for engines
758
+ - prune git/path directories inside vendor/cache (@josevalim, #1988)
759
+ - update vendored thor to 0.15.2 (@sferik)
760
+ - add .txt to LICENSE (@postmodern, #2001)
761
+ - add `config disable_local_branch_check` (@josevalim, #1985)
762
+ - fall back on the full index when experiencing syck errors (#1419)
763
+ - handle syntax errors in Ruby gemspecs (#1974)
764
+
765
+ Bugfixes:
766
+
767
+ - fix `pack`/`cache` with `--all` (@josevalim, #1989)
768
+ - don't display warning message when `cache_all` is set
769
+ - check for `nil` PATH (#2006)
770
+ - Always try to keep original GEM_PATH (@drogus, #1920)
771
+
772
+ ## 1.2.0.pre.1 (May 27, 2012)
773
+
774
+ Features:
775
+
776
+ - Git gems import submodules of submodules recursively (@nwwatson, #1935)
777
+
778
+ Bugfixes:
779
+
780
+ - Exit from `check` with a non-zero status when frozen with no lock
781
+ - Use `latest_release` in Capistrano and Vlad integration (#1264)
782
+ - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
783
+
784
+ Documentation:
785
+
786
+ - Add instructions for local git repos to the `config` manpage
787
+ - Update the `Gemfile` manpage to include ruby versions (@stevenh512)
788
+ - When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
789
+ - Unknown exceptions now link to ISSUES for help instead of a new ticket
790
+ - Correct inline help for `clean --force` (@dougbarth, #1911)
791
+
792
+ ## 1.2.0.pre (May 4, 2012)
793
+
794
+ Features:
795
+
796
+ - bundle package now accepts --all to package git and path dependencies
797
+ - bundle config now accepts --local, --global and --delete options
798
+ - It is possible to override a git repository via configuration.
799
+ For instance, if you have a git dependency on rack, you can force
800
+ it to use a local repo with `bundle config local.rack ~/path/to/rack`
801
+ - Cache gemspec loads for performance (@dekellum, #1635)
802
+ - add --full-index flag to `bundle update` (@fluxx, #1829)
803
+ - add --quiet flag to `bundle update` (@nashby, #1654)
804
+ - Add Bundler::GemHelper.gemspec (@knu, #1637)
805
+ - Graceful handling of Gemfile syntax errors (@koraktor, #1661)
806
+ - `bundle platform` command
807
+ - add ruby to DSL, to specify version of ruby
808
+ - error out if the ruby version doesn't match
809
+
810
+ Performance:
811
+
812
+ - bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, #1598)
813
+
814
+ Bugfixes:
815
+
816
+ - Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, #1604)
817
+ - Use the same ruby to run subprocesses as is running rake (@brixen)
818
+
819
+ Documentation:
820
+
821
+ - Add :github documentation in DSL (@zofrex, #1848, #1851, #1852)
822
+ - Add docs for the --no-cache option (@fluxx, #1796)
823
+ - Add basic documentation for bin_path and bundle_path (@radar)
824
+ - Add documentation for the run method in Bundler::Installer
825
+
826
+ ## 1.1.5 (Jul 17, 2012)
827
+
828
+ Features:
829
+
830
+ - Special case `ruby` directive from 1.2.0, so you can install Gemfiles that use it
831
+
832
+ ## 1.1.4 (May 27, 2012)
833
+
834
+ Bugfixes:
835
+
836
+ - Use `latest_release` in Capistrano and Vlad integration (#1264)
837
+ - Unknown exceptions now link to ISSUES for help instead of a new ticket
838
+ - When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
839
+ - Correct inline help for `clean --force` (@dougbarth, #1911)
840
+ - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
841
+
842
+ ## 1.1.3 (March 23, 2012)
843
+
844
+ Bugfixes:
845
+
846
+ - escape the bundler root path (@tenderlove, #1789)
847
+
848
+ ## 1.1.2 (March 20, 2012)
849
+
850
+ Bugfixes:
851
+
852
+ - Fix --deployment for multiple PATH sections of the same source (#1782)
853
+
854
+ ## 1.1.1 (March 14, 2012)
855
+
856
+ Bugfixes:
857
+
858
+ - Rescue EAGAIN so the fetcher works on JRuby on Windows
859
+ - Stop asking users to report gem installation errors
860
+ - Clarify "no sources" message
861
+ - Use $\ so `bundle gem` gemspecs work on Windows (@postmodern)
862
+ - URI-encode gem names for dependency API (@rohit, #1672)
863
+ - Fix `cache` edge case in rubygems 1.3.7 (#1202)
864
+
865
+ Performance:
866
+
867
+ - Reduce invocation of git ls-files in `bundle gem` gemspecs (@knu)
868
+
869
+ ## 1.1.0 (Mar 7, 2012)
870
+
871
+ Bugfixes:
872
+
873
+ - Clean up corrupted lockfiles on bundle installs
874
+ - Prevent duplicate GIT sources
875
+ - Fix post_install_message when uing the endpoint API
876
+
877
+ ## 1.1.rc.8 (Mar 3, 2012)
878
+
879
+ Performance:
880
+
881
+ - don't resolve if the Gemfile.lock and Gemfile haven't changed
882
+
883
+ Bugfixes:
884
+
885
+ - Load gemspecs from git even when a released gem has the same version (#1609)
886
+ - Declare an accurate Ruby version requirement of 1.8.7 or newer (#1619)
887
+ - handle gemspec development dependencies correctly (@raggi, #1639)
888
+ - Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, #1604)
889
+
890
+ ## 1.1.rc.7 (Dec 29, 2011)
891
+
892
+ Bugfixes:
893
+
894
+ - Fix bug where `clean` would break when using :path with no gemspec
895
+
896
+ ## 1.1.rc.6 (Dec 22, 2011)
897
+
898
+ Bugfixes:
899
+
900
+ - Fix performance regression from 1.0 (@spastorino, #1511, #1591, #1592)
901
+ - Load gems correctly when GEM_HOME is blank
902
+ - Refresh gems so Bundler works from inside a bundle
903
+ - Handle empty .bundle/config files without an error
904
+
905
+ ## 1.1.rc.5 (Dec 14, 2011)
906
+
907
+ Bugfixes:
908
+
909
+ - Fix ASCII encoding errors with gem (rerelease with ruby 1.8)
910
+
911
+ ## 1.1.rc.4 (Dec 14, 2011)
912
+
913
+ Features:
914
+
915
+ - `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, #683)
916
+
917
+ Bugfixes:
918
+
919
+ - Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, #1588)
920
+ - fix `bundle viz` (@hirochachacha, #1586)
921
+
922
+ ## 1.1.rc.3 (Dec 8, 2011)
923
+
924
+ Bugfixes:
925
+
926
+ - fix relative_path so it checks Bundler.root is actually in the beginning of the path (#1582)
927
+ - fix bundle outdated doesn't list all gems (@joelmoss, #1521)
928
+
929
+ ## 1.1.rc.2 (Dec 6, 2011)
930
+
931
+ Features:
932
+
933
+ - Added README.md to `newgem` (@ognevsky, #1574)
934
+ - Added LICENSE (MIT) to newgem (@ognevsky, #1571)
935
+
936
+ Bugfixes:
937
+
938
+ - only auto-namespace requires for implied requires (#1531)
939
+ - fix bundle clean output for git repos (#1473)
940
+ - use Gem.bindir for bundle clean (#1544, #1532)
941
+ - use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
942
+ - differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, #1539)
943
+ - `bundle clean` handles 7 length git hash for bundle clean (#1490, #1491)
944
+ - fix Psych loading issues
945
+ - Search $PATH for a binary rather than shelling out to `which` (@tenderlove, #1573)
946
+ - do not clear RG cache unless we actually modify GEM_PATH and GEM_HOME- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
947
+ - `newgem` now uses https://rubygems.org (#1562)
948
+ - `bundle init` now uses https://rubygems.org (@jjb, #1522)
949
+ - `bundle install/update` does not autoclean when using --path for semver
950
+
951
+ Documentation:
952
+
953
+ - added documentation for --shebang option for `bundle install` (@lunks, #1475, #1558)
954
+
955
+ ## 1.1.rc (Oct 3, 2011)
956
+
957
+ Features:
958
+
959
+ - add `--shebang` option to bundle install (@bensie, #1467)
960
+ - build passes on ruby 1.9.3rc1 (#1458, #1469)
961
+ - hide basic auth credentials for custom sources (#1440, #1463)
962
+
963
+ Bugfixes:
964
+
965
+ - fix index search result caching (#1446, #1466)
966
+ - fix fetcher prints multiple times during install (#1445, #1462)
967
+ - don't mention API errors from non-rubygems.org sources
968
+ - fix autoclean so it doesn't remove bins that are used (#1459, #1460)
969
+
970
+ Documentation:
971
+
972
+ - add :require => [...] to the gemfile(5) manpage (@nono, #1468)
973
+
974
+ ## 1.1.pre.10 (Sep 27, 2011)
975
+
976
+ Features:
977
+
978
+ - `config system_bindir foo` added, works like "-n foo" in your .gemrc file
979
+
980
+ ## 1.1.pre.9 (Sep 18, 2011)
981
+
982
+ Features:
983
+
984
+ - `clean` will now clean up all old .gem and .gemspec files, cleaning up older pres
985
+ - `clean` will be automatically run after bundle install and update when using `--path` (#1420, #1425)
986
+ - `clean` now takes a `--force` option (#1247, #1426)
987
+ - `clean` will clean up cached git dirs in bundle clean (#1390)
988
+ - remove deprecations from DSL (#1119)
989
+ - autorequire tries directories for gems with dashed names (#1205)
990
+ - adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, #1360)
991
+ - load rubygems plugins in the bundle binary (@tpope, #1364)
992
+ - make `--standalone` respect `--path` (@cowboyd, #1361)
993
+
994
+ Bugfixes:
995
+
996
+ - Fix `clean` to handle nested gems in a git repo (#1329)
997
+ - Fix conflict from revert of benchmark tool (@boffbowsh, #1355)
998
+ - Fix fatal error when unable to connect to gem source (#1269)
999
+ - Fix `outdated` to find pre-release gems that are installed. (#1359)
1000
+ - Fix color for ui. (#1374)
1001
+ - Fix installing to user-owned system gems on OS X
1002
+ - Fix caching issue in the resolver (#1353, #1421)
1003
+ - Fix :github DSL option
1004
+
1005
+ ## 1.1.pre.8 (Aug 13, 2011)
1006
+
1007
+ Bugfixes:
1008
+
1009
+ - Fix `bundle check` to not print fatal error message (@cldwalker, #1347)
1010
+ - Fix require_sudo when Gem.bindir isn't writeable (#1352)
1011
+ - Fix not asking Gemcutter API for dependency chain of git gems in --deployment (#1254)
1012
+ - Fix `install --binstubs` when using --path (#1332)
1013
+
1014
+ ## 1.1.pre.7 (Aug 8, 2011)
1015
+
1016
+ Bugfixes:
1017
+
1018
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
1019
+ - Fixed exception when sudo was needed to install gems (@spastorino)
1020
+
1021
+ ## 1.1.pre.6 (Aug 8, 2011)
1022
+
1023
+ Bugfixes:
1024
+
1025
+ - Fix cross repository dependencies (#1138)
1026
+ - Fix git dependency fetching from API endpoint (#1254)
1027
+ - Fixes for bundle outdated (@joelmoss, #1238)
1028
+ - Fix bundle standalone when using the endpoint (#1240)
1029
+
1030
+ Features:
1031
+
1032
+ - Implement `to_ary` to avoid calls to method_missing (@tenderlove, #1274)
1033
+ - bundle clean removes old .gem files (@cldwalker, #1293)
1034
+ - Correcly identify missing child dependency in error message
1035
+ - Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, #1120)
1036
+ - create Gemfile.lock for empty Gemfile (#1218)
1037
+
1038
+ ## 1.1.pre.5 (June 11, 2011)
1039
+
1040
+ Bugfixes:
1041
+
1042
+ - Fix LazySpecification on Ruby 1.9 (@dpiddy, #1232)
1043
+ - Fix HTTP proxy support (@leobessa, #878)
1044
+
1045
+ Features:
1046
+
1047
+ - Speed up `install --deployment` by using the API endpoint
1048
+ - Support Basic HTTP Auth for the API endpoint (@dpiddy, #1229)
1049
+ - Add `install --full-index` to disable the API endpoint, just in case
1050
+ - Significantly speed up install by removing unneeded gemspec fetches
1051
+ - `outdated` command shows outdated gems (@joelmoss, #1130)
1052
+ - Print gem post install messages (@csquared, #1155)
1053
+ - Reduce memory use by removing Specification.new inside method_missing (@tenderlove, #1222)
1054
+ - Allow `check --path`
1055
+
1056
+ ## 1.1.pre.4 (May 5, 2011)
1057
+
1058
+ Bugfixes:
1059
+
1060
+ - Fix bug that could prevent installing new gems
1061
+
1062
+ ## 1.1.pre.3 (May 4, 2011)
1063
+
1064
+ Features:
1065
+
1066
+ - Add `bundle outdated` to show outdated gems (@joelmoss)
1067
+ - Remove BUNDLE_* from `Bundler.with_clean_env` (@wuputah)
1068
+ - Add Bundler.clean_system, and clean_exec (@wuputah)
1069
+ - Use git config for gem author name and email (@krekoten)
1070
+
1071
+ Bugfixes:
1072
+
1073
+ - Fix error calling Bundler.rubygems.gem_path
1074
+ - Fix error when Gem.path returns Gem::FS instead of String
1075
+
1076
+ ## 1.1.pre.2 (April 28, 2011)
1077
+
1078
+ Features:
1079
+
1080
+ - Add :github option to Gemfile DSL for easy git repos
1081
+ - Merge all fixes from 1.0.12 and 1.0.13
1082
+
1083
+ ## 1.1.pre.1 (February 2, 2011)
1084
+
1085
+ Bugfixes:
1086
+
1087
+ - Compatibility with changes made by Rubygems 1.5
1088
+
1089
+ ## 1.1.pre (January 21, 2011)
1090
+
1091
+ Features:
1092
+
1093
+ - Add bundle clean. Removes unused gems from --path directory
1094
+ - Initial Gemcutter Endpoint API work, BAI Fetching source index
1095
+ - Added bundle install --standalone
1096
+ - Ignore Gemfile.lock when buliding new gems
1097
+ - Make it possible to override a .gemspec dependency's source in the
1098
+ Gemfile
1099
+
1100
+ Removed:
1101
+
1102
+ - Removed bundle lock
1103
+ - Removed bundle install <path>
1104
+ - Removed bundle install --production
1105
+ - Removed bundle install --disable-shared-gems
1106
+
1107
+ ## 1.0.21 (September 30, 2011)
1108
+
1109
+ - No changes from RC
1110
+
1111
+ ## 1.0.21.rc (September 29, 2011)
1112
+
1113
+ Bugfixes:
1114
+
1115
+ - Load Psych unless Syck is defined, because 1.9.2 defines YAML
1116
+
1117
+ ## 1.0.20 (September 27, 2011)
1118
+
1119
+ Features:
1120
+
1121
+ - Add platform :maglev (@timfel, #1444)
1122
+
1123
+ Bugfixes:
1124
+
1125
+ - Ensure YAML is required even if Psych is found
1126
+ - Handle directory names that contain invalid regex characters
1127
+
1128
+ ## 1.0.20.rc (September 18, 2011)
1129
+
1130
+ Features:
1131
+
1132
+ - Rescue interrupts to `bundle` while loading bundler.rb (#1395)
1133
+ - Allow clearing without groups by passing `--without ''` (#1259)
1134
+
1135
+ Bugfixes:
1136
+
1137
+ - Manually sort requirements in the lockfile (#1375)
1138
+ - Remove several warnings generated by ruby -w (@stephencelis)
1139
+ - Handle trailing slashes on names passed to `gem` (#1372)
1140
+ - Name modules for gems like 'test-foo_bar' correctly (#1303)
1141
+ - Don't require Psych if Syck is already loaded (#1239)
1142
+
1143
+ ## 1.0.19.rc (September 13, 2011)
1144
+
1145
+ Features:
1146
+
1147
+ - Compatability with Rubygems 1.8.10 installer changes
1148
+ - Report gem installation failures clearly (@rwilcox, #1380)
1149
+ - Useful error for cap and vlad on first deploy (@nexmat, @kirs)
1150
+
1151
+ Bugfixes:
1152
+
1153
+ - `exec` now works when the command contains 'exec'
1154
+ - Only touch lock after changes on Windows (@robertwahler, #1358)
1155
+ - Keep load paths when #setup is called multiple times (@radsaq, #1379)
1156
+
1157
+ ## 1.0.18 (August 16, 2011)
1158
+
1159
+ Bugfixes:
1160
+
1161
+ - Fix typo in DEBUG_RESOLVER (@geemus)
1162
+ - Fixes rake 0.9.x warning (@mtylty, #1333)
1163
+ - Fix `bundle cache` again for rubygems 1.3.x
1164
+
1165
+ Features:
1166
+
1167
+ - Run the bundle install earlier in a Capistrano deployment (@cgriego, #1300)
1168
+ - Support hidden gemspec (@trans, @cldwalker, #827)
1169
+ - Make fetch_specs faster (@zeha, #1294)
1170
+ - Allow overriding development deps loaded by #gemspec (@lgierth, #1245)
1171
+
1172
+ ## 1.0.17 (August 8, 2011)
1173
+
1174
+ Bugfixes:
1175
+
1176
+ - Fix rake issues with rubygems 1.3.x (#1342)
1177
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
1178
+
1179
+ ## 1.0.16 (August 8, 2011)
1180
+
1181
+ Features:
1182
+
1183
+ - Performance fix for MRI 1.9 (@efficientcloud, #1288)
1184
+ - Shortcuts (like `bundle i`) for all commands (@amatsuda)
1185
+ - Correcly identify missing child dependency in error message
1186
+
1187
+ Bugfixes:
1188
+
1189
+ - Allow Windows network share paths with forward slashes (@mtscout6, #1253)
1190
+ - Check for rubygems.org credentials so `rake release` doesn't hang (#980)
1191
+ - Find cached prerelease gems on rubygems 1.3.x (@dburt, #1202)
1192
+ - Fix `bundle install --without` on kiji (@tmm1, #1287)
1193
+ - Get rid of warning in ruby 1.9.3 (@smartinez87, #1231)
1194
+
1195
+ Documentation:
1196
+
1197
+ - Documentation for `gem ..., :require => false` (@kmayer, #1292)
1198
+ - Gems provide "executables", they are rarely also binaries (@fxn, #1242)
1199
+
1200
+ ## 1.0.15 (June 9, 2011)
1201
+
1202
+ Features:
1203
+
1204
+ - Improved Rubygems integration, removed many deprecation notices
1205
+
1206
+ Bugfixes:
1207
+
1208
+ - Escape URL arguments to git correctly on Windows (1.0.14 regression)
1209
+
1210
+ ## 1.0.14 (May 27, 2011)
1211
+
1212
+ Features:
1213
+
1214
+ - Rubinius platform :rbx (@rkbodenner)
1215
+ - Include gem rake tasks with "require 'bundler/gem_tasks" (@indirect)
1216
+ - Include user name and email from git config in new gemspec (@ognevsky)
1217
+
1218
+ Bugfixes:
1219
+
1220
+ - Set file permissions after checking out git repos (@tissak)
1221
+ - Remove deprecated call to Gem::SourceIndex#all_gems (@mpj)
1222
+ - Require the version file in new gemspecs (@rubiii)
1223
+ - Allow relative paths from the Gemfile in gems with no gemspec (@mbirk)
1224
+ - Install gems that contain 'bundler', e.g. guard-bundler (@hone)
1225
+ - Display installed path correctly on Windows (@tadman)
1226
+ - Escape quotes in git URIs (@mheffner)
1227
+ - Improve Rake 0.9 support (@quix)
1228
+ - Handle certain directories already existing (@raggi)
1229
+ - Escape filenames containing regex characters (@indirect)
1230
+
1231
+ ## 1.0.13 (May 4, 2011)
1232
+
1233
+ Features:
1234
+
1235
+ - Compatibility with Rubygems master (soon to be v1.8) (@evanphx)
1236
+ - Informative error when --path points to a broken symlink
1237
+ - Support Rake 0.9 and greater (@e2)
1238
+ - Output full errors for non-TTYs e.g. pow (@josh)
1239
+
1240
+ Bugfixes:
1241
+
1242
+ - Allow spaces in gem path names for gem tasks (@rslifka)
1243
+ - Have cap run bundle install from release_path (@martinjagusch)
1244
+ - Quote git refspec so zsh doesn't expand it (@goneflyin)
1245
+
1246
+ ## 1.0.12 (April 8, 2011)
1247
+
1248
+ Features:
1249
+
1250
+ - Add --no-deployment option to `install` for disabling it on dev machines
1251
+ - Better error message when git fails and cache is present (@parndt)
1252
+ - Honor :bundle_cmd in cap `rake` command (@voidlock, @cgriego)
1253
+
1254
+ Bugfixes:
1255
+
1256
+ - Compatibility with Rubygems 1.7 and Rails 2.3 and vendored gems (@evanphx)
1257
+ - Fix changing gem order in lock (@gucki)
1258
+ - Remove color escape sequences when displaying man pages (@bgreenlee)
1259
+ - Fix creating GEM_HOME on both JRuby 1.5 and 1.6 (@nickseiger)
1260
+ - Fix gems without a gemspec and directories in bin/ (@epall)
1261
+ - Fix --no-prune option for `bundle install` (@cmeiklejohn)
1262
+
1263
+ ## 1.0.11 (April 1, 2011)
1264
+
1265
+ Features:
1266
+
1267
+ - Compatibility with Rubygems 1.6 and 1.7
1268
+ - Better error messages when a git command fails
1269
+
1270
+ Bugfixes:
1271
+
1272
+ - Don't always update gemspec gems (@carllerche)
1273
+ - Remove ivar warnings (@jackdempsey)
1274
+ - Fix occasional git failures in zsh (@jonah-carbonfive)
1275
+ - Consistent lock for gems with double deps like Cap (@akahn)
1276
+
1277
+ ## 1.0.10 (February 1, 2011)
1278
+
1279
+ Bugfixes:
1280
+
1281
+ - Fix a regression loading YAML gemspecs from :git and :path gems
1282
+ - Requires, namespaces, etc. to work with changes in Rubygems 1.5
1283
+
1284
+ ## 1.0.9 (January 19, 2011)
1285
+
1286
+ Bugfixes:
1287
+
1288
+ - Fix a bug where Bundler.require could remove gems from the load
1289
+ path. In Rails apps with a default application.rb, this removed
1290
+ all gems in groups other than :default and Rails.env
1291
+
1292
+ ## 1.0.8 (January 18, 2011)
1293
+
1294
+ Features:
1295
+
1296
+ - Allow overriding gemspec() deps with :git deps
1297
+ - Add --local option to `bundle update`
1298
+ - Ignore Gemfile.lock in newly generated gems
1299
+ - Use `less` as help pager instead of `more`
1300
+ - Run `bundle exec rake` instead of `rake` in Capistrano tasks
1301
+
1302
+ Bugfixes:
1303
+
1304
+ - Fix --no-cache option for `bundle install`
1305
+ - Allow Vlad deploys to work without Capistrano gem installed
1306
+ - Fix group arguments to `bundle console`
1307
+ - Allow groups to be loaded even if other groups were loaded
1308
+ - Evaluate gemspec() gemspecs in their directory not the cwd
1309
+ - Count on Rake to chdir to the right place in GemHelper
1310
+ - Change Pathnames to Strings for MacRuby
1311
+ - Check git process exit status correctly
1312
+ - Fix some warnings in 1.9.3-trunk (thanks tenderlove)
1313
+
1314
+ ## 1.0.7 (November 17, 2010)
1315
+
1316
+ Bugfixes:
1317
+
1318
+ - Remove Bundler version from the lockfile because it broke
1319
+ backwards compatibility with 1.0.0-1.0.5. Sorry. :(
1320
+
1321
+ ## 1.0.6 (November 16, 2010)
1322
+
1323
+ Bugfixes:
1324
+
1325
+ - Fix regression in `update` that caused long/wrong results
1326
+ - Allow git gems on other platforms while installing (#579)
1327
+
1328
+ Features:
1329
+
1330
+ - Speed up `install` command using various optimizations
1331
+ - Significantly increase performance of resolver
1332
+ - Use upcoming Rubygems performance improvements (@tmm1)
1333
+ - Warn if the lockfile was generated by a newer version
1334
+ - Set generated gems' homepage to "", so Rubygems will warn
1335
+
1336
+ ## 1.0.5 (November 13, 2010)
1337
+
1338
+ Bugfixes:
1339
+
1340
+ - Fix regression disabling all operations that employ sudo
1341
+
1342
+ ## 1.0.4 (November 12, 2010)
1343
+
1344
+ Bugfixes:
1345
+
1346
+ - Expand relative :paths from Bundler.root (eg ./foogem)
1347
+ - Allow git gems in --without groups while --frozen
1348
+ - Allow gem :ref to be a symbol as well as a string
1349
+ - Fix exception when Gemfile needs a newer Bundler version
1350
+ - Explanation when the current Bundler version conflicts
1351
+ - Explicit error message if Gemfile needs newer Bundler
1352
+ - Ignore an empty string BUNDLE_GEMFILE
1353
+ - Skeleton gemspec now works with older versions of git
1354
+ - Fix shell quoting and ref fetching in GemHelper
1355
+ - Disable colored output in --deployment
1356
+ - Preserve line endings in lock file
1357
+
1358
+ Features:
1359
+
1360
+ - Add support for 'mingw32' platform (aka RubyInstaller)
1361
+ - Large speed increase when Gemfile.lock is already present
1362
+ - Huge speed increase when many (100+) system gems are present
1363
+ - Significant expansion of ISSUES, man pages, and docs site
1364
+ - Remove Open3 from GemHelper (now it works on Windows™®©)
1365
+ - Allow setting roles in built-in cap and vlad tasks
1366
+
1367
+ ## 1.0.3 (October 15, 2010)
1368
+
1369
+ Bugfixes:
1370
+
1371
+ - Use bitwise or in #hash to reduce the chance of overflow
1372
+ - `bundle update` now works with :git + :tag updates
1373
+ - Record relative :path options in the Gemfile.lock
1374
+ - :groups option on gem method in Gemfile now works
1375
+ - Add #platform method and :platform option to Gemfile DSL
1376
+ - --without now accepts a quoted, space-separated list
1377
+ - Installing after --deployment with no lock is now possible
1378
+ - Binstubs can now be symlinked
1379
+ - Print warning if cache for --local install is missing gems
1380
+ - Improve output when installing to a path
1381
+ - The tests all pass! Yay!
1382
+
1383
+ ## 1.0.2 (October 2, 2010)
1384
+
1385
+ Bugfix:
1386
+
1387
+ - Actually include the man pages in the gem, so help works
1388
+
1389
+ ## 1.0.1 (October 1, 2010)
1390
+
1391
+ Features:
1392
+
1393
+ - Vlad deployment recipe, `require 'bundler/vlad'`
1394
+ - Prettier bundle graphs
1395
+ - Improved gem skeleton for `bundle gem`
1396
+ - Prompt on file clashes when generating a gem
1397
+ - Option to generate binary with gem skeleton
1398
+ - Allow subclassing of GemHelper for custom tasks
1399
+ - Chdir to gem directory during `bundle open`
1400
+
1401
+ Bugfixes:
1402
+
1403
+ - Allow gemspec requirements with a list of versions
1404
+ - Accept lockfiles with windows line endings
1405
+ - Respect BUNDLE_WITHOUT env var
1406
+ - Allow `gem "foo", :platform => :jruby`
1407
+ - Specify loaded_from path in fake gemspec
1408
+ - Flesh out gem_helper tasks, raise errors correctly
1409
+ - Respect RBConfig::CONFIG['ruby_install_name'] in binstubs
1410
+
1411
+ ## 1.0.0 (August 29, 2010)
1412
+
1413
+ Features:
1414
+
1415
+ - You can now define `:bundle_cmd` in the capistrano task
1416
+
1417
+ Bugfixes:
1418
+
1419
+ - Various bugfixes to the built-in rake helpers
1420
+ - Fix a bug where shortrefs weren't unique enough and were
1421
+ therfore colliding
1422
+ - Fix a small bug involving checking whether a local git
1423
+ clone is up to date
1424
+ - Correctly handle explicit '=' dependencies with gems
1425
+ pinned to a git source
1426
+ - Fix an issue with Windows-generated lockfiles by reading
1427
+ and writing the lockfile in binary mode
1428
+ - Fix an issue with shelling out to git in Windows by
1429
+ using double quotes around paths
1430
+ - Detect new Rubygems sources in the Gemfile and update
1431
+ the lockfile
1432
+
1433
+ ## 1.0.0.rc.6 (August 23, 2010)
1434
+
1435
+ Features:
1436
+
1437
+ - Much better documentation for most of the commands and Gemfile
1438
+ format
1439
+
1440
+ Bugfixes:
1441
+
1442
+ - Don't attempt to create directories if they already exist
1443
+ - Fix the capistrano task so that it actually runs
1444
+ - Update the Gemfile template to reference rubygems.org instead
1445
+ of :gemcutter
1446
+ - bundle exec should exit with a non zero exit code when the gem
1447
+ binary does not exist or the file is not executable.
1448
+ - Expand paths in Gemfile relative to the Gemfile and not the current
1449
+ working directory.
1450
+
1451
+ ## 1.0.0.rc.5 (August 10, 2010)
1452
+
1453
+ Features:
1454
+
1455
+ - Make the Capistrano task more concise.
1456
+
1457
+ Bugfixes:
1458
+
1459
+ - Fix a regression with determining whether or not to use sudo
1460
+ - Allow using the --gemfile flag with the --deployment flag
1461
+
1462
+ ## 1.0.0.rc.4 (August 9, 2010)
1463
+
1464
+ Features:
1465
+
1466
+ - `bundle gem NAME` command to generate a new gem with Gemfile
1467
+ - Bundle config file location can be specified by BUNDLE_APP_CONFIG
1468
+ - Add --frozen to disable updating the Gemfile.lock at runtime
1469
+ (default with --deployment)
1470
+ - Basic Capistrano task now added as 'bundler/capistrano'
1471
+
1472
+ Bugfixes:
1473
+
1474
+ - Multiple bundler process no longer share a tmp directory
1475
+ - `bundle update GEM` always updates dependencies of GEM as well
1476
+ - Deleting the cache directory no longer causes errors
1477
+ - Moving the bundle after installation no longer causes git errors
1478
+ - Bundle path is now correctly remembered on a read-only filesystem
1479
+ - Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
1480
+ - Fetch gems from vendor/cache, even without --local
1481
+ - Sort lockfile by platform as well as spec
1482
+
1483
+ ## 1.0.0.rc.3 (August 3, 2010)
1484
+
1485
+ Features:
1486
+
1487
+ - Deprecate --production flag for --deployment, since the former
1488
+ was causing confusion with the :production group
1489
+ - Add --gemfile option to `bundle check`
1490
+ - Reduce memory usage of `bundle install` by 2-4x
1491
+ - Improve message from `bundle check` under various conditions
1492
+ - Better error when a changed Gemfile conflicts with Gemfile.lock
1493
+
1494
+ Bugfixes:
1495
+
1496
+ - Create bin/ directory if it is missing, then install binstubs
1497
+ - Error nicely on the edge case of a pinned gem with no spec
1498
+ - Do not require gems for other platforms
1499
+ - Update git sources along with the gems they contain
1500
+
1501
+ ## 1.0.0.rc.2 (July 29, 2010)
1502
+
1503
+ - `bundle install path` was causing confusion, so we now print
1504
+ a clarifying warning. The preferred way to install to a path
1505
+ (which will not print the warning) is
1506
+ `bundle install --path path/to/install`.
1507
+ - `bundle install --system` installs to the default system
1508
+ location ($BUNDLE_PATH or $GEM_HOME) even if you previously
1509
+ used `bundle install --path`
1510
+ - completely remove `--disable-shared-gems`. If you install to
1511
+ system, you will not be isolated, while if you install to
1512
+ another path, you will be isolated from gems installed to
1513
+ the system. This was mostly an internal option whose naming
1514
+ and semantics were extremely confusing.
1515
+ - Add a `--production` option to `bundle install`:
1516
+ - by default, installs to `vendor/bundle`. This can be
1517
+ overridden with the `--path` option
1518
+ - uses `--local` if `vendor/cache` is found. This will
1519
+ guarantee that Bundler does not attempt to connect to
1520
+ Rubygems and will use the gems cached in `vendor/cache`
1521
+ instead
1522
+ - Raises an exception if a Gemfile.lock is not found
1523
+ - Raises an exception if you modify your Gemfile in development
1524
+ but do not check in an updated Gemfile.lock
1525
+ - Fixes a bug where switching a source from Rubygems to git
1526
+ would always say "the git source is not checked out" when
1527
+ running `bundle install`
1528
+
1529
+ NOTE: We received several reports of "the git source has not
1530
+ been checked out. Please run bundle install". As far as we
1531
+ can tell, these problems have two possible causes:
1532
+
1533
+ 1. `bundle install ~/.bundle` in one user, but actually running
1534
+ the application as another user. Never install gems to a
1535
+ directory scoped to a user (`~` or `$HOME`) in deployment.
1536
+ 2. A bug that happened when changing a gem to a git source.
1537
+
1538
+ To mitigate several common causes of `(1)`, please use the
1539
+ new `--production` flag. This flag is simply a roll-up of
1540
+ the best practices we have been encouraging people to use
1541
+ for deployment.
1542
+
1543
+ If you want to share gems across deployments, and you use
1544
+ Capistrano, symlink release_path/current/vendor/bundle to
1545
+ release_path/shared/bundle. This will keep deployments
1546
+ snappy while maintaining the benefits of clean, deploy-time
1547
+ isolation.
1548
+
1549
+ ## 1.0.0.rc.1 (July 26, 2010)
1550
+
1551
+ - Fixed a bug with `bundle install` on multiple machines and git
1552
+
1553
+ ## 1.0.0.beta.10 (July 25, 2010)
1554
+
1555
+ - Last release before 1.0.0.rc.1
1556
+ - Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
1557
+ - Fix `bundle install` immediately after modifying the :submodule option
1558
+ - Don't write to Gemfile.lock if nothing has changed, fixing situations
1559
+ where bundle install was run with a different user than the app
1560
+ itself
1561
+ - Fix a bug where other platforms were being wiped on `bundle update`
1562
+ - Don't ask for root password on `bundle install` if not needed
1563
+ - Avoid setting `$GEM_HOME` where not needed
1564
+ - First solid pass of `bundle config`
1565
+ - Add build options
1566
+ - `bundle config build.mysql --with-mysql-config=/path/to/config`
1567
+
1568
+ ## 1.0.0.beta.9 (July 21, 2010)
1569
+
1570
+ - Fix install failure when switching from a path to git source
1571
+ - Fix `bundle exec bundle *` in a bundle with --disable-shared-gems
1572
+ - Fix `bundle *` from inside a bundle with --disable-shared-gem
1573
+ - Shim Gem.refresh. This is used by Unicorn
1574
+ - Fix install failure when a path's dependencies changed
1575
+
1576
+ ## 1.0.0.beta.8 (July 20, 2010)
1577
+
1578
+ - Fix a Beta 7 bug involving Ruby 1.9
1579
+
1580
+ ## 1.0.0.beta.7 (July 20, 2010, yanked)
1581
+
1582
+ - Running `bundle install` twice in a row with a git source always crashed
1583
+
1584
+ ## 1.0.0.beta.6 (July 20, 2010, yanked)
1585
+
1586
+ - Create executables with bundle install --binstubs
1587
+ - You can customize the location (default is app/bin) with --binstubs other/location
1588
+ - Fix a bug where the Gemfile.lock would be deleted even if the update was exited
1589
+ - Fix a bug where cached gems for other platforms were sometimes deleted
1590
+ - Clean up output when nothing was deleted from cache (it previously said
1591
+ "Removing outdated gems ...")
1592
+ - Improve performance of bundle install if the git gem was already checked out,
1593
+ and the revision being used already exists locally
1594
+ - Fix bundle show bundler in some cases
1595
+ - Fix bugs with bundle update
1596
+ - Don't ever run git commands at runtime (fixes a number of common passenger issues)
1597
+ - Fixes an obscure bug where switching the source of a gem could fail to correctly
1598
+ change the source of its dependencies
1599
+ - Support multiple version dependencies in the Gemfile
1600
+ (gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
1601
+ - Raise an exception for ambiguous uses of multiple declarations of the same gem
1602
+ (for instance, with different versions or sources).
1603
+ - Fix cases where the same dependency appeared several times in the Gemfile.lock
1604
+ - Fix a bug where require errors were being swallowed during Bundler.require
1605
+
1606
+ ## 1.0.0.beta.1
1607
+
1608
+ - No `bundle lock` command. Locking happens automatically on install or update
1609
+ - No .bundle/environment.rb. Require 'bundler/setup' instead.
1610
+ - $BUNDLE_HOME defaults to $GEM_HOME instead of ~/.bundle
1611
+ - Remove lockfiles generated by 0.9
1612
+
1613
+ ## 0.9.26
1614
+
1615
+ Features:
1616
+
1617
+ - error nicely on incompatible 0.10 lockfiles
1618
+
1619
+ ## 0.9.25 (May 3, 2010)
1620
+
1621
+ Bugfixes:
1622
+
1623
+ - explicitly coerce Pathname objects to Strings for Ruby 1.9
1624
+ - fix some newline weirdness in output from install command
1625
+
1626
+ ## 0.9.24 (April 22, 2010)
1627
+
1628
+ Features:
1629
+
1630
+ - fetch submodules for git sources
1631
+ - limit the bundled version of bundler to the same as the one installing
1632
+ - force relative paths in git gemspecs to avoid raising Gem::NameTooLong
1633
+ - serialize GemCache sources correctly, so locking works
1634
+ - raise Bundler::GemNotFound instead of calling exit! inside library code
1635
+ - Rubygems 1.3.5 compatibility for the adventurous, not supported by me :)
1636
+
1637
+ Bugfixes:
1638
+
1639
+ - don't try to regenerate environment.rb if it is read-only
1640
+ - prune outdated gems with the platform "ruby"
1641
+ - prune cache without errors when there are directories or non-gem files
1642
+ - don't re-write environment.rb if running after it has been loaded
1643
+ - do not monkeypatch Specification#load_paths twice when inside a bundle
1644
+
1645
+ ## 0.9.23 (April 20, 2010)
1646
+
1647
+ Bugfixes:
1648
+
1649
+ - cache command no longer prunes gems created by an older rubygems version
1650
+ - cache command no longer prunes gems that are for other platforms
1651
+
1652
+ ## 0.9.22 (April 20, 2010)
1653
+
1654
+ Features:
1655
+
1656
+ - cache command now prunes stale .gem files from vendor/cache
1657
+ - init --gemspec command now generates development dependencies
1658
+ - handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED (#287)
1659
+ - remove .gem files generated after installing a gem from a :path (#286)
1660
+ - improve install/lock messaging (#284)
1661
+
1662
+ Bugfixes:
1663
+
1664
+ - ignore cached gems that are for another platform (#288)
1665
+ - install Windows gems that have no architecture set, like rcov (#277)
1666
+ - exec command while locked now includes the bundler lib in $LOAD_PATH (#293)
1667
+ - fix the `rake install` task
1668
+ - add GemspecError so it can be raised without (further) error (#292)
1669
+ - create a parent directory before cloning for git 1.5 compatibility (#285)
1670
+
1671
+ ## 0.9.21 (April 16, 2010)
1672
+
1673
+ Bugfixes:
1674
+
1675
+ - don't raise 'omg wtf' when lockfile is outdated
1676
+
1677
+ ## 0.9.20 (April 15, 2010)
1678
+
1679
+ Features:
1680
+
1681
+ - load YAML format gemspecs
1682
+ - no backtraces when calling Bundler.setup if gems are missing
1683
+ - no backtraces when trying to exec a file without the executable bit
1684
+
1685
+ Bugfixes:
1686
+
1687
+ - fix infinite recursion in Bundler.setup after loading a bundled Bundler gem
1688
+ - request install instead of lock when env.rb is out of sync with Gemfile.lock
1689
+
1690
+ ## 0.9.19 (April 12, 2010)
1691
+
1692
+ Features:
1693
+
1694
+ - suggest `bundle install --relock` when the Gemfile has changed (#272)
1695
+ - source support for Rubygems servers without prerelease gem indexes (#262)
1696
+
1697
+ Bugfixes:
1698
+
1699
+ - don't set up all groups every time Bundler.setup is called while locked (#263)
1700
+ - fix #full_gem_path for git gems while locked (#268)
1701
+ - eval gemspecs at the top level, not inside the Bundler class (#269)
1702
+
1703
+
1704
+ ## 0.9.18 (April 8, 2010)
1705
+
1706
+ Features:
1707
+
1708
+ - console command that runs irb with bundle (and optional group) already loaded
1709
+
1710
+ Bugfixes:
1711
+
1712
+ - Bundler.setup now fully disables system gems, even when unlocked (#266, #246)
1713
+ - fixes Yard, which found plugins in Gem.source_index that it could not load
1714
+ - makes behaviour of `Bundler.require` consistent between locked and unlocked loads
1715
+
1716
+ ## 0.9.17 (April 7, 2010)
1717
+
1718
+ Features:
1719
+
1720
+ - Bundler.require now calls Bundler.setup automatically
1721
+ - Gem::Specification#add_bundler_dependencies added for gemspecs
1722
+
1723
+ Bugfixes:
1724
+
1725
+ - Gem paths are not longer duplicated while loading bundler
1726
+ - exec no longer duplicates RUBYOPT if it is already set correctly
1727
+
1728
+ ## 0.9.16 (April 3, 2010)
1729
+
1730
+ Features:
1731
+
1732
+ - exit gracefully on INT signal
1733
+ - resolver output now indicates whether remote sources were checked
1734
+ - print error instead of backtrace when exec cannot find a binary (#241)
1735
+
1736
+ Bugfixes:
1737
+
1738
+ - show, check, and open commands work again while locked (oops)
1739
+ - show command for git gems
1740
+ - outputs branch names other than master
1741
+ - gets the correct sha from the checkout
1742
+ - doesn't print sha twice if :ref is set
1743
+ - report errors from bundler/setup.rb without backtraces (#243)
1744
+ - fix Gem::Spec#git_version to not error on unloaded specs
1745
+ - improve deprecation, Gemfile, and command error messages (#242)
1746
+
1747
+ ## 0.9.15 (April 1, 2010)
1748
+
1749
+ Features:
1750
+
1751
+ - use the env_file if possible instead of doing a runtime resolve
1752
+ - huge speedup when calling Bundler.setup while locked
1753
+ - ensures bundle exec is fast while locked
1754
+ - regenerates env_file if it was generated by an older version
1755
+ - update cached/packed gems when you update gems via bundle install
1756
+
1757
+ Bugfixes:
1758
+
1759
+ - prep for Rubygems 1.3.7 changes
1760
+ - install command now pulls git branches correctly (#211)
1761
+ - raise errors on invalid options in the Gemfile
1762
+
1763
+ ## 0.9.14 (March 30, 2010)
1764
+
1765
+ Features:
1766
+
1767
+ - install command output vastly improved
1768
+ - installation message now accurate, with 'using' and 'installing'
1769
+ - bundler gems no longer listed as 'system gems'
1770
+ - show command output now includes sha and branch name for git gems
1771
+ - init command now takes --gemspec option for bootstrapping gem Gemfiles
1772
+ - Bundler.with_clean_env for shelling out to ruby scripts
1773
+ - show command now aliased as 'list'
1774
+ - VISUAL env var respected for GUI editors
1775
+
1776
+ Bugfixes:
1777
+
1778
+ - exec command now finds binaries from gems with no gemspec
1779
+ - note source of Gemfile resolver errors
1780
+ - don't blow up if git urls are changed
1781
+
1782
+ ## 0.9.13 (March 23, 2010)
1783
+
1784
+ Bugfixes:
1785
+
1786
+ - exec command now finds binaries from gems installed via :path
1787
+ - gem dependencies are pulled in even if their type is nil
1788
+ - paths with spaces have double-quotes to work on Windows
1789
+ - set GEM_PATH in environment.rb so generators work with Rails 2
1790
+
1791
+ ## 0.9.12 (March 17, 2010)
1792
+
1793
+ - refactoring, internal cleanup, more solid specs
1794
+
1795
+ Features:
1796
+
1797
+ - check command takes a --without option
1798
+ - check command exits 1 if the check fails
1799
+
1800
+ Bugfixes:
1801
+
1802
+ - perform a topological sort on resolved gems (#191)
1803
+ - gems from git work even when paths or repos have spaces (#196)
1804
+ - Specification#loaded_from returns a String, like Gem::Specification (#197)
1805
+ - specs eval from inside the gem directory, even when locked
1806
+ - virtual gemspecs are now saved in environment.rb for use when loading
1807
+ - unify the Installer's local index and the runtime index (#204)
1808
+
1809
+ ## 0.9.11 (March 9, 2010)
1810
+
1811
+ - added roadmap with future development plans
1812
+
1813
+ Features:
1814
+
1815
+ - install command can take the path to the gemfile with --gemfile (#125)
1816
+ - unknown command line options are now rejected (#163)
1817
+ - exec command hugely sped up while locked (#177)
1818
+ - show command prints the install path if you pass it a gem name (#148)
1819
+ - open command edits an installed gem with $EDITOR (#148)
1820
+ - Gemfile allows assigning an array of groups to a gem (#114)
1821
+ - Gemfile allows :tag option on :git sources
1822
+ - improve backtraces when a gemspec is invalid
1823
+ - improve performance by installing gems from the cache if present
1824
+
1825
+ Bugfixes:
1826
+
1827
+ - normalize parameters to Bundler.require (#153)
1828
+ - check now checks installed gems rather than cached gems (#162)
1829
+ - don't update the gem index when installing after locking (#169)
1830
+ - bundle parenthesises arguments for 1.8.6 (#179)
1831
+ - gems can now be assigned to multiple groups without problems (#135)
1832
+ - fix the warning when building extensions for a gem from git with Rubygems 1.3.6
1833
+ - fix a Dependency.to_yaml error due to accidentally including sources and groups
1834
+ - don't reinstall packed gems
1835
+ - fix gems with git sources that are private repositories
1836
+
1837
+ ## 0.9.10 (March 1, 2010)
1838
+
1839
+ - depends on Rubygems 1.3.6
1840
+
1841
+ Bugfixes:
1842
+
1843
+ - support locking after install --without
1844
+ - don't reinstall gems from the cache if they're already in the bundle
1845
+ - fixes for Ruby 1.8.7 and 1.9
1846
+
1847
+ ## 0.9.9 (February 25, 2010)
1848
+
1849
+ Bugfixes:
1850
+
1851
+ - don't die if GEM_HOME is an empty string
1852
+ - fixes for Ruby 1.8.6 and 1.9
1853
+
1854
+ ## 0.9.8 (February 23, 2010)
1855
+
1856
+ Features:
1857
+
1858
+ - pack command which both caches and locks
1859
+ - descriptive error if a cached gem is missing
1860
+ - remember the --without option after installing
1861
+ - expand paths given in the Gemfile via the :path option
1862
+ - add block syntax to the git and group options in the Gemfile
1863
+ - support gems with extensions that don't admit they depend on rake
1864
+ - generate gems using gem build gemspec so git gems can have native extensions
1865
+ - print a useful warning if building a gem fails
1866
+ - allow manual configuration via BUNDLE_PATH
1867
+
1868
+ Bugfixes:
1869
+
1870
+ - eval gemspecs in the gem directory so relative paths work
1871
+ - make default spec for git sources valid
1872
+ - don't reinstall gems that are already packed
1873
+
1874
+ ## 0.9.7 (February 17, 2010)
1875
+
1876
+ Bugfixes:
1877
+
1878
+ - don't say that a gem from an excluded group is "installing"
1879
+ - improve crippling rubygems in locked scenarios
1880
+
1881
+ ## 0.9.6 (February 16, 2010)
1882
+
1883
+ Features:
1884
+
1885
+ - allow String group names
1886
+ - a number of improvements in the documentation and error messages
1887
+
1888
+ Bugfixes:
1889
+
1890
+ - set SourceIndex#spec_dirs to solve a problem involving Rails 2.3 in unlocked mode
1891
+ - ensure Rubygems is fully loaded in Ruby 1.9 before patching it
1892
+ - fix `bundle install` for a locked app without a .bundle directory
1893
+ - require gems in the order that the resolver determines
1894
+ - make the tests platform agnostic so we can confirm that they're green on JRuby
1895
+ - fixes for Ruby 1.9
1896
+
1897
+ ## 0.9.5 (Feburary 12, 2010)
1898
+
1899
+ Features:
1900
+
1901
+ - added support for :path => "relative/path"
1902
+ - added support for older versions of git
1903
+ - added `bundle install --disable-shared-gems`
1904
+ - Bundler.require fails silently if a library does not have a file on the load path with its name
1905
+ - Basic support for multiple rubies by namespacing the default bundle path using the version and engine
1906
+
1907
+ Bugfixes:
1908
+
1909
+ - if the bundle is locked and .bundle/environment.rb is not present when Bundler.setup is called, generate it
1910
+ - same if it's not present with `bundle check`
1911
+ - same if it's not present with `bundle install`