Skip to content
This repository has been archived by the owner on Apr 14, 2021. It is now read-only.

Releases: rubygems/bundler

v1.0.7

28 Aug 03:15
Compare
Choose a tag to compare

Bugfixes:

  • Remove Bundler version from the lockfile because it broke
    backwards compatibility with 1.0.0-1.0.5. Sorry. :(

1.0.6 (November 16, 2010)

Bugfixes:

  • Fix regression in update that caused long/wrong results
  • Allow git gems on other platforms while installing (#579)

Features:

  • Speed up install command using various optimizations
  • Significantly increase performance of resolver
  • Use upcoming Rubygems performance improvements (@tmm1)
  • Warn if the lockfile was generated by a newer version
  • Set generated gems' homepage to "", so Rubygems will warn

1.0.5 (November 13, 2010)

Bugfixes:

  • Fix regression disabling all operations that employ sudo

1.0.4 (November 12, 2010)

Bugfixes:

  • Expand relative :paths from Bundler.root (eg ./foogem)
  • Allow git gems in --without groups while --frozen
  • Allow gem :ref to be a symbol as well as a string
  • Fix exception when Gemfile needs a newer Bundler version
  • Explanation when the current Bundler version conflicts
  • Explicit error message if Gemfile needs newer Bundler
  • Ignore an empty string BUNDLE_GEMFILE
  • Skeleton gemspec now works with older versions of git
  • Fix shell quoting and ref fetching in GemHelper
  • Disable colored output in --deployment
  • Preserve line endings in lock file

Features:

  • Add support for 'mingw32' platform (aka RubyInstaller)
  • Large speed increase when Gemfile.lock is already present
  • Huge speed increase when many (100+) system gems are present
  • Significant expansion of ISSUES, man pages, and docs site
  • Remove Open3 from GemHelper (now it works on Windows™®©)
  • Allow setting roles in built-in cap and vlad tasks

1.0.3 (October 15, 2010)

Bugfixes:

  • Use bitwise or in #hash to reduce the chance of overflow
  • bundle update now works with :git + :tag updates
  • Record relative :path options in the Gemfile.lock
  • :groups option on gem method in Gemfile now works
  • Add #platform method and :platform option to Gemfile DSL
  • --without now accepts a quoted, space-separated list
  • Installing after --deployment with no lock is now possible
  • Binstubs can now be symlinked
  • Print warning if cache for --local install is missing gems
  • Improve output when installing to a path
  • The tests all pass! Yay!

1.0.2 (October 2, 2010)

Bugfix:

  • Actually include the man pages in the gem, so help works

1.0.1 (October 1, 2010)

Features:

  • Vlad deployment recipe, require 'bundler/vlad'
  • Prettier bundle graphs
  • Improved gem skeleton for bundle gem
  • Prompt on file clashes when generating a gem
  • Option to generate binary with gem skeleton
  • Allow subclassing of GemHelper for custom tasks
  • Chdir to gem directory during bundle open

Bugfixes:

  • Allow gemspec requirements with a list of versions
  • Accept lockfiles with windows line endings
  • Respect BUNDLE_WITHOUT env var
  • Allow gem "foo", :platform => :jruby
  • Specify loaded_from path in fake gemspec
  • Flesh out gem_helper tasks, raise errors correctly
  • Respect RBConfig::CONFIG['ruby_install_name'] in binstubs

1.0.0 (August 29, 2010)

Features:

  • You can now define :bundle_cmd in the capistrano task

Bugfixes:

  • Various bugfixes to the built-in rake helpers
  • Fix a bug where shortrefs weren't unique enough and were
    therfore colliding
  • Fix a small bug involving checking whether a local git
    clone is up to date
  • Correctly handle explicit '=' dependencies with gems
    pinned to a git source
  • Fix an issue with Windows-generated lockfiles by reading
    and writing the lockfile in binary mode
  • Fix an issue with shelling out to git in Windows by
    using double quotes around paths
  • Detect new Rubygems sources in the Gemfile and update
    the lockfile

1.0.0.rc.6 (August 23, 2010)

Features:

  • Much better documentation for most of the commands and Gemfile
    format

Bugfixes:

  • Don't attempt to create directories if they already exist
  • Fix the capistrano task so that it actually runs
  • Update the Gemfile template to reference rubygems.org instead
    of :gemcutter
  • bundle exec should exit with a non zero exit code when the gem
    binary does not exist or the file is not executable.
  • Expand paths in Gemfile relative to the Gemfile and not the current
    working directory.

1.0.0.rc.5 (August 10, 2010)

Features:

  • Make the Capistrano task more concise.

Bugfixes:

  • Fix a regression with determining whether or not to use sudo
  • Allow using the --gemfile flag with the --deployment flag

1.0.0.rc.4 (August 9, 2010)

Features:

  • bundle gem NAME command to generate a new gem with Gemfile
  • Bundle config file location can be specified by BUNDLE_APP_CONFIG
  • Add --frozen to disable updating the Gemfile.lock at runtime
    (default with --deployment)
  • Basic Capistrano task now added as 'bundler/capistrano'

Bugfixes:

  • Multiple bundler process no longer share a tmp directory
  • bundle update GEM always updates dependencies of GEM as well
  • Deleting the cache directory no longer causes errors
  • Moving the bundle after installation no longer causes git errors
  • Bundle path is now correctly remembered on a read-only filesystem
  • Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
  • Fetch gems from vendor/cache, even without --local
  • Sort lockfile by platform as well as spec

1.0.0.rc.3 (August 3, 2010)

Features:

  • Deprecate --production flag for --deployment, since the former
    was causing confusion with the :production group
  • Add --gemfile option to bundle check
  • Reduce memory usage of bundle install by 2-4x
  • Improve message from bundle check under various conditions
  • Better error when a changed Gemfile conflicts with Gemfile.lock

Bugfixes:

  • Create bin/ directory if it is missing, then install binstubs
  • Error nicely on the edge case of a pinned gem with no spec
  • Do not require gems for other platforms
  • Update git sources along with the gems they contain

1.0.0.rc.2 (July 29, 2010)

  • bundle install path was causing confusion, so we now print
    a clarifying warning. The preferred way to install to a path
    (which will not print the warning) is
    bundle install --path path/to/install.
  • bundle install --system installs to the default system
    location ($BUNDLE_PATH or $GEM_HOME) even if you previously
    used bundle install --path
  • completely remove --disable-shared-gems. If you install to
    system, you will not be isolated, while if you install to
    another path, you will be isolated from gems installed to
    the system. This was mostly an internal option whose naming
    and semantics were extremely confusing.
  • Add a --production option to bundle install:
    • by default, installs to vendor/bundle. This can be
      overridden with the --path option
    • uses --local if vendor/cache is found. This will
      guarantee that Bundler does not attempt to connect to
      Rubygems and will use the gems cached in vendor/cache
      instead
    • Raises an exception if a Gemfile.lock is not found
    • Raises an exception if you modify your Gemfile in development
      but do not check in an updated Gemfile.lock
  • Fixes a bug where switching a source from Rubygems to git
    would always say "the git source is not checked out" when
    running bundle install

NOTE: We received several reports of "the git source has not
been checked out. Please run bundle install". As far as we
can tell, these problems have two possible causes:

  1. bundle install ~/.bundle in one user, but actually running
    the application as another user. Never install gems to a
    directory scoped to a user (~ or $HOME) in deployment.
  2. A bug that happened when changing a gem to a git source.

To mitigate several common causes of (1), please use the
new --production flag. This flag is simply a roll-up of
the best practices we have been encouraging people to use
for deployment.

If you want to share gems across deployments, and you use
Capistrano, symlink release_path/current/vendor/bundle to
release_path/shared/bundle. This will keep deployments
snappy while maintaining the benefits of clean, deploy-time
isolation.

1.0.0.rc.1 (July 26, 2010)

  • Fixed a bug with bundle install on multiple machines and git

1.0.0.beta.10 (July 25, 2010)

  • Last release before 1.0.0.rc.1
  • Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
  • Fix bundle install immediately after modifying the :submodule option
  • Don't write to Gemfile.lock if nothing has changed, fixing situations
    where bundle install was run with a different user than the app
    itself
  • Fix a bug where other platforms were being wiped on bundle update
  • Don't ask for root password on bundle install if not needed
  • Avoid setting $GEM_HOME where not needed
  • First solid pass of bundle config
  • Add build options
    • bundle config build.mysql --with-mysql-config=/path/to/config

1.0.0.beta.9 (July 21, 2010)

  • Fix install failure when switching from a path to git source
  • Fix bundle exec bundle * in a bundle with --disable-shared-gems
  • Fix bundle * from inside a bundle with --disable-shared-gem
  • Shim Gem.refresh. This is used by Unicorn
  • Fix install failure when a path's dependencies changed

1.0.0.beta.8 (July 20, 2010)

  • Fix a Beta 7 bug involving Ruby 1.9

1.0.0.beta.7 (July 20, 2010, yanked)

  • Running bundle install twice in a row with a git source always crashed

1.0.0.beta.6 (July 20, 2010, yanked)

  • Create executables with bundle install --binstubs
  • You can customize the location (default is app/bin) with --binstubs other/location
  • Fix a bug where the Gemfile.lock would be deleted even if the update was exited
  • Fix a bug where cached gems for other platforms were sometimes deleted
  • Clean up output when nothing was ...
Read more

v1.0.6

28 Aug 03:15
Compare
Choose a tag to compare

Bugfixes:

  • Fix regression in update that caused long/wrong results
  • Allow git gems on other platforms while installing (#579)

Features:

  • Speed up install command using various optimizations
  • Significantly increase performance of resolver
  • Use upcoming Rubygems performance improvements (@tmm1)
  • Warn if the lockfile was generated by a newer version
  • Set generated gems' homepage to "", so Rubygems will warn

1.0.5 (November 13, 2010)

Bugfixes:

  • Fix regression disabling all operations that employ sudo

1.0.4 (November 12, 2010)

Bugfixes:

  • Expand relative :paths from Bundler.root (eg ./foogem)
  • Allow git gems in --without groups while --frozen
  • Allow gem :ref to be a symbol as well as a string
  • Fix exception when Gemfile needs a newer Bundler version
  • Explanation when the current Bundler version conflicts
  • Explicit error message if Gemfile needs newer Bundler
  • Ignore an empty string BUNDLE_GEMFILE
  • Skeleton gemspec now works with older versions of git
  • Fix shell quoting and ref fetching in GemHelper
  • Disable colored output in --deployment
  • Preserve line endings in lock file

Features:

  • Add support for 'mingw32' platform (aka RubyInstaller)
  • Large speed increase when Gemfile.lock is already present
  • Huge speed increase when many (100+) system gems are present
  • Significant expansion of ISSUES, man pages, and docs site
  • Remove Open3 from GemHelper (now it works on Windows™®©)
  • Allow setting roles in built-in cap and vlad tasks

1.0.3 (October 15, 2010)

Bugfixes:

  • Use bitwise or in #hash to reduce the chance of overflow
  • bundle update now works with :git + :tag updates
  • Record relative :path options in the Gemfile.lock
  • :groups option on gem method in Gemfile now works
  • Add #platform method and :platform option to Gemfile DSL
  • --without now accepts a quoted, space-separated list
  • Installing after --deployment with no lock is now possible
  • Binstubs can now be symlinked
  • Print warning if cache for --local install is missing gems
  • Improve output when installing to a path
  • The tests all pass! Yay!

1.0.2 (October 2, 2010)

Bugfix:

  • Actually include the man pages in the gem, so help works

1.0.1 (October 1, 2010)

Features:

  • Vlad deployment recipe, require 'bundler/vlad'
  • Prettier bundle graphs
  • Improved gem skeleton for bundle gem
  • Prompt on file clashes when generating a gem
  • Option to generate binary with gem skeleton
  • Allow subclassing of GemHelper for custom tasks
  • Chdir to gem directory during bundle open

Bugfixes:

  • Allow gemspec requirements with a list of versions
  • Accept lockfiles with windows line endings
  • Respect BUNDLE_WITHOUT env var
  • Allow gem "foo", :platform => :jruby
  • Specify loaded_from path in fake gemspec
  • Flesh out gem_helper tasks, raise errors correctly
  • Respect RBConfig::CONFIG['ruby_install_name'] in binstubs

1.0.0 (August 29, 2010)

Features:

  • You can now define :bundle_cmd in the capistrano task

Bugfixes:

  • Various bugfixes to the built-in rake helpers
  • Fix a bug where shortrefs weren't unique enough and were
    therfore colliding
  • Fix a small bug involving checking whether a local git
    clone is up to date
  • Correctly handle explicit '=' dependencies with gems
    pinned to a git source
  • Fix an issue with Windows-generated lockfiles by reading
    and writing the lockfile in binary mode
  • Fix an issue with shelling out to git in Windows by
    using double quotes around paths
  • Detect new Rubygems sources in the Gemfile and update
    the lockfile

1.0.0.rc.6 (August 23, 2010)

Features:

  • Much better documentation for most of the commands and Gemfile
    format

Bugfixes:

  • Don't attempt to create directories if they already exist
  • Fix the capistrano task so that it actually runs
  • Update the Gemfile template to reference rubygems.org instead
    of :gemcutter
  • bundle exec should exit with a non zero exit code when the gem
    binary does not exist or the file is not executable.
  • Expand paths in Gemfile relative to the Gemfile and not the current
    working directory.

1.0.0.rc.5 (August 10, 2010)

Features:

  • Make the Capistrano task more concise.

Bugfixes:

  • Fix a regression with determining whether or not to use sudo
  • Allow using the --gemfile flag with the --deployment flag

1.0.0.rc.4 (August 9, 2010)

Features:

  • bundle gem NAME command to generate a new gem with Gemfile
  • Bundle config file location can be specified by BUNDLE_APP_CONFIG
  • Add --frozen to disable updating the Gemfile.lock at runtime
    (default with --deployment)
  • Basic Capistrano task now added as 'bundler/capistrano'

Bugfixes:

  • Multiple bundler process no longer share a tmp directory
  • bundle update GEM always updates dependencies of GEM as well
  • Deleting the cache directory no longer causes errors
  • Moving the bundle after installation no longer causes git errors
  • Bundle path is now correctly remembered on a read-only filesystem
  • Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
  • Fetch gems from vendor/cache, even without --local
  • Sort lockfile by platform as well as spec

1.0.0.rc.3 (August 3, 2010)

Features:

  • Deprecate --production flag for --deployment, since the former
    was causing confusion with the :production group
  • Add --gemfile option to bundle check
  • Reduce memory usage of bundle install by 2-4x
  • Improve message from bundle check under various conditions
  • Better error when a changed Gemfile conflicts with Gemfile.lock

Bugfixes:

  • Create bin/ directory if it is missing, then install binstubs
  • Error nicely on the edge case of a pinned gem with no spec
  • Do not require gems for other platforms
  • Update git sources along with the gems they contain

1.0.0.rc.2 (July 29, 2010)

  • bundle install path was causing confusion, so we now print
    a clarifying warning. The preferred way to install to a path
    (which will not print the warning) is
    bundle install --path path/to/install.
  • bundle install --system installs to the default system
    location ($BUNDLE_PATH or $GEM_HOME) even if you previously
    used bundle install --path
  • completely remove --disable-shared-gems. If you install to
    system, you will not be isolated, while if you install to
    another path, you will be isolated from gems installed to
    the system. This was mostly an internal option whose naming
    and semantics were extremely confusing.
  • Add a --production option to bundle install:
    • by default, installs to vendor/bundle. This can be
      overridden with the --path option
    • uses --local if vendor/cache is found. This will
      guarantee that Bundler does not attempt to connect to
      Rubygems and will use the gems cached in vendor/cache
      instead
    • Raises an exception if a Gemfile.lock is not found
    • Raises an exception if you modify your Gemfile in development
      but do not check in an updated Gemfile.lock
  • Fixes a bug where switching a source from Rubygems to git
    would always say "the git source is not checked out" when
    running bundle install

NOTE: We received several reports of "the git source has not
been checked out. Please run bundle install". As far as we
can tell, these problems have two possible causes:

  1. bundle install ~/.bundle in one user, but actually running
    the application as another user. Never install gems to a
    directory scoped to a user (~ or $HOME) in deployment.
  2. A bug that happened when changing a gem to a git source.

To mitigate several common causes of (1), please use the
new --production flag. This flag is simply a roll-up of
the best practices we have been encouraging people to use
for deployment.

If you want to share gems across deployments, and you use
Capistrano, symlink release_path/current/vendor/bundle to
release_path/shared/bundle. This will keep deployments
snappy while maintaining the benefits of clean, deploy-time
isolation.

1.0.0.rc.1 (July 26, 2010)

  • Fixed a bug with bundle install on multiple machines and git

1.0.0.beta.10 (July 25, 2010)

  • Last release before 1.0.0.rc.1
  • Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
  • Fix bundle install immediately after modifying the :submodule option
  • Don't write to Gemfile.lock if nothing has changed, fixing situations
    where bundle install was run with a different user than the app
    itself
  • Fix a bug where other platforms were being wiped on bundle update
  • Don't ask for root password on bundle install if not needed
  • Avoid setting $GEM_HOME where not needed
  • First solid pass of bundle config
  • Add build options
    • bundle config build.mysql --with-mysql-config=/path/to/config

1.0.0.beta.9 (July 21, 2010)

  • Fix install failure when switching from a path to git source
  • Fix bundle exec bundle * in a bundle with --disable-shared-gems
  • Fix bundle * from inside a bundle with --disable-shared-gem
  • Shim Gem.refresh. This is used by Unicorn
  • Fix install failure when a path's dependencies changed

1.0.0.beta.8 (July 20, 2010)

  • Fix a Beta 7 bug involving Ruby 1.9

1.0.0.beta.7 (July 20, 2010, yanked)

  • Running bundle install twice in a row with a git source always crashed

1.0.0.beta.6 (July 20, 2010, yanked)

  • Create executables with bundle install --binstubs
  • You can customize the location (default is app/bin) with --binstubs other/location
  • Fix a bug where the Gemfile.lock would be deleted even if the update was exited
  • Fix a bug where cached gems for other platforms were sometimes deleted
  • Clean up output when nothing was deleted from cache (it previously said
    "Removing outdated gems ...")
  • Improve performance of bundle install if the git gem was already checked out,
    a...
Read more

v1.0.5

28 Aug 03:15
Compare
Choose a tag to compare

Bugfixes:

  • Fix regression disabling all operations that employ sudo

1.0.4 (November 12, 2010)

Bugfixes:

  • Expand relative :paths from Bundler.root (eg ./foogem)
  • Allow git gems in --without groups while --frozen
  • Allow gem :ref to be a symbol as well as a string
  • Fix exception when Gemfile needs a newer Bundler version
  • Explanation when the current Bundler version conflicts
  • Explicit error message if Gemfile needs newer Bundler
  • Ignore an empty string BUNDLE_GEMFILE
  • Skeleton gemspec now works with older versions of git
  • Fix shell quoting and ref fetching in GemHelper
  • Disable colored output in --deployment
  • Preserve line endings in lock file

Features:

  • Add support for 'mingw32' platform (aka RubyInstaller)
  • Large speed increase when Gemfile.lock is already present
  • Huge speed increase when many (100+) system gems are present
  • Significant expansion of ISSUES, man pages, and docs site
  • Remove Open3 from GemHelper (now it works on Windows™®©)
  • Allow setting roles in built-in cap and vlad tasks

1.0.3 (October 15, 2010)

Bugfixes:

  • Use bitwise or in #hash to reduce the chance of overflow
  • bundle update now works with :git + :tag updates
  • Record relative :path options in the Gemfile.lock
  • :groups option on gem method in Gemfile now works
  • Add #platform method and :platform option to Gemfile DSL
  • --without now accepts a quoted, space-separated list
  • Installing after --deployment with no lock is now possible
  • Binstubs can now be symlinked
  • Print warning if cache for --local install is missing gems
  • Improve output when installing to a path
  • The tests all pass! Yay!

1.0.2 (October 2, 2010)

Bugfix:

  • Actually include the man pages in the gem, so help works

1.0.1 (October 1, 2010)

Features:

  • Vlad deployment recipe, require 'bundler/vlad'
  • Prettier bundle graphs
  • Improved gem skeleton for bundle gem
  • Prompt on file clashes when generating a gem
  • Option to generate binary with gem skeleton
  • Allow subclassing of GemHelper for custom tasks
  • Chdir to gem directory during bundle open

Bugfixes:

  • Allow gemspec requirements with a list of versions
  • Accept lockfiles with windows line endings
  • Respect BUNDLE_WITHOUT env var
  • Allow gem "foo", :platform => :jruby
  • Specify loaded_from path in fake gemspec
  • Flesh out gem_helper tasks, raise errors correctly
  • Respect RBConfig::CONFIG['ruby_install_name'] in binstubs

1.0.0 (August 29, 2010)

Features:

  • You can now define :bundle_cmd in the capistrano task

Bugfixes:

  • Various bugfixes to the built-in rake helpers
  • Fix a bug where shortrefs weren't unique enough and were
    therfore colliding
  • Fix a small bug involving checking whether a local git
    clone is up to date
  • Correctly handle explicit '=' dependencies with gems
    pinned to a git source
  • Fix an issue with Windows-generated lockfiles by reading
    and writing the lockfile in binary mode
  • Fix an issue with shelling out to git in Windows by
    using double quotes around paths
  • Detect new Rubygems sources in the Gemfile and update
    the lockfile

1.0.0.rc.6 (August 23, 2010)

Features:

  • Much better documentation for most of the commands and Gemfile
    format

Bugfixes:

  • Don't attempt to create directories if they already exist
  • Fix the capistrano task so that it actually runs
  • Update the Gemfile template to reference rubygems.org instead
    of :gemcutter
  • bundle exec should exit with a non zero exit code when the gem
    binary does not exist or the file is not executable.
  • Expand paths in Gemfile relative to the Gemfile and not the current
    working directory.

1.0.0.rc.5 (August 10, 2010)

Features:

  • Make the Capistrano task more concise.

Bugfixes:

  • Fix a regression with determining whether or not to use sudo
  • Allow using the --gemfile flag with the --deployment flag

1.0.0.rc.4 (August 9, 2010)

Features:

  • bundle gem NAME command to generate a new gem with Gemfile
  • Bundle config file location can be specified by BUNDLE_APP_CONFIG
  • Add --frozen to disable updating the Gemfile.lock at runtime
    (default with --deployment)
  • Basic Capistrano task now added as 'bundler/capistrano'

Bugfixes:

  • Multiple bundler process no longer share a tmp directory
  • bundle update GEM always updates dependencies of GEM as well
  • Deleting the cache directory no longer causes errors
  • Moving the bundle after installation no longer causes git errors
  • Bundle path is now correctly remembered on a read-only filesystem
  • Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
  • Fetch gems from vendor/cache, even without --local
  • Sort lockfile by platform as well as spec

1.0.0.rc.3 (August 3, 2010)

Features:

  • Deprecate --production flag for --deployment, since the former
    was causing confusion with the :production group
  • Add --gemfile option to bundle check
  • Reduce memory usage of bundle install by 2-4x
  • Improve message from bundle check under various conditions
  • Better error when a changed Gemfile conflicts with Gemfile.lock

Bugfixes:

  • Create bin/ directory if it is missing, then install binstubs
  • Error nicely on the edge case of a pinned gem with no spec
  • Do not require gems for other platforms
  • Update git sources along with the gems they contain

1.0.0.rc.2 (July 29, 2010)

  • bundle install path was causing confusion, so we now print
    a clarifying warning. The preferred way to install to a path
    (which will not print the warning) is
    bundle install --path path/to/install.
  • bundle install --system installs to the default system
    location ($BUNDLE_PATH or $GEM_HOME) even if you previously
    used bundle install --path
  • completely remove --disable-shared-gems. If you install to
    system, you will not be isolated, while if you install to
    another path, you will be isolated from gems installed to
    the system. This was mostly an internal option whose naming
    and semantics were extremely confusing.
  • Add a --production option to bundle install:
    • by default, installs to vendor/bundle. This can be
      overridden with the --path option
    • uses --local if vendor/cache is found. This will
      guarantee that Bundler does not attempt to connect to
      Rubygems and will use the gems cached in vendor/cache
      instead
    • Raises an exception if a Gemfile.lock is not found
    • Raises an exception if you modify your Gemfile in development
      but do not check in an updated Gemfile.lock
  • Fixes a bug where switching a source from Rubygems to git
    would always say "the git source is not checked out" when
    running bundle install

NOTE: We received several reports of "the git source has not
been checked out. Please run bundle install". As far as we
can tell, these problems have two possible causes:

  1. bundle install ~/.bundle in one user, but actually running
    the application as another user. Never install gems to a
    directory scoped to a user (~ or $HOME) in deployment.
  2. A bug that happened when changing a gem to a git source.

To mitigate several common causes of (1), please use the
new --production flag. This flag is simply a roll-up of
the best practices we have been encouraging people to use
for deployment.

If you want to share gems across deployments, and you use
Capistrano, symlink release_path/current/vendor/bundle to
release_path/shared/bundle. This will keep deployments
snappy while maintaining the benefits of clean, deploy-time
isolation.

1.0.0.rc.1 (July 26, 2010)

  • Fixed a bug with bundle install on multiple machines and git

1.0.0.beta.10 (July 25, 2010)

  • Last release before 1.0.0.rc.1
  • Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
  • Fix bundle install immediately after modifying the :submodule option
  • Don't write to Gemfile.lock if nothing has changed, fixing situations
    where bundle install was run with a different user than the app
    itself
  • Fix a bug where other platforms were being wiped on bundle update
  • Don't ask for root password on bundle install if not needed
  • Avoid setting $GEM_HOME where not needed
  • First solid pass of bundle config
  • Add build options
    • bundle config build.mysql --with-mysql-config=/path/to/config

1.0.0.beta.9 (July 21, 2010)

  • Fix install failure when switching from a path to git source
  • Fix bundle exec bundle * in a bundle with --disable-shared-gems
  • Fix bundle * from inside a bundle with --disable-shared-gem
  • Shim Gem.refresh. This is used by Unicorn
  • Fix install failure when a path's dependencies changed

1.0.0.beta.8 (July 20, 2010)

  • Fix a Beta 7 bug involving Ruby 1.9

1.0.0.beta.7 (July 20, 2010, yanked)

  • Running bundle install twice in a row with a git source always crashed

1.0.0.beta.6 (July 20, 2010, yanked)

  • Create executables with bundle install --binstubs
  • You can customize the location (default is app/bin) with --binstubs other/location
  • Fix a bug where the Gemfile.lock would be deleted even if the update was exited
  • Fix a bug where cached gems for other platforms were sometimes deleted
  • Clean up output when nothing was deleted from cache (it previously said
    "Removing outdated gems ...")
  • Improve performance of bundle install if the git gem was already checked out,
    and the revision being used already exists locally
  • Fix bundle show bundler in some cases
  • Fix bugs with bundle update
  • Don't ever run git commands at runtime (fixes a number of common passenger issues)
  • Fixes an obscure bug where switching the source of a gem could fail to correctly
    change the source of its dependencies
  • Support multiple version dependencies in the Gemfile
    (gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
  • Raise an exception f...
Read more

v1.0.4

28 Aug 03:15
Compare
Choose a tag to compare

Bugfixes:

  • Expand relative :paths from Bundler.root (eg ./foogem)
  • Allow git gems in --without groups while --frozen
  • Allow gem :ref to be a symbol as well as a string
  • Fix exception when Gemfile needs a newer Bundler version
  • Explanation when the current Bundler version conflicts
  • Explicit error message if Gemfile needs newer Bundler
  • Ignore an empty string BUNDLE_GEMFILE
  • Skeleton gemspec now works with older versions of git
  • Fix shell quoting and ref fetching in GemHelper
  • Disable colored output in --deployment
  • Preserve line endings in lock file

Features:

  • Add support for 'mingw32' platform (aka RubyInstaller)
  • Large speed increase when Gemfile.lock is already present
  • Huge speed increase when many (100+) system gems are present
  • Significant expansion of ISSUES, man pages, and docs site
  • Remove Open3 from GemHelper (now it works on Windows™®©)
  • Allow setting roles in built-in cap and vlad tasks

1.0.3 (October 15, 2010)

Bugfixes:

  • Use bitwise or in #hash to reduce the chance of overflow
  • bundle update now works with :git + :tag updates
  • Record relative :path options in the Gemfile.lock
  • :groups option on gem method in Gemfile now works
  • Add #platform method and :platform option to Gemfile DSL
  • --without now accepts a quoted, space-separated list
  • Installing after --deployment with no lock is now possible
  • Binstubs can now be symlinked
  • Print warning if cache for --local install is missing gems
  • Improve output when installing to a path
  • The tests all pass! Yay!

1.0.2 (October 2, 2010)

Bugfix:

  • Actually include the man pages in the gem, so help works

1.0.1 (October 1, 2010)

Features:

  • Vlad deployment recipe, require 'bundler/vlad'
  • Prettier bundle graphs
  • Improved gem skeleton for bundle gem
  • Prompt on file clashes when generating a gem
  • Option to generate binary with gem skeleton
  • Allow subclassing of GemHelper for custom tasks
  • Chdir to gem directory during bundle open

Bugfixes:

  • Allow gemspec requirements with a list of versions
  • Accept lockfiles with windows line endings
  • Respect BUNDLE_WITHOUT env var
  • Allow gem "foo", :platform => :jruby
  • Specify loaded_from path in fake gemspec
  • Flesh out gem_helper tasks, raise errors correctly
  • Respect RBConfig::CONFIG['ruby_install_name'] in binstubs

1.0.0 (August 29, 2010)

Features:

  • You can now define :bundle_cmd in the capistrano task

Bugfixes:

  • Various bugfixes to the built-in rake helpers
  • Fix a bug where shortrefs weren't unique enough and were
    therfore colliding
  • Fix a small bug involving checking whether a local git
    clone is up to date
  • Correctly handle explicit '=' dependencies with gems
    pinned to a git source
  • Fix an issue with Windows-generated lockfiles by reading
    and writing the lockfile in binary mode
  • Fix an issue with shelling out to git in Windows by
    using double quotes around paths
  • Detect new Rubygems sources in the Gemfile and update
    the lockfile

1.0.0.rc.6 (August 23, 2010)

Features:

  • Much better documentation for most of the commands and Gemfile
    format

Bugfixes:

  • Don't attempt to create directories if they already exist
  • Fix the capistrano task so that it actually runs
  • Update the Gemfile template to reference rubygems.org instead
    of :gemcutter
  • bundle exec should exit with a non zero exit code when the gem
    binary does not exist or the file is not executable.
  • Expand paths in Gemfile relative to the Gemfile and not the current
    working directory.

1.0.0.rc.5 (August 10, 2010)

Features:

  • Make the Capistrano task more concise.

Bugfixes:

  • Fix a regression with determining whether or not to use sudo
  • Allow using the --gemfile flag with the --deployment flag

1.0.0.rc.4 (August 9, 2010)

Features:

  • bundle gem NAME command to generate a new gem with Gemfile
  • Bundle config file location can be specified by BUNDLE_APP_CONFIG
  • Add --frozen to disable updating the Gemfile.lock at runtime
    (default with --deployment)
  • Basic Capistrano task now added as 'bundler/capistrano'

Bugfixes:

  • Multiple bundler process no longer share a tmp directory
  • bundle update GEM always updates dependencies of GEM as well
  • Deleting the cache directory no longer causes errors
  • Moving the bundle after installation no longer causes git errors
  • Bundle path is now correctly remembered on a read-only filesystem
  • Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
  • Fetch gems from vendor/cache, even without --local
  • Sort lockfile by platform as well as spec

1.0.0.rc.3 (August 3, 2010)

Features:

  • Deprecate --production flag for --deployment, since the former
    was causing confusion with the :production group
  • Add --gemfile option to bundle check
  • Reduce memory usage of bundle install by 2-4x
  • Improve message from bundle check under various conditions
  • Better error when a changed Gemfile conflicts with Gemfile.lock

Bugfixes:

  • Create bin/ directory if it is missing, then install binstubs
  • Error nicely on the edge case of a pinned gem with no spec
  • Do not require gems for other platforms
  • Update git sources along with the gems they contain

1.0.0.rc.2 (July 29, 2010)

  • bundle install path was causing confusion, so we now print
    a clarifying warning. The preferred way to install to a path
    (which will not print the warning) is
    bundle install --path path/to/install.
  • bundle install --system installs to the default system
    location ($BUNDLE_PATH or $GEM_HOME) even if you previously
    used bundle install --path
  • completely remove --disable-shared-gems. If you install to
    system, you will not be isolated, while if you install to
    another path, you will be isolated from gems installed to
    the system. This was mostly an internal option whose naming
    and semantics were extremely confusing.
  • Add a --production option to bundle install:
    • by default, installs to vendor/bundle. This can be
      overridden with the --path option
    • uses --local if vendor/cache is found. This will
      guarantee that Bundler does not attempt to connect to
      Rubygems and will use the gems cached in vendor/cache
      instead
    • Raises an exception if a Gemfile.lock is not found
    • Raises an exception if you modify your Gemfile in development
      but do not check in an updated Gemfile.lock
  • Fixes a bug where switching a source from Rubygems to git
    would always say "the git source is not checked out" when
    running bundle install

NOTE: We received several reports of "the git source has not
been checked out. Please run bundle install". As far as we
can tell, these problems have two possible causes:

  1. bundle install ~/.bundle in one user, but actually running
    the application as another user. Never install gems to a
    directory scoped to a user (~ or $HOME) in deployment.
  2. A bug that happened when changing a gem to a git source.

To mitigate several common causes of (1), please use the
new --production flag. This flag is simply a roll-up of
the best practices we have been encouraging people to use
for deployment.

If you want to share gems across deployments, and you use
Capistrano, symlink release_path/current/vendor/bundle to
release_path/shared/bundle. This will keep deployments
snappy while maintaining the benefits of clean, deploy-time
isolation.

1.0.0.rc.1 (July 26, 2010)

  • Fixed a bug with bundle install on multiple machines and git

1.0.0.beta.10 (July 25, 2010)

  • Last release before 1.0.0.rc.1
  • Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
  • Fix bundle install immediately after modifying the :submodule option
  • Don't write to Gemfile.lock if nothing has changed, fixing situations
    where bundle install was run with a different user than the app
    itself
  • Fix a bug where other platforms were being wiped on bundle update
  • Don't ask for root password on bundle install if not needed
  • Avoid setting $GEM_HOME where not needed
  • First solid pass of bundle config
  • Add build options
    • bundle config build.mysql --with-mysql-config=/path/to/config

1.0.0.beta.9 (July 21, 2010)

  • Fix install failure when switching from a path to git source
  • Fix bundle exec bundle * in a bundle with --disable-shared-gems
  • Fix bundle * from inside a bundle with --disable-shared-gem
  • Shim Gem.refresh. This is used by Unicorn
  • Fix install failure when a path's dependencies changed

1.0.0.beta.8 (July 20, 2010)

  • Fix a Beta 7 bug involving Ruby 1.9

1.0.0.beta.7 (July 20, 2010, yanked)

  • Running bundle install twice in a row with a git source always crashed

1.0.0.beta.6 (July 20, 2010, yanked)

  • Create executables with bundle install --binstubs
  • You can customize the location (default is app/bin) with --binstubs other/location
  • Fix a bug where the Gemfile.lock would be deleted even if the update was exited
  • Fix a bug where cached gems for other platforms were sometimes deleted
  • Clean up output when nothing was deleted from cache (it previously said
    "Removing outdated gems ...")
  • Improve performance of bundle install if the git gem was already checked out,
    and the revision being used already exists locally
  • Fix bundle show bundler in some cases
  • Fix bugs with bundle update
  • Don't ever run git commands at runtime (fixes a number of common passenger issues)
  • Fixes an obscure bug where switching the source of a gem could fail to correctly
    change the source of its dependencies
  • Support multiple version dependencies in the Gemfile
    (gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
  • Raise an exception for ambiguous uses of multiple declarations of the same gem
    (for instance, with different versions o...
Read more

v1.0.3

28 Aug 03:15
Compare
Choose a tag to compare

Bugfixes:

  • Use bitwise or in #hash to reduce the chance of overflow
  • bundle update now works with :git + :tag updates
  • Record relative :path options in the Gemfile.lock
  • :groups option on gem method in Gemfile now works
  • Add #platform method and :platform option to Gemfile DSL
  • --without now accepts a quoted, space-separated list
  • Installing after --deployment with no lock is now possible
  • Binstubs can now be symlinked
  • Print warning if cache for --local install is missing gems
  • Improve output when installing to a path
  • The tests all pass! Yay!

1.0.2 (October 2, 2010)

Bugfix:

  • Actually include the man pages in the gem, so help works

1.0.1 (October 1, 2010)

Features:

  • Vlad deployment recipe, require 'bundler/vlad'
  • Prettier bundle graphs
  • Improved gem skeleton for bundle gem
  • Prompt on file clashes when generating a gem
  • Option to generate binary with gem skeleton
  • Allow subclassing of GemHelper for custom tasks
  • Chdir to gem directory during bundle open

Bugfixes:

  • Allow gemspec requirements with a list of versions
  • Accept lockfiles with windows line endings
  • Respect BUNDLE_WITHOUT env var
  • Allow gem "foo", :platform => :jruby
  • Specify loaded_from path in fake gemspec
  • Flesh out gem_helper tasks, raise errors correctly
  • Respect RBConfig::CONFIG['ruby_install_name'] in binstubs

1.0.0 (August 29, 2010)

Features:

  • You can now define :bundle_cmd in the capistrano task

Bugfixes:

  • Various bugfixes to the built-in rake helpers
  • Fix a bug where shortrefs weren't unique enough and were
    therfore colliding
  • Fix a small bug involving checking whether a local git
    clone is up to date
  • Correctly handle explicit '=' dependencies with gems
    pinned to a git source
  • Fix an issue with Windows-generated lockfiles by reading
    and writing the lockfile in binary mode
  • Fix an issue with shelling out to git in Windows by
    using double quotes around paths
  • Detect new Rubygems sources in the Gemfile and update
    the lockfile

1.0.0.rc.6 (August 23, 2010)

Features:

  • Much better documentation for most of the commands and Gemfile
    format

Bugfixes:

  • Don't attempt to create directories if they already exist
  • Fix the capistrano task so that it actually runs
  • Update the Gemfile template to reference rubygems.org instead
    of :gemcutter
  • bundle exec should exit with a non zero exit code when the gem
    binary does not exist or the file is not executable.
  • Expand paths in Gemfile relative to the Gemfile and not the current
    working directory.

1.0.0.rc.5 (August 10, 2010)

Features:

  • Make the Capistrano task more concise.

Bugfixes:

  • Fix a regression with determining whether or not to use sudo
  • Allow using the --gemfile flag with the --deployment flag

1.0.0.rc.4 (August 9, 2010)

Features:

  • bundle gem NAME command to generate a new gem with Gemfile
  • Bundle config file location can be specified by BUNDLE_APP_CONFIG
  • Add --frozen to disable updating the Gemfile.lock at runtime
    (default with --deployment)
  • Basic Capistrano task now added as 'bundler/capistrano'

Bugfixes:

  • Multiple bundler process no longer share a tmp directory
  • bundle update GEM always updates dependencies of GEM as well
  • Deleting the cache directory no longer causes errors
  • Moving the bundle after installation no longer causes git errors
  • Bundle path is now correctly remembered on a read-only filesystem
  • Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
  • Fetch gems from vendor/cache, even without --local
  • Sort lockfile by platform as well as spec

1.0.0.rc.3 (August 3, 2010)

Features:

  • Deprecate --production flag for --deployment, since the former
    was causing confusion with the :production group
  • Add --gemfile option to bundle check
  • Reduce memory usage of bundle install by 2-4x
  • Improve message from bundle check under various conditions
  • Better error when a changed Gemfile conflicts with Gemfile.lock

Bugfixes:

  • Create bin/ directory if it is missing, then install binstubs
  • Error nicely on the edge case of a pinned gem with no spec
  • Do not require gems for other platforms
  • Update git sources along with the gems they contain

1.0.0.rc.2 (July 29, 2010)

  • bundle install path was causing confusion, so we now print
    a clarifying warning. The preferred way to install to a path
    (which will not print the warning) is
    bundle install --path path/to/install.
  • bundle install --system installs to the default system
    location ($BUNDLE_PATH or $GEM_HOME) even if you previously
    used bundle install --path
  • completely remove --disable-shared-gems. If you install to
    system, you will not be isolated, while if you install to
    another path, you will be isolated from gems installed to
    the system. This was mostly an internal option whose naming
    and semantics were extremely confusing.
  • Add a --production option to bundle install:
    • by default, installs to vendor/bundle. This can be
      overridden with the --path option
    • uses --local if vendor/cache is found. This will
      guarantee that Bundler does not attempt to connect to
      Rubygems and will use the gems cached in vendor/cache
      instead
    • Raises an exception if a Gemfile.lock is not found
    • Raises an exception if you modify your Gemfile in development
      but do not check in an updated Gemfile.lock
  • Fixes a bug where switching a source from Rubygems to git
    would always say "the git source is not checked out" when
    running bundle install

NOTE: We received several reports of "the git source has not
been checked out. Please run bundle install". As far as we
can tell, these problems have two possible causes:

  1. bundle install ~/.bundle in one user, but actually running
    the application as another user. Never install gems to a
    directory scoped to a user (~ or $HOME) in deployment.
  2. A bug that happened when changing a gem to a git source.

To mitigate several common causes of (1), please use the
new --production flag. This flag is simply a roll-up of
the best practices we have been encouraging people to use
for deployment.

If you want to share gems across deployments, and you use
Capistrano, symlink release_path/current/vendor/bundle to
release_path/shared/bundle. This will keep deployments
snappy while maintaining the benefits of clean, deploy-time
isolation.

1.0.0.rc.1 (July 26, 2010)

  • Fixed a bug with bundle install on multiple machines and git

1.0.0.beta.10 (July 25, 2010)

  • Last release before 1.0.0.rc.1
  • Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
  • Fix bundle install immediately after modifying the :submodule option
  • Don't write to Gemfile.lock if nothing has changed, fixing situations
    where bundle install was run with a different user than the app
    itself
  • Fix a bug where other platforms were being wiped on bundle update
  • Don't ask for root password on bundle install if not needed
  • Avoid setting $GEM_HOME where not needed
  • First solid pass of bundle config
  • Add build options
    • bundle config build.mysql --with-mysql-config=/path/to/config

1.0.0.beta.9 (July 21, 2010)

  • Fix install failure when switching from a path to git source
  • Fix bundle exec bundle * in a bundle with --disable-shared-gems
  • Fix bundle * from inside a bundle with --disable-shared-gem
  • Shim Gem.refresh. This is used by Unicorn
  • Fix install failure when a path's dependencies changed

1.0.0.beta.8 (July 20, 2010)

  • Fix a Beta 7 bug involving Ruby 1.9

1.0.0.beta.7 (July 20, 2010, yanked)

  • Running bundle install twice in a row with a git source always crashed

1.0.0.beta.6 (July 20, 2010, yanked)

  • Create executables with bundle install --binstubs
  • You can customize the location (default is app/bin) with --binstubs other/location
  • Fix a bug where the Gemfile.lock would be deleted even if the update was exited
  • Fix a bug where cached gems for other platforms were sometimes deleted
  • Clean up output when nothing was deleted from cache (it previously said
    "Removing outdated gems ...")
  • Improve performance of bundle install if the git gem was already checked out,
    and the revision being used already exists locally
  • Fix bundle show bundler in some cases
  • Fix bugs with bundle update
  • Don't ever run git commands at runtime (fixes a number of common passenger issues)
  • Fixes an obscure bug where switching the source of a gem could fail to correctly
    change the source of its dependencies
  • Support multiple version dependencies in the Gemfile
    (gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
  • Raise an exception for ambiguous uses of multiple declarations of the same gem
    (for instance, with different versions or sources).
  • Fix cases where the same dependency appeared several times in the Gemfile.lock
  • Fix a bug where require errors were being swallowed during Bundler.require

1.0.0.beta.1

  • No bundle lock command. Locking happens automatically on install or update
  • No .bundle/environment.rb. Require 'bundler/setup' instead.
  • $BUNDLE_HOME defaults to $GEM_HOME instead of ~/.bundle
  • Remove lockfiles generated by 0.9

v1.0.2

28 Aug 03:13
Compare
Choose a tag to compare

Bugfix:

  • Actually include the man pages in the gem, so help works

1.0.1 (October 1, 2010)

Features:

  • Vlad deployment recipe, require 'bundler/vlad'
  • Prettier bundle graphs
  • Improved gem skeleton for bundle gem
  • Prompt on file clashes when generating a gem
  • Option to generate binary with gem skeleton
  • Allow subclassing of GemHelper for custom tasks
  • Chdir to gem directory during bundle open

Bugfixes:

  • Allow gemspec requirements with a list of versions
  • Accept lockfiles with windows line endings
  • Respect BUNDLE_WITHOUT env var
  • Allow gem "foo", :platform => :jruby
  • Specify loaded_from path in fake gemspec
  • Flesh out gem_helper tasks, raise errors correctly
  • Respect RBConfig::CONFIG['ruby_install_name'] in binstubs

1.0.0 (August 29, 2010)

Features:

  • You can now define :bundle_cmd in the capistrano task

Bugfixes:

  • Various bugfixes to the built-in rake helpers
  • Fix a bug where shortrefs weren't unique enough and were
    therfore colliding
  • Fix a small bug involving checking whether a local git
    clone is up to date
  • Correctly handle explicit '=' dependencies with gems
    pinned to a git source
  • Fix an issue with Windows-generated lockfiles by reading
    and writing the lockfile in binary mode
  • Fix an issue with shelling out to git in Windows by
    using double quotes around paths
  • Detect new Rubygems sources in the Gemfile and update
    the lockfile

1.0.0.rc.6 (August 23, 2010)

Features:

  • Much better documentation for most of the commands and Gemfile
    format

Bugfixes:

  • Don't attempt to create directories if they already exist
  • Fix the capistrano task so that it actually runs
  • Update the Gemfile template to reference rubygems.org instead
    of :gemcutter
  • bundle exec should exit with a non zero exit code when the gem
    binary does not exist or the file is not executable.
  • Expand paths in Gemfile relative to the Gemfile and not the current
    working directory.

1.0.0.rc.5 (August 10, 2010)

Features:

  • Make the Capistrano task more concise.

Bugfixes:

  • Fix a regression with determining whether or not to use sudo
  • Allow using the --gemfile flag with the --deployment flag

1.0.0.rc.4 (August 9, 2010)

Features:

  • bundle gem NAME command to generate a new gem with Gemfile
  • Bundle config file location can be specified by BUNDLE_APP_CONFIG
  • Add --frozen to disable updating the Gemfile.lock at runtime
    (default with --deployment)
  • Basic Capistrano task now added as 'bundler/capistrano'

Bugfixes:

  • Multiple bundler process no longer share a tmp directory
  • bundle update GEM always updates dependencies of GEM as well
  • Deleting the cache directory no longer causes errors
  • Moving the bundle after installation no longer causes git errors
  • Bundle path is now correctly remembered on a read-only filesystem
  • Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
  • Fetch gems from vendor/cache, even without --local
  • Sort lockfile by platform as well as spec

1.0.0.rc.3 (August 3, 2010)

Features:

  • Deprecate --production flag for --deployment, since the former
    was causing confusion with the :production group
  • Add --gemfile option to bundle check
  • Reduce memory usage of bundle install by 2-4x
  • Improve message from bundle check under various conditions
  • Better error when a changed Gemfile conflicts with Gemfile.lock

Bugfixes:

  • Create bin/ directory if it is missing, then install binstubs
  • Error nicely on the edge case of a pinned gem with no spec
  • Do not require gems for other platforms
  • Update git sources along with the gems they contain

1.0.0.rc.2 (July 29, 2010)

  • bundle install path was causing confusion, so we now print
    a clarifying warning. The preferred way to install to a path
    (which will not print the warning) is
    bundle install --path path/to/install.
  • bundle install --system installs to the default system
    location ($BUNDLE_PATH or $GEM_HOME) even if you previously
    used bundle install --path
  • completely remove --disable-shared-gems. If you install to
    system, you will not be isolated, while if you install to
    another path, you will be isolated from gems installed to
    the system. This was mostly an internal option whose naming
    and semantics were extremely confusing.
  • Add a --production option to bundle install:
    • by default, installs to vendor/bundle. This can be
      overridden with the --path option
    • uses --local if vendor/cache is found. This will
      guarantee that Bundler does not attempt to connect to
      Rubygems and will use the gems cached in vendor/cache
      instead
    • Raises an exception if a Gemfile.lock is not found
    • Raises an exception if you modify your Gemfile in development
      but do not check in an updated Gemfile.lock
  • Fixes a bug where switching a source from Rubygems to git
    would always say "the git source is not checked out" when
    running bundle install

NOTE: We received several reports of "the git source has not
been checked out. Please run bundle install". As far as we
can tell, these problems have two possible causes:

  1. bundle install ~/.bundle in one user, but actually running
    the application as another user. Never install gems to a
    directory scoped to a user (~ or $HOME) in deployment.
  2. A bug that happened when changing a gem to a git source.

To mitigate several common causes of (1), please use the
new --production flag. This flag is simply a roll-up of
the best practices we have been encouraging people to use
for deployment.

If you want to share gems across deployments, and you use
Capistrano, symlink release_path/current/vendor/bundle to
release_path/shared/bundle. This will keep deployments
snappy while maintaining the benefits of clean, deploy-time
isolation.

1.0.0.rc.1 (July 26, 2010)

  • Fixed a bug with bundle install on multiple machines and git

1.0.0.beta.10 (July 25, 2010)

  • Last release before 1.0.0.rc.1
  • Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
  • Fix bundle install immediately after modifying the :submodule option
  • Don't write to Gemfile.lock if nothing has changed, fixing situations
    where bundle install was run with a different user than the app
    itself
  • Fix a bug where other platforms were being wiped on bundle update
  • Don't ask for root password on bundle install if not needed
  • Avoid setting $GEM_HOME where not needed
  • First solid pass of bundle config
  • Add build options
    • bundle config build.mysql --with-mysql-config=/path/to/config

1.0.0.beta.9 (July 21, 2010)

  • Fix install failure when switching from a path to git source
  • Fix bundle exec bundle * in a bundle with --disable-shared-gems
  • Fix bundle * from inside a bundle with --disable-shared-gem
  • Shim Gem.refresh. This is used by Unicorn
  • Fix install failure when a path's dependencies changed

1.0.0.beta.8 (July 20, 2010)

  • Fix a Beta 7 bug involving Ruby 1.9

1.0.0.beta.7 (July 20, 2010, yanked)

  • Running bundle install twice in a row with a git source always crashed

1.0.0.beta.6 (July 20, 2010, yanked)

  • Create executables with bundle install --binstubs
  • You can customize the location (default is app/bin) with --binstubs other/location
  • Fix a bug where the Gemfile.lock would be deleted even if the update was exited
  • Fix a bug where cached gems for other platforms were sometimes deleted
  • Clean up output when nothing was deleted from cache (it previously said
    "Removing outdated gems ...")
  • Improve performance of bundle install if the git gem was already checked out,
    and the revision being used already exists locally
  • Fix bundle show bundler in some cases
  • Fix bugs with bundle update
  • Don't ever run git commands at runtime (fixes a number of common passenger issues)
  • Fixes an obscure bug where switching the source of a gem could fail to correctly
    change the source of its dependencies
  • Support multiple version dependencies in the Gemfile
    (gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
  • Raise an exception for ambiguous uses of multiple declarations of the same gem
    (for instance, with different versions or sources).
  • Fix cases where the same dependency appeared several times in the Gemfile.lock
  • Fix a bug where require errors were being swallowed during Bundler.require

1.0.0.beta.1

  • No bundle lock command. Locking happens automatically on install or update
  • No .bundle/environment.rb. Require 'bundler/setup' instead.
  • $BUNDLE_HOME defaults to $GEM_HOME instead of ~/.bundle
  • Remove lockfiles generated by 0.9

v1.0.1

28 Aug 03:13
Compare
Choose a tag to compare

Features:

  • Vlad deployment recipe, require 'bundler/vlad'
  • Prettier bundle graphs
  • Improved gem skeleton for bundle gem
  • Prompt on file clashes when generating a gem
  • Option to generate binary with gem skeleton
  • Allow subclassing of GemHelper for custom tasks
  • Chdir to gem directory during bundle open

Bugfixes:

  • Allow gemspec requirements with a list of versions
  • Accept lockfiles with windows line endings
  • Respect BUNDLE_WITHOUT env var
  • Allow gem "foo", :platform => :jruby
  • Specify loaded_from path in fake gemspec
  • Flesh out gem_helper tasks, raise errors correctly
  • Respect RBConfig::CONFIG['ruby_install_name'] in binstubs

1.0.0 (August 29, 2010)

Features:

  • You can now define :bundle_cmd in the capistrano task

Bugfixes:

  • Various bugfixes to the built-in rake helpers
  • Fix a bug where shortrefs weren't unique enough and were
    therfore colliding
  • Fix a small bug involving checking whether a local git
    clone is up to date
  • Correctly handle explicit '=' dependencies with gems
    pinned to a git source
  • Fix an issue with Windows-generated lockfiles by reading
    and writing the lockfile in binary mode
  • Fix an issue with shelling out to git in Windows by
    using double quotes around paths
  • Detect new Rubygems sources in the Gemfile and update
    the lockfile

1.0.0.rc.6 (August 23, 2010)

Features:

  • Much better documentation for most of the commands and Gemfile
    format

Bugfixes:

  • Don't attempt to create directories if they already exist
  • Fix the capistrano task so that it actually runs
  • Update the Gemfile template to reference rubygems.org instead
    of :gemcutter
  • bundle exec should exit with a non zero exit code when the gem
    binary does not exist or the file is not executable.
  • Expand paths in Gemfile relative to the Gemfile and not the current
    working directory.

1.0.0.rc.5 (August 10, 2010)

Features:

  • Make the Capistrano task more concise.

Bugfixes:

  • Fix a regression with determining whether or not to use sudo
  • Allow using the --gemfile flag with the --deployment flag

1.0.0.rc.4 (August 9, 2010)

Features:

  • bundle gem NAME command to generate a new gem with Gemfile
  • Bundle config file location can be specified by BUNDLE_APP_CONFIG
  • Add --frozen to disable updating the Gemfile.lock at runtime
    (default with --deployment)
  • Basic Capistrano task now added as 'bundler/capistrano'

Bugfixes:

  • Multiple bundler process no longer share a tmp directory
  • bundle update GEM always updates dependencies of GEM as well
  • Deleting the cache directory no longer causes errors
  • Moving the bundle after installation no longer causes git errors
  • Bundle path is now correctly remembered on a read-only filesystem
  • Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
  • Fetch gems from vendor/cache, even without --local
  • Sort lockfile by platform as well as spec

1.0.0.rc.3 (August 3, 2010)

Features:

  • Deprecate --production flag for --deployment, since the former
    was causing confusion with the :production group
  • Add --gemfile option to bundle check
  • Reduce memory usage of bundle install by 2-4x
  • Improve message from bundle check under various conditions
  • Better error when a changed Gemfile conflicts with Gemfile.lock

Bugfixes:

  • Create bin/ directory if it is missing, then install binstubs
  • Error nicely on the edge case of a pinned gem with no spec
  • Do not require gems for other platforms
  • Update git sources along with the gems they contain

1.0.0.rc.2 (July 29, 2010)

  • bundle install path was causing confusion, so we now print
    a clarifying warning. The preferred way to install to a path
    (which will not print the warning) is
    bundle install --path path/to/install.
  • bundle install --system installs to the default system
    location ($BUNDLE_PATH or $GEM_HOME) even if you previously
    used bundle install --path
  • completely remove --disable-shared-gems. If you install to
    system, you will not be isolated, while if you install to
    another path, you will be isolated from gems installed to
    the system. This was mostly an internal option whose naming
    and semantics were extremely confusing.
  • Add a --production option to bundle install:
    • by default, installs to vendor/bundle. This can be
      overridden with the --path option
    • uses --local if vendor/cache is found. This will
      guarantee that Bundler does not attempt to connect to
      Rubygems and will use the gems cached in vendor/cache
      instead
    • Raises an exception if a Gemfile.lock is not found
    • Raises an exception if you modify your Gemfile in development
      but do not check in an updated Gemfile.lock
  • Fixes a bug where switching a source from Rubygems to git
    would always say "the git source is not checked out" when
    running bundle install

NOTE: We received several reports of "the git source has not
been checked out. Please run bundle install". As far as we
can tell, these problems have two possible causes:

  1. bundle install ~/.bundle in one user, but actually running
    the application as another user. Never install gems to a
    directory scoped to a user (~ or $HOME) in deployment.
  2. A bug that happened when changing a gem to a git source.

To mitigate several common causes of (1), please use the
new --production flag. This flag is simply a roll-up of
the best practices we have been encouraging people to use
for deployment.

If you want to share gems across deployments, and you use
Capistrano, symlink release_path/current/vendor/bundle to
release_path/shared/bundle. This will keep deployments
snappy while maintaining the benefits of clean, deploy-time
isolation.

1.0.0.rc.1 (July 26, 2010)

  • Fixed a bug with bundle install on multiple machines and git

1.0.0.beta.10 (July 25, 2010)

  • Last release before 1.0.0.rc.1
  • Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
  • Fix bundle install immediately after modifying the :submodule option
  • Don't write to Gemfile.lock if nothing has changed, fixing situations
    where bundle install was run with a different user than the app
    itself
  • Fix a bug where other platforms were being wiped on bundle update
  • Don't ask for root password on bundle install if not needed
  • Avoid setting $GEM_HOME where not needed
  • First solid pass of bundle config
  • Add build options
    • bundle config build.mysql --with-mysql-config=/path/to/config

1.0.0.beta.9 (July 21, 2010)

  • Fix install failure when switching from a path to git source
  • Fix bundle exec bundle * in a bundle with --disable-shared-gems
  • Fix bundle * from inside a bundle with --disable-shared-gem
  • Shim Gem.refresh. This is used by Unicorn
  • Fix install failure when a path's dependencies changed

1.0.0.beta.8 (July 20, 2010)

  • Fix a Beta 7 bug involving Ruby 1.9

1.0.0.beta.7 (July 20, 2010, yanked)

  • Running bundle install twice in a row with a git source always crashed

1.0.0.beta.6 (July 20, 2010, yanked)

  • Create executables with bundle install --binstubs
  • You can customize the location (default is app/bin) with --binstubs other/location
  • Fix a bug where the Gemfile.lock would be deleted even if the update was exited
  • Fix a bug where cached gems for other platforms were sometimes deleted
  • Clean up output when nothing was deleted from cache (it previously said
    "Removing outdated gems ...")
  • Improve performance of bundle install if the git gem was already checked out,
    and the revision being used already exists locally
  • Fix bundle show bundler in some cases
  • Fix bugs with bundle update
  • Don't ever run git commands at runtime (fixes a number of common passenger issues)
  • Fixes an obscure bug where switching the source of a gem could fail to correctly
    change the source of its dependencies
  • Support multiple version dependencies in the Gemfile
    (gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
  • Raise an exception for ambiguous uses of multiple declarations of the same gem
    (for instance, with different versions or sources).
  • Fix cases where the same dependency appeared several times in the Gemfile.lock
  • Fix a bug where require errors were being swallowed during Bundler.require

1.0.0.beta.1

  • No bundle lock command. Locking happens automatically on install or update
  • No .bundle/environment.rb. Require 'bundler/setup' instead.
  • $BUNDLE_HOME defaults to $GEM_HOME instead of ~/.bundle
  • Remove lockfiles generated by 0.9

v1.0.0

28 Aug 03:13
Compare
Choose a tag to compare

Features:

  • You can now define :bundle_cmd in the capistrano task

Bugfixes:

  • Various bugfixes to the built-in rake helpers
  • Fix a bug where shortrefs weren't unique enough and were
    therfore colliding
  • Fix a small bug involving checking whether a local git
    clone is up to date
  • Correctly handle explicit '=' dependencies with gems
    pinned to a git source
  • Fix an issue with Windows-generated lockfiles by reading
    and writing the lockfile in binary mode
  • Fix an issue with shelling out to git in Windows by
    using double quotes around paths
  • Detect new Rubygems sources in the Gemfile and update
    the lockfile

1.0.0.rc.6 (August 23, 2010)

Features:

  • Much better documentation for most of the commands and Gemfile
    format

Bugfixes:

  • Don't attempt to create directories if they already exist
  • Fix the capistrano task so that it actually runs
  • Update the Gemfile template to reference rubygems.org instead
    of :gemcutter
  • bundle exec should exit with a non zero exit code when the gem
    binary does not exist or the file is not executable.
  • Expand paths in Gemfile relative to the Gemfile and not the current
    working directory.

1.0.0.rc.5 (August 10, 2010)

Features:

  • Make the Capistrano task more concise.

Bugfixes:

  • Fix a regression with determining whether or not to use sudo
  • Allow using the --gemfile flag with the --deployment flag

1.0.0.rc.4 (August 9, 2010)

Features:

  • bundle gem NAME command to generate a new gem with Gemfile
  • Bundle config file location can be specified by BUNDLE_APP_CONFIG
  • Add --frozen to disable updating the Gemfile.lock at runtime
    (default with --deployment)
  • Basic Capistrano task now added as 'bundler/capistrano'

Bugfixes:

  • Multiple bundler process no longer share a tmp directory
  • bundle update GEM always updates dependencies of GEM as well
  • Deleting the cache directory no longer causes errors
  • Moving the bundle after installation no longer causes git errors
  • Bundle path is now correctly remembered on a read-only filesystem
  • Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
  • Fetch gems from vendor/cache, even without --local
  • Sort lockfile by platform as well as spec

1.0.0.rc.3 (August 3, 2010)

Features:

  • Deprecate --production flag for --deployment, since the former
    was causing confusion with the :production group
  • Add --gemfile option to bundle check
  • Reduce memory usage of bundle install by 2-4x
  • Improve message from bundle check under various conditions
  • Better error when a changed Gemfile conflicts with Gemfile.lock

Bugfixes:

  • Create bin/ directory if it is missing, then install binstubs
  • Error nicely on the edge case of a pinned gem with no spec
  • Do not require gems for other platforms
  • Update git sources along with the gems they contain

1.0.0.rc.2 (July 29, 2010)

  • bundle install path was causing confusion, so we now print
    a clarifying warning. The preferred way to install to a path
    (which will not print the warning) is
    bundle install --path path/to/install.
  • bundle install --system installs to the default system
    location ($BUNDLE_PATH or $GEM_HOME) even if you previously
    used bundle install --path
  • completely remove --disable-shared-gems. If you install to
    system, you will not be isolated, while if you install to
    another path, you will be isolated from gems installed to
    the system. This was mostly an internal option whose naming
    and semantics were extremely confusing.
  • Add a --production option to bundle install:
    • by default, installs to vendor/bundle. This can be
      overridden with the --path option
    • uses --local if vendor/cache is found. This will
      guarantee that Bundler does not attempt to connect to
      Rubygems and will use the gems cached in vendor/cache
      instead
    • Raises an exception if a Gemfile.lock is not found
    • Raises an exception if you modify your Gemfile in development
      but do not check in an updated Gemfile.lock
  • Fixes a bug where switching a source from Rubygems to git
    would always say "the git source is not checked out" when
    running bundle install

NOTE: We received several reports of "the git source has not
been checked out. Please run bundle install". As far as we
can tell, these problems have two possible causes:

  1. bundle install ~/.bundle in one user, but actually running
    the application as another user. Never install gems to a
    directory scoped to a user (~ or $HOME) in deployment.
  2. A bug that happened when changing a gem to a git source.

To mitigate several common causes of (1), please use the
new --production flag. This flag is simply a roll-up of
the best practices we have been encouraging people to use
for deployment.

If you want to share gems across deployments, and you use
Capistrano, symlink release_path/current/vendor/bundle to
release_path/shared/bundle. This will keep deployments
snappy while maintaining the benefits of clean, deploy-time
isolation.

1.0.0.rc.1 (July 26, 2010)

  • Fixed a bug with bundle install on multiple machines and git

1.0.0.beta.10 (July 25, 2010)

  • Last release before 1.0.0.rc.1
  • Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
  • Fix bundle install immediately after modifying the :submodule option
  • Don't write to Gemfile.lock if nothing has changed, fixing situations
    where bundle install was run with a different user than the app
    itself
  • Fix a bug where other platforms were being wiped on bundle update
  • Don't ask for root password on bundle install if not needed
  • Avoid setting $GEM_HOME where not needed
  • First solid pass of bundle config
  • Add build options
    • bundle config build.mysql --with-mysql-config=/path/to/config

1.0.0.beta.9 (July 21, 2010)

  • Fix install failure when switching from a path to git source
  • Fix bundle exec bundle * in a bundle with --disable-shared-gems
  • Fix bundle * from inside a bundle with --disable-shared-gem
  • Shim Gem.refresh. This is used by Unicorn
  • Fix install failure when a path's dependencies changed

1.0.0.beta.8 (July 20, 2010)

  • Fix a Beta 7 bug involving Ruby 1.9

1.0.0.beta.7 (July 20, 2010, yanked)

  • Running bundle install twice in a row with a git source always crashed

1.0.0.beta.6 (July 20, 2010, yanked)

  • Create executables with bundle install --binstubs
  • You can customize the location (default is app/bin) with --binstubs other/location
  • Fix a bug where the Gemfile.lock would be deleted even if the update was exited
  • Fix a bug where cached gems for other platforms were sometimes deleted
  • Clean up output when nothing was deleted from cache (it previously said
    "Removing outdated gems ...")
  • Improve performance of bundle install if the git gem was already checked out,
    and the revision being used already exists locally
  • Fix bundle show bundler in some cases
  • Fix bugs with bundle update
  • Don't ever run git commands at runtime (fixes a number of common passenger issues)
  • Fixes an obscure bug where switching the source of a gem could fail to correctly
    change the source of its dependencies
  • Support multiple version dependencies in the Gemfile
    (gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
  • Raise an exception for ambiguous uses of multiple declarations of the same gem
    (for instance, with different versions or sources).
  • Fix cases where the same dependency appeared several times in the Gemfile.lock
  • Fix a bug where require errors were being swallowed during Bundler.require

1.0.0.beta.1

  • No bundle lock command. Locking happens automatically on install or update
  • No .bundle/environment.rb. Require 'bundler/setup' instead.
  • $BUNDLE_HOME defaults to $GEM_HOME instead of ~/.bundle
  • Remove lockfiles generated by 0.9