-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Tasks anyone can claim #4871
Comments
I would like to work on #4913 |
@JuanitoFatas sounds great. once you send a PR, come back and check it off. 😁 |
Hi! I think check is only available for collaborator, not for contributor, but I link the PR back, so you can check it off when you revisit this issue :) |
#4846 merged, can check it off. |
Add `bundle issue` command that prints instructions for reporting issues This is my stab at adding a `bundle issue` command, as listed in the list of tasks anyone can claim (#4871). This is also my first contribution (of what I hope will be many) to Bundler! I hope that this is useful, and please let me know how to improve it!
updated status of this board |
Changes since last version used (1.14.6): == 1.15.1 (2017-06-02) Bugfixes: - `bundle lock --update GEM` will fail gracefully when the gem is not in the lockfile (rubygems/bundler#5693, @segiddins) - `bundle init --gemspec` will fail gracefully when the gemspec is invalid (@colby-swandale) - `bundle install --force` works when the gemfile contains git gems (rubygems/bundler#5678, @segiddins) - `bundle env` will print well-formed markdown when there are no settings (rubygems/bundler#5677, @segiddins) == 1.15.0 (2017-05-19) This space intentionally left blank. == 1.15.0.pre.4 (2017-05-10) Bugfixes: - avoid conflicts when `Gem.finish_resolve` is called after the bundle has been set up (@segiddins) - ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it (rubygems/bundler#5592, @jules2689) == 1.15.0.pre.3 (2017-04-30) Bugfixes: - avoid redundant blank lines in the readme generated by `bundle gem` (@koic) - ensure that `open-uri` is not loaded after `bundle exec` (@segiddins) - print a helpful error message when an activated default gem conflicts with a gem in the gemfile (@segiddins) - only shorten `ref` option for git gems when it is a SHA (rubygems/bundler#5620, @segiddins) == 1.15.0.pre.2 (2017-04-23) Bugfixes: - ensure pre-existing fit caches are updated from remote sources (rubygems/bundler#5423, @alextaylor000) - avoid duplicating specs in the lockfile after updating with the gem uninstalled (rubygems/bundler#5599, @segiddins) - ensure git gems have their extensions available at runtime (rubygems/bundler#5594, @jules2689, @segiddins) == 1.15.0.pre.1 (2017-04-16) Features: - print a notification when a newer version of bundler is available (rubygems/bundler#4683, @segiddins) - add man pages for all bundler commands (rubygems/bundler#4988, @feministy) - add the `bundle info` command (@fredrb, @colby-swandale) - all files created with `bundle gem` comply with the bundler style guide (@zachahn) - if installing a gem fails, print out the reason the gem needed to be installed (rubygems/bundler#5078, @segiddins) - allow setting `gem.push_key` to set the key used when running `rake release` (@DTrierweiler) - print gem versions that are regressing during `bundle update` in yellow (rubygems/bundler#5506, @brchristian) - avoid printing extraneous dependencies when the resolver encounters a conflict (@segiddins) - add the `bundle issue` command that prints instructions for reporting issues (rubygems/bundler#4871, @jonathanpike) - add `--source` and `--group` options to the `bundle inject` command (rubygems/bundler#5452, @Shekharrajak) - add the `bundle add` command to add a gem to the gemfile (@denniss) - add the `bundle pristine` command to re-install gems from cached `.gem` files (rubygems/bundler#4509, @denniss) - add a `--parseable` option for `bundle config` (@JuanitoFatas, @colby-swandale) Performance: - speed up gemfile initialization by storing locked dependencies as a hash (@jules2689) - speed up gemfile initialization by making locked dependency comparison lazy, avoiding object allocation (@jules2689) - only validate git gems when they are downloaded, instead of every time `Bundler.setup` is run (@segiddins) - avoid regenerating the lockfile when nothing has changed (@segiddins) - avoid diffing large arrays when no sources in the gemfile have changed (@segiddins) - avoid evaluating full gemspecs when running with RubyGems 2.5+ (@segiddins) Bugfixes: - fix cases where `bundle update` would print a resolver conflict instead of updating the selected gems (rubygems/bundler#5031, rubygems/bundler#5095, @segiddins) - print out a stack trace after an interrupt when running in debug mode (@segiddins) - print out when bundler starts fetching a gem from a remote server (@segiddins) - fix `bundle gem` failing when `git` is unavailable (rubygems/bundler#5458, @Shekharrajak, @colby-swandale) - suggest the appropriate command to unfreeze a bundle (rubygems/bundler#5009, @denniss) - ensure nested calls to `bundle exec` resolve default gems correctly (rubygems/bundler#5500, @segiddins) - ensure that a plugin failing to install doesn't uninstall other plugins (@kerrizor, @roseaboveit) - ensure `socket` is required before being referenced (rubygems/bundler#5533, @rafaelfranca) - allow running `bundle outdated` when gems aren't installed locally (rubygems/bundler#5553, @segiddins) - print a helpful error when `bundle exec`ing to a gem that isn't included in the bundle (rubygems/bundler#5487, @segiddins) - print an error message when a non-git gem is given a `branch` option (rubygems/bundler#5530, @colby-swandale) - allow interrupts to exit the process after gems have been installed (@segiddins) - print the underlying error when downloading gem metadata fails (rubygems/bundler#5579, @segiddins) - avoid deadlocking when installing with a lockfile that is missing dependencies (rubygems/bundler#5378, rubygems/bundler#5480, rubygems/bundler#5519, rubygems/bundler#5526, rubygems/bundler#5529, rubygems/bundler#5549, rubygems/bundler#5572, @segiddins)
@indirect Is it worth of working on this request?
Looks like in |
I've done some experimental work on that one, @prog1dev |
I'm closing this issue, we've replaced this list with the help wanted and good first issue Github tags. |
@colby-swandale I think this list was good to have for those looking to contribute. Having multiple paths to discover issues to work on caters to different ways people look to find info. To me this list was a much easier way to find a list of issues to work on and it's a good central way to track and prioritize what needs to be worked on. I highly recommend reviving it by making a new version since 3/4's of this is done. Also keep the Github tags as another method to find things to work on. |
add
command Fixes foradd
command #4901bundle issue
command that prints instructions for reporting issues as well as the output fromenv
anddoctor
Addbundle issue
command that prints instructions for reporting issues #5505--parsable
option toconfig
bundle config NAME
is too verbose by default #4913 Feature: Add parseable option to bundle config command #4919 Bundler config parseable flag #5306env
Add OpenSSL::OPENSSL_VERSION tobundle env
#4624update
--newer-only option for install/update #4511, Block resolving to older versions during an update #4893/tmp/bundler
for compact_index when Dir.home isn't writable Use a tmp dir when$HOME/.bundle/compact_index
fails #4792 Bundler 1.12.5 does not appear to respectruby RUBY_VERSION
for dependencies of gems in Gemfile #4819eval
ing Gemfile twice [Installer] Don't eval gemfile twice #4417 [Installer] Skip eval’ing a Gemfile twice when there’s a lockfile #4952parallel_tests
[Rakefile] Run Travis tests in parallel #4345platform
, which today means multiple conflicting things: gem architecture (eg x86_64), gem platform OS (eg java), engine version (eg mri_22). This may involve adding gemspec support for Ruby engine and version requirements?bundle plugin list
command to list the current plugins in the bundle. Addbundle plugin list
command #5467bundle plugin update
command to update the version of an installed plugin Add flag--ignore-cache
toplugin install
#5446bundle update
bundle update is not updating vendor cached git gems #5423 #5398bundle exec
can modifyGemfile.lock
#5245never say I didn't give you things you could do, @segiddins 😁
The text was updated successfully, but these errors were encountered: