berkshelf 7.0.7 → 7.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (63) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +1 -1
  3. data/berkshelf.gemspec +8 -9
  4. data/bin/berks +5 -0
  5. data/lib/berkshelf/cached_cookbook.rb +1 -1
  6. data/lib/berkshelf/chef_config_compat.rb +1 -0
  7. data/lib/berkshelf/chef_repo_universe.rb +2 -2
  8. data/lib/berkshelf/formatters/json.rb +3 -3
  9. data/lib/berkshelf/lockfile.rb +3 -3
  10. data/lib/berkshelf/uploader.rb +3 -3
  11. data/lib/berkshelf/version.rb +1 -1
  12. metadata +32 -186
  13. data/.github/lock.yml +0 -1
  14. data/.gitignore +0 -30
  15. data/.rubocop.yml +0 -12
  16. data/.travis.yml +0 -73
  17. data/CHANGELOG.legacy.md +0 -307
  18. data/CHANGELOG.md +0 -1589
  19. data/CONTRIBUTING.md +0 -68
  20. data/Gemfile.lock +0 -292
  21. data/PLUGINS.md +0 -25
  22. data/README.md +0 -72
  23. data/Thorfile +0 -61
  24. data/appveyor.yml +0 -31
  25. data/docs/berkshelf_for_newcomers.md +0 -64
  26. data/features/artifactory.feature +0 -70
  27. data/features/berksfile.feature +0 -46
  28. data/features/commands/apply.feature +0 -41
  29. data/features/commands/contingent.feature +0 -47
  30. data/features/commands/info.feature +0 -141
  31. data/features/commands/install.feature +0 -646
  32. data/features/commands/list.feature +0 -78
  33. data/features/commands/outdated.feature +0 -176
  34. data/features/commands/package.feature +0 -17
  35. data/features/commands/search.feature +0 -17
  36. data/features/commands/shelf/list.feature +0 -32
  37. data/features/commands/shelf/show.feature +0 -113
  38. data/features/commands/shelf/uninstall.feature +0 -96
  39. data/features/commands/show.feature +0 -83
  40. data/features/commands/update.feature +0 -142
  41. data/features/commands/upload.feature +0 -499
  42. data/features/commands/vendor.feature +0 -154
  43. data/features/commands/verify.feature +0 -29
  44. data/features/commands/viz.feature +0 -66
  45. data/features/community_site.feature +0 -37
  46. data/features/help.feature +0 -11
  47. data/features/json_formatter.feature +0 -158
  48. data/features/lifecycle.feature +0 -378
  49. data/features/lockfile.feature +0 -378
  50. data/features/step_definitions/berksfile_steps.rb +0 -54
  51. data/features/step_definitions/chef/config_steps.rb +0 -12
  52. data/features/step_definitions/chef_server_steps.rb +0 -60
  53. data/features/step_definitions/cli_steps.rb +0 -18
  54. data/features/step_definitions/config_steps.rb +0 -46
  55. data/features/step_definitions/environment_steps.rb +0 -11
  56. data/features/step_definitions/filesystem_steps.rb +0 -286
  57. data/features/step_definitions/gem_steps.rb +0 -13
  58. data/features/step_definitions/json_steps.rb +0 -29
  59. data/features/step_definitions/utility_steps.rb +0 -11
  60. data/features/support/aruba.rb +0 -12
  61. data/features/support/env.rb +0 -77
  62. data/spec/fixtures/cookbooks/example_cookbook/.gitignore +0 -2
  63. data/spec/fixtures/cookbooks/example_cookbook/.kitchen.yml +0 -26
@@ -1 +0,0 @@
1
- daysUntilLock: 60
data/.gitignore DELETED
@@ -1,30 +0,0 @@
1
- *.gem
2
- *.rbc
3
- .bundle
4
- .config
5
- .rvmrc
6
- .yardoc
7
- _yardoc
8
- /coverage
9
- /doc/
10
- /pkg
11
- /spec/reports
12
- /Berksfile*
13
- tmp
14
- *~
15
- *.tar*
16
- \#*
17
- .DS_Store
18
- /spec/knife.rb
19
- /spec/*.pem
20
- /features/config.yml
21
- *.sw[op]
22
- \.\#*
23
- rerun.txt
24
- .rspec
25
- .kitchen
26
- vendor/ruby
27
- .ruby-version
28
- bin
29
- !bin/berks
30
- Gemfile.local
@@ -1,12 +0,0 @@
1
- AllCops:
2
- Exclude:
3
- - "spec/tmp/**/*"
4
- - "tmp/**/*"
5
- Security/Eval:
6
- Enabled: false
7
- Lint/AmbiguousRegexpLiteral:
8
- Enabled: false
9
- Lint/AmbiguousBlockAssociation:
10
- Enabled: false
11
- Style/HashSyntax:
12
- Enabled: true
@@ -1,73 +0,0 @@
1
- addons:
2
- apt:
3
- packages:
4
- - chef
5
- - git
6
- - graphviz
7
- - libarchive-dev
8
- # - libgecode-dev
9
- sources:
10
- - chef-stable-trusty
11
- cache:
12
- - apt
13
- - bundler
14
- dist: trusty
15
- #env:
16
- # global: USE_SYSTEM_GECODE=1
17
- language: ruby
18
- notifications:
19
- irc:
20
- channels:
21
- - "irc.freenode.org#berkshelf"
22
- skip_join: true
23
- use_notice: true
24
- webhooks:
25
- urls:
26
- - "https://webhooks.gitter.im/e/cdd41ff6c4d1f062c2f1"
27
- branches:
28
- only:
29
- - master
30
- before_install:
31
- - gem update --system
32
- - gem install bundler
33
- install: travis_wait bundle install --without changelog --jobs 7 --retry=3
34
- before_script:
35
- - echo "StrictHostKeyChecking no" > ~/.ssh/config
36
- - git config --global user.email "ci@berkshelf.com"
37
- - git config --global user.name "Berkshelf"
38
- matrix:
39
- include:
40
- - rvm: 2.4.4
41
- - rvm: 2.5.1
42
- - rvm: ruby-head
43
- - rvm: 2.5.1
44
- before_install:
45
- - gem update --system
46
- - gem install bundler
47
- - rm Gemfile.lock
48
- - rvm: 2.5.1
49
- env:
50
- CHEFSTYLE: 1
51
- script: bundle exec rake style
52
- - rvm: 2.5.1
53
- before_install:
54
- # Failures in the berkshelf-api gemspec were happening with bundler 1.8
55
- - gem install bundler --version=1.10.6
56
- # Needed until https://github.com/travis-ci/apt-package-whitelist/pull/1820 is merged
57
- - sudo apt-get update
58
- - sudo apt-get -y install squid3 apache2-utils
59
- - sudo htpasswd -b -c /etc/squid3/passwords proxy proxy
60
- sudo: required
61
- env:
62
- - PROXY_TESTS_DIR=/tmp/proxy_tests
63
- - PROXY_TESTS_REPO=$PROXY_TESTS_DIR/repo
64
- - rvmsudo_secure_path=1
65
- script:
66
- - git clone https://github.com/chef/proxy_tests.git
67
- - cd proxy_tests && bundle exec chef-client -z -o proxy_tests::render && cd ..
68
- - rvmsudo -E bundle exec bash $PROXY_TESTS_DIR/run_tests.sh berkshelf \* \* /tmp/out.txt
69
- after_script: cat /tmp/out.txt
70
- allow_failures:
71
- - rvm: ruby-head
72
-
73
- script: bundle exec thor spec:ci
@@ -1,307 +0,0 @@
1
- > This is a high level digest of changes. For the complete CHANGELOG diff two tags in the project's [commit history](https://github.com/berkshelf/berkshelf/commits/master).
2
-
3
- # 4.1.0
4
-
5
- * Enhancements
6
- * Have berks install bump only required cookbooks
7
- * Upgrade to solve 2.0 and use Gecode as the engine
8
- * Add a new `solver` Berksfile DSL option
9
- * remove berkshelf gem entry in generated Gemfile
10
- * Run Chef proxy tests on Travis
11
- * Updating Test Kitchen to 1.5.0 and running bundle update
12
-
13
- * Bug Fixes
14
- * Use Net::HTTP.new instead of Net::HTTP.start to ensure environmental proxy settings are picked up
15
- * Remove new cucumber and aruba warnings
16
- * Pin aruba to 0.10.2
17
-
18
- # 4.0.1
19
-
20
- * Update `berkshelf-api-client` constraint to `~> 2.0`
21
-
22
- # 4.0.0
23
-
24
- * Drop support for Ruby 1.9
25
- * Switch from `net_http_client` to `httpclient` Faraday adapter for all HTTP communication
26
-
27
- # 3.3.0
28
-
29
- * Enhancements
30
- * Use [httpclient](https://github.com/nahi/httpclient) in place of Ruby stdlib NetHTTP for http communication
31
- * Clarify decompression error messages
32
-
33
- # 3.2.4
34
-
35
- * Bug Fixes
36
- * Fix issue where older version of a cookbook would be presented as the latest available version from a remote API server's cache
37
- * Exclude git directories when vendoring
38
- * Fix a race condition in downloading cookbooks from Github or a URI location
39
-
40
- # 3.2.3
41
-
42
- * Bug Fixes
43
- * Specifying the --skip-syntax-check flag to upload will once again cause validations to be skipped
44
-
45
- # 3.2.2
46
-
47
- * Enhancements
48
- * Use chef.io hostname in urls instead of getchef
49
-
50
- * Bug Fixes
51
- * Fix syntax issue in generated Vagrantfile
52
- * Only exclude the top level metadata.rb file when vendoring cookbooks rather than all files named metadata.rb
53
- * Relative paths can now be passed to berks vendor
54
-
55
- # 3.2.1
56
-
57
- * Bug Fixes
58
- * Fix issue with copying raw metadata when vendoring / packaging.
59
- * Berkshelf should cleanup any temporary directories it creates. There is still work to be done in any of Berkshelf's dependencies.
60
-
61
- # 3.2.0
62
-
63
- * Improvements
64
- * Add version information to edges of generated visualization graph
65
- * Bump to latest full release of Celluloid
66
- * Updated some errors to include more information about what went wrong / how to make it better
67
- * Lockfiles will be named after the name of the Berksfile, not always Berksfile.lock
68
- * Vendoring will now sync files between two directories instead of deleting the target and it's contents
69
- * Add support for downloading from Berkshelf-API file_store location
70
- * Add `berks verify` command to validate Ruby syntax, ERB templates, and file names of cookbooks
71
-
72
- * Bug Fixes
73
- * Fixed a number of typos and documentation errors
74
- * Fix running `berks viz` when pwd has spaces in it
75
- * Fix checking for graphviz on Windows
76
- * Remove PaxHeader files before uploading
77
- * BERKSHELF_PATH will always be fully expanded regardless of how it is configured
78
-
79
- * Deprecations
80
- * vagrant.omnibus.enabled configuration option is now deprecated
81
-
82
- # 3.1.5
83
-
84
- * Bug Fixes
85
- * Supermarket endpoint is now an alias for Opscode endpoint
86
- * Set proper default value for supermarket api endpoint
87
-
88
- # 3.1.4
89
-
90
- * Improvements
91
- * Update the default vagrant box from the generators to Ubuntu 14.04 (formerly 12.04 EOL)
92
-
93
- * Bug Fixes
94
- * Handle the case where a remote source had been removed but still existed in the lockfile
95
- * Follow redirects (HTTP -> HTTPS) in all requests
96
-
97
- # 3.1.3
98
-
99
- * Enhancements
100
- * Updated out of date dependencies
101
-
102
- * Bug Fixes
103
- * Skip loading of cached cookbooks that do not have a value for metadata
104
- * SSL Verify option will be respected when communicating to an API server
105
- * Fixed issue where some commands were unexpectedly crashing instead of informing the user that Git is not installed
106
-
107
- # 3.1.2
108
-
109
- * Enhancements
110
- * SCM history is now stripped from cookbooks retrieved from an SCM location which will conserve disk space for cookbooks with a large history
111
- * Bug Fixes
112
- * Fix formatting issue with console output on some systems
113
- * Handle crash on install on some machines which do not properly report their number of CPU cores
114
- * Fix infinite loop in checking if the lockfile is synced under certain conditions
115
- * Fix console output crash on Windows
116
- * Fix issue where updating a cookbook would result in a non resolvable lockfile
117
- * Various spelling mistakes in console output
118
-
119
- # 3.1.1
120
-
121
- * Bug Fixes
122
- * Fix issue reading metadata which was compiled using an older (bugged) version of Knife
123
- * Fix issue with incorrectly reporting outdated cookbooks with the outdated command
124
- * Fix issue uploading some cookbooks which were generated with older metadata
125
-
126
- # 3.1.0
127
-
128
- * Enhancements
129
- * Added `berks viz` command which will output a visualized dependency graph
130
- * Added `berks info` command which outputs what `berks show` used to output
131
- * Changed `berks show` command to output the filepath where the cookbook is found
132
- * Improve error output when a solution couldn't be found
133
-
134
- * Bug Fixes
135
- * Various documentation updates
136
- * Update description of version command
137
-
138
- # 3.0.1
139
-
140
- * Bug Fixes
141
- * Installation will no longer fail on machines with just 1 or 2 cores
142
-
143
- # 3.0.0
144
-
145
- * Enhancements
146
- * New "universe" resolver which communicates with an API server to resolve constraint graphs faster and more reliably
147
- * `berks vendor` will now compile cookbook metadata into the cookbook's vendored directory. The raw metadata will not be included in the vendored cookbook to ensure that Chef Client doesn't (wrongly) prioritize the raw metadata over compiled metadata
148
- * `berks vendor` now includes the Berksfile.lock alongside the vendored contents
149
- * `berks package` will now simply archive the output of `berks vendor`
150
-
151
- * Bug Fixes
152
- * Raw metadata will be compiled into metadata.json during vendor process
153
-
154
- * Backwards incompatible changes
155
- * `berks package` has had it's argument and options list updated. The first argument is now the name, or fulle path, of the archive file that will be generated. As with before, the first argument is not required.
156
-
157
- # 2.0.16
158
-
159
- * Update constraint on Ridley
160
-
161
- # 2.0.14
162
-
163
- * Backport changes from master to allow detecting cookbooks by metadata.json
164
-
165
- # 2.0.13
166
-
167
- * Lock transitive dependency on Faraday
168
-
169
- # 2.0.10
170
-
171
- * Huge performance increase when resolving a Berksfile when the Berkshelf contains a lot of cookbooks
172
-
173
- # 2.0.9
174
-
175
- * Update required version of Ridley
176
-
177
- # 2.0.8
178
-
179
- * Account for API changes to solve
180
- * Rescue exceptions when parsing the lockfile
181
- * Fix deprecation errors
182
-
183
- # 2.0.7
184
-
185
- * Fix crash when parsing a lockfile that contains path locations which no longer exist
186
-
187
- # 2.0.6
188
-
189
- * Fix installation failures due to latest release of ActiveSupport
190
- * --except and --only will now work with a lockfile present
191
-
192
- # 2.0.5
193
-
194
- * Improve speed of resolution when a lockfile is present
195
- * Gracefully fail when a lockfile is present but empty
196
- * Fix issue where locked version was not honored if the cookbook store was empty
197
-
198
- # 2.0.4
199
-
200
- * Fix bug where community cookbooks compressed with bzip2 would not download and install
201
- * Fix bug regression in Git caching which was previously fixed in 1.4.4
202
- * Fix validation bug where a cookbook would be considered invalid if any spaces were present in the path to the directory containing the cookbook
203
- * Fix issues with uploading cookbooks on Windows
204
-
205
- # 2.0.3
206
-
207
- * Fix issue where groups defined in the Berksfile would not be evaluated
208
-
209
- # 2.0.2
210
-
211
- * Fix issue with shellout on Windows. This would effect uploads and downloads of cookbooks using the Git location.
212
- * The Berksfile DSL now evaluates in a clean room to prevent end-users from calling restricted methods.
213
- * Fix issue with `berks upload -D` not properly skipping dependencies
214
- * Added friendly error message when an unknown license is chosen during cookbook generation
215
-
216
- # 2.0.1
217
-
218
- * Improve performance of `berks upload`. It will now properly respect the Lockfile
219
- * Fix debug/verbose logging
220
- * You can now specify an alternate configuration with -c once again
221
-
222
- # 2.0.0
223
-
224
- * Huge improvements to the Lockfile
225
- - They actually work!
226
- - Now in JSON format
227
- - Old lockfiles will automatically be converted to the new format
228
- * Add `berks shelf` command. Any operations on the already installed cookbooks now reside here
229
- - `berks shelf list` to list all cookbooks in the Berkshelf
230
- - `berks shelf show` to display information about a specific cookbook in the Berkshelf
231
- - `berks shelf uninstall` to remove an installed cookbook from the Berkshelf
232
- * Add `berks package` command. Will package any cookbooks and dependencies defined in your Berksfile into a tar.
233
- * Add `berks apply` command. Take the locked constraints of your lockfile and apply them directly to the an environment's locked cookbook versions.
234
- * Test-Kitchen integration (beta)
235
- - Add `berks test` command. This is a delegator to `bin/kitchen`
236
- - Berkshelf's Cookbook generators will by default generate Test-Kitchen files for you
237
- * Remove `berks open` command
238
- * Rename `berks info` command to `berks show`
239
-
240
- # 1.4.4
241
-
242
- - Bump Ridley dependency to 0.12, bringing in many bugfixes.
243
-
244
- # 1.4.3
245
-
246
- - Bump Ridley dependency to 0.11, bringing in many bugfixes.
247
-
248
- # 1.4.2
249
-
250
- - Fix git caching bug for huge speedups in Berksfiles with lots of git
251
- paths. Thanks to @tylerflint and @jasondunsmore.
252
-
253
- # 1.4.1
254
-
255
- - Berksfile#upload will now honor the given server_url option
256
- - Add validation to shortnames of 'site' in Berksfile
257
- - Fix init generator issue by locking to the appropriate version of Rubygems
258
-
259
- # 1.4.0
260
-
261
- - Add ability to freeze cookbooks. Cookbooks are frozen on upload by default
262
- - Add ability to forcefully upload cookbooks even if they are frozen with the `--force` option
263
- - Add `berks info` command for displaying information about cookbooks in your Berkshelf
264
- - Add `berks contingent` command for displaying a list of cookbooks which are dependent upon one another
265
- - Cookbook generator now has the option of generating chef minispec files (false by default)
266
- - Fix bug in downloading cookbooks which were packaged as plain tars instead of tar.gzs
267
- - Path locations will now be relative to the Berksfile they are defined in
268
-
269
- # 1.3.1
270
- - Support for Vagrant 1.1.x
271
- - Move Berkshelf Vagrant plugin into it's [own repository](https://github.com/berkshelf/vagrant-berkshelf)
272
- - Added -d flag to output debug information in berks command
273
- - Various bug fixes in uploading cookbooks
274
-
275
- # 1.2.0
276
- - Remove Vagrant as a gem dependency
277
- - Remove Chef as a gem dependency
278
- - Add retries to downloads/uploads
279
- - Speed optimizations to resolver
280
- - Speed optimizations to downloading cookbooks
281
- - Speed optimizations to uploading cookbooks
282
-
283
- # 1.1.0
284
- ## new/improved commands
285
- - `berks show` command: display the file path for the given cookbook's current version resolved by your Berksfile
286
- - `berks list` command: list all of the cookbooks and their versions that are installed by resolving your Berksfile
287
- - `berks outdated` command (beta): show any cookbooks which have newer versions that are installed by resolving your Berksfile
288
- - `berks open` command [alpha]: like `berks show` except used to open the cookbook in your configured editor
289
- alpha: use at your own risk
290
- - improved `berks upload` command: now takes an optional cookbook name, or names, which will upload the target cookbook(s) to the Chef Server
291
- - improved `berks update` command: now takes an optional cookbook name, or names, which will update the target cookbook(s) in the Berksfile.lock
292
-
293
- ## bug fixes
294
- - Improved error output in Vagrant plugin
295
- - Stack traces will now be replaced by friendly error messages where possible
296
- - Fix init generator on Ruby 1.9.2
297
- - Honor 'chefignore' when vendoring cookbooks this will ensure that you aren't putting junk files into your cookbooks if your distributing them for use with Chef-Solo
298
-
299
- # 1.0.0
300
- - Windows support
301
- - Easier installation by dropping Gecode requirement
302
- - Vagrant plugin for a seamless iteration process
303
- - Berkshelf has it's own configuration file
304
- - `berks configure` command
305
- - Github source location
306
- - Improved upload/download speed of cookbooks
307
- - Lots of bug fixes
@@ -1,1589 +0,0 @@
1
- # Change Log
2
-
3
- ## [v7.0.6](https://github.com/berkshelf/berkshelf/tree/v7.0.6) (2018-08-06)
4
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v7.0.5...v7.0.6)
5
-
6
- **Merged pull requests:**
7
-
8
- - Use Strings to access options in try\_download. Fixes \#1764. [\#1782](https://github.com/berkshelf/berkshelf/pull/1782) ([xeron](https://github.com/xeron))
9
-
10
- ## [v7.0.5](https://github.com/berkshelf/berkshelf/tree/v7.0.5) (2018-08-06)
11
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v6.3.3...v7.0.5)
12
-
13
- **Merged pull requests:**
14
-
15
- - Add a Chef::CookbookManifestVersions to RidleyCompat [\#1789](https://github.com/berkshelf/berkshelf/pull/1789) ([ryancragun](https://github.com/ryancragun))
16
-
17
- ## [v6.3.3](https://github.com/berkshelf/berkshelf/tree/v6.3.3) (2018-08-03)
18
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v7.0.4...v6.3.3)
19
-
20
- **Merged pull requests:**
21
-
22
- - \[SHACK-295\] Missing require for ChefDK 2.x patch release [\#1788](https://github.com/berkshelf/berkshelf/pull/1788) ([tyler-ball](https://github.com/tyler-ball))
23
- - Additional generator removal cleanup [\#1786](https://github.com/berkshelf/berkshelf/pull/1786) ([lamont-granquist](https://github.com/lamont-granquist))
24
- - fixes for latest chefstyle updates [\#1784](https://github.com/berkshelf/berkshelf/pull/1784) ([lamont-granquist](https://github.com/lamont-granquist))
25
- - remove hashrockets syntax [\#1783](https://github.com/berkshelf/berkshelf/pull/1783) ([lamont-granquist](https://github.com/lamont-granquist))
26
-
27
- ## [v7.0.4](https://github.com/berkshelf/berkshelf/tree/v7.0.4) (2018-06-08)
28
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v7.0.3...v7.0.4)
29
-
30
- **Merged pull requests:**
31
-
32
- - Fix infinite loops in resolving cookbooks in the uploader [\#1781](https://github.com/berkshelf/berkshelf/pull/1781) ([lamont-granquist](https://github.com/lamont-granquist))
33
-
34
- ## [v7.0.3](https://github.com/berkshelf/berkshelf/tree/v7.0.3) (2018-06-06)
35
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v7.0.2...v7.0.3)
36
-
37
- **Merged pull requests:**
38
-
39
- - stringify client\_key option before trying to match on it [\#1779](https://github.com/berkshelf/berkshelf/pull/1779) ([dbresson](https://github.com/dbresson))
40
- - Provide the name during debug [\#1777](https://github.com/berkshelf/berkshelf/pull/1777) ([martinisoft](https://github.com/martinisoft))
41
-
42
- ## [v7.0.2](https://github.com/berkshelf/berkshelf/tree/v7.0.2) (2018-05-02)
43
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v7.0.1...v7.0.2)
44
-
45
- **Merged pull requests:**
46
-
47
- - bump gems and update thor pin [\#1773](https://github.com/berkshelf/berkshelf/pull/1773) ([lamont-granquist](https://github.com/lamont-granquist))
48
- - add support for lock bot [\#1772](https://github.com/berkshelf/berkshelf/pull/1772) ([lamont-granquist](https://github.com/lamont-granquist))
49
- - remove dot dir from berks package [\#1771](https://github.com/berkshelf/berkshelf/pull/1771) ([lamont-granquist](https://github.com/lamont-granquist))
50
-
51
- ## [v7.0.1](https://github.com/berkshelf/berkshelf/tree/v7.0.1) (2018-05-01)
52
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v7.0.0...v7.0.1)
53
-
54
- **Merged pull requests:**
55
-
56
- - fix reading the json config file [\#1770](https://github.com/berkshelf/berkshelf/pull/1770) ([lamont-granquist](https://github.com/lamont-granquist))
57
- - CI fix: remove '::' from module statements [\#1769](https://github.com/berkshelf/berkshelf/pull/1769) ([lamont-granquist](https://github.com/lamont-granquist))
58
- - fix to generate metadata.json only in the vendored cookbook [\#1768](https://github.com/berkshelf/berkshelf/pull/1768) ([lamont-granquist](https://github.com/lamont-granquist))
59
-
60
- ## [v7.0.0](https://github.com/berkshelf/berkshelf/tree/v7.0.0) (2018-04-24)
61
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v6.3.2...v7.0.0)
62
-
63
- **Merged pull requests:**
64
-
65
- - generate and upload metadata.json [\#1763](https://github.com/berkshelf/berkshelf/pull/1763) ([lamont-granquist](https://github.com/lamont-granquist))
66
- - ship compiled metadata in the vendored cookbook [\#1760](https://github.com/berkshelf/berkshelf/pull/1760) ([lamont-granquist](https://github.com/lamont-granquist))
67
- - Fix chefignores being ignored in berkshelf 7.0.0 [\#1758](https://github.com/berkshelf/berkshelf/pull/1758) ([lamont-granquist](https://github.com/lamont-granquist))
68
- - pin cucumber-expressions to working version [\#1757](https://github.com/berkshelf/berkshelf/pull/1757) ([lamont-granquist](https://github.com/lamont-granquist))
69
- - changelog update and bonus bump to Gemfile.lock [\#1756](https://github.com/berkshelf/berkshelf/pull/1756) ([lamont-granquist](https://github.com/lamont-granquist))
70
-
71
- ## [v6.3.2](https://github.com/berkshelf/berkshelf/tree/v6.3.2) (2018-04-04)
72
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v6.3.1...v6.3.2)
73
-
74
- **Merged pull requests:**
75
-
76
- - remove buff-extensions [\#1747](https://github.com/berkshelf/berkshelf/pull/1747) ([lamont-granquist](https://github.com/lamont-granquist))
77
- - remove buff-config / varia\_model [\#1746](https://github.com/berkshelf/berkshelf/pull/1746) ([lamont-granquist](https://github.com/lamont-granquist))
78
- - ignore .svn recursively [\#1742](https://github.com/berkshelf/berkshelf/pull/1742) ([lamont-granquist](https://github.com/lamont-granquist))
79
- - minitar update for security fixes [\#1741](https://github.com/berkshelf/berkshelf/pull/1741) ([lamont-granquist](https://github.com/lamont-granquist))
80
- - remove direct use of faraday [\#1740](https://github.com/berkshelf/berkshelf/pull/1740) ([lamont-granquist](https://github.com/lamont-granquist))
81
- - Update cookbook upload order [\#1735](https://github.com/berkshelf/berkshelf/pull/1735) ([shoekstra](https://github.com/shoekstra))
82
- - remove deprecated features [\#1729](https://github.com/berkshelf/berkshelf/pull/1729) ([lamont-granquist](https://github.com/lamont-granquist))
83
-
84
- ## [v6.3.1](https://github.com/berkshelf/berkshelf/tree/v6.3.1) (2017-08-22)
85
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v6.3.0...v6.3.1)
86
-
87
- **Merged pull requests:**
88
-
89
- - Bump solve to 4.0 [\#1726](https://github.com/berkshelf/berkshelf/pull/1726) ([thommay](https://github.com/thommay))
90
- - Remove ridley as a dep of Berkshelf [\#1719](https://github.com/berkshelf/berkshelf/pull/1719) ([lamont-granquist](https://github.com/lamont-granquist))
91
-
92
- ## [v6.3.0](https://github.com/berkshelf/berkshelf/tree/v6.3.0) (2017-08-08)
93
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v6.2.2...v6.3.0)
94
-
95
- **Merged pull requests:**
96
-
97
- - Remove stale comment [\#1724](https://github.com/berkshelf/berkshelf/pull/1724) ([jaym](https://github.com/jaym))
98
- - Fix up Dir.glob for windows [\#1722](https://github.com/berkshelf/berkshelf/pull/1722) ([jaym](https://github.com/jaym))
99
- - bump the gemfile.lock [\#1721](https://github.com/berkshelf/berkshelf/pull/1721) ([lamont-granquist](https://github.com/lamont-granquist))
100
-
101
- ## [v6.2.2](https://github.com/berkshelf/berkshelf/tree/v6.2.2) (2017-08-02)
102
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v6.2.1...v6.2.2)
103
-
104
- **Merged pull requests:**
105
-
106
- - fix verify false and add tests [\#1720](https://github.com/berkshelf/berkshelf/pull/1720) ([lamont-granquist](https://github.com/lamont-granquist))
107
- - Docs update [\#1715](https://github.com/berkshelf/berkshelf/pull/1715) ([iennae](https://github.com/iennae))
108
-
109
- ## [v6.2.1](https://github.com/berkshelf/berkshelf/tree/v6.2.1) (2017-07-18)
110
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v6.2.0...v6.2.1)
111
-
112
- **Merged pull requests:**
113
-
114
- - remove berks-api dep [\#1712](https://github.com/berkshelf/berkshelf/pull/1712) ([lamont-granquist](https://github.com/lamont-granquist))
115
- - pull berkshelf-api-client gem into berkshelf [\#1711](https://github.com/berkshelf/berkshelf/pull/1711) ([lamont-granquist](https://github.com/lamont-granquist))
116
- - bump berkshelf-api-client dep to 4.0.1 [\#1710](https://github.com/berkshelf/berkshelf/pull/1710) ([lamont-granquist](https://github.com/lamont-granquist))
117
-
118
- ## [v6.2.0](https://github.com/berkshelf/berkshelf/tree/v6.2.0) (2017-06-22)
119
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v6.1.1...v6.2.0)
120
-
121
- **Merged pull requests:**
122
-
123
- - pull in berkshelf-api-client and bump deps [\#1707](https://github.com/berkshelf/berkshelf/pull/1707) ([lamont-granquist](https://github.com/lamont-granquist))
124
-
125
- ## [v6.1.1](https://github.com/berkshelf/berkshelf/tree/v6.1.1) (2017-06-20)
126
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v6.1.0...v6.1.1)
127
-
128
- **Merged pull requests:**
129
-
130
- - bumping cookstyle deps and others [\#1708](https://github.com/berkshelf/berkshelf/pull/1708) ([lamont-granquist](https://github.com/lamont-granquist))
131
-
132
- ## [v6.1.0](https://github.com/berkshelf/berkshelf/tree/v6.1.0) (2017-05-31)
133
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v6.0.1...v6.1.0)
134
-
135
- **Merged pull requests:**
136
-
137
- - Release 6.1.0 [\#1704](https://github.com/berkshelf/berkshelf/pull/1704) ([thommay](https://github.com/thommay))
138
- - remove TK dep and undocumented 'berks test' command [\#1702](https://github.com/berkshelf/berkshelf/pull/1702) ([lamont-granquist](https://github.com/lamont-granquist))
139
- - remove direct use of buff-shell\_out [\#1701](https://github.com/berkshelf/berkshelf/pull/1701) ([lamont-granquist](https://github.com/lamont-granquist))
140
- - guard seems to be a lot more trouble than its worth [\#1700](https://github.com/berkshelf/berkshelf/pull/1700) ([lamont-granquist](https://github.com/lamont-granquist))
141
- - bump deps \(faraday+ridley\) [\#1699](https://github.com/berkshelf/berkshelf/pull/1699) ([lamont-granquist](https://github.com/lamont-granquist))
142
- - replace celluloid with concurrent-ruby futures [\#1698](https://github.com/berkshelf/berkshelf/pull/1698) ([lamont-granquist](https://github.com/lamont-granquist))
143
- - Switch off open-uri for community site downloads [\#1697](https://github.com/berkshelf/berkshelf/pull/1697) ([coderanger](https://github.com/coderanger))
144
- - Add chef\_repo source [\#1696](https://github.com/berkshelf/berkshelf/pull/1696) ([coderanger](https://github.com/coderanger))
145
- - Pass along an artifactory\_api\_key attribute from a Chef config [\#1693](https://github.com/berkshelf/berkshelf/pull/1693) ([RoboticCheese](https://github.com/RoboticCheese))
146
- - add chefstyle enforcement [\#1663](https://github.com/berkshelf/berkshelf/pull/1663) ([lamont-granquist](https://github.com/lamont-granquist))
147
-
148
- ## [v6.0.1](https://github.com/berkshelf/berkshelf/tree/v6.0.1) (2017-05-17)
149
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v6.0.0...v6.0.1)
150
-
151
- **Merged pull requests:**
152
-
153
- - update travis rvm versions [\#1692](https://github.com/berkshelf/berkshelf/pull/1692) ([thommay](https://github.com/thommay))
154
-
155
- ## [v6.0.0](https://github.com/berkshelf/berkshelf/tree/v6.0.0) (2017-05-17)
156
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v5.6.5...v6.0.0)
157
-
158
- **Merged pull requests:**
159
-
160
- - Minor refactor on the default artifactory options and support artifactory\_api\_key in knife.rb [\#1691](https://github.com/berkshelf/berkshelf/pull/1691) ([coderanger](https://github.com/coderanger))
161
- - Artifactory support [\#1690](https://github.com/berkshelf/berkshelf/pull/1690) ([coderanger](https://github.com/coderanger))
162
-
163
- ## [v5.6.5](https://github.com/berkshelf/berkshelf/tree/v5.6.5) (2017-05-04)
164
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v5.6.4...v5.6.5)
165
-
166
- **Merged pull requests:**
167
-
168
- - handle Windows backslashes in trusted\_certs path [\#1689](https://github.com/berkshelf/berkshelf/pull/1689) ([jeremymv2](https://github.com/jeremymv2))
169
-
170
- ## [v5.6.4](https://github.com/berkshelf/berkshelf/tree/v5.6.4) (2017-03-14)
171
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v5.6.3...v5.6.4)
172
-
173
- **Merged pull requests:**
174
-
175
- - Add Support for Auth Proxy [\#1684](https://github.com/berkshelf/berkshelf/pull/1684) ([tduffield](https://github.com/tduffield))
176
-
177
- ## [v5.6.3](https://github.com/berkshelf/berkshelf/tree/v5.6.3) (2017-02-23)
178
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v5.6.2...v5.6.3)
179
-
180
- **Merged pull requests:**
181
-
182
- - Release 5.6.3 [\#1681](https://github.com/berkshelf/berkshelf/pull/1681) ([tduffield](https://github.com/tduffield))
183
- - Specify appropriate proxies based on URI [\#1679](https://github.com/berkshelf/berkshelf/pull/1679) ([tduffield](https://github.com/tduffield))
184
- - Remove spork [\#1672](https://github.com/berkshelf/berkshelf/pull/1672) ([biinari](https://github.com/biinari))
185
-
186
- ## [v5.6.2](https://github.com/berkshelf/berkshelf/tree/v5.6.2) (2017-02-05)
187
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v5.6.1...v5.6.2)
188
-
189
- **Merged pull requests:**
190
-
191
- - fix for including hashie versions before the logger appeared [\#1675](https://github.com/berkshelf/berkshelf/pull/1675) ([lamont-granquist](https://github.com/lamont-granquist))
192
-
193
- ## [v5.6.1](https://github.com/berkshelf/berkshelf/tree/v5.6.1) (2017-02-03)
194
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v5.6.0...v5.6.1)
195
-
196
- **Merged pull requests:**
197
-
198
- - Address hashie warning spam [\#1668](https://github.com/berkshelf/berkshelf/pull/1668) ([lamont-granquist](https://github.com/lamont-granquist))
199
-
200
- ## [v5.6.0](https://github.com/berkshelf/berkshelf/tree/v5.6.0) (2017-02-02)
201
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v5.5.0...v5.6.0)
202
-
203
- **Merged pull requests:**
204
-
205
- - Bump Mixlib-Archive to 0.4 [\#1666](https://github.com/berkshelf/berkshelf/pull/1666) ([thommay](https://github.com/thommay))
206
- - chefstyle fixes [\#1662](https://github.com/berkshelf/berkshelf/pull/1662) ([lamont-granquist](https://github.com/lamont-granquist))
207
-
208
- ## [v5.5.0](https://github.com/berkshelf/berkshelf/tree/v5.5.0) (2017-01-24)
209
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v5.4.0...v5.5.0)
210
-
211
- **Merged pull requests:**
212
-
213
- - remove Thread.exclusive [\#1661](https://github.com/berkshelf/berkshelf/pull/1661) ([lamont-granquist](https://github.com/lamont-granquist))
214
- - Revert vendoring metadata.rb file [\#1660](https://github.com/berkshelf/berkshelf/pull/1660) ([lamont-granquist](https://github.com/lamont-granquist))
215
- - bundle update [\#1659](https://github.com/berkshelf/berkshelf/pull/1659) ([lamont-granquist](https://github.com/lamont-granquist))
216
-
217
- ## [v5.4.0](https://github.com/berkshelf/berkshelf/tree/v5.4.0) (2017-01-19)
218
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v5.3.0...v5.4.0)
219
-
220
- **Merged pull requests:**
221
-
222
- - Prepare for 5.4.0 [\#1658](https://github.com/berkshelf/berkshelf/pull/1658) ([thommay](https://github.com/thommay))
223
- - vendor the metadata.rb file [\#1652](https://github.com/berkshelf/berkshelf/pull/1652) ([lamont-granquist](https://github.com/lamont-granquist))
224
- - Add a format option to berkz viz that outputs a dotfile [\#1646](https://github.com/berkshelf/berkshelf/pull/1646) ([borntyping](https://github.com/borntyping))
225
-
226
- ## [v5.3.0](https://github.com/berkshelf/berkshelf/tree/v5.3.0) (2016-12-15)
227
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v5.2.0...v5.3.0)
228
-
229
- **Merged pull requests:**
230
-
231
- - Add SSLPolicy class that will use chefdk trusted certs path [\#1640](https://github.com/berkshelf/berkshelf/pull/1640) ([afiune](https://github.com/afiune))
232
- - Add alternative way to run tests [\#1626](https://github.com/berkshelf/berkshelf/pull/1626) ([gliptak](https://github.com/gliptak))
233
-
234
- ## [v5.2.0](https://github.com/berkshelf/berkshelf/tree/v5.2.0) (2016-11-07)
235
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v5.1.0...v5.2.0)
236
-
237
- **Merged pull requests:**
238
-
239
- - pin berkshelf-api, bump deps, remove failing matrix tests [\#1623](https://github.com/berkshelf/berkshelf/pull/1623) ([lamont-granquist](https://github.com/lamont-granquist))
240
- - Community site error message missing URL [\#1621](https://github.com/berkshelf/berkshelf/pull/1621) ([tkling](https://github.com/tkling))
241
- - Pass all ssl/X509 parameters to configuration [\#1600](https://github.com/berkshelf/berkshelf/pull/1600) ([thommay](https://github.com/thommay))
242
-
243
- ## [v5.1.0](https://github.com/berkshelf/berkshelf/tree/v5.1.0) (2016-09-16)
244
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v5.0.0...v5.1.0)
245
-
246
- **Merged pull requests:**
247
-
248
- - Update version to 5.1.0 [\#1615](https://github.com/berkshelf/berkshelf/pull/1615) ([jkeiser](https://github.com/jkeiser))
249
- - Disable caching of bundler since it's broken [\#1612](https://github.com/berkshelf/berkshelf/pull/1612) ([thommay](https://github.com/thommay))
250
- - Update cli.rb [\#1611](https://github.com/berkshelf/berkshelf/pull/1611) ([martinmosegaard](https://github.com/martinmosegaard))
251
- - fix cucumber tests [\#1609](https://github.com/berkshelf/berkshelf/pull/1609) ([mwrock](https://github.com/mwrock))
252
- - Enable appveyor [\#1606](https://github.com/berkshelf/berkshelf/pull/1606) ([thommay](https://github.com/thommay))
253
- - fix syncing windows user directories on ruby 2.3 [\#1605](https://github.com/berkshelf/berkshelf/pull/1605) ([mwrock](https://github.com/mwrock))
254
- - Update buff-shell\_out to 1.0 [\#1604](https://github.com/berkshelf/berkshelf/pull/1604) ([jkeiser](https://github.com/jkeiser))
255
- - Only fall back to cp/rm if we have to [\#1602](https://github.com/berkshelf/berkshelf/pull/1602) ([thommay](https://github.com/thommay))
256
- - Expose configuration for API timeouts [\#1601](https://github.com/berkshelf/berkshelf/pull/1601) ([thommay](https://github.com/thommay))
257
- - Only optionally remove the contents of the target [\#1599](https://github.com/berkshelf/berkshelf/pull/1599) ([thommay](https://github.com/thommay))
258
-
259
- ## [v5.0.0](https://github.com/berkshelf/berkshelf/tree/v5.0.0) (2016-08-30)
260
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.5...v5.0.0)
261
-
262
- **Merged pull requests:**
263
-
264
- - Atomically move git located cookbook to cache [\#1598](https://github.com/berkshelf/berkshelf/pull/1598) ([kamaradclimber](https://github.com/kamaradclimber))
265
- - Faild `berks install` with ENV\['BERKSHELF\_PATH'\] [\#1595](https://github.com/berkshelf/berkshelf/pull/1595) ([hirocaster](https://github.com/hirocaster))
266
- - Add Ruby 2.3 and Ruby 2.4 support - drop Ruby 2.1 support and older [\#1591](https://github.com/berkshelf/berkshelf/pull/1591) ([lamont-granquist](https://github.com/lamont-granquist))
267
- - bump berkshelf-api and associated deps [\#1589](https://github.com/berkshelf/berkshelf/pull/1589) ([lamont-granquist](https://github.com/lamont-granquist))
268
- - force encoding to UTF-8 [\#1588](https://github.com/berkshelf/berkshelf/pull/1588) ([lamont-granquist](https://github.com/lamont-granquist))
269
- - Bump dep-selector-libgecode to 1.3.1 [\#1586](https://github.com/berkshelf/berkshelf/pull/1586) ([stevendanna](https://github.com/stevendanna))
270
- - allow user to change git url handler [\#1585](https://github.com/berkshelf/berkshelf/pull/1585) ([lamont-granquist](https://github.com/lamont-granquist))
271
- - fix specs for bento box [\#1582](https://github.com/berkshelf/berkshelf/pull/1582) ([lamont-granquist](https://github.com/lamont-granquist))
272
- - Fixes \#1473 where Lockfile\#trusted? would compare dependencies of oth… [\#1580](https://github.com/berkshelf/berkshelf/pull/1580) ([bbaugher](https://github.com/bbaugher))
273
- - Require Ruby 2.1+ [\#1575](https://github.com/berkshelf/berkshelf/pull/1575) ([tas50](https://github.com/tas50))
274
- - Add introductory docs for newcomers. [\#1520](https://github.com/berkshelf/berkshelf/pull/1520) ([jzohrab](https://github.com/jzohrab))
275
- - Update Vagrantfile generator default vm box [\#1491](https://github.com/berkshelf/berkshelf/pull/1491) ([tannerj](https://github.com/tannerj))
276
- - Add the support for "gitlab" location\_type passed by Berkshelf API [\#1419](https://github.com/berkshelf/berkshelf/pull/1419) ([gueux](https://github.com/gueux))
277
-
278
- ## [v4.3.5](https://github.com/berkshelf/berkshelf/tree/v4.3.5) (2016-06-13)
279
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.4...v4.3.5)
280
-
281
- **Merged pull requests:**
282
-
283
- - We released with a dependency on a github source [\#1572](https://github.com/berkshelf/berkshelf/pull/1572) ([tyler-ball](https://github.com/tyler-ball))
284
- - Update docs to use `chef generate cookbook` instead of `berks init` or `berks cookbook`. [\#1568](https://github.com/berkshelf/berkshelf/pull/1568) ([tylercloke](https://github.com/tylercloke))
285
-
286
- ## [v4.3.4](https://github.com/berkshelf/berkshelf/tree/v4.3.4) (2016-06-13)
287
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.3...v4.3.4)
288
-
289
- **Merged pull requests:**
290
-
291
- - Update release docs and bump Gemfile.lock. [\#1570](https://github.com/berkshelf/berkshelf/pull/1570) ([tylercloke](https://github.com/tylercloke))
292
- - Release v4.3.4. [\#1569](https://github.com/berkshelf/berkshelf/pull/1569) ([tylercloke](https://github.com/tylercloke))
293
- - Deprecate `berks init` in favor of `chef generate cookbook`. [\#1567](https://github.com/berkshelf/berkshelf/pull/1567) ([tylercloke](https://github.com/tylercloke))
294
- - Deprecate `berks cookbook` in favor of `chef generate cookbook`. [\#1565](https://github.com/berkshelf/berkshelf/pull/1565) ([tylercloke](https://github.com/tylercloke))
295
- - Use rubygem's tar implementation [\#1553](https://github.com/berkshelf/berkshelf/pull/1553) ([thommay](https://github.com/thommay))
296
-
297
- ## [v4.3.3](https://github.com/berkshelf/berkshelf/tree/v4.3.3) (2016-05-09)
298
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.2...v4.3.3)
299
-
300
- **Merged pull requests:**
301
-
302
- - Fixing some specs that fail on Windows [\#1554](https://github.com/berkshelf/berkshelf/pull/1554) ([tyler-ball](https://github.com/tyler-ball))
303
- - fix up @reset's review comments from \#1527 [\#1543](https://github.com/berkshelf/berkshelf/pull/1543) ([thommay](https://github.com/thommay))
304
- - Correct usage of Net::HTTP.new [\#1532](https://github.com/berkshelf/berkshelf/pull/1532) ([xeron](https://github.com/xeron))
305
-
306
- ## [v4.3.2](https://github.com/berkshelf/berkshelf/tree/v4.3.2) (2016-04-06)
307
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.1...v4.3.2)
308
-
309
- **Merged pull requests:**
310
-
311
- - Updating Test Kitchen to the latest version [\#1542](https://github.com/berkshelf/berkshelf/pull/1542) ([tyler-ball](https://github.com/tyler-ball))
312
-
313
- ## [v4.3.1](https://github.com/berkshelf/berkshelf/tree/v4.3.1) (2016-03-23)
314
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.0...v4.3.1)
315
-
316
- **Merged pull requests:**
317
-
318
- - Update all dependencies [\#1535](https://github.com/berkshelf/berkshelf/pull/1535) ([danielsdeleo](https://github.com/danielsdeleo))
319
-
320
- ## [v4.3.0](https://github.com/berkshelf/berkshelf/tree/v4.3.0) (2016-03-09)
321
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.2.3...v4.3.0)
322
-
323
- **Merged pull requests:**
324
-
325
- - update ridley in Gemfile.lock [\#1530](https://github.com/berkshelf/berkshelf/pull/1530) ([mwrock](https://github.com/mwrock))
326
- - fix busted tests [\#1529](https://github.com/berkshelf/berkshelf/pull/1529) ([thommay](https://github.com/thommay))
327
- - Support downloading universe from chef servers [\#1527](https://github.com/berkshelf/berkshelf/pull/1527) ([thommay](https://github.com/thommay))
328
- - Unpin changelog generator to get rid of version conflicts [\#1525](https://github.com/berkshelf/berkshelf/pull/1525) ([jkeiser](https://github.com/jkeiser))
329
-
330
- ## [v4.2.3](https://github.com/berkshelf/berkshelf/tree/v4.2.3) (2016-02-26)
331
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.2.2...v4.2.3)
332
-
333
- **Merged pull requests:**
334
-
335
- - Relax dependencies to accept minor version bumps [\#1523](https://github.com/berkshelf/berkshelf/pull/1523) ([jkeiser](https://github.com/jkeiser))
336
-
337
- ## [v4.2.2](https://github.com/berkshelf/berkshelf/tree/v4.2.2) (2016-02-26)
338
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.2.1...v4.2.2)
339
-
340
- **Merged pull requests:**
341
-
342
- - Bump version to 4.2.2 [\#1522](https://github.com/berkshelf/berkshelf/pull/1522) ([jkeiser](https://github.com/jkeiser))
343
- - Pin github\_changelog\_generator [\#1521](https://github.com/berkshelf/berkshelf/pull/1521) ([jkeiser](https://github.com/jkeiser))
344
-
345
- ## [v4.2.1](https://github.com/berkshelf/berkshelf/tree/v4.2.1) (2016-02-19)
346
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.2.0...v4.2.1)
347
-
348
- **Merged pull requests:**
349
-
350
- - updating httpclient version dep to ~\> 2.7.0 [\#1518](https://github.com/berkshelf/berkshelf/pull/1518) ([someara](https://github.com/someara))
351
-
352
- ## [v4.2.0](https://github.com/berkshelf/berkshelf/tree/v4.2.0) (2016-02-19)
353
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.1.1...v4.2.0)
354
-
355
- **Merged pull requests:**
356
-
357
- - Update the chef-config pin to 12.7.2 [\#1516](https://github.com/berkshelf/berkshelf/pull/1516) ([jaym](https://github.com/jaym))
358
- - Apply locks to local json environment file [\#1512](https://github.com/berkshelf/berkshelf/pull/1512) ([louis-gounot](https://github.com/louis-gounot))
359
-
360
- ## [v4.1.1](https://github.com/berkshelf/berkshelf/tree/v4.1.1) (2016-02-11)
361
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.1.0...v4.1.1)
362
-
363
- **Merged pull requests:**
364
-
365
- - Update solve to 2.0.2 [\#1509](https://github.com/berkshelf/berkshelf/pull/1509) ([danielsdeleo](https://github.com/danielsdeleo))
366
- - Use github\_changelog\_generator [\#1507](https://github.com/berkshelf/berkshelf/pull/1507) ([jkeiser](https://github.com/jkeiser))
367
-
368
- ## [v4.1.0](https://github.com/berkshelf/berkshelf/tree/v4.1.0) (2016-02-04)
369
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.0.1...v4.1.0)
370
-
371
- **Merged pull requests:**
372
-
373
- - remove berkshelf gem entry in generated Gemfile [\#1485](https://github.com/berkshelf/berkshelf/pull/1485) ([reset](https://github.com/reset))
374
- - Pin aruba to 0.10.2 [\#1484](https://github.com/berkshelf/berkshelf/pull/1484) ([smith](https://github.com/smith))
375
- - Add a new `solver` Berksfile DSL option [\#1482](https://github.com/berkshelf/berkshelf/pull/1482) ([martinb3](https://github.com/martinb3))
376
- - Upgrade to solve 2.0 [\#1475](https://github.com/berkshelf/berkshelf/pull/1475) ([jkeiser](https://github.com/jkeiser))
377
- - Use Net::HTTP.new instead of Net::HTTP.start [\#1467](https://github.com/berkshelf/berkshelf/pull/1467) ([jkeiser](https://github.com/jkeiser))
378
- - Have berks install bump only required cookbooks [\#1462](https://github.com/berkshelf/berkshelf/pull/1462) ([FlorentFlament](https://github.com/FlorentFlament))
379
-
380
- ## [v4.0.1](https://github.com/berkshelf/berkshelf/tree/v4.0.1) (2015-10-07)
381
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.0.0...v4.0.1)
382
-
383
- ## [v4.0.0](https://github.com/berkshelf/berkshelf/tree/v4.0.0) (2015-10-06)
384
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.3.0...v4.0.0)
385
-
386
- **Merged pull requests:**
387
-
388
- - When doing 'berks install' Lock cookbooks' version according to the lockfile [\#1460](https://github.com/berkshelf/berkshelf/pull/1460) ([FlorentFlament](https://github.com/FlorentFlament))
389
- - Removes the gzip middleware from Faraday builder. [\#1444](https://github.com/berkshelf/berkshelf/pull/1444) ([johnbellone](https://github.com/johnbellone))
390
-
391
- ## [v3.3.0](https://github.com/berkshelf/berkshelf/tree/v3.3.0) (2015-06-30)
392
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.2.4...v3.3.0)
393
-
394
- **Merged pull requests:**
395
-
396
- - tiny docfixes [\#1434](https://github.com/berkshelf/berkshelf/pull/1434) ([dastergon](https://github.com/dastergon))
397
- - Improved error msg for unknown compression types. [\#1433](https://github.com/berkshelf/berkshelf/pull/1433) ([patcon](https://github.com/patcon))
398
- - Use httpclient instead of nethttp [\#1393](https://github.com/berkshelf/berkshelf/pull/1393) ([jf647](https://github.com/jf647))
399
-
400
- ## [v3.2.4](https://github.com/berkshelf/berkshelf/tree/v3.2.4) (2015-04-30)
401
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.2.3...v3.2.4)
402
-
403
- **Merged pull requests:**
404
-
405
- - Fix defunct link. [\#1417](https://github.com/berkshelf/berkshelf/pull/1417) ([lorefnon](https://github.com/lorefnon))
406
- - Fix link to chef repository article [\#1414](https://github.com/berkshelf/berkshelf/pull/1414) ([Maks3w](https://github.com/Maks3w))
407
- - Chef-DK link has changed [\#1410](https://github.com/berkshelf/berkshelf/pull/1410) ([mreeves1](https://github.com/mreeves1))
408
- - prevent race conditions [\#1398](https://github.com/berkshelf/berkshelf/pull/1398) ([shyouhei](https://github.com/shyouhei))
409
- - SSL verify unrecognized by community\_rest.rb [\#1395](https://github.com/berkshelf/berkshelf/pull/1395) ([oldirty](https://github.com/oldirty))
410
- - Use git: locations over github: in the Gemfile [\#1394](https://github.com/berkshelf/berkshelf/pull/1394) ([jf647](https://github.com/jf647))
411
- - Adding '\*\*/.git' to exclusions. [\#1380](https://github.com/berkshelf/berkshelf/pull/1380) ([vinyar](https://github.com/vinyar))
412
- - fix expected berkshelf-api-server version [\#1374](https://github.com/berkshelf/berkshelf/pull/1374) ([mwrock](https://github.com/mwrock))
413
- - correctly return the max version from searches [\#1373](https://github.com/berkshelf/berkshelf/pull/1373) ([mwrock](https://github.com/mwrock))
414
- - Fix small typos in index.md [\#1372](https://github.com/berkshelf/berkshelf/pull/1372) ([selesse](https://github.com/selesse))
415
-
416
- ## [v3.2.3](https://github.com/berkshelf/berkshelf/tree/v3.2.3) (2015-01-14)
417
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.2.2...v3.2.3)
418
-
419
- **Merged pull requests:**
420
-
421
- - super minor typo fix [\#1367](https://github.com/berkshelf/berkshelf/pull/1367) ([dpetzel](https://github.com/dpetzel))
422
- - Correct help command [\#1365](https://github.com/berkshelf/berkshelf/pull/1365) ([gsf](https://github.com/gsf))
423
- - Fix e.message to show detailed error messages [\#1364](https://github.com/berkshelf/berkshelf/pull/1364) ([sonots](https://github.com/sonots))
424
- - add ConfigurationError [\#1363](https://github.com/berkshelf/berkshelf/pull/1363) ([sonots](https://github.com/sonots))
425
- - Fixed README description of config file search [\#1359](https://github.com/berkshelf/berkshelf/pull/1359) ([BackSlasher](https://github.com/BackSlasher))
426
-
427
- ## [v3.2.2](https://github.com/berkshelf/berkshelf/tree/v3.2.2) (2014-12-18)
428
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.2.1...v3.2.2)
429
-
430
- **Merged pull requests:**
431
-
432
- - Only exclude top-level metadata.rb file while vendoring [\#1353](https://github.com/berkshelf/berkshelf/pull/1353) ([jpruetting](https://github.com/jpruetting))
433
- - Use chef.io [\#1351](https://github.com/berkshelf/berkshelf/pull/1351) ([sethvargo](https://github.com/sethvargo))
434
- - Use chef.io [\#1350](https://github.com/berkshelf/berkshelf/pull/1350) ([sethvargo](https://github.com/sethvargo))
435
- - Fix edge cases with vendoring [\#1342](https://github.com/berkshelf/berkshelf/pull/1342) ([rchekaluk](https://github.com/rchekaluk))
436
-
437
- ## [v3.2.1](https://github.com/berkshelf/berkshelf/tree/v3.2.1) (2014-11-13)
438
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.2.0...v3.2.1)
439
-
440
- **Merged pull requests:**
441
-
442
- - Correct exclusion of metadata.rb [\#1339](https://github.com/berkshelf/berkshelf/pull/1339) ([rveznaver](https://github.com/rveznaver))
443
- - fix chefignore for files in sub directories [\#1335](https://github.com/berkshelf/berkshelf/pull/1335) ([thomas-riccardi](https://github.com/thomas-riccardi))
444
- - Do not leak tempdirs [\#1334](https://github.com/berkshelf/berkshelf/pull/1334) ([sethvargo](https://github.com/sethvargo))
445
-
446
- ## [v3.2.0](https://github.com/berkshelf/berkshelf/tree/v3.2.0) (2014-10-29)
447
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.1.5...v3.2.0)
448
-
449
- **Merged pull requests:**
450
-
451
- - Vagrant: Use vm.box\_url when vm.box is not a Vagrant Cloud box [\#1332](https://github.com/berkshelf/berkshelf/pull/1332) ([jossy](https://github.com/jossy))
452
- - add 'verify' command to Berkshelf [\#1331](https://github.com/berkshelf/berkshelf/pull/1331) ([reset](https://github.com/reset))
453
- - Use Vagrant.has\_plugin? for checking Omnibus [\#1330](https://github.com/berkshelf/berkshelf/pull/1330) ([sethvargo](https://github.com/sethvargo))
454
- - Always expand the full path for BERKSFILE\_PATH [\#1329](https://github.com/berkshelf/berkshelf/pull/1329) ([sethvargo](https://github.com/sethvargo))
455
- - Name the lockfile after the basename of the Berksfile [\#1328](https://github.com/berkshelf/berkshelf/pull/1328) ([sethvargo](https://github.com/sethvargo))
456
- - Include the name of a cookbook when Ridley throws an error [\#1327](https://github.com/berkshelf/berkshelf/pull/1327) ([sethvargo](https://github.com/sethvargo))
457
- - Do not delete the vendor directory [\#1326](https://github.com/berkshelf/berkshelf/pull/1326) ([sethvargo](https://github.com/sethvargo))
458
- - Raised the celluloid version from pre to stable [\#1324](https://github.com/berkshelf/berkshelf/pull/1324) ([tboerger](https://github.com/tboerger))
459
- - Adding a small if-else clause to change upload order [\#1316](https://github.com/berkshelf/berkshelf/pull/1316) ([svanharmelen](https://github.com/svanharmelen))
460
- - Fixing \_PaxHeader\_ error on berks upload [\#1313](https://github.com/berkshelf/berkshelf/pull/1313) ([sbotman](https://github.com/sbotman))
461
- - Fix Graphviz dependency checks on Windows [\#1312](https://github.com/berkshelf/berkshelf/pull/1312) ([glasschef](https://github.com/glasschef))
462
- - Correct the gh-pages docs for the v2.0 `--without` cli arg as `--except` [\#1309](https://github.com/berkshelf/berkshelf/pull/1309) ([steve-jansen](https://github.com/steve-jansen))
463
- - Fix linting issues [\#1301](https://github.com/berkshelf/berkshelf/pull/1301) ([chr4](https://github.com/chr4))
464
- - Fix `berks viz` when `pwd` contains spaces [\#1294](https://github.com/berkshelf/berkshelf/pull/1294) ([ameir](https://github.com/ameir))
465
- - Change 'berkshelf shelf uninstall' -\> 'berks shelf uninstall' [\#1293](https://github.com/berkshelf/berkshelf/pull/1293) ([ameir](https://github.com/ameir))
466
- - Include the forgotten :graphviz tag in visualizer\_spec. [\#1291](https://github.com/berkshelf/berkshelf/pull/1291) ([sersut](https://github.com/sersut))
467
- - Minor typo in cli.rb deprecation message. [\#1289](https://github.com/berkshelf/berkshelf/pull/1289) ([erichelgeson](https://github.com/erichelgeson))
468
- - Add version information to edges of berks viz [\#1286](https://github.com/berkshelf/berkshelf/pull/1286) ([quodlibetor](https://github.com/quodlibetor))
469
- - Fix failing specs and upgrade to RSpec 3 [\#1283](https://github.com/berkshelf/berkshelf/pull/1283) ([sethvargo](https://github.com/sethvargo))
470
- - Use the cleanroom gem for evaluating DSLs [\#1282](https://github.com/berkshelf/berkshelf/pull/1282) ([sethvargo](https://github.com/sethvargo))
471
- - Implement "downloading" for `file\_store` sources [\#991](https://github.com/berkshelf/berkshelf/pull/991) ([whiteley](https://github.com/whiteley))
472
-
473
- ## [v3.1.5](https://github.com/berkshelf/berkshelf/tree/v3.1.5) (2014-08-01)
474
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.1.4...v3.1.5)
475
-
476
- **Merged pull requests:**
477
-
478
- - berks cookbook generator uninitialized constant Berkshelf::CookbookGenerator::LICENSES [\#1268](https://github.com/berkshelf/berkshelf/pull/1268) ([dasibre](https://github.com/dasibre))
479
- - Add Super Market location\_type support [\#1238](https://github.com/berkshelf/berkshelf/pull/1238) ([reset](https://github.com/reset))
480
-
481
- ## [v3.1.4](https://github.com/berkshelf/berkshelf/tree/v3.1.4) (2014-07-14)
482
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.18...v3.1.4)
483
-
484
- **Merged pull requests:**
485
-
486
- - Version bump v3.1.4 [\#1260](https://github.com/berkshelf/berkshelf/pull/1260) ([sethvargo](https://github.com/sethvargo))
487
- - Replace api.berkshelf.com with supermarket.getchef.com [\#1259](https://github.com/berkshelf/berkshelf/pull/1259) ([Maks3w](https://github.com/Maks3w))
488
- - Follow redirects when we try to get a cookbook [\#1258](https://github.com/berkshelf/berkshelf/pull/1258) ([jujugrrr](https://github.com/jujugrrr))
489
- - update all api.berkshelf.com references to supermarket.getchef.com [\#1250](https://github.com/berkshelf/berkshelf/pull/1250) ([reset](https://github.com/reset))
490
-
491
- ## [v2.0.18](https://github.com/berkshelf/berkshelf/tree/v2.0.18) (2014-07-08)
492
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.17...v2.0.18)
493
-
494
- **Merged pull requests:**
495
-
496
- - Follow redirects [\#1251](https://github.com/berkshelf/berkshelf/pull/1251) ([sethvargo](https://github.com/sethvargo))
497
- - Updated default vagrant box to Ubuntu 14.04 from Vagrant Cloud [\#1217](https://github.com/berkshelf/berkshelf/pull/1217) ([jossy](https://github.com/jossy))
498
-
499
- ## [v2.0.17](https://github.com/berkshelf/berkshelf/tree/v2.0.17) (2014-06-10)
500
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.1.3...v2.0.17)
501
-
502
- **Merged pull requests:**
503
-
504
- - Lockdown Hashie \(2.0\) [\#1231](https://github.com/berkshelf/berkshelf/pull/1231) ([sethvargo](https://github.com/sethvargo))
505
-
506
- ## [v3.1.3](https://github.com/berkshelf/berkshelf/tree/v3.1.3) (2014-06-03)
507
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.1.2...v3.1.3)
508
-
509
- **Merged pull requests:**
510
-
511
- - bump ridley and buff dependencies [\#1219](https://github.com/berkshelf/berkshelf/pull/1219) ([reset](https://github.com/reset))
512
- - Fixed a minor typo on the home page [\#1213](https://github.com/berkshelf/berkshelf/pull/1213) ([elektronaut](https://github.com/elektronaut))
513
- - Extract git mixin into its own module [\#1209](https://github.com/berkshelf/berkshelf/pull/1209) ([sethvargo](https://github.com/sethvargo))
514
- - ssl.verify option is ignored [\#1204](https://github.com/berkshelf/berkshelf/pull/1204) ([ohtake](https://github.com/ohtake))
515
- - Fix windows specs [\#1200](https://github.com/berkshelf/berkshelf/pull/1200) ([danielsdeleo](https://github.com/danielsdeleo))
516
- - Skip cached cookbooks missing their name attributes instead of failing [\#1198](https://github.com/berkshelf/berkshelf/pull/1198) ([KAllan357](https://github.com/KAllan357))
517
-
518
- ## [v3.1.2](https://github.com/berkshelf/berkshelf/tree/v3.1.2) (2014-05-08)
519
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.16...v3.1.2)
520
-
521
- **Merged pull requests:**
522
-
523
- - Remove the .git directory for git-sourced cookbooks [\#1194](https://github.com/berkshelf/berkshelf/pull/1194) ([cnunciato](https://github.com/cnunciato))
524
- - Apply environment file artifact [\#1188](https://github.com/berkshelf/berkshelf/pull/1188) ([stephenlauck](https://github.com/stephenlauck))
525
- - Fix typo in show cmd description [\#1187](https://github.com/berkshelf/berkshelf/pull/1187) ([dougireton](https://github.com/dougireton))
526
- - Do not care about ordered output during installation [\#1186](https://github.com/berkshelf/berkshelf/pull/1186) ([sethvargo](https://github.com/sethvargo))
527
- - Update README.md.erb [\#1183](https://github.com/berkshelf/berkshelf/pull/1183) ([mjuszczak](https://github.com/mjuszczak))
528
- - Fix Berkshelf::Graph\#update [\#1182](https://github.com/berkshelf/berkshelf/pull/1182) ([carkmorwin](https://github.com/carkmorwin))
529
- - Update to buff-config ~\> 0.4 [\#1180](https://github.com/berkshelf/berkshelf/pull/1180) ([sethvargo](https://github.com/sethvargo))
530
- - Fix infinite lock check [\#1178](https://github.com/berkshelf/berkshelf/pull/1178) ([mi-wood](https://github.com/mi-wood))
531
- - Create a subclass of the shell instead of a module [\#1177](https://github.com/berkshelf/berkshelf/pull/1177) ([sethvargo](https://github.com/sethvargo))
532
- - remove duplicate faraday dependency [\#1173](https://github.com/berkshelf/berkshelf/pull/1173) ([jamesc](https://github.com/jamesc))
533
- - Handle when Celluloid.cores is nil [\#1169](https://github.com/berkshelf/berkshelf/pull/1169) ([douglaswth](https://github.com/douglaswth))
534
- - Prefer https over http. [\#1168](https://github.com/berkshelf/berkshelf/pull/1168) ([arangamani](https://github.com/arangamani))
535
- - add @graphviz tag to cucumber [\#1165](https://github.com/berkshelf/berkshelf/pull/1165) ([mcquin](https://github.com/mcquin))
536
- - tag tests which require the presence of Graphviz so that they can be exc... [\#1163](https://github.com/berkshelf/berkshelf/pull/1163) ([mcquin](https://github.com/mcquin))
537
- - Add bazaar plugin reference [\#1162](https://github.com/berkshelf/berkshelf/pull/1162) ([Da-Wei](https://github.com/Da-Wei))
538
- - Update Thor API [\#1161](https://github.com/berkshelf/berkshelf/pull/1161) ([sethvargo](https://github.com/sethvargo))
539
-
540
- ## [v2.0.16](https://github.com/berkshelf/berkshelf/tree/v2.0.16) (2014-04-22)
541
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.1.1...v2.0.16)
542
-
543
- **Merged pull requests:**
544
-
545
- - Berkshelf 2.0.15 won't install with Vagrant 1.5.3 [\#1146](https://github.com/berkshelf/berkshelf/pull/1146) ([gaffneyc](https://github.com/gaffneyc))
546
-
547
- ## [v3.1.1](https://github.com/berkshelf/berkshelf/tree/v3.1.1) (2014-04-20)
548
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.1.0...v3.1.1)
549
-
550
- **Merged pull requests:**
551
-
552
- - Bump required Ridley version to 3.1 [\#1143](https://github.com/berkshelf/berkshelf/pull/1143) ([sethvargo](https://github.com/sethvargo))
553
- - Fix outdated checks [\#1142](https://github.com/berkshelf/berkshelf/pull/1142) ([sethvargo](https://github.com/sethvargo))
554
-
555
- ## [v3.1.0](https://github.com/berkshelf/berkshelf/tree/v3.1.0) (2014-04-19)
556
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.1...v3.1.0)
557
-
558
- **Merged pull requests:**
559
-
560
- - Add `berks viz` [\#1137](https://github.com/berkshelf/berkshelf/pull/1137) ([sethvargo](https://github.com/sethvargo))
561
- - minimum viable depsolving exception handling fix [\#1136](https://github.com/berkshelf/berkshelf/pull/1136) ([lamont-granquist](https://github.com/lamont-granquist))
562
- - Typo and edit to index page of docs [\#1133](https://github.com/berkshelf/berkshelf/pull/1133) ([nicgrayson](https://github.com/nicgrayson))
563
- - Change `berks show` to output the path to a cookbook on disk [\#1053](https://github.com/berkshelf/berkshelf/pull/1053) ([sethvargo](https://github.com/sethvargo))
564
-
565
- ## [v3.0.1](https://github.com/berkshelf/berkshelf/tree/v3.0.1) (2014-04-15)
566
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0...v3.0.1)
567
-
568
- **Merged pull requests:**
569
-
570
- - Celluloid worker pool requires at least 2 cores [\#1129](https://github.com/berkshelf/berkshelf/pull/1129) ([sethvargo](https://github.com/sethvargo))
571
-
572
- ## [v3.0.0](https://github.com/berkshelf/berkshelf/tree/v3.0.0) (2014-04-14)
573
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.15...v3.0.0)
574
-
575
- **Merged pull requests:**
576
-
577
- - use celluloid for threaded cookbook downloads [\#1127](https://github.com/berkshelf/berkshelf/pull/1127) ([reset](https://github.com/reset))
578
-
579
- ## [v2.0.15](https://github.com/berkshelf/berkshelf/tree/v2.0.15) (2014-04-14)
580
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.rc1...v2.0.15)
581
-
582
- **Merged pull requests:**
583
-
584
- - `berks vendor` "cannot be trusted!" error [\#1124](https://github.com/berkshelf/berkshelf/pull/1124) ([JeanMertz](https://github.com/JeanMertz))
585
- - Fix community cookbook download error [\#1123](https://github.com/berkshelf/berkshelf/pull/1123) ([carkmorwin](https://github.com/carkmorwin))
586
- - Remove gecode install instructions from README [\#1122](https://github.com/berkshelf/berkshelf/pull/1122) ([danielsdeleo](https://github.com/danielsdeleo))
587
-
588
- ## [v3.0.0.rc1](https://github.com/berkshelf/berkshelf/tree/v3.0.0.rc1) (2014-04-09)
589
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta9...v3.0.0.rc1)
590
-
591
- **Merged pull requests:**
592
-
593
- - Force unlock elements in the graph when reducing [\#1117](https://github.com/berkshelf/berkshelf/pull/1117) ([sethvargo](https://github.com/sethvargo))
594
- - Support transitive update [\#1115](https://github.com/berkshelf/berkshelf/pull/1115) ([sethvargo](https://github.com/sethvargo))
595
- - Nope nope nope, nope, no. This is so fucking dangerous, no. [\#1114](https://github.com/berkshelf/berkshelf/pull/1114) ([reset](https://github.com/reset))
596
- - Support uploading a single cookbook \(transitive dependency\) [\#1112](https://github.com/berkshelf/berkshelf/pull/1112) ([sethvargo](https://github.com/sethvargo))
597
- - use system gecode when building [\#1111](https://github.com/berkshelf/berkshelf/pull/1111) ([reset](https://github.com/reset))
598
- - Dump statuses in gitter [\#1110](https://github.com/berkshelf/berkshelf/pull/1110) ([sethvargo](https://github.com/sethvargo))
599
- - Loosen constraint on Thor [\#1107](https://github.com/berkshelf/berkshelf/pull/1107) ([reset](https://github.com/reset))
600
- - Add `--type` flag to `berks cookbook` command [\#955](https://github.com/berkshelf/berkshelf/pull/955) ([reset](https://github.com/reset))
601
-
602
- ## [v3.0.0.beta9](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta9) (2014-04-07)
603
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta8...v3.0.0.beta9)
604
-
605
- **Merged pull requests:**
606
-
607
- - Update the API to use semverse [\#1106](https://github.com/berkshelf/berkshelf/pull/1106) ([sethvargo](https://github.com/sethvargo))
608
- - BaseLOcation -\> BaseLocation [\#1105](https://github.com/berkshelf/berkshelf/pull/1105) ([EvanPurkhiser](https://github.com/EvanPurkhiser))
609
- - Update API calls to Solve to match 1.0.0.dev [\#1104](https://github.com/berkshelf/berkshelf/pull/1104) ([reset](https://github.com/reset))
610
- - update generator for Vagrant 1.5.x [\#1103](https://github.com/berkshelf/berkshelf/pull/1103) ([reset](https://github.com/reset))
611
-
612
- ## [v3.0.0.beta8](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta8) (2014-04-03)
613
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta7...v3.0.0.beta8)
614
-
615
- **Merged pull requests:**
616
-
617
- - Update Ridley, Faraday, Berkshefl-API, Berkshefl-API-Client [\#1102](https://github.com/berkshelf/berkshelf/pull/1102) ([reset](https://github.com/reset))
618
- - Berks package not producing tarballs compatible with chef-solo [\#1099](https://github.com/berkshelf/berkshelf/pull/1099) ([pghalliday](https://github.com/pghalliday))
619
- - remove Berksfile and Berksfile.lock from generated chefignore file [\#1096](https://github.com/berkshelf/berkshelf/pull/1096) ([reset](https://github.com/reset))
620
- - Add `berks search` command for searching remote sources [\#1092](https://github.com/berkshelf/berkshelf/pull/1092) ([sethvargo](https://github.com/sethvargo))
621
- - Fix location delegation [\#1090](https://github.com/berkshelf/berkshelf/pull/1090) ([sethvargo](https://github.com/sethvargo))
622
- - Add a feature for changing the location for a dependency [\#1089](https://github.com/berkshelf/berkshelf/pull/1089) ([sethvargo](https://github.com/sethvargo))
623
- - Fix equality checking for PathLocations [\#1088](https://github.com/berkshelf/berkshelf/pull/1088) ([sethvargo](https://github.com/sethvargo))
624
- - Add debug logging to the installer [\#1087](https://github.com/berkshelf/berkshelf/pull/1087) ([sethvargo](https://github.com/sethvargo))
625
- - Fix Lockfile\#trusted? bugs [\#1086](https://github.com/berkshelf/berkshelf/pull/1086) ([sethvargo](https://github.com/sethvargo))
626
- - Fix lockfile reduction algorithm \(and other things\) [\#1082](https://github.com/berkshelf/berkshelf/pull/1082) ([sethvargo](https://github.com/sethvargo))
627
- - Fix git location caching [\#1078](https://github.com/berkshelf/berkshelf/pull/1078) ([sethvargo](https://github.com/sethvargo))
628
- - Fix failing tests [\#1075](https://github.com/berkshelf/berkshelf/pull/1075) ([sethvargo](https://github.com/sethvargo))
629
- - Add feature for updating a git location [\#1074](https://github.com/berkshelf/berkshelf/pull/1074) ([sethvargo](https://github.com/sethvargo))
630
- - Updated README for PR \#1045 [\#1070](https://github.com/berkshelf/berkshelf/pull/1070) ([svanharmelen](https://github.com/svanharmelen))
631
- - Add lifecycle command for bumping the local version [\#1065](https://github.com/berkshelf/berkshelf/pull/1065) ([sethvargo](https://github.com/sethvargo))
632
- - Added location\_type :uri [\#1064](https://github.com/berkshelf/berkshelf/pull/1064) ([docwhat](https://github.com/docwhat))
633
- - Suppress default location [\#1062](https://github.com/berkshelf/berkshelf/pull/1062) ([sethvargo](https://github.com/sethvargo))
634
- - Recurse into transitive dependencies when lockfile trusting [\#1058](https://github.com/berkshelf/berkshelf/pull/1058) ([sethvargo](https://github.com/sethvargo))
635
- - Make mercurial specs optional [\#1056](https://github.com/berkshelf/berkshelf/pull/1056) ([sersut](https://github.com/sersut))
636
- - Improve errors [\#1051](https://github.com/berkshelf/berkshelf/pull/1051) ([sethvargo](https://github.com/sethvargo))
637
- - Don't install when uploading [\#1049](https://github.com/berkshelf/berkshelf/pull/1049) ([sethvargo](https://github.com/sethvargo))
638
- - Don't save the lockfile on reduction [\#1048](https://github.com/berkshelf/berkshelf/pull/1048) ([sethvargo](https://github.com/sethvargo))
639
- - Added some logic so it can handle multiple Github configurations [\#1045](https://github.com/berkshelf/berkshelf/pull/1045) ([svanharmelen](https://github.com/svanharmelen))
640
- - Warn us if git isn't found [\#1042](https://github.com/berkshelf/berkshelf/pull/1042) ([jjshoe](https://github.com/jjshoe))
641
- - Treat branches, tags, refs, and revisions differently [\#1035](https://github.com/berkshelf/berkshelf/pull/1035) ([sethvargo](https://github.com/sethvargo))
642
- - Use bundler's parallel downloader for installing [\#1033](https://github.com/berkshelf/berkshelf/pull/1033) ([sethvargo](https://github.com/sethvargo))
643
- - Kernel.autoload Mixins [\#1031](https://github.com/berkshelf/berkshelf/pull/1031) ([sethvargo](https://github.com/sethvargo))
644
- - Coerce Source\#uri to a string when checking if it is the default [\#1029](https://github.com/berkshelf/berkshelf/pull/1029) ([sethvargo](https://github.com/sethvargo))
645
- - update README for oh-my-zsh plugin [\#1028](https://github.com/berkshelf/berkshelf/pull/1028) ([shengyou](https://github.com/shengyou))
646
- - Add feature for vendoring transitive dependencies in path locations [\#1027](https://github.com/berkshelf/berkshelf/pull/1027) ([sethvargo](https://github.com/sethvargo))
647
- - Make formatters object-oriented so we can Autoload them [\#1020](https://github.com/berkshelf/berkshelf/pull/1020) ([sethvargo](https://github.com/sethvargo))
648
-
649
- ## [v3.0.0.beta7](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta7) (2014-02-21)
650
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta6...v3.0.0.beta7)
651
-
652
- **Merged pull requests:**
653
-
654
- - Add feature for vendoring transitive dependencies [\#1026](https://github.com/berkshelf/berkshelf/pull/1026) ([sethvargo](https://github.com/sethvargo))
655
- - Update Vagrantfile.erb [\#1022](https://github.com/berkshelf/berkshelf/pull/1022) ([berniedurfee](https://github.com/berniedurfee))
656
- - Don't load Octokit until we need it [\#1017](https://github.com/berkshelf/berkshelf/pull/1017) ([sethvargo](https://github.com/sethvargo))
657
- - Refactor the lockfile to separate top-level dependencies from the graph [\#1009](https://github.com/berkshelf/berkshelf/pull/1009) ([sethvargo](https://github.com/sethvargo))
658
- - Missing CHANGELOG.md [\#1007](https://github.com/berkshelf/berkshelf/pull/1007) ([jasnab](https://github.com/jasnab))
659
- - berks vendor does not work if the path is nested [\#984](https://github.com/berkshelf/berkshelf/pull/984) ([rteabeault](https://github.com/rteabeault))
660
- - Remove implicit default source [\#983](https://github.com/berkshelf/berkshelf/pull/983) ([borntyping](https://github.com/borntyping))
661
- - Raise on all commands when install is required but not performed [\#949](https://github.com/berkshelf/berkshelf/pull/949) ([reset](https://github.com/reset))
662
-
663
- ## [v3.0.0.beta6](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta6) (2014-02-07)
664
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.14...v3.0.0.beta6)
665
-
666
- ## [v2.0.14](https://github.com/berkshelf/berkshelf/tree/v2.0.14) (2014-02-04)
667
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta5...v2.0.14)
668
-
669
- **Merged pull requests:**
670
-
671
- - Update berksfile.rb [\#1006](https://github.com/berkshelf/berkshelf/pull/1006) ([erichelgeson](https://github.com/erichelgeson))
672
- - Backport metadata.json detection logic to berks2 [\#1004](https://github.com/berkshelf/berkshelf/pull/1004) ([ivey](https://github.com/ivey))
673
- - Sane defaults for OSX and keep current dir [\#1000](https://github.com/berkshelf/berkshelf/pull/1000) ([mjallday](https://github.com/mjallday))
674
- - Issue 978 - Make sure to add dependencies to artifacts that are loaded from the cookbook store [\#997](https://github.com/berkshelf/berkshelf/pull/997) ([rteabeault](https://github.com/rteabeault))
675
-
676
- ## [v3.0.0.beta5](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta5) (2014-01-20)
677
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.13...v3.0.0.beta5)
678
-
679
- ## [v2.0.13](https://github.com/berkshelf/berkshelf/tree/v2.0.13) (2014-01-20)
680
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.12...v2.0.13)
681
-
682
- **Merged pull requests:**
683
-
684
- - Fix extra whitespace when commented line is empty [\#989](https://github.com/berkshelf/berkshelf/pull/989) ([cpuguy83](https://github.com/cpuguy83))
685
- - enable downloading from private github repos [\#982](https://github.com/berkshelf/berkshelf/pull/982) ([punkle](https://github.com/punkle))
686
-
687
- ## [v2.0.12](https://github.com/berkshelf/berkshelf/tree/v2.0.12) (2014-01-08)
688
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.11...v2.0.12)
689
-
690
- ## [v2.0.11](https://github.com/berkshelf/berkshelf/tree/v2.0.11) (2014-01-07)
691
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta4...v2.0.11)
692
-
693
- **Merged pull requests:**
694
-
695
- - Make sure path/scm location is used during dependency resolution [\#976](https://github.com/berkshelf/berkshelf/pull/976) ([grobie](https://github.com/grobie))
696
- - Fix typo [\#974](https://github.com/berkshelf/berkshelf/pull/974) ([gregkare](https://github.com/gregkare))
697
- - improve warnings when receiving APIClientErrors when building universe [\#971](https://github.com/berkshelf/berkshelf/pull/971) ([reset](https://github.com/reset))
698
- - Berkshelf 3 overrides custom cookbooks w/ "locked\_version" of community cookbooks. [\#963](https://github.com/berkshelf/berkshelf/pull/963) ([joestump](https://github.com/joestump))
699
- - Added a Berkshelf 3 notice to the homepage. [\#962](https://github.com/berkshelf/berkshelf/pull/962) ([joestump](https://github.com/joestump))
700
- - Added a warning about Berkshelf 2 being unsupported and a link to how to install 3. [\#960](https://github.com/berkshelf/berkshelf/pull/960) ([joestump](https://github.com/joestump))
701
- - Add deprecation warning for `berks install --path` [\#954](https://github.com/berkshelf/berkshelf/pull/954) ([reset](https://github.com/reset))
702
- - more robust checking for bash completion [\#951](https://github.com/berkshelf/berkshelf/pull/951) ([invsblduck](https://github.com/invsblduck))
703
- - properly handle error codes other than 200 from api server [\#948](https://github.com/berkshelf/berkshelf/pull/948) ([reset](https://github.com/reset))
704
- - add a github downloader [\#947](https://github.com/berkshelf/berkshelf/pull/947) ([punkle](https://github.com/punkle))
705
- - Make Berkshelf API Client it's own gem [\#945](https://github.com/berkshelf/berkshelf/pull/945) ([sethvargo](https://github.com/sethvargo))
706
- - add open timeout and timeout settings to API client [\#944](https://github.com/berkshelf/berkshelf/pull/944) ([reset](https://github.com/reset))
707
- - add \#warn function to formatters [\#943](https://github.com/berkshelf/berkshelf/pull/943) ([reset](https://github.com/reset))
708
- - Greatly improve `berks package` command [\#942](https://github.com/berkshelf/berkshelf/pull/942) ([reset](https://github.com/reset))
709
- - properly identify a cookbook on disk by it's metadata [\#941](https://github.com/berkshelf/berkshelf/pull/941) ([reset](https://github.com/reset))
710
- - Make 'package' command to filter hidden files from chefignore [\#940](https://github.com/berkshelf/berkshelf/pull/940) ([noorul](https://github.com/noorul))
711
- - berksfile.lock not honored for transitive dependencies [\#939](https://github.com/berkshelf/berkshelf/pull/939) ([keiths-osc](https://github.com/keiths-osc))
712
- - Looking for wrong version [\#907](https://github.com/berkshelf/berkshelf/pull/907) ([scalp42](https://github.com/scalp42))
713
- - exception info swallowed when git protocol doesn't work [\#879](https://github.com/berkshelf/berkshelf/pull/879) ([cjerdonek](https://github.com/cjerdonek))
714
- - `berks install --quiet` mutes error output [\#827](https://github.com/berkshelf/berkshelf/pull/827) ([torandu](https://github.com/torandu))
715
-
716
- ## [v3.0.0.beta4](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta4) (2013-12-05)
717
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta3...v3.0.0.beta4)
718
-
719
- **Merged pull requests:**
720
-
721
- - Ensure Berksfile.lock goes along with vendored cookbooks [\#935](https://github.com/berkshelf/berkshelf/pull/935) ([reset](https://github.com/reset))
722
- - locked\_version must be present for all items in Lockfile [\#934](https://github.com/berkshelf/berkshelf/pull/934) ([reset](https://github.com/reset))
723
- - berks apply is an action on a lockfile, not a berksfile [\#933](https://github.com/berkshelf/berkshelf/pull/933) ([reset](https://github.com/reset))
724
- - Fix for tests on Windows [\#926](https://github.com/berkshelf/berkshelf/pull/926) ([rarenerd](https://github.com/rarenerd))
725
- - generate instructions for using edge berkshelf + vagrant-berkshelf [\#925](https://github.com/berkshelf/berkshelf/pull/925) ([reset](https://github.com/reset))
726
- - metadata.rb should be compiled into metadata.json before vendoring [\#923](https://github.com/berkshelf/berkshelf/pull/923) ([reset](https://github.com/reset))
727
- - Address issue \#921: clarify configuration documentation [\#922](https://github.com/berkshelf/berkshelf/pull/922) ([cjerdonek](https://github.com/cjerdonek))
728
- - Fix handling chefignore [\#917](https://github.com/berkshelf/berkshelf/pull/917) ([chulkilee](https://github.com/chulkilee))
729
- - improvements to generated README [\#915](https://github.com/berkshelf/berkshelf/pull/915) ([reset](https://github.com/reset))
730
- - Update org locs [\#909](https://github.com/berkshelf/berkshelf/pull/909) ([reset](https://github.com/reset))
731
- - Removed Outdated Vagrant configuration [\#905](https://github.com/berkshelf/berkshelf/pull/905) ([gosuri](https://github.com/gosuri))
732
- - Remove the `berks configure` command [\#903](https://github.com/berkshelf/berkshelf/pull/903) ([sethvargo](https://github.com/sethvargo))
733
- - Rebase and rename branch of pull request \#871 [\#881](https://github.com/berkshelf/berkshelf/pull/881) ([cjerdonek](https://github.com/cjerdonek))
734
- - Address issue \#845: Raise a helpful error if github location ends in .git [\#874](https://github.com/berkshelf/berkshelf/pull/874) ([cjerdonek](https://github.com/cjerdonek))
735
- - Workaround issue where Cygwin Git will create a directory called C: in [\#872](https://github.com/berkshelf/berkshelf/pull/872) ([douglaswth](https://github.com/douglaswth))
736
- - Equality pinning forward port [\#870](https://github.com/berkshelf/berkshelf/pull/870) ([capoferro](https://github.com/capoferro))
737
- - improve git location display for issue \#867 [\#869](https://github.com/berkshelf/berkshelf/pull/869) ([cjerdonek](https://github.com/cjerdonek))
738
- - Add skip\_syntax\_check feature again [\#866](https://github.com/berkshelf/berkshelf/pull/866) ([josacar](https://github.com/josacar))
739
- - Berkshelf 3 Fixes - Logging and Output [\#865](https://github.com/berkshelf/berkshelf/pull/865) ([KAllan357](https://github.com/KAllan357))
740
- - 'berks list' does an implicit 'install' [\#833](https://github.com/berkshelf/berkshelf/pull/833) ([jeffkimble](https://github.com/jeffkimble))
741
-
742
- ## [v3.0.0.beta3](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta3) (2013-10-17)
743
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.10...v3.0.0.beta3)
744
-
745
- **Merged pull requests:**
746
-
747
- - Fix bersk\* typos [\#863](https://github.com/berkshelf/berkshelf/pull/863) ([justincampbell](https://github.com/justincampbell))
748
- - \[README.md\] fixed numbered-list formatting error in Contributing section [\#850](https://github.com/berkshelf/berkshelf/pull/850) ([caryp](https://github.com/caryp))
749
- - Updated README.md template to match the latest version in knife [\#848](https://github.com/berkshelf/berkshelf/pull/848) ([caryp](https://github.com/caryp))
750
- - Reduce the number of remote API calls in setup steps and refactor cucumber tests [\#844](https://github.com/berkshelf/berkshelf/pull/844) ([sethvargo](https://github.com/sethvargo))
751
- - Avoid reloading each cached cookbook on every resolve [\#842](https://github.com/berkshelf/berkshelf/pull/842) ([sethvargo](https://github.com/sethvargo))
752
- - If there is a locked\_version, check the CookbookStore directly [\#841](https://github.com/berkshelf/berkshelf/pull/841) ([sethvargo](https://github.com/sethvargo))
753
- - bump celluloid/ridley dependencies [\#840](https://github.com/berkshelf/berkshelf/pull/840) ([reset](https://github.com/reset))
754
- - Equality pinning 2 0 [\#838](https://github.com/berkshelf/berkshelf/pull/838) ([sethvargo](https://github.com/sethvargo))
755
- - use HTTPS instead of HTTP for api.berkshelf.com [\#837](https://github.com/berkshelf/berkshelf/pull/837) ([reset](https://github.com/reset))
756
- - Standardize cucumber tests [\#776](https://github.com/berkshelf/berkshelf/pull/776) ([sethvargo](https://github.com/sethvargo))
757
-
758
- ## [v2.0.10](https://github.com/berkshelf/berkshelf/tree/v2.0.10) (2013-09-01)
759
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.9...v2.0.10)
760
-
761
- **Merged pull requests:**
762
-
763
- - Avoid reloading each cached cookbook on every resolve [\#829](https://github.com/berkshelf/berkshelf/pull/829) ([kainosnoema](https://github.com/kainosnoema))
764
- - Accept an environment variable to debug solve [\#824](https://github.com/berkshelf/berkshelf/pull/824) ([sethvargo](https://github.com/sethvargo))
765
- - `berks init` should raise a friendly error if the current directory does not contain a cookbook [\#821](https://github.com/berkshelf/berkshelf/pull/821) ([reset](https://github.com/reset))
766
- - Allow chef client name and key to be overridden for cookbook uploads [\#818](https://github.com/berkshelf/berkshelf/pull/818) ([keiths-osc](https://github.com/keiths-osc))
767
- - Allow chef client name and key to be overridden for cookbook uploads [\#817](https://github.com/berkshelf/berkshelf/pull/817) ([keiths-osc](https://github.com/keiths-osc))
768
- - generate new Vagrantfile's with 1.9 style hashes [\#813](https://github.com/berkshelf/berkshelf/pull/813) ([reset](https://github.com/reset))
769
-
770
- ## [v2.0.9](https://github.com/berkshelf/berkshelf/tree/v2.0.9) (2013-08-22)
771
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.8...v2.0.9)
772
-
773
- **Merged pull requests:**
774
-
775
- - Bump ridley [\#812](https://github.com/berkshelf/berkshelf/pull/812) ([reset](https://github.com/reset))
776
- - Dependencies with a path location take precedence over locked ones [\#809](https://github.com/berkshelf/berkshelf/pull/809) ([reset](https://github.com/reset))
777
- - Support -h and --help flags on subcommands [\#806](https://github.com/berkshelf/berkshelf/pull/806) ([sethvargo](https://github.com/sethvargo))
778
- - Enable use of vagrant-omnibus plugin in generated vagrant files [\#799](https://github.com/berkshelf/berkshelf/pull/799) ([pghalliday](https://github.com/pghalliday))
779
- - Fixed bash-completion directory path [\#797](https://github.com/berkshelf/berkshelf/pull/797) ([chrisyunker](https://github.com/chrisyunker))
780
- - Use HTTPS by default for community API [\#775](https://github.com/berkshelf/berkshelf/pull/775) ([coderanger](https://github.com/coderanger))
781
- - Fix issue where location is nil for cookbook that is in the cache [\#772](https://github.com/berkshelf/berkshelf/pull/772) ([b-dean](https://github.com/b-dean))
782
- - Refactor ChefIgnore [\#748](https://github.com/berkshelf/berkshelf/pull/748) ([sethvargo](https://github.com/sethvargo))
783
-
784
- ## [v2.0.8](https://github.com/berkshelf/berkshelf/tree/v2.0.8) (2013-08-02)
785
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta2...v2.0.8)
786
-
787
- **Merged pull requests:**
788
-
789
- - relax constraint on ridley to ~\> 1.5 [\#786](https://github.com/berkshelf/berkshelf/pull/786) ([reset](https://github.com/reset))
790
- - bump required solve version \>= 0.8.0 [\#783](https://github.com/berkshelf/berkshelf/pull/783) ([reset](https://github.com/reset))
791
- - Missing backtick on incompatible version error [\#782](https://github.com/berkshelf/berkshelf/pull/782) ([fromonesrc](https://github.com/fromonesrc))
792
- - From bug https://github.com/RiotGames/berkshelf/issues/758 [\#778](https://github.com/berkshelf/berkshelf/pull/778) ([riotcku](https://github.com/riotcku))
793
- - clean hard tabs [\#771](https://github.com/berkshelf/berkshelf/pull/771) ([j4y](https://github.com/j4y))
794
- - When Cucumber can’t find a matching Step Definition [\#768](https://github.com/berkshelf/berkshelf/pull/768) ([sethvargo](https://github.com/sethvargo))
795
- - @tknerr metadata deps not honored [\#717](https://github.com/berkshelf/berkshelf/pull/717) ([sethvargo](https://github.com/sethvargo))
796
-
797
- ## [v3.0.0.beta2](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta2) (2013-07-19)
798
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta1...v3.0.0.beta2)
799
-
800
- **Merged pull requests:**
801
-
802
- - skip uploading an already uploaded metadata dependency [\#769](https://github.com/berkshelf/berkshelf/pull/769) ([reset](https://github.com/reset))
803
- - Fix skipped outdated formatter [\#767](https://github.com/berkshelf/berkshelf/pull/767) ([sethvargo](https://github.com/sethvargo))
804
- - Berksfile.lock overwritten? [\#765](https://github.com/berkshelf/berkshelf/pull/765) ([sfiggins](https://github.com/sfiggins))
805
- - Fix a lost commit [\#763](https://github.com/berkshelf/berkshelf/pull/763) ([sethvargo](https://github.com/sethvargo))
806
- - change default vendor location to 'berks-cookbooks' [\#757](https://github.com/berkshelf/berkshelf/pull/757) ([reset](https://github.com/reset))
807
- - Don't install cookbooks when looking for outdated ones [\#755](https://github.com/berkshelf/berkshelf/pull/755) ([sethvargo](https://github.com/sethvargo))
808
- - Only show failing specs and cukes on Travis [\#753](https://github.com/berkshelf/berkshelf/pull/753) ([sethvargo](https://github.com/sethvargo))
809
- - Listen to the lockfile [\#752](https://github.com/berkshelf/berkshelf/pull/752) ([sethvargo](https://github.com/sethvargo))
810
- - `Berks package` should packaging properly for chef-solo [\#749](https://github.com/berkshelf/berkshelf/pull/749) ([johntdyer](https://github.com/johntdyer))
811
- - Mercurial Support \(rebased\) [\#746](https://github.com/berkshelf/berkshelf/pull/746) ([mryan43](https://github.com/mryan43))
812
- - Remove unused fixtures [\#744](https://github.com/berkshelf/berkshelf/pull/744) ([sethvargo](https://github.com/sethvargo))
813
- - Fix RSpec deprecation error [\#742](https://github.com/berkshelf/berkshelf/pull/742) ([sethvargo](https://github.com/sethvargo))
814
- - Use Ridley::Chef::Config [\#741](https://github.com/berkshelf/berkshelf/pull/741) ([sethvargo](https://github.com/sethvargo))
815
- - `berks show` should not install cookbooks for the end user [\#740](https://github.com/berkshelf/berkshelf/pull/740) ([reset](https://github.com/reset))
816
- - Rescue all errors, include Errno::EDENT [\#736](https://github.com/berkshelf/berkshelf/pull/736) ([sethvargo](https://github.com/sethvargo))
817
- - Rescue all errors when evaluating the Berksfile [\#735](https://github.com/berkshelf/berkshelf/pull/735) ([sethvargo](https://github.com/sethvargo))
818
- - Just output the version string instead of License and Authors as well [\#733](https://github.com/berkshelf/berkshelf/pull/733) ([sethvargo](https://github.com/sethvargo))
819
- - Properly implement `berks outdated` [\#731](https://github.com/berkshelf/berkshelf/pull/731) ([reset](https://github.com/reset))
820
- - `berks vendor` command to replace `berks install --path` [\#729](https://github.com/berkshelf/berkshelf/pull/729) ([reset](https://github.com/reset))
821
- - Always raise exception when uploading a metadata frozen cookbook [\#692](https://github.com/berkshelf/berkshelf/pull/692) ([sethvargo](https://github.com/sethvargo))
822
- - Fix lockfile speed issues \(master\) [\#684](https://github.com/berkshelf/berkshelf/pull/684) ([sethvargo](https://github.com/sethvargo))
823
-
824
- ## [v3.0.0.beta1](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta1) (2013-07-12)
825
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.7...v3.0.0.beta1)
826
-
827
- **Merged pull requests:**
828
-
829
- - Use the Berkshelf API Server in the resolver [\#693](https://github.com/berkshelf/berkshelf/pull/693) ([reset](https://github.com/reset))
830
-
831
- ## [v2.0.7](https://github.com/berkshelf/berkshelf/tree/v2.0.7) (2013-07-12)
832
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.6...v2.0.7)
833
-
834
- **Merged pull requests:**
835
-
836
- - Fix generator files to allow multiple hyphens in cookbook\_name [\#732](https://github.com/berkshelf/berkshelf/pull/732) ([maoe](https://github.com/maoe))
837
- - Lockfile load 2 0 stable [\#728](https://github.com/berkshelf/berkshelf/pull/728) ([sethvargo](https://github.com/sethvargo))
838
- - Rescue CookbookNotFound in lockfile\#load! [\#727](https://github.com/berkshelf/berkshelf/pull/727) ([sethvargo](https://github.com/sethvargo))
839
- - Fixing issue with relative cookbook paths while processing a Berksfile \(Issue 721\) [\#723](https://github.com/berkshelf/berkshelf/pull/723) ([krmichelos](https://github.com/krmichelos))
840
- - Fixing issue with relative cookbook paths while processing a Berksfile \(Issue 721\) [\#722](https://github.com/berkshelf/berkshelf/pull/722) ([krmichelos](https://github.com/krmichelos))
841
- - Fixed 'greater than equal to' symbol in index.md [\#720](https://github.com/berkshelf/berkshelf/pull/720) ([kppullin](https://github.com/kppullin))
842
-
843
- ## [v2.0.6](https://github.com/berkshelf/berkshelf/tree/v2.0.6) (2013-07-03)
844
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.5...v2.0.6)
845
-
846
- **Merged pull requests:**
847
-
848
- - clarify usage of branch, tag and ref keys [\#719](https://github.com/berkshelf/berkshelf/pull/719) ([josephholsten](https://github.com/josephholsten))
849
- - Add test for Unicode characters [\#716](https://github.com/berkshelf/berkshelf/pull/716) ([sethvargo](https://github.com/sethvargo))
850
- - Add test for Unicode characters [\#715](https://github.com/berkshelf/berkshelf/pull/715) ([sethvargo](https://github.com/sethvargo))
851
- - Backport dependencies fixes [\#711](https://github.com/berkshelf/berkshelf/pull/711) ([sethvargo](https://github.com/sethvargo))
852
- - ActiveSupport 4.0 breaks everything [\#710](https://github.com/berkshelf/berkshelf/pull/710) ([coderanger](https://github.com/coderanger))
853
- - Move back to a single builder [\#698](https://github.com/berkshelf/berkshelf/pull/698) ([sethvargo](https://github.com/sethvargo))
854
- - Remove support for Ruby 1.9.2 [\#697](https://github.com/berkshelf/berkshelf/pull/697) ([sethvargo](https://github.com/sethvargo))
855
- - always resolve dependencies [\#694](https://github.com/berkshelf/berkshelf/pull/694) ([thommay](https://github.com/thommay))
856
- - Speed up aruba [\#504](https://github.com/berkshelf/berkshelf/pull/504) ([sethvargo](https://github.com/sethvargo))
857
-
858
- ## [v2.0.5](https://github.com/berkshelf/berkshelf/tree/v2.0.5) (2013-06-21)
859
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.4...v2.0.5)
860
-
861
- **Merged pull requests:**
862
-
863
- - Gracefully fail LockfileParserError and handle empty lockfiles [\#687](https://github.com/berkshelf/berkshelf/pull/687) ([sethvargo](https://github.com/sethvargo))
864
- - If a Berksfile.lock is empty, berks stacktraces trying to read it [\#686](https://github.com/berkshelf/berkshelf/pull/686) ([capoferro](https://github.com/capoferro))
865
- - Fix lockfile speed issues \(2-0-stable\) [\#683](https://github.com/berkshelf/berkshelf/pull/683) ([sethvargo](https://github.com/sethvargo))
866
- - Forwardport lockfile fixes [\#681](https://github.com/berkshelf/berkshelf/pull/681) ([sethvargo](https://github.com/sethvargo))
867
- - remove dependency on active support [\#678](https://github.com/berkshelf/berkshelf/pull/678) ([reset](https://github.com/reset))
868
- - run unit and acceptance tests at the same time [\#677](https://github.com/berkshelf/berkshelf/pull/677) ([reset](https://github.com/reset))
869
- - handle gzipped responses from the community site [\#675](https://github.com/berkshelf/berkshelf/pull/675) ([reset](https://github.com/reset))
870
- - replace Chozo::Config with Buff::Config [\#673](https://github.com/berkshelf/berkshelf/pull/673) ([reset](https://github.com/reset))
871
-
872
- ## [v2.0.4](https://github.com/berkshelf/berkshelf/tree/v2.0.4) (2013-06-17)
873
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.6...v2.0.4)
874
-
875
- **Merged pull requests:**
876
-
877
- - Rename lockfile sources to dependencies [\#665](https://github.com/berkshelf/berkshelf/pull/665) ([sethvargo](https://github.com/sethvargo))
878
- - Read error message master \(3.0\) [\#663](https://github.com/berkshelf/berkshelf/pull/663) ([sethvargo](https://github.com/sethvargo))
879
- - Read error message in BerksfileReadError \(2.0\) [\#662](https://github.com/berkshelf/berkshelf/pull/662) ([sethvargo](https://github.com/sethvargo))
880
- - Remove explicit TK Dependency [\#659](https://github.com/berkshelf/berkshelf/pull/659) ([reset](https://github.com/reset))
881
- - Use .values instead of mapping the hash \(3.0\) [\#653](https://github.com/berkshelf/berkshelf/pull/653) ([sethvargo](https://github.com/sethvargo))
882
- - Use .values instead of mapping the hash \(2.0\) [\#652](https://github.com/berkshelf/berkshelf/pull/652) ([sethvargo](https://github.com/sethvargo))
883
- - Remove a test that creeped in from master [\#651](https://github.com/berkshelf/berkshelf/pull/651) ([sethvargo](https://github.com/sethvargo))
884
- - Fix broken metadata constraints [\#648](https://github.com/berkshelf/berkshelf/pull/648) ([sethvargo](https://github.com/sethvargo))
885
- - Regression in speed improvements when installing with a Berksfile.lock [\#646](https://github.com/berkshelf/berkshelf/pull/646) ([reset](https://github.com/reset))
886
- - rename cookbook source/sources to dependency/dependencies [\#640](https://github.com/berkshelf/berkshelf/pull/640) ([reset](https://github.com/reset))
887
- - File syntax check [\#632](https://github.com/berkshelf/berkshelf/pull/632) ([sethvargo](https://github.com/sethvargo))
888
- - `berks install` should not write a locked version for a cookbook installed by `metadata` [\#623](https://github.com/berkshelf/berkshelf/pull/623) ([reset](https://github.com/reset))
889
-
890
- ## [v1.4.6](https://github.com/berkshelf/berkshelf/tree/v1.4.6) (2013-06-11)
891
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.3...v1.4.6)
892
-
893
- **Merged pull requests:**
894
-
895
- - Merge pull request \#629 from RiotGames/rel\_lockfile [\#644](https://github.com/berkshelf/berkshelf/pull/644) ([reset](https://github.com/reset))
896
- - Merge pull request \#642 from RiotGames/use-mixin-shellout [\#643](https://github.com/berkshelf/berkshelf/pull/643) ([reset](https://github.com/reset))
897
- - use Mixin::ShellOut instead of Ridley::Mixin::ShellOut [\#642](https://github.com/berkshelf/berkshelf/pull/642) ([reset](https://github.com/reset))
898
- - Add bzip2 tarball support [\#641](https://github.com/berkshelf/berkshelf/pull/641) ([pdf](https://github.com/pdf))
899
- - cached relative path of git repo broken in 2.0.1 [\#629](https://github.com/berkshelf/berkshelf/pull/629) ([bhouse](https://github.com/bhouse))
900
- - Fix metadata nested constraints [\#626](https://github.com/berkshelf/berkshelf/pull/626) ([sethvargo](https://github.com/sethvargo))
901
- - Full backport default locations [\#598](https://github.com/berkshelf/berkshelf/pull/598) ([sethvargo](https://github.com/sethvargo))
902
-
903
- ## [v2.0.3](https://github.com/berkshelf/berkshelf/tree/v2.0.3) (2013-06-11)
904
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.2...v2.0.3)
905
-
906
- **Merged pull requests:**
907
-
908
- - pass blocks to methods exposed by Mixin::DSLEval [\#638](https://github.com/berkshelf/berkshelf/pull/638) ([reset](https://github.com/reset))
909
-
910
- ## [v2.0.2](https://github.com/berkshelf/berkshelf/tree/v2.0.2) (2013-06-11)
911
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.1...v2.0.2)
912
-
913
- **Merged pull requests:**
914
-
915
- - use Ridley's ShellOut to fix issues with thread saftey and windows [\#636](https://github.com/berkshelf/berkshelf/pull/636) ([reset](https://github.com/reset))
916
- - move thor/monkies to thor\_ext [\#635](https://github.com/berkshelf/berkshelf/pull/635) ([reset](https://github.com/reset))
917
- - only expose methods we want to the Berksfile DSL [\#634](https://github.com/berkshelf/berkshelf/pull/634) ([reset](https://github.com/reset))
918
- - berks upload --skip-dependencies goes down in flames [\#631](https://github.com/berkshelf/berkshelf/pull/631) ([thommay](https://github.com/thommay))
919
- - Unknown license error when running `berks cookbook` [\#624](https://github.com/berkshelf/berkshelf/pull/624) ([dougireton](https://github.com/dougireton))
920
-
921
- ## [v2.0.1](https://github.com/berkshelf/berkshelf/tree/v2.0.1) (2013-06-07)
922
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.0...v2.0.1)
923
-
924
- **Merged pull requests:**
925
-
926
- - CLI does not actually respect the `-c` flag [\#622](https://github.com/berkshelf/berkshelf/pull/622) ([reset](https://github.com/reset))
927
- - Debug/Verbose logging is broken [\#621](https://github.com/berkshelf/berkshelf/pull/621) ([reset](https://github.com/reset))
928
- - Berksfile will now be installed instead of resolved before upload [\#620](https://github.com/berkshelf/berkshelf/pull/620) ([reset](https://github.com/reset))
929
- - Bump .ruby-version to 1.9.3-p429 \[ci skip\] [\#619](https://github.com/berkshelf/berkshelf/pull/619) ([sethvargo](https://github.com/sethvargo))
930
- - Fixing the version location in outdated source error message [\#618](https://github.com/berkshelf/berkshelf/pull/618) ([jeremyolliver](https://github.com/jeremyolliver))
931
-
932
- ## [v2.0.0](https://github.com/berkshelf/berkshelf/tree/v2.0.0) (2013-06-06)
933
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.5...v2.0.0)
934
-
935
- **Merged pull requests:**
936
-
937
- - test command registered to the CLI properly [\#610](https://github.com/berkshelf/berkshelf/pull/610) ([reset](https://github.com/reset))
938
- - remove all @author tags from source - rely on gemspec/readme/license [\#609](https://github.com/berkshelf/berkshelf/pull/609) ([reset](https://github.com/reset))
939
- - add Seth Vargo to authors list [\#608](https://github.com/berkshelf/berkshelf/pull/608) ([reset](https://github.com/reset))
940
- - Berks cookbook misplaces files [\#603](https://github.com/berkshelf/berkshelf/pull/603) ([sethvargo](https://github.com/sethvargo))
941
- - remove quotes around `ref` as they will break `:git` locations \(at least... [\#602](https://github.com/berkshelf/berkshelf/pull/602) ([tknerr](https://github.com/tknerr))
942
- - Turns out the default sites were actually broken... [\#599](https://github.com/berkshelf/berkshelf/pull/599) ([sethvargo](https://github.com/sethvargo))
943
- - Don't generate real keys [\#596](https://github.com/berkshelf/berkshelf/pull/596) ([sethvargo](https://github.com/sethvargo))
944
- - Take \#2 at replacing MixLib::Shellout [\#593](https://github.com/berkshelf/berkshelf/pull/593) ([sethvargo](https://github.com/sethvargo))
945
- - Chef Zero still broken [\#592](https://github.com/berkshelf/berkshelf/pull/592) ([sethvargo](https://github.com/sethvargo))
946
- - Bring berkshelf specs up to the latest chef-zero [\#589](https://github.com/berkshelf/berkshelf/pull/589) ([jkeiser](https://github.com/jkeiser))
947
- - `berks shelf show` should take an optional VERSION argument [\#586](https://github.com/berkshelf/berkshelf/pull/586) ([reset](https://github.com/reset))
948
- - :json is not registered on Faraday::Response \(RuntimeError\) [\#581](https://github.com/berkshelf/berkshelf/pull/581) ([mconigliaro](https://github.com/mconigliaro))
949
- - Create `berks shelf` [\#579](https://github.com/berkshelf/berkshelf/pull/579) ([sethvargo](https://github.com/sethvargo))
950
- - Convert many things to single quotes [\#575](https://github.com/berkshelf/berkshelf/pull/575) ([sethvargo](https://github.com/sethvargo))
951
- - Remove mixlib-config as a dependency [\#571](https://github.com/berkshelf/berkshelf/pull/571) ([sethvargo](https://github.com/sethvargo))
952
- - Speed up \#show command and operate off a Berksfile [\#564](https://github.com/berkshelf/berkshelf/pull/564) ([sethvargo](https://github.com/sethvargo))
953
- - Require a Berksfile for the \#info command [\#563](https://github.com/berkshelf/berkshelf/pull/563) ([sethvargo](https://github.com/sethvargo))
954
- - Speed up Lockfile feature [\#559](https://github.com/berkshelf/berkshelf/pull/559) ([sethvargo](https://github.com/sethvargo))
955
- - Allow user to specify licenses [\#543](https://github.com/berkshelf/berkshelf/pull/543) ([sethvargo](https://github.com/sethvargo))
956
- - Cookbook validation should be performed on `package` command [\#536](https://github.com/berkshelf/berkshelf/pull/536) ([reset](https://github.com/reset))
957
-
958
- ## [v1.4.5](https://github.com/berkshelf/berkshelf/tree/v1.4.5) (2013-05-29)
959
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.0.beta...v1.4.5)
960
-
961
- **Merged pull requests:**
962
-
963
- - json parsing middleware registerd as :parse\_json in Ridley 0.12.4 [\#582](https://github.com/berkshelf/berkshelf/pull/582) ([reset](https://github.com/reset))
964
- - Fix link to vagrant-berkshelf [\#578](https://github.com/berkshelf/berkshelf/pull/578) ([sethvargo](https://github.com/sethvargo))
965
- - Remove autoload [\#572](https://github.com/berkshelf/berkshelf/pull/572) ([sethvargo](https://github.com/sethvargo))
966
- - Remove json\_spec as a dependency \(we aren't using it\) [\#570](https://github.com/berkshelf/berkshelf/pull/570) ([sethvargo](https://github.com/sethvargo))
967
- - Run all tests on Travis [\#568](https://github.com/berkshelf/berkshelf/pull/568) ([sethvargo](https://github.com/sethvargo))
968
- - Speed up Vendor feature [\#567](https://github.com/berkshelf/berkshelf/pull/567) ([sethvargo](https://github.com/sethvargo))
969
- - Speed up Upload feature [\#566](https://github.com/berkshelf/berkshelf/pull/566) ([sethvargo](https://github.com/sethvargo))
970
- - Speed up Update feature [\#565](https://github.com/berkshelf/berkshelf/pull/565) ([sethvargo](https://github.com/sethvargo))
971
- - Speed up Package feature [\#562](https://github.com/berkshelf/berkshelf/pull/562) ([sethvargo](https://github.com/sethvargo))
972
- - Speed up Outdated command [\#561](https://github.com/berkshelf/berkshelf/pull/561) ([sethvargo](https://github.com/sethvargo))
973
- - Speed up Open feature [\#560](https://github.com/berkshelf/berkshelf/pull/560) ([sethvargo](https://github.com/sethvargo))
974
- - Speed up List feature [\#558](https://github.com/berkshelf/berkshelf/pull/558) ([sethvargo](https://github.com/sethvargo))
975
- - Speed up Groups feature [\#557](https://github.com/berkshelf/berkshelf/pull/557) ([sethvargo](https://github.com/sethvargo))
976
- - Speed up Cookbook feature [\#556](https://github.com/berkshelf/berkshelf/pull/556) ([sethvargo](https://github.com/sethvargo))
977
- - Speed up Contingent feature [\#555](https://github.com/berkshelf/berkshelf/pull/555) ([sethvargo](https://github.com/sethvargo))
978
- - Speed up Configure feature [\#554](https://github.com/berkshelf/berkshelf/pull/554) ([sethvargo](https://github.com/sethvargo))
979
- - Speed up Config feature [\#553](https://github.com/berkshelf/berkshelf/pull/553) ([sethvargo](https://github.com/sethvargo))
980
- - Speed up Apply feature [\#552](https://github.com/berkshelf/berkshelf/pull/552) ([sethvargo](https://github.com/sethvargo))
981
- - Move Gemfile development dependencies to gemspec [\#551](https://github.com/berkshelf/berkshelf/pull/551) ([sethvargo](https://github.com/sethvargo))
982
- - Fix failing specs and features [\#550](https://github.com/berkshelf/berkshelf/pull/550) ([sethvargo](https://github.com/sethvargo))
983
- - Fix CZ on master [\#546](https://github.com/berkshelf/berkshelf/pull/546) ([sethvargo](https://github.com/sethvargo))
984
- - Only set the path option if it existed when parsing a legacy lockfile [\#544](https://github.com/berkshelf/berkshelf/pull/544) ([sethvargo](https://github.com/sethvargo))
985
- - Warn if spaces [\#534](https://github.com/berkshelf/berkshelf/pull/534) ([sethvargo](https://github.com/sethvargo))
986
- - Lockfile fixes [\#533](https://github.com/berkshelf/berkshelf/pull/533) ([sethvargo](https://github.com/sethvargo))
987
- - Remove alias\_method on UI module [\#527](https://github.com/berkshelf/berkshelf/pull/527) ([sethvargo](https://github.com/sethvargo))
988
- - version numbers must be strings to prevent environment.save crash [\#521](https://github.com/berkshelf/berkshelf/pull/521) ([timops](https://github.com/timops))
989
- - Default locations are broken [\#516](https://github.com/berkshelf/berkshelf/pull/516) ([sethvargo](https://github.com/sethvargo))
990
-
991
- ## [v2.0.0.beta](https://github.com/berkshelf/berkshelf/tree/v2.0.0.beta) (2013-05-15)
992
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.4...v2.0.0.beta)
993
-
994
- **Merged pull requests:**
995
-
996
- - Fix tests [\#515](https://github.com/berkshelf/berkshelf/pull/515) ([sethvargo](https://github.com/sethvargo))
997
- - Implement `berks package` [\#510](https://github.com/berkshelf/berkshelf/pull/510) ([sethvargo](https://github.com/sethvargo))
998
- - Test-Kitchen integration [\#435](https://github.com/berkshelf/berkshelf/pull/435) ([reset](https://github.com/reset))
999
-
1000
- ## [v1.4.4](https://github.com/berkshelf/berkshelf/tree/v1.4.4) (2013-05-14)
1001
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.3...v1.4.4)
1002
-
1003
- **Merged pull requests:**
1004
-
1005
- - bump required ridley version to 0.12.1 [\#513](https://github.com/berkshelf/berkshelf/pull/513) ([reset](https://github.com/reset))
1006
- - Don't assume Thor::Shell::Color [\#507](https://github.com/berkshelf/berkshelf/pull/507) ([sethvargo](https://github.com/sethvargo))
1007
- - Use Celluloid Futures to load the CookbookStore [\#506](https://github.com/berkshelf/berkshelf/pull/506) ([sethvargo](https://github.com/sethvargo))
1008
- - Accept Berkshelf configurations from other paths \(\#476\) [\#505](https://github.com/berkshelf/berkshelf/pull/505) ([sethvargo](https://github.com/sethvargo))
1009
- - Use formatters everywhere for output [\#503](https://github.com/berkshelf/berkshelf/pull/503) ([sethvargo](https://github.com/sethvargo))
1010
- - Warn if CookbookSource\#name is different from the metadata name [\#502](https://github.com/berkshelf/berkshelf/pull/502) ([sethvargo](https://github.com/sethvargo))
1011
- - Refactor Specs [\#501](https://github.com/berkshelf/berkshelf/pull/501) ([sethvargo](https://github.com/sethvargo))
1012
-
1013
- ## [v1.4.3](https://github.com/berkshelf/berkshelf/tree/v1.4.3) (2013-05-09)
1014
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.2...v1.4.3)
1015
-
1016
- **Merged pull requests:**
1017
-
1018
- - Just use JSON [\#491](https://github.com/berkshelf/berkshelf/pull/491) ([sethvargo](https://github.com/sethvargo))
1019
- - git SHA should be resolved in lockfile [\#486](https://github.com/berkshelf/berkshelf/pull/486) ([sethvargo](https://github.com/sethvargo))
1020
- - berks apply command [\#473](https://github.com/berkshelf/berkshelf/pull/473) ([capoferro](https://github.com/capoferro))
1021
- - Is there any config file for author name/email to populate while creating cookbook? [\#391](https://github.com/berkshelf/berkshelf/pull/391) ([millisami](https://github.com/millisami))
1022
-
1023
- ## [v1.4.2](https://github.com/berkshelf/berkshelf/tree/v1.4.2) (2013-05-02)
1024
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.1...v1.4.2)
1025
-
1026
- **Merged pull requests:**
1027
-
1028
- - Fix Git caching [\#484](https://github.com/berkshelf/berkshelf/pull/484) ([ivey](https://github.com/ivey))
1029
- - Fix `berks open` features when $VISUAL is set [\#483](https://github.com/berkshelf/berkshelf/pull/483) ([ivey](https://github.com/ivey))
1030
- - Lockfile 2.0 - cleaned branch [\#481](https://github.com/berkshelf/berkshelf/pull/481) ([reset](https://github.com/reset))
1031
-
1032
- ## [v1.4.1](https://github.com/berkshelf/berkshelf/tree/v1.4.1) (2013-04-30)
1033
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.0...v1.4.1)
1034
-
1035
- **Merged pull requests:**
1036
-
1037
- - chef\_server\_url not configurable for upload command [\#480](https://github.com/berkshelf/berkshelf/pull/480) ([KAllan357](https://github.com/KAllan357))
1038
- - Re-think \#463? [\#472](https://github.com/berkshelf/berkshelf/pull/472) ([sethvargo](https://github.com/sethvargo))
1039
- - Fix the failing cucumber scenaiors [\#471](https://github.com/berkshelf/berkshelf/pull/471) ([sethvargo](https://github.com/sethvargo))
1040
- - Doc SSL issues - \#380 [\#470](https://github.com/berkshelf/berkshelf/pull/470) ([ivey](https://github.com/ivey))
1041
- - Init Error [\#468](https://github.com/berkshelf/berkshelf/pull/468) ([kbacha](https://github.com/kbacha))
1042
- - Update CLI example for 'berks cookbook' [\#466](https://github.com/berkshelf/berkshelf/pull/466) ([jastix](https://github.com/jastix))
1043
- - Validate the shortname for 'site' [\#465](https://github.com/berkshelf/berkshelf/pull/465) ([capoferro](https://github.com/capoferro))
1044
- - Create Plugin List [\#459](https://github.com/berkshelf/berkshelf/pull/459) ([sethvargo](https://github.com/sethvargo))
1045
-
1046
- ## [v1.4.0](https://github.com/berkshelf/berkshelf/tree/v1.4.0) (2013-04-13)
1047
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.0.rc1...v1.4.0)
1048
-
1049
- **Merged pull requests:**
1050
-
1051
- - path source should expand from Berksfile location and now CWD [\#463](https://github.com/berkshelf/berkshelf/pull/463) ([reset](https://github.com/reset))
1052
- - add addressable gem dependency to gemspec and explicitly require it [\#461](https://github.com/berkshelf/berkshelf/pull/461) ([reset](https://github.com/reset))
1053
- - Enable berkshelf-vagrant by default [\#457](https://github.com/berkshelf/berkshelf/pull/457) ([danshultz](https://github.com/danshultz))
1054
- - Thor 0.18 [\#456](https://github.com/berkshelf/berkshelf/pull/456) ([justincampbell](https://github.com/justincampbell))
1055
- - Fix specs - look in right place for testing knife.rb [\#454](https://github.com/berkshelf/berkshelf/pull/454) ([ivey](https://github.com/ivey))
1056
- - Support plain .tar cookbooks as well as .tar.gz cookbooks. [\#452](https://github.com/berkshelf/berkshelf/pull/452) ([hnakamur](https://github.com/hnakamur))
1057
- - Fix rspec dependency [\#451](https://github.com/berkshelf/berkshelf/pull/451) ([justincampbell](https://github.com/justincampbell))
1058
- - Always uploads to chef\_api defined org, rather than knife defined org [\#446](https://github.com/berkshelf/berkshelf/pull/446) ([bakins](https://github.com/bakins))
1059
- - require a cookbook name argument in show command [\#444](https://github.com/berkshelf/berkshelf/pull/444) ([reset](https://github.com/reset))
1060
- - require 'cookbook' argument on contingent command [\#443](https://github.com/berkshelf/berkshelf/pull/443) ([reset](https://github.com/reset))
1061
- - 208 no bundler test [\#422](https://github.com/berkshelf/berkshelf/pull/422) ([sethvargo](https://github.com/sethvargo))
1062
- - Support for generating cookbooks with chef-minitest [\#401](https://github.com/berkshelf/berkshelf/pull/401) ([charlesjohnson](https://github.com/charlesjohnson))
1063
- - Search for the knife.rb like chef does [\#383](https://github.com/berkshelf/berkshelf/pull/383) ([sethvargo](https://github.com/sethvargo))
1064
- - Add berks contingent command [\#365](https://github.com/berkshelf/berkshelf/pull/365) ([sethvargo](https://github.com/sethvargo))
1065
- - Add berks info command [\#364](https://github.com/berkshelf/berkshelf/pull/364) ([sethvargo](https://github.com/sethvargo))
1066
-
1067
- ## [v1.4.0.rc1](https://github.com/berkshelf/berkshelf/tree/v1.4.0.rc1) (2013-03-22)
1068
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.3.1...v1.4.0.rc1)
1069
-
1070
- **Merged pull requests:**
1071
-
1072
- - add logging mixin and refactor Berkshelf.log into Berkshelf::Logger [\#434](https://github.com/berkshelf/berkshelf/pull/434) ([reset](https://github.com/reset))
1073
- - Automatically freeze cookbooks on upload [\#431](https://github.com/berkshelf/berkshelf/pull/431) ([reset](https://github.com/reset))
1074
- - remove facter language override prevention hack [\#428](https://github.com/berkshelf/berkshelf/pull/428) ([reset](https://github.com/reset))
1075
- - Attempt \#2 at \#399 \(use local cache\) [\#415](https://github.com/berkshelf/berkshelf/pull/415) ([sethvargo](https://github.com/sethvargo))
1076
-
1077
- ## [v1.3.1](https://github.com/berkshelf/berkshelf/tree/v1.3.1) (2013-03-20)
1078
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.3.0...v1.3.1)
1079
-
1080
- **Merged pull requests:**
1081
-
1082
- - rescue if the cookbook has not been uploaded at all [\#405](https://github.com/berkshelf/berkshelf/pull/405) ([bakins](https://github.com/bakins))
1083
-
1084
- ## [v1.3.0](https://github.com/berkshelf/berkshelf/tree/v1.3.0) (2013-03-20)
1085
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.3.0.rc1...v1.3.0)
1086
-
1087
- **Merged pull requests:**
1088
-
1089
- - relax required ruby ver back to \>= 1.9.1 [\#427](https://github.com/berkshelf/berkshelf/pull/427) ([reset](https://github.com/reset))
1090
- - add -d flag to enable debug output [\#426](https://github.com/berkshelf/berkshelf/pull/426) ([reset](https://github.com/reset))
1091
- - explicitly lock supported rubies [\#425](https://github.com/berkshelf/berkshelf/pull/425) ([reset](https://github.com/reset))
1092
- - bug fixes in cookbook transfers [\#424](https://github.com/berkshelf/berkshelf/pull/424) ([reset](https://github.com/reset))
1093
-
1094
- ## [v1.3.0.rc1](https://github.com/berkshelf/berkshelf/tree/v1.3.0.rc1) (2013-03-20)
1095
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.2.1...v1.3.0.rc1)
1096
-
1097
- **Merged pull requests:**
1098
-
1099
- - remove vagrant plugin from berkshelf core [\#423](https://github.com/berkshelf/berkshelf/pull/423) ([reset](https://github.com/reset))
1100
- - Require Ridley 0.8.5 [\#420](https://github.com/berkshelf/berkshelf/pull/420) ([justincampbell](https://github.com/justincampbell))
1101
- - Rubygems via https [\#417](https://github.com/berkshelf/berkshelf/pull/417) ([Spikels](https://github.com/Spikels))
1102
- - Attempt to speed up tests [\#414](https://github.com/berkshelf/berkshelf/pull/414) ([sethvargo](https://github.com/sethvargo))
1103
- - Fix travis [\#413](https://github.com/berkshelf/berkshelf/pull/413) ([sethvargo](https://github.com/sethvargo))
1104
- - Behave more like a linux-based CLI: [\#412](https://github.com/berkshelf/berkshelf/pull/412) ([sethvargo](https://github.com/sethvargo))
1105
- - Ensure the git user is set during CI [\#406](https://github.com/berkshelf/berkshelf/pull/406) ([justincampbell](https://github.com/justincampbell))
1106
- - Replace underscores for hostnames in Vagrantfile [\#402](https://github.com/berkshelf/berkshelf/pull/402) ([rb2k](https://github.com/rb2k))
1107
- - Use uniform .ruby-version file [\#398](https://github.com/berkshelf/berkshelf/pull/398) ([stevenhaddox](https://github.com/stevenhaddox))
1108
-
1109
- ## [v1.2.1](https://github.com/berkshelf/berkshelf/tree/v1.2.1) (2013-03-07)
1110
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.2.0...v1.2.1)
1111
-
1112
- ## [v1.2.0](https://github.com/berkshelf/berkshelf/tree/v1.2.0) (2013-03-05)
1113
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.2.0.rc1...v1.2.0)
1114
-
1115
- **Merged pull requests:**
1116
-
1117
- - Look locally for cached cookbooks [\#395](https://github.com/berkshelf/berkshelf/pull/395) ([sethvargo](https://github.com/sethvargo))
1118
- - add knife option so some knife.rb options will work [\#394](https://github.com/berkshelf/berkshelf/pull/394) ([bakins](https://github.com/bakins))
1119
- - Add named anchors to \#\# headings. [\#390](https://github.com/berkshelf/berkshelf/pull/390) ([jhowarth](https://github.com/jhowarth))
1120
- - add HTTP retries to downloading and uploading cookbooks [\#389](https://github.com/berkshelf/berkshelf/pull/389) ([reset](https://github.com/reset))
1121
- - remove uploader [\#388](https://github.com/berkshelf/berkshelf/pull/388) ([reset](https://github.com/reset))
1122
- - Fixing Git support for sha, tag, branch [\#387](https://github.com/berkshelf/berkshelf/pull/387) ([ryansch](https://github.com/ryansch))
1123
- - add helpful error message for loading the berkshelf plugin [\#385](https://github.com/berkshelf/berkshelf/pull/385) ([reset](https://github.com/reset))
1124
- - generated Gemfile should not include Vagrant dependency [\#375](https://github.com/berkshelf/berkshelf/pull/375) ([reset](https://github.com/reset))
1125
- - Resolver should error if incompatible dependencies are specified [\#366](https://github.com/berkshelf/berkshelf/pull/366) ([ivey](https://github.com/ivey))
1126
-
1127
- ## [v1.2.0.rc1](https://github.com/berkshelf/berkshelf/tree/v1.2.0.rc1) (2013-02-26)
1128
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.6...v1.2.0.rc1)
1129
-
1130
- **Merged pull requests:**
1131
-
1132
- - Autocreate git remotes [\#367](https://github.com/berkshelf/berkshelf/pull/367) ([capoferro](https://github.com/capoferro))
1133
- - Add debugging output [\#360](https://github.com/berkshelf/berkshelf/pull/360) ([sethvargo](https://github.com/sethvargo))
1134
- - Move vagrant development dependency to gemspec [\#356](https://github.com/berkshelf/berkshelf/pull/356) ([reset](https://github.com/reset))
1135
- - backout PR \#298 [\#355](https://github.com/berkshelf/berkshelf/pull/355) ([reset](https://github.com/reset))
1136
- - Git spec cleanup [\#352](https://github.com/berkshelf/berkshelf/pull/352) ([capoferro](https://github.com/capoferro))
1137
- - remove dependency on Chef gem [\#342](https://github.com/berkshelf/berkshelf/pull/342) ([reset](https://github.com/reset))
1138
- - Remove unnecessary hard dependency on $HOME being set [\#340](https://github.com/berkshelf/berkshelf/pull/340) ([blasdelf](https://github.com/blasdelf))
1139
- - Bash completion for cookbooks [\#337](https://github.com/berkshelf/berkshelf/pull/337) ([sethvargo](https://github.com/sethvargo))
1140
- - Like bundler, berks should default do berks install [\#336](https://github.com/berkshelf/berkshelf/pull/336) ([sethvargo](https://github.com/sethvargo))
1141
- - Add Cane [\#333](https://github.com/berkshelf/berkshelf/pull/333) ([justincampbell](https://github.com/justincampbell))
1142
- - Loading berkshelf sets locale to C [\#270](https://github.com/berkshelf/berkshelf/pull/270) ([sciurus](https://github.com/sciurus))
1143
-
1144
- ## [v1.1.6](https://github.com/berkshelf/berkshelf/tree/v1.1.6) (2013-02-07)
1145
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.5...v1.1.6)
1146
-
1147
- **Merged pull requests:**
1148
-
1149
- - Move moneta from Gemfile to gemspec [\#350](https://github.com/berkshelf/berkshelf/pull/350) ([reset](https://github.com/reset))
1150
- - add vagrant to development and test gem group [\#344](https://github.com/berkshelf/berkshelf/pull/344) ([reset](https://github.com/reset))
1151
-
1152
- ## [v1.1.5](https://github.com/berkshelf/berkshelf/tree/v1.1.5) (2013-02-07)
1153
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.4...v1.1.5)
1154
-
1155
- **Merged pull requests:**
1156
-
1157
- - JSON \(in\)sanity [\#339](https://github.com/berkshelf/berkshelf/pull/339) ([reset](https://github.com/reset))
1158
- - Berkshelf gem should not depend on Vagrant gem [\#288](https://github.com/berkshelf/berkshelf/pull/288) ([charlesjohnson](https://github.com/charlesjohnson))
1159
-
1160
- ## [v1.1.4](https://github.com/berkshelf/berkshelf/tree/v1.1.4) (2013-02-06)
1161
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.3...v1.1.4)
1162
-
1163
- **Merged pull requests:**
1164
-
1165
- - fix broken configure features [\#338](https://github.com/berkshelf/berkshelf/pull/338) ([reset](https://github.com/reset))
1166
- - Merge 1-1-stable into master [\#334](https://github.com/berkshelf/berkshelf/pull/334) ([justincampbell](https://github.com/justincampbell))
1167
- - Clarify language in Vagrantfile [\#331](https://github.com/berkshelf/berkshelf/pull/331) ([sethvargo](https://github.com/sethvargo))
1168
-
1169
- ## [v1.1.3](https://github.com/berkshelf/berkshelf/tree/v1.1.3) (2013-02-04)
1170
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.2...v1.1.3)
1171
-
1172
- **Merged pull requests:**
1173
-
1174
- - Add score to Code Climate badge [\#329](https://github.com/berkshelf/berkshelf/pull/329) ([justincampbell](https://github.com/justincampbell))
1175
- - Fix for chef 11 [\#328](https://github.com/berkshelf/berkshelf/pull/328) ([reset](https://github.com/reset))
1176
- - Test against multiple Chef versions [\#326](https://github.com/berkshelf/berkshelf/pull/326) ([sethvargo](https://github.com/sethvargo))
1177
- - update email addresses of riot contributors [\#324](https://github.com/berkshelf/berkshelf/pull/324) ([reset](https://github.com/reset))
1178
- - Enable Guard notifications [\#317](https://github.com/berkshelf/berkshelf/pull/317) ([justincampbell](https://github.com/justincampbell))
1179
- - Make Berkshelf threadsafe \(again\) [\#316](https://github.com/berkshelf/berkshelf/pull/316) ([sethvargo](https://github.com/sethvargo))
1180
- - Read maintainer info from Berkshelf::Config [\#315](https://github.com/berkshelf/berkshelf/pull/315) ([sethvargo](https://github.com/sethvargo))
1181
- - Convert UI to Module [\#314](https://github.com/berkshelf/berkshelf/pull/314) ([sethvargo](https://github.com/sethvargo))
1182
- - If a relative :path is in Berksfile, keep it relative in Berksfile.lock. [\#310](https://github.com/berkshelf/berkshelf/pull/310) ([rectalogic](https://github.com/rectalogic))
1183
- - Ignore Bundler binstub-generated directories [\#309](https://github.com/berkshelf/berkshelf/pull/309) ([schisamo](https://github.com/schisamo))
1184
- - Fix \(some\) failing specs [\#307](https://github.com/berkshelf/berkshelf/pull/307) ([reset](https://github.com/reset))
1185
- - Please add a Changelog file [\#305](https://github.com/berkshelf/berkshelf/pull/305) ([tmatilai](https://github.com/tmatilai))
1186
- - use latest version of Ridley [\#303](https://github.com/berkshelf/berkshelf/pull/303) ([reset](https://github.com/reset))
1187
- - Use berksfile for dependency resolution [\#302](https://github.com/berkshelf/berkshelf/pull/302) ([chrisroberts](https://github.com/chrisroberts))
1188
- - Set metadata name if metadata name is not set [\#301](https://github.com/berkshelf/berkshelf/pull/301) ([chrisroberts](https://github.com/chrisroberts))
1189
- - Allow cookbook uploads without dependency resolution. Add spec. [\#300](https://github.com/berkshelf/berkshelf/pull/300) ([chrisroberts](https://github.com/chrisroberts))
1190
- - Raise an exception if the berkshelf directory is not writable [\#299](https://github.com/berkshelf/berkshelf/pull/299) ([sethvargo](https://github.com/sethvargo))
1191
- - Lockfile management and DEBUG flags [\#298](https://github.com/berkshelf/berkshelf/pull/298) ([sethvargo](https://github.com/sethvargo))
1192
- - Allow cookbook uploads without dependency resolution. Add spec. [\#296](https://github.com/berkshelf/berkshelf/pull/296) ([chrisroberts](https://github.com/chrisroberts))
1193
- - Support --quiet option [\#292](https://github.com/berkshelf/berkshelf/pull/292) ([sethvargo](https://github.com/sethvargo))
1194
-
1195
- ## [v1.1.2](https://github.com/berkshelf/berkshelf/tree/v1.1.2) (2013-01-10)
1196
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.1...v1.1.2)
1197
-
1198
- **Merged pull requests:**
1199
-
1200
- - Resolves issue \#286 [\#287](https://github.com/berkshelf/berkshelf/pull/287) ([arangamani](https://github.com/arangamani))
1201
- - Add development steps to CONTRIBUTING.md [\#280](https://github.com/berkshelf/berkshelf/pull/280) ([justincampbell](https://github.com/justincampbell))
1202
-
1203
- ## [v1.1.1](https://github.com/berkshelf/berkshelf/tree/v1.1.1) (2013-01-01)
1204
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.0...v1.1.1)
1205
-
1206
- **Merged pull requests:**
1207
-
1208
- - Add option to skip ruby syntax check on upload [\#283](https://github.com/berkshelf/berkshelf/pull/283) ([reset](https://github.com/reset))
1209
- - fix our failing tests [\#282](https://github.com/berkshelf/berkshelf/pull/282) ([reset](https://github.com/reset))
1210
- - Add more files and patterns to chefignore. [\#281](https://github.com/berkshelf/berkshelf/pull/281) ([sethvargo](https://github.com/sethvargo))
1211
- - Add 'test/\*' to chefignore generator file. [\#279](https://github.com/berkshelf/berkshelf/pull/279) ([fnichol](https://github.com/fnichol))
1212
- - Add IRC notifications for Travis CI [\#277](https://github.com/berkshelf/berkshelf/pull/277) ([justincampbell](https://github.com/justincampbell))
1213
- - bump ridley version and use improvements in uploader [\#276](https://github.com/berkshelf/berkshelf/pull/276) ([reset](https://github.com/reset))
1214
- - Allow wider range of repository URIs \(\#257\) [\#265](https://github.com/berkshelf/berkshelf/pull/265) ([aflatter](https://github.com/aflatter))
1215
- - Create CONTRIBUTING.md [\#262](https://github.com/berkshelf/berkshelf/pull/262) ([dwradcliffe](https://github.com/dwradcliffe))
1216
-
1217
- ## [v1.1.0](https://github.com/berkshelf/berkshelf/tree/v1.1.0) (2012-12-06)
1218
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.0.rc1...v1.1.0)
1219
-
1220
- **Merged pull requests:**
1221
-
1222
- - lock the ohai version in install\_command.feature to prevent future test failures [\#260](https://github.com/berkshelf/berkshelf/pull/260) ([sethvargo](https://github.com/sethvargo))
1223
- - Honor chefignore when vendorizing cookbooks [\#256](https://github.com/berkshelf/berkshelf/pull/256) ([sethvargo](https://github.com/sethvargo))
1224
- - Create `berks open` [\#254](https://github.com/berkshelf/berkshelf/pull/254) ([sethvargo](https://github.com/sethvargo))
1225
-
1226
- ## [v1.1.0.rc1](https://github.com/berkshelf/berkshelf/tree/v1.1.0.rc1) (2012-11-30)
1227
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.4...v1.1.0.rc1)
1228
-
1229
- **Merged pull requests:**
1230
-
1231
- - More verbose outdated [\#255](https://github.com/berkshelf/berkshelf/pull/255) ([reset](https://github.com/reset))
1232
- - Add berks outdated command [\#252](https://github.com/berkshelf/berkshelf/pull/252) ([sethvargo](https://github.com/sethvargo))
1233
- - Raise a Berkshelf::CookbookNotFound error when trying to update a cookbook that is not in any of the sources [\#251](https://github.com/berkshelf/berkshelf/pull/251) ([sethvargo](https://github.com/sethvargo))
1234
- - "cookbook" argument is no longer optional for show command [\#246](https://github.com/berkshelf/berkshelf/pull/246) ([reset](https://github.com/reset))
1235
- - use File.open instead of File.write [\#245](https://github.com/berkshelf/berkshelf/pull/245) ([reset](https://github.com/reset))
1236
- - better errors in Vagrant plugin [\#244](https://github.com/berkshelf/berkshelf/pull/244) ([reset](https://github.com/reset))
1237
- - Better list and show output [\#241](https://github.com/berkshelf/berkshelf/pull/241) ([sethvargo](https://github.com/sethvargo))
1238
- - Allow the same cookbook in different groups [\#240](https://github.com/berkshelf/berkshelf/pull/240) ([sethvargo](https://github.com/sethvargo))
1239
- - Allow updating of a single cookbook [\#239](https://github.com/berkshelf/berkshelf/pull/239) ([sethvargo](https://github.com/sethvargo))
1240
- - Fix \#232 by merging with Thor options [\#238](https://github.com/berkshelf/berkshelf/pull/238) ([sethvargo](https://github.com/sethvargo))
1241
- - Add rvmrc [\#237](https://github.com/berkshelf/berkshelf/pull/237) ([sethvargo](https://github.com/sethvargo))
1242
- - Allow uploading one \(or more\) cookbooks [\#234](https://github.com/berkshelf/berkshelf/pull/234) ([sethvargo](https://github.com/sethvargo))
1243
- - `berks show` to look at a cookbook's location [\#219](https://github.com/berkshelf/berkshelf/pull/219) ([sethvargo](https://github.com/sethvargo))
1244
-
1245
- ## [v1.0.4](https://github.com/berkshelf/berkshelf/tree/v1.0.4) (2012-11-16)
1246
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.3...v1.0.4)
1247
-
1248
- ## [v1.0.3](https://github.com/berkshelf/berkshelf/tree/v1.0.3) (2012-11-14)
1249
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.2...v1.0.3)
1250
-
1251
- ## [v1.0.2](https://github.com/berkshelf/berkshelf/tree/v1.0.2) (2012-11-14)
1252
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.1...v1.0.2)
1253
-
1254
- ## [v1.0.1](https://github.com/berkshelf/berkshelf/tree/v1.0.1) (2012-11-14)
1255
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.0...v1.0.1)
1256
-
1257
- **Merged pull requests:**
1258
-
1259
- - Refactor 213 [\#224](https://github.com/berkshelf/berkshelf/pull/224) ([reset](https://github.com/reset))
1260
- - Fix syntax on group example [\#223](https://github.com/berkshelf/berkshelf/pull/223) ([coderanger](https://github.com/coderanger))
1261
- - Adds travis testing to docs [\#218](https://github.com/berkshelf/berkshelf/pull/218) ([miketheman](https://github.com/miketheman))
1262
- - Adds documentation for GitHub location [\#217](https://github.com/berkshelf/berkshelf/pull/217) ([miketheman](https://github.com/miketheman))
1263
- - add detection for git.cmd on the PATH, factor out detection to keep code... [\#216](https://github.com/berkshelf/berkshelf/pull/216) ([tknerr](https://github.com/tknerr))
1264
- - Simplifying override of mv to always do cp\_r and rm\_rf [\#214](https://github.com/berkshelf/berkshelf/pull/214) ([temujin9](https://github.com/temujin9))
1265
- - Make git clones happen into a stable subfolder, and don't reclone if it exists [\#213](https://github.com/berkshelf/berkshelf/pull/213) ([temujin9](https://github.com/temujin9))
1266
- - Further cleanup on options\[:ssl\_verify\] and Berkshelf::Config.instance.ssl.verify [\#212](https://github.com/berkshelf/berkshelf/pull/212) ([temujin9](https://github.com/temujin9))
1267
- - Adding :rel to :git resource, for repositories where cookbook is not in the repo root [\#211](https://github.com/berkshelf/berkshelf/pull/211) ([temujin9](https://github.com/temujin9))
1268
-
1269
- ## [v1.0.0](https://github.com/berkshelf/berkshelf/tree/v1.0.0) (2012-11-12)
1270
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.0.rc3...v1.0.0)
1271
-
1272
- **Merged pull requests:**
1273
-
1274
- - Using FileUtils.mv rather than File.rename fixes RiotGames/berkshelf\#209 [\#210](https://github.com/berkshelf/berkshelf/pull/210) ([tknerr](https://github.com/tknerr))
1275
- - Github location \(Issue \#64\) [\#206](https://github.com/berkshelf/berkshelf/pull/206) ([capoferro](https://github.com/capoferro))
1276
- - Check if options are supported \(Issue \#170\) [\#204](https://github.com/berkshelf/berkshelf/pull/204) ([capoferro](https://github.com/capoferro))
1277
-
1278
- ## [v1.0.0.rc3](https://github.com/berkshelf/berkshelf/tree/v1.0.0.rc3) (2012-11-12)
1279
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.0.rc2...v1.0.0.rc3)
1280
-
1281
- **Merged pull requests:**
1282
-
1283
- - organization is now automatically inferred by server\_url in Ridley [\#205](https://github.com/berkshelf/berkshelf/pull/205) ([reset](https://github.com/reset))
1284
- - coerce value for vagrant.cookbooks\_path to an array if it is not one [\#203](https://github.com/berkshelf/berkshelf/pull/203) ([reset](https://github.com/reset))
1285
- - `berks upload` should read the knife.rb, if present [\#202](https://github.com/berkshelf/berkshelf/pull/202) ([sethvargo](https://github.com/sethvargo))
1286
- - Specifying -c or --config during `berks upload` does nothing... [\#201](https://github.com/berkshelf/berkshelf/pull/201) ([sethvargo](https://github.com/sethvargo))
1287
- - Allow config file to set ssl.verify usefully [\#200](https://github.com/berkshelf/berkshelf/pull/200) ([temujin9](https://github.com/temujin9))
1288
- - Allowing Berkshelf::Config.path override [\#199](https://github.com/berkshelf/berkshelf/pull/199) ([temujin9](https://github.com/temujin9))
1289
- - Disable default bridged networking [\#198](https://github.com/berkshelf/berkshelf/pull/198) ([someara](https://github.com/someara))
1290
- - Default cookbook version [\#197](https://github.com/berkshelf/berkshelf/pull/197) ([someara](https://github.com/someara))
1291
- - adding .rbenv-version to gitignore [\#196](https://github.com/berkshelf/berkshelf/pull/196) ([someara](https://github.com/someara))
1292
-
1293
- ## [v1.0.0.rc2](https://github.com/berkshelf/berkshelf/tree/v1.0.0.rc2) (2012-11-07)
1294
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.0.rc1...v1.0.0.rc2)
1295
-
1296
- **Merged pull requests:**
1297
-
1298
- - ChefAPI Download bug [\#195](https://github.com/berkshelf/berkshelf/pull/195) ([reset](https://github.com/reset))
1299
- - Code cleanup [\#192](https://github.com/berkshelf/berkshelf/pull/192) ([justincampbell](https://github.com/justincampbell))
1300
-
1301
- ## [v1.0.0.rc1](https://github.com/berkshelf/berkshelf/tree/v1.0.0.rc1) (2012-11-01)
1302
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.6.0.beta4...v1.0.0.rc1)
1303
-
1304
- **Merged pull requests:**
1305
-
1306
- - add Cli\#configure function for interactively configuring Berkshelf [\#187](https://github.com/berkshelf/berkshelf/pull/187) ([reset](https://github.com/reset))
1307
-
1308
- ## [v0.6.0.beta4](https://github.com/berkshelf/berkshelf/tree/v0.6.0.beta4) (2012-11-01)
1309
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.6.0.beta3...v0.6.0.beta4)
1310
-
1311
- **Merged pull requests:**
1312
-
1313
- - simplify configuration generation, validation, and defaults [\#186](https://github.com/berkshelf/berkshelf/pull/186) ([reset](https://github.com/reset))
1314
- - Dir.glob does not support backslash as a File separator, even on Windows... [\#183](https://github.com/berkshelf/berkshelf/pull/183) ([jdutton](https://github.com/jdutton))
1315
- - Fix regression \(infinite recursion on Windows\) in 4ad97d4 [\#182](https://github.com/berkshelf/berkshelf/pull/182) ([jdutton](https://github.com/jdutton))
1316
- - Organize gemdeps [\#180](https://github.com/berkshelf/berkshelf/pull/180) ([reset](https://github.com/reset))
1317
- - fixes issue 158 - init command accepts and uses the generator flags [\#179](https://github.com/berkshelf/berkshelf/pull/179) ([reset](https://github.com/reset))
1318
-
1319
- ## [v0.6.0.beta3](https://github.com/berkshelf/berkshelf/tree/v0.6.0.beta3) (2012-10-29)
1320
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.6.0.beta2...v0.6.0.beta3)
1321
-
1322
- **Merged pull requests:**
1323
-
1324
- - refactor 140pr to use re-defined FileUtils.mv to fix windows support [\#178](https://github.com/berkshelf/berkshelf/pull/178) ([reset](https://github.com/reset))
1325
- - fix issue where FileUtils.mv fails on some Windows machines [\#176](https://github.com/berkshelf/berkshelf/pull/176) ([tknerr](https://github.com/tknerr))
1326
- - Fix :git access on Windows [\#175](https://github.com/berkshelf/berkshelf/pull/175) ([jdutton](https://github.com/jdutton))
1327
- - Touch metadata.rb before berk init [\#174](https://github.com/berkshelf/berkshelf/pull/174) ([justincampbell](https://github.com/justincampbell))
1328
- - Fix git and vagrant flags [\#173](https://github.com/berkshelf/berkshelf/pull/173) ([justincampbell](https://github.com/justincampbell))
1329
- - Make Git and Vagrant the defaults [\#172](https://github.com/berkshelf/berkshelf/pull/172) ([justincampbell](https://github.com/justincampbell))
1330
- - Use Travis CI [\#171](https://github.com/berkshelf/berkshelf/pull/171) ([justincampbell](https://github.com/justincampbell))
1331
- - Add additional options to the Berkshelf config [\#169](https://github.com/berkshelf/berkshelf/pull/169) ([justincampbell](https://github.com/justincampbell))
1332
- - Remove Vagrant auto-require hook [\#168](https://github.com/berkshelf/berkshelf/pull/168) ([justincampbell](https://github.com/justincampbell))
1333
- - Add support for a Berkshelf config file [\#162](https://github.com/berkshelf/berkshelf/pull/162) ([justincampbell](https://github.com/justincampbell))
1334
- - Ignore all \*.pem files [\#160](https://github.com/berkshelf/berkshelf/pull/160) ([justincampbell](https://github.com/justincampbell))
1335
- - Before download errors, output source and location [\#159](https://github.com/berkshelf/berkshelf/pull/159) ([justincampbell](https://github.com/justincampbell))
1336
- - Use :rubygems symbol in generated Gemfile [\#157](https://github.com/berkshelf/berkshelf/pull/157) ([justincampbell](https://github.com/justincampbell))
1337
- - Refactoring Downloader [\#156](https://github.com/berkshelf/berkshelf/pull/156) ([justincampbell](https://github.com/justincampbell))
1338
- - Failing specs [\#155](https://github.com/berkshelf/berkshelf/pull/155) ([justincampbell](https://github.com/justincampbell))
1339
- - Allow customization of generated Vagrantfile [\#153](https://github.com/berkshelf/berkshelf/pull/153) ([justincampbell](https://github.com/justincampbell))
1340
- - Require chef before everything else, sort requires [\#149](https://github.com/berkshelf/berkshelf/pull/149) ([justincampbell](https://github.com/justincampbell))
1341
-
1342
- ## [v0.6.0.beta2](https://github.com/berkshelf/berkshelf/tree/v0.6.0.beta2) (2012-09-28)
1343
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.5.1...v0.6.0.beta2)
1344
-
1345
- ## [v0.5.1](https://github.com/berkshelf/berkshelf/tree/v0.5.1) (2012-09-28)
1346
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.6.0.beta1...v0.5.1)
1347
-
1348
- **Merged pull requests:**
1349
-
1350
- - Multi vm [\#143](https://github.com/berkshelf/berkshelf/pull/143) ([reset](https://github.com/reset))
1351
- - Copy Cookbook Dir Contents Instead of Cookbook Dir Itself [\#142](https://github.com/berkshelf/berkshelf/pull/142) ([RoboticCheese](https://github.com/RoboticCheese))
1352
-
1353
- ## [v0.6.0.beta1](https://github.com/berkshelf/berkshelf/tree/v0.6.0.beta1) (2012-09-25)
1354
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.5.0...v0.6.0.beta1)
1355
-
1356
- **Merged pull requests:**
1357
-
1358
- - use the latest version of Solve [\#136](https://github.com/berkshelf/berkshelf/pull/136) ([reset](https://github.com/reset))
1359
-
1360
- ## [v0.5.0](https://github.com/berkshelf/berkshelf/tree/v0.5.0) (2012-09-24)
1361
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.5.0.rc4...v0.5.0)
1362
-
1363
- ## [v0.5.0.rc4](https://github.com/berkshelf/berkshelf/tree/v0.5.0.rc4) (2012-09-22)
1364
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.5.0.rc3...v0.5.0.rc4)
1365
-
1366
- ## [v0.5.0.rc3](https://github.com/berkshelf/berkshelf/tree/v0.5.0.rc3) (2012-09-21)
1367
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.5.0.rc2...v0.5.0.rc3)
1368
-
1369
- **Merged pull requests:**
1370
-
1371
- - add ability to disable SSL verification in uploads [\#135](https://github.com/berkshelf/berkshelf/pull/135) ([reset](https://github.com/reset))
1372
- - fix uploads when using chef\_client provisioner [\#134](https://github.com/berkshelf/berkshelf/pull/134) ([reset](https://github.com/reset))
1373
- - Pages 5 [\#133](https://github.com/berkshelf/berkshelf/pull/133) ([reset](https://github.com/reset))
1374
-
1375
- ## [v0.5.0.rc2](https://github.com/berkshelf/berkshelf/tree/v0.5.0.rc2) (2012-09-20)
1376
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.5.0.rc1...v0.5.0.rc2)
1377
-
1378
- ## [v0.5.0.rc1](https://github.com/berkshelf/berkshelf/tree/v0.5.0.rc1) (2012-09-19)
1379
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.4.0...v0.5.0.rc1)
1380
-
1381
- **Merged pull requests:**
1382
-
1383
- - Ui class [\#132](https://github.com/berkshelf/berkshelf/pull/132) ([reset](https://github.com/reset))
1384
- - use the Berkshelf.ui output Vagrant info [\#131](https://github.com/berkshelf/berkshelf/pull/131) ([reset](https://github.com/reset))
1385
- - make sources and locations serializable into hash/json [\#129](https://github.com/berkshelf/berkshelf/pull/129) ([reset](https://github.com/reset))
1386
- - ensure the cookbook retreived by a location matches the name of the source [\#128](https://github.com/berkshelf/berkshelf/pull/128) ([reset](https://github.com/reset))
1387
- - Use ridley [\#127](https://github.com/berkshelf/berkshelf/pull/127) ([reset](https://github.com/reset))
1388
- - Vplugin bugfix [\#126](https://github.com/berkshelf/berkshelf/pull/126) ([reset](https://github.com/reset))
1389
- - vagrant destroy will clean up the plugin's shelf [\#125](https://github.com/berkshelf/berkshelf/pull/125) ([reset](https://github.com/reset))
1390
- - Only except [\#124](https://github.com/berkshelf/berkshelf/pull/124) ([reset](https://github.com/reset))
1391
- - Vendor install [\#121](https://github.com/berkshelf/berkshelf/pull/121) ([reset](https://github.com/reset))
1392
- - remove 'shims' feature [\#120](https://github.com/berkshelf/berkshelf/pull/120) ([reset](https://github.com/reset))
1393
- - Vagrant plugin [\#119](https://github.com/berkshelf/berkshelf/pull/119) ([reset](https://github.com/reset))
1394
-
1395
- ## [v0.4.0](https://github.com/berkshelf/berkshelf/tree/v0.4.0) (2012-09-11)
1396
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.4.0.rc4...v0.4.0)
1397
-
1398
- **Merged pull requests:**
1399
-
1400
- - remove Berkshelf::DSL and put it's functionality directly in Berksfile [\#118](https://github.com/berkshelf/berkshelf/pull/118) ([reset](https://github.com/reset))
1401
- - if default locations are specified then a downloader will only use those [\#117](https://github.com/berkshelf/berkshelf/pull/117) ([reset](https://github.com/reset))
1402
- - treat 'recommends' in cookbook data as dependencies [\#116](https://github.com/berkshelf/berkshelf/pull/116) ([reset](https://github.com/reset))
1403
- - add ability to define default locations for a Berksfile [\#115](https://github.com/berkshelf/berkshelf/pull/115) ([reset](https://github.com/reset))
1404
- - Refactors for default locations feature [\#114](https://github.com/berkshelf/berkshelf/pull/114) ([reset](https://github.com/reset))
1405
- - BERKSHELF-112 ignore temporary editor files [\#112](https://github.com/berkshelf/berkshelf/pull/112) ([bryanwb](https://github.com/bryanwb))
1406
- - A couple cleanups [\#110](https://github.com/berkshelf/berkshelf/pull/110) ([matschaffer](https://github.com/matschaffer))
1407
-
1408
- ## [v0.4.0.rc4](https://github.com/berkshelf/berkshelf/tree/v0.4.0.rc4) (2012-08-21)
1409
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.4.0.rc3...v0.4.0.rc4)
1410
-
1411
- **Merged pull requests:**
1412
-
1413
- - Bump thor for compatibility with test-kitchen [\#109](https://github.com/berkshelf/berkshelf/pull/109) ([matschaffer](https://github.com/matschaffer))
1414
- - Formatters [\#108](https://github.com/berkshelf/berkshelf/pull/108) ([ivey](https://github.com/ivey))
1415
-
1416
- ## [v0.4.0.rc3](https://github.com/berkshelf/berkshelf/tree/v0.4.0.rc3) (2012-08-20)
1417
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.4.0.rc2...v0.4.0.rc3)
1418
-
1419
- **Merged pull requests:**
1420
-
1421
- - Git SSH uri's without organization will now be valid [\#107](https://github.com/berkshelf/berkshelf/pull/107) ([reset](https://github.com/reset))
1422
- - Don't checksum the file if it's a broken symlink. [\#102](https://github.com/berkshelf/berkshelf/pull/102) ([capoferro](https://github.com/capoferro))
1423
- - Capture errors that occur during berksfile eval to prevent being inadver... [\#101](https://github.com/berkshelf/berkshelf/pull/101) ([capoferro](https://github.com/capoferro))
1424
- - move generator files out of ruby load path [\#100](https://github.com/berkshelf/berkshelf/pull/100) ([reset](https://github.com/reset))
1425
- - Skip broken symlinks encountered in hardlink traversal. [\#91](https://github.com/berkshelf/berkshelf/pull/91) ([capoferro](https://github.com/capoferro))
1426
-
1427
- ## [v0.4.0.rc2](https://github.com/berkshelf/berkshelf/tree/v0.4.0.rc2) (2012-07-27)
1428
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.4.0.rc1...v0.4.0.rc2)
1429
-
1430
- **Merged pull requests:**
1431
-
1432
- - Trivial changes due to spec update. Also pemfile ignore. [\#97](https://github.com/berkshelf/berkshelf/pull/97) ([capoferro](https://github.com/capoferro))
1433
- - Thor::SCMVersion support in generators [\#95](https://github.com/berkshelf/berkshelf/pull/95) ([ivey](https://github.com/ivey))
1434
- - -93 [\#94](https://github.com/berkshelf/berkshelf/pull/94) ([lastobelus](https://github.com/lastobelus))
1435
- - Update cookbook versions in lockfile\_spec [\#92](https://github.com/berkshelf/berkshelf/pull/92) ([capoferro](https://github.com/capoferro))
1436
- - Cookbook command [\#90](https://github.com/berkshelf/berkshelf/pull/90) ([reset](https://github.com/reset))
1437
- - Invalid cross-device link during berks install --shims [\#81](https://github.com/berkshelf/berkshelf/pull/81) ([promisedlandt](https://github.com/promisedlandt))
1438
-
1439
- ## [v0.4.0.rc1](https://github.com/berkshelf/berkshelf/tree/v0.4.0.rc1) (2012-07-13)
1440
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.7...v0.4.0.rc1)
1441
-
1442
- **Merged pull requests:**
1443
-
1444
- - Chef API location [\#87](https://github.com/berkshelf/berkshelf/pull/87) ([reset](https://github.com/reset))
1445
- - Site location refactors [\#86](https://github.com/berkshelf/berkshelf/pull/86) ([reset](https://github.com/reset))
1446
- - add validation for options in Berksfile [\#84](https://github.com/berkshelf/berkshelf/pull/84) ([reset](https://github.com/reset))
1447
- - Replace DepSelector with Solve [\#83](https://github.com/berkshelf/berkshelf/pull/83) ([reset](https://github.com/reset))
1448
- - Handle shims dir that's a child of the current dir - closes \#78 [\#80](https://github.com/berkshelf/berkshelf/pull/80) ([ivey](https://github.com/ivey))
1449
- - Test fixes [\#79](https://github.com/berkshelf/berkshelf/pull/79) ([ivey](https://github.com/ivey))
1450
- - Use knife rb [\#68](https://github.com/berkshelf/berkshelf/pull/68) ([erikh](https://github.com/erikh))
1451
-
1452
- ## [v0.3.7](https://github.com/berkshelf/berkshelf/tree/v0.3.7) (2012-07-04)
1453
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.6...v0.3.7)
1454
-
1455
- **Merged pull requests:**
1456
-
1457
- - fix issue when caching git sources with an aliased ref [\#77](https://github.com/berkshelf/berkshelf/pull/77) ([reset](https://github.com/reset))
1458
-
1459
- ## [v0.3.6](https://github.com/berkshelf/berkshelf/tree/v0.3.6) (2012-07-04)
1460
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.5...v0.3.6)
1461
-
1462
- **Merged pull requests:**
1463
-
1464
- - fix bug with satisfying git sources that have not been downloaded [\#76](https://github.com/berkshelf/berkshelf/pull/76) ([reset](https://github.com/reset))
1465
-
1466
- ## [v0.3.5](https://github.com/berkshelf/berkshelf/tree/v0.3.5) (2012-07-03)
1467
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.4...v0.3.5)
1468
-
1469
- **Merged pull requests:**
1470
-
1471
- - raise a more helpful error if git execution fails [\#75](https://github.com/berkshelf/berkshelf/pull/75) ([reset](https://github.com/reset))
1472
-
1473
- ## [v0.3.4](https://github.com/berkshelf/berkshelf/tree/v0.3.4) (2012-07-03)
1474
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.3...v0.3.4)
1475
-
1476
- **Merged pull requests:**
1477
-
1478
- - Validate downloaded sources [\#74](https://github.com/berkshelf/berkshelf/pull/74) ([reset](https://github.com/reset))
1479
- - shims will be rewritten if write\_shims is called [\#73](https://github.com/berkshelf/berkshelf/pull/73) ([reset](https://github.com/reset))
1480
- - Validate Git location sources [\#72](https://github.com/berkshelf/berkshelf/pull/72) ([reset](https://github.com/reset))
1481
- - Don't download sources that have already been downloaded [\#71](https://github.com/berkshelf/berkshelf/pull/71) ([reset](https://github.com/reset))
1482
- - No require config file [\#69](https://github.com/berkshelf/berkshelf/pull/69) ([erikh](https://github.com/erikh))
1483
- - Config file from environment [\#67](https://github.com/berkshelf/berkshelf/pull/67) ([erikh](https://github.com/erikh))
1484
-
1485
- ## [v0.3.3](https://github.com/berkshelf/berkshelf/tree/v0.3.3) (2012-06-27)
1486
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.2...v0.3.3)
1487
-
1488
- **Merged pull requests:**
1489
-
1490
- - fix infinite loop bug when writing shims of a path location [\#61](https://github.com/berkshelf/berkshelf/pull/61) ([reset](https://github.com/reset))
1491
-
1492
- ## [v0.3.2](https://github.com/berkshelf/berkshelf/tree/v0.3.2) (2012-06-26)
1493
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.1...v0.3.2)
1494
-
1495
- **Merged pull requests:**
1496
-
1497
- - fix bug where app wouldn't exit if no remote solution was found [\#60](https://github.com/berkshelf/berkshelf/pull/60) ([reset](https://github.com/reset))
1498
-
1499
- ## [v0.3.1](https://github.com/berkshelf/berkshelf/tree/v0.3.1) (2012-06-26)
1500
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.0...v0.3.1)
1501
-
1502
- **Merged pull requests:**
1503
-
1504
- - Berksfile resolve [\#59](https://github.com/berkshelf/berkshelf/pull/59) ([jhowarth](https://github.com/jhowarth))
1505
-
1506
- ## [v0.3.0](https://github.com/berkshelf/berkshelf/tree/v0.3.0) (2012-06-25)
1507
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.2.0...v0.3.0)
1508
-
1509
- **Merged pull requests:**
1510
-
1511
- - Thor CLI instead of Knife [\#58](https://github.com/berkshelf/berkshelf/pull/58) ([reset](https://github.com/reset))
1512
-
1513
- ## [v0.2.0](https://github.com/berkshelf/berkshelf/tree/v0.2.0) (2012-06-24)
1514
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.1.5...v0.2.0)
1515
-
1516
- **Merged pull requests:**
1517
-
1518
- - added install command --shims flag [\#57](https://github.com/berkshelf/berkshelf/pull/57) ([reset](https://github.com/reset))
1519
-
1520
- ## [v0.1.5](https://github.com/berkshelf/berkshelf/tree/v0.1.5) (2012-06-23)
1521
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.1.4...v0.1.5)
1522
-
1523
- ## [v0.1.4](https://github.com/berkshelf/berkshelf/tree/v0.1.4) (2012-06-23)
1524
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.1.3...v0.1.4)
1525
-
1526
- **Merged pull requests:**
1527
-
1528
- - add includable Thor tasks for Berkshelf [\#56](https://github.com/berkshelf/berkshelf/pull/56) ([reset](https://github.com/reset))
1529
-
1530
- ## [v0.1.3](https://github.com/berkshelf/berkshelf/tree/v0.1.3) (2012-06-23)
1531
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.1.2...v0.1.3)
1532
-
1533
- ## [v0.1.2](https://github.com/berkshelf/berkshelf/tree/v0.1.2) (2012-06-22)
1534
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.1.1...v0.1.2)
1535
-
1536
- **Merged pull requests:**
1537
-
1538
- - Fix uploader bug [\#55](https://github.com/berkshelf/berkshelf/pull/55) ([reset](https://github.com/reset))
1539
-
1540
- ## [v0.1.1](https://github.com/berkshelf/berkshelf/tree/v0.1.1) (2012-06-21)
1541
- [Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.1.0...v0.1.1)
1542
-
1543
- ## [v0.1.0](https://github.com/berkshelf/berkshelf/tree/v0.1.0) (2012-06-21)
1544
- **Merged pull requests:**
1545
-
1546
- - Rename to Berkshelf [\#54](https://github.com/berkshelf/berkshelf/pull/54) ([reset](https://github.com/reset))
1547
- - remove "clean" knife command and supporting functionality [\#53](https://github.com/berkshelf/berkshelf/pull/53) ([reset](https://github.com/reset))
1548
- - add yarddoc gem and guard-yarddoc [\#50](https://github.com/berkshelf/berkshelf/pull/50) ([reset](https://github.com/reset))
1549
- - Add upload command [\#47](https://github.com/berkshelf/berkshelf/pull/47) ([reset](https://github.com/reset))
1550
- - lock required ruby version to \>= 1.9.1 [\#45](https://github.com/berkshelf/berkshelf/pull/45) ([reset](https://github.com/reset))
1551
- - Add CookbookStore and CachedCookbook classes [\#44](https://github.com/berkshelf/berkshelf/pull/44) ([reset](https://github.com/reset))
1552
- - refactor Downloader::Result and ResultSet into a more generalized TXResult [\#43](https://github.com/berkshelf/berkshelf/pull/43) ([reset](https://github.com/reset))
1553
- - Large refactor to turn KCD into a Library with a CLI wrapper [\#42](https://github.com/berkshelf/berkshelf/pull/42) ([reset](https://github.com/reset))
1554
- - Improved error handling and messages [\#40](https://github.com/berkshelf/berkshelf/pull/40) ([reset](https://github.com/reset))
1555
- - Revert "ENV\["TMPDIR"\] is really important for people who don't want to u... [\#39](https://github.com/berkshelf/berkshelf/pull/39) ([erikh](https://github.com/erikh))
1556
- - Init command [\#38](https://github.com/berkshelf/berkshelf/pull/38) ([reset](https://github.com/reset))
1557
- - ENV\["TMPDIR"\] is really important for people who don't want to use "/tmp... [\#34](https://github.com/berkshelf/berkshelf/pull/34) ([erikh](https://github.com/erikh))
1558
- - Fix typo in Readme [\#33](https://github.com/berkshelf/berkshelf/pull/33) ([erikh](https://github.com/erikh))
1559
- - Update [\#32](https://github.com/berkshelf/berkshelf/pull/32) ([capoferro](https://github.com/capoferro))
1560
- - Clean [\#31](https://github.com/berkshelf/berkshelf/pull/31) ([capoferro](https://github.com/capoferro))
1561
- - Remove use of File.write, which was added in 1.9.3. [\#30](https://github.com/berkshelf/berkshelf/pull/30) ([jhowarth](https://github.com/jhowarth))
1562
- - Add dependency computation test. [\#29](https://github.com/berkshelf/berkshelf/pull/29) ([jhowarth](https://github.com/jhowarth))
1563
- - Remove dependency reader [\#28](https://github.com/berkshelf/berkshelf/pull/28) ([jhowarth](https://github.com/jhowarth))
1564
- - Use Chef::Cookbook::Metadata for handling metadata.rb files. [\#27](https://github.com/berkshelf/berkshelf/pull/27) ([jhowarth](https://github.com/jhowarth))
1565
- - VCR with dynamic cassette generation [\#25](https://github.com/berkshelf/berkshelf/pull/25) ([capoferro](https://github.com/capoferro))
1566
- - fix gitignore and clear shelf when installing multiple times in a single... [\#23](https://github.com/berkshelf/berkshelf/pull/23) ([erikh](https://github.com/erikh))
1567
- - Alias itall [\#22](https://github.com/berkshelf/berkshelf/pull/22) ([reset](https://github.com/reset))
1568
- - Lock tests [\#21](https://github.com/berkshelf/berkshelf/pull/21) ([erikh](https://github.com/erikh))
1569
- - Refactors [\#20](https://github.com/berkshelf/berkshelf/pull/20) ([erikh](https://github.com/erikh))
1570
- - not everyone who runs the tests has access to riot github :\) [\#19](https://github.com/berkshelf/berkshelf/pull/19) ([erikh](https://github.com/erikh))
1571
- - Groups [\#18](https://github.com/berkshelf/berkshelf/pull/18) ([ivey](https://github.com/ivey))
1572
- - Friendly errors [\#17](https://github.com/berkshelf/berkshelf/pull/17) ([capoferro](https://github.com/capoferro))
1573
- - Lockfile support [\#13](https://github.com/berkshelf/berkshelf/pull/13) ([erikh](https://github.com/erikh))
1574
- - Git ref [\#12](https://github.com/berkshelf/berkshelf/pull/12) ([erikh](https://github.com/erikh))
1575
- - Knife plugin [\#11](https://github.com/berkshelf/berkshelf/pull/11) ([erikh](https://github.com/erikh))
1576
- - Git support [\#10](https://github.com/berkshelf/berkshelf/pull/10) ([erikh](https://github.com/erikh))
1577
- - Path [\#9](https://github.com/berkshelf/berkshelf/pull/9) ([capoferro](https://github.com/capoferro))
1578
- - Cookbookfile \> Cheffile to avoid unintentional conflicts with librarian-chef [\#8](https://github.com/berkshelf/berkshelf/pull/8) ([capoferro](https://github.com/capoferro))
1579
- - Cookbook refactors [\#7](https://github.com/berkshelf/berkshelf/pull/7) ([erikh](https://github.com/erikh))
1580
- - test cleanup: [\#6](https://github.com/berkshelf/berkshelf/pull/6) ([erikh](https://github.com/erikh))
1581
- - Fat commit, see comments: [\#5](https://github.com/berkshelf/berkshelf/pull/5) ([erikh](https://github.com/erikh))
1582
- - Executable [\#4](https://github.com/berkshelf/berkshelf/pull/4) ([capoferro](https://github.com/capoferro))
1583
- - Rdoc readme [\#3](https://github.com/berkshelf/berkshelf/pull/3) ([erikh](https://github.com/erikh))
1584
- - Rake checks [\#2](https://github.com/berkshelf/berkshelf/pull/2) ([erikh](https://github.com/erikh))
1585
- - gemfile and building gem properly. Version is in lib/remy/version.rb [\#1](https://github.com/berkshelf/berkshelf/pull/1) ([erikh](https://github.com/erikh))
1586
-
1587
-
1588
-
1589
- \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*