berkshelf 4.3.5 → 5.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +12 -14
- data/CHANGELOG.md +326 -1131
- data/Gemfile +19 -2
- data/Gemfile.lock +152 -142
- data/README.md +4 -6
- data/Rakefile +10 -6
- data/berkshelf.gemspec +7 -21
- data/docs/berkshelf_for_newcomers.md +65 -0
- data/features/commands/install.feature +6 -6
- data/features/commands/search.feature +1 -1
- data/features/config.feature +5 -5
- data/features/lockfile.feature +2 -2
- data/features/step_definitions/utility_steps.rb +5 -3
- data/features/support/env.rb +3 -0
- data/lib/berkshelf.rb +3 -2
- data/lib/berkshelf/config.rb +10 -1
- data/lib/berkshelf/downloader.rb +34 -0
- data/lib/berkshelf/locations/git.rb +2 -2
- data/lib/berkshelf/locations/github.rb +13 -1
- data/lib/berkshelf/lockfile.rb +5 -2
- data/lib/berkshelf/version.rb +1 -1
- data/spec/unit/berkshelf/init_generator_spec.rb +1 -1
- data/spec/unit/berkshelf/lockfile_parser_spec.rb +8 -0
- data/spec/unit/berkshelf/lockfile_spec.rb +1 -0
- data/spec/unit/berkshelf/validator_spec.rb +1 -1
- data/spec/unit/berkshelf_spec.rb +27 -0
- metadata +26 -208
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cb12888199733e39e358955461665041ea8e137c
|
4
|
+
data.tar.gz: 55a60520ae364fd60abbd9dd9a78307de991e1f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a8ad24b006d9100ebcf2f59756b1e7b75c000f6037b59ee26a222b664568e13fedfe5e3f2b6e74a14e1d4ae01eef231528f34fa83a69d83fa0c3c0f3a3a5ea63
|
7
|
+
data.tar.gz: cb71aa0a1e98e05e4c32053be7da598628ccacf4ec72b476bb85c2b32f03495f0d62339541d6596a2af8cfed24532e868292f848115b0617d509fcbe80cb475a
|
data/.travis.yml
CHANGED
@@ -4,17 +4,16 @@ addons:
|
|
4
4
|
- chef
|
5
5
|
- git
|
6
6
|
- graphviz
|
7
|
-
- libarchive12
|
8
7
|
- libarchive-dev
|
9
|
-
- libgecode-dev
|
8
|
+
# - libgecode-dev
|
10
9
|
sources:
|
11
|
-
- chef-stable-
|
10
|
+
- chef-stable-trusty
|
12
11
|
cache:
|
13
12
|
- apt
|
14
13
|
- bundler
|
15
|
-
dist:
|
16
|
-
env:
|
17
|
-
global: USE_SYSTEM_GECODE=1
|
14
|
+
dist: trusty
|
15
|
+
#env:
|
16
|
+
# global: USE_SYSTEM_GECODE=1
|
18
17
|
language: ruby
|
19
18
|
notifications:
|
20
19
|
irc:
|
@@ -28,22 +27,21 @@ notifications:
|
|
28
27
|
branches:
|
29
28
|
only:
|
30
29
|
- master
|
31
|
-
bundler_args: --without guard changelog --jobs 7
|
30
|
+
#bundler_args: --without guard changelog --jobs 7
|
32
31
|
before_install:
|
33
|
-
|
34
|
-
# using some gem APIs. See: https://github.com/bundler/bundler/issues/4368
|
35
|
-
- gem update --system 2.6.1
|
32
|
+
- gem update --system
|
36
33
|
- gem install bundler
|
34
|
+
install: travis_wait bundle install --without guard changelog --jobs 7 --retry=3
|
37
35
|
before_script:
|
38
36
|
- echo "StrictHostKeyChecking no" > ~/.ssh/config
|
39
37
|
- git config --global user.email "ci@berkshelf.com"
|
40
38
|
- git config --global user.name "Berkshelf"
|
41
39
|
matrix:
|
42
40
|
include:
|
43
|
-
- rvm: 2.
|
44
|
-
- rvm: 2.1
|
45
|
-
- rvm:
|
46
|
-
- rvm: 2.2
|
41
|
+
- rvm: 2.2.5
|
42
|
+
- rvm: 2.3.1
|
43
|
+
- rvm: ruby-head
|
44
|
+
- rvm: 2.2.5
|
47
45
|
before_install:
|
48
46
|
# Failures in the berkshelf-api gemspec were happening with bundler 1.8
|
49
47
|
- gem install bundler --version=1.10.6
|
data/CHANGELOG.md
CHANGED
@@ -1,17 +1,43 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [
|
4
|
-
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.
|
3
|
+
## [5.0.0](https://github.com/berkshelf/berkshelf/tree/5.0.0) (2016-08-09)
|
4
|
+
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.5...5.0.0)
|
5
5
|
|
6
6
|
**Merged pull requests:**
|
7
7
|
|
8
|
-
-
|
9
|
-
-
|
10
|
-
-
|
11
|
-
-
|
8
|
+
- 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))
|
9
|
+
- bump berkshelf-api and associated deps [\#1589](https://github.com/berkshelf/berkshelf/pull/1589) ([lamont-granquist](https://github.com/lamont-granquist))
|
10
|
+
- force encoding to UTF-8 [\#1588](https://github.com/berkshelf/berkshelf/pull/1588) ([lamont-granquist](https://github.com/lamont-granquist))
|
11
|
+
- Bump dep-selector-libgecode to 1.3.1 [\#1586](https://github.com/berkshelf/berkshelf/pull/1586) ([stevendanna](https://github.com/stevendanna))
|
12
|
+
- allow user to change git url handler [\#1585](https://github.com/berkshelf/berkshelf/pull/1585) ([lamont-granquist](https://github.com/lamont-granquist))
|
13
|
+
- fix specs for bento box [\#1582](https://github.com/berkshelf/berkshelf/pull/1582) ([lamont-granquist](https://github.com/lamont-granquist))
|
14
|
+
- Fixes \#1473 where Lockfile\#trusted? would compare dependencies of oth… [\#1580](https://github.com/berkshelf/berkshelf/pull/1580) ([bbaugher](https://github.com/bbaugher))
|
15
|
+
- Require Ruby 2.1+ [\#1575](https://github.com/berkshelf/berkshelf/pull/1575) ([tas50](https://github.com/tas50))
|
16
|
+
- Add introductory docs for newcomers. [\#1520](https://github.com/berkshelf/berkshelf/pull/1520) ([jzohrab](https://github.com/jzohrab))
|
17
|
+
- Update Vagrantfile generator default vm box [\#1491](https://github.com/berkshelf/berkshelf/pull/1491) ([tannerj](https://github.com/tannerj))
|
18
|
+
- Add the support for "gitlab" location\_type passed by Berkshelf API [\#1419](https://github.com/berkshelf/berkshelf/pull/1419) ([gueux](https://github.com/gueux))
|
12
19
|
|
13
|
-
## [
|
14
|
-
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.
|
20
|
+
## [v4.3.5](https://github.com/berkshelf/berkshelf/tree/v4.3.5) (2016-06-13)
|
21
|
+
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.4...v4.3.5)
|
22
|
+
|
23
|
+
**Merged pull requests:**
|
24
|
+
|
25
|
+
- We released with a dependency on a github source [\#1572](https://github.com/berkshelf/berkshelf/pull/1572) ([tyler-ball](https://github.com/tyler-ball))
|
26
|
+
- 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))
|
27
|
+
|
28
|
+
## [v4.3.4](https://github.com/berkshelf/berkshelf/tree/v4.3.4) (2016-06-13)
|
29
|
+
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.3...v4.3.4)
|
30
|
+
|
31
|
+
**Merged pull requests:**
|
32
|
+
|
33
|
+
- Update release docs and bump Gemfile.lock. [\#1570](https://github.com/berkshelf/berkshelf/pull/1570) ([tylercloke](https://github.com/tylercloke))
|
34
|
+
- Release v4.3.4. [\#1569](https://github.com/berkshelf/berkshelf/pull/1569) ([tylercloke](https://github.com/tylercloke))
|
35
|
+
- Deprecate `berks init` in favor of `chef generate cookbook`. [\#1567](https://github.com/berkshelf/berkshelf/pull/1567) ([tylercloke](https://github.com/tylercloke))
|
36
|
+
- Deprecate `berks cookbook` in favor of `chef generate cookbook`. [\#1565](https://github.com/berkshelf/berkshelf/pull/1565) ([tylercloke](https://github.com/tylercloke))
|
37
|
+
- Use rubygem's tar implementation [\#1553](https://github.com/berkshelf/berkshelf/pull/1553) ([thommay](https://github.com/thommay))
|
38
|
+
|
39
|
+
## [v4.3.3](https://github.com/berkshelf/berkshelf/tree/v4.3.3) (2016-05-09)
|
40
|
+
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.2...v4.3.3)
|
15
41
|
|
16
42
|
**Merged pull requests:**
|
17
43
|
|
@@ -19,20 +45,16 @@
|
|
19
45
|
- fix up @reset's review comments from \#1527 [\#1543](https://github.com/berkshelf/berkshelf/pull/1543) ([thommay](https://github.com/thommay))
|
20
46
|
- Correct usage of Net::HTTP.new [\#1532](https://github.com/berkshelf/berkshelf/pull/1532) ([xeron](https://github.com/xeron))
|
21
47
|
|
22
|
-
## [
|
23
|
-
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.1...
|
48
|
+
## [v4.3.2](https://github.com/berkshelf/berkshelf/tree/v4.3.2) (2016-04-06)
|
49
|
+
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.1...v4.3.2)
|
24
50
|
|
25
|
-
**
|
51
|
+
**Merged pull requests:**
|
26
52
|
|
27
|
-
-
|
53
|
+
- Updating Test Kitchen to the latest version [\#1542](https://github.com/berkshelf/berkshelf/pull/1542) ([tyler-ball](https://github.com/tyler-ball))
|
28
54
|
|
29
55
|
## [v4.3.1](https://github.com/berkshelf/berkshelf/tree/v4.3.1) (2016-03-23)
|
30
56
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.3.0...v4.3.1)
|
31
57
|
|
32
|
-
**Implemented enhancements:**
|
33
|
-
|
34
|
-
- Authenticated universe endpoint in new Chef Server 12.4 [\#1511](https://github.com/berkshelf/berkshelf/issues/1511)
|
35
|
-
|
36
58
|
**Merged pull requests:**
|
37
59
|
|
38
60
|
- Update all dependencies [\#1535](https://github.com/berkshelf/berkshelf/pull/1535) ([danielsdeleo](https://github.com/danielsdeleo))
|
@@ -53,13 +75,13 @@
|
|
53
75
|
**Merged pull requests:**
|
54
76
|
|
55
77
|
- Relax dependencies to accept minor version bumps [\#1523](https://github.com/berkshelf/berkshelf/pull/1523) ([jkeiser](https://github.com/jkeiser))
|
56
|
-
- Bump version to 4.2.2 [\#1522](https://github.com/berkshelf/berkshelf/pull/1522) ([jkeiser](https://github.com/jkeiser))
|
57
78
|
|
58
79
|
## [v4.2.2](https://github.com/berkshelf/berkshelf/tree/v4.2.2) (2016-02-26)
|
59
80
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.2.1...v4.2.2)
|
60
81
|
|
61
82
|
**Merged pull requests:**
|
62
83
|
|
84
|
+
- Bump version to 4.2.2 [\#1522](https://github.com/berkshelf/berkshelf/pull/1522) ([jkeiser](https://github.com/jkeiser))
|
63
85
|
- Pin github\_changelog\_generator [\#1521](https://github.com/berkshelf/berkshelf/pull/1521) ([jkeiser](https://github.com/jkeiser))
|
64
86
|
|
65
87
|
## [v4.2.1](https://github.com/berkshelf/berkshelf/tree/v4.2.1) (2016-02-19)
|
@@ -72,11 +94,6 @@
|
|
72
94
|
## [v4.2.0](https://github.com/berkshelf/berkshelf/tree/v4.2.0) (2016-02-19)
|
73
95
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.1.1...v4.2.0)
|
74
96
|
|
75
|
-
**Closed issues:**
|
76
|
-
|
77
|
-
- Allow using a test cookbook from a subpath of another cookbook [\#1505](https://github.com/berkshelf/berkshelf/issues/1505)
|
78
|
-
- Allow one to "berks apply" to a json environment file [\#875](https://github.com/berkshelf/berkshelf/issues/875)
|
79
|
-
|
80
97
|
**Merged pull requests:**
|
81
98
|
|
82
99
|
- Update the chef-config pin to 12.7.2 [\#1516](https://github.com/berkshelf/berkshelf/pull/1516) ([jaym](https://github.com/jaym))
|
@@ -93,70 +110,29 @@
|
|
93
110
|
## [v4.1.0](https://github.com/berkshelf/berkshelf/tree/v4.1.0) (2016-02-04)
|
94
111
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.0.1...v4.1.0)
|
95
112
|
|
96
|
-
**
|
97
|
-
|
98
|
-
- Add functions for automatically generating portions of metadata [\#957](https://github.com/berkshelf/berkshelf/issues/957)
|
99
|
-
- Add a new `solver` Berksfile DSL option [\#1482](https://github.com/berkshelf/berkshelf/pull/1482) ([martinb3](https://github.com/martinb3))
|
100
|
-
- Upgrade to solve 2.0 [\#1475](https://github.com/berkshelf/berkshelf/pull/1475) ([jkeiser](https://github.com/jkeiser))
|
101
|
-
- Have berks install bump only required cookbooks [\#1462](https://github.com/berkshelf/berkshelf/pull/1462) ([FlorentFlament](https://github.com/FlorentFlament))
|
102
|
-
|
103
|
-
**Fixed bugs:**
|
113
|
+
**Merged pull requests:**
|
104
114
|
|
105
|
-
- ERROR -- : Actor crashed! found while running berks install [\#1418](https://github.com/berkshelf/berkshelf/issues/1418)
|
106
115
|
- remove berkshelf gem entry in generated Gemfile [\#1485](https://github.com/berkshelf/berkshelf/pull/1485) ([reset](https://github.com/reset))
|
107
116
|
- Pin aruba to 0.10.2 [\#1484](https://github.com/berkshelf/berkshelf/pull/1484) ([smith](https://github.com/smith))
|
117
|
+
- Add a new `solver` Berksfile DSL option [\#1482](https://github.com/berkshelf/berkshelf/pull/1482) ([martinb3](https://github.com/martinb3))
|
118
|
+
- Upgrade to solve 2.0 [\#1475](https://github.com/berkshelf/berkshelf/pull/1475) ([jkeiser](https://github.com/jkeiser))
|
108
119
|
- Use Net::HTTP.new instead of Net::HTTP.start [\#1467](https://github.com/berkshelf/berkshelf/pull/1467) ([jkeiser](https://github.com/jkeiser))
|
109
|
-
|
110
|
-
**Merged pull requests:**
|
111
|
-
|
112
|
-
- When doing 'berks install' Lock cookbooks' version according to the lockfile [\#1460](https://github.com/berkshelf/berkshelf/pull/1460) ([FlorentFlament](https://github.com/FlorentFlament))
|
120
|
+
- Have berks install bump only required cookbooks [\#1462](https://github.com/berkshelf/berkshelf/pull/1462) ([FlorentFlament](https://github.com/FlorentFlament))
|
113
121
|
|
114
122
|
## [v4.0.1](https://github.com/berkshelf/berkshelf/tree/v4.0.1) (2015-10-07)
|
115
123
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v4.0.0...v4.0.1)
|
116
124
|
|
117
|
-
**Fixed bugs:**
|
118
|
-
|
119
|
-
- Can no longer install 3.3.0 on Chef 11/Ruby 1.9 [\#1464](https://github.com/berkshelf/berkshelf/issues/1464)
|
120
|
-
|
121
125
|
## [v4.0.0](https://github.com/berkshelf/berkshelf/tree/v4.0.0) (2015-10-06)
|
122
126
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.3.0...v4.0.0)
|
123
127
|
|
124
|
-
**Closed issues:**
|
125
|
-
|
126
|
-
- berks crash parsing attributes in metadata.rb [\#1461](https://github.com/berkshelf/berkshelf/issues/1461)
|
127
|
-
- Is it possible to write my own `Location`? [\#1455](https://github.com/berkshelf/berkshelf/issues/1455)
|
128
|
-
- Berkshelf does not respect cookbook locations on dependencies of dependencies [\#1452](https://github.com/berkshelf/berkshelf/issues/1452)
|
129
|
-
- not able to upload cookbook to chef server via berks upload. [\#1450](https://github.com/berkshelf/berkshelf/issues/1450)
|
130
|
-
- ERROR -- : Actor crashed! during berks install [\#1449](https://github.com/berkshelf/berkshelf/issues/1449)
|
131
|
-
- Unit tests fail on master due to new celluloid. [\#1448](https://github.com/berkshelf/berkshelf/issues/1448)
|
132
|
-
- Resolving cookbook dependencies fills up hard drive [\#1447](https://github.com/berkshelf/berkshelf/issues/1447)
|
133
|
-
- Berkshelf doesn't recognize SSL bundle overrides [\#1443](https://github.com/berkshelf/berkshelf/issues/1443)
|
134
|
-
- Can you release a new version of Berkshelf? [\#1440](https://github.com/berkshelf/berkshelf/issues/1440)
|
135
|
-
- Documentation updates [\#1413](https://github.com/berkshelf/berkshelf/issues/1413)
|
136
|
-
- Cookbooks with same name but different paths in different groups cannot be resolved. [\#1401](https://github.com/berkshelf/berkshelf/issues/1401)
|
137
|
-
- Solution for lack of NO\_PROXY support - feedback requested [\#1341](https://github.com/berkshelf/berkshelf/issues/1341)
|
138
|
-
|
139
128
|
**Merged pull requests:**
|
140
129
|
|
130
|
+
- When doing 'berks install' Lock cookbooks' version according to the lockfile [\#1460](https://github.com/berkshelf/berkshelf/pull/1460) ([FlorentFlament](https://github.com/FlorentFlament))
|
141
131
|
- Removes the gzip middleware from Faraday builder. [\#1444](https://github.com/berkshelf/berkshelf/pull/1444) ([johnbellone](https://github.com/johnbellone))
|
142
132
|
|
143
133
|
## [v3.3.0](https://github.com/berkshelf/berkshelf/tree/v3.3.0) (2015-06-30)
|
144
134
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.2.4...v3.3.0)
|
145
135
|
|
146
|
-
**Fixed bugs:**
|
147
|
-
|
148
|
-
- `berks package` omitting all files except metadata.json on OS X Yosemite [\#1435](https://github.com/berkshelf/berkshelf/issues/1435)
|
149
|
-
|
150
|
-
**Closed issues:**
|
151
|
-
|
152
|
-
- "berks install" fetches from incorrect git source [\#1438](https://github.com/berkshelf/berkshelf/issues/1438)
|
153
|
-
- Berks upload against a local chef-zero instance is rediculously slow \(30 mins or more\) [\#1431](https://github.com/berkshelf/berkshelf/issues/1431)
|
154
|
-
- Feature request: ability to specify multiple Berksfiles [\#1430](https://github.com/berkshelf/berkshelf/issues/1430)
|
155
|
-
- berks vendor fails with dependent Berksfile [\#1428](https://github.com/berkshelf/berkshelf/issues/1428)
|
156
|
-
- Berkshelf should not require $HOME to be set [\#1427](https://github.com/berkshelf/berkshelf/issues/1427)
|
157
|
-
- Private BitBucket repository [\#1426](https://github.com/berkshelf/berkshelf/issues/1426)
|
158
|
-
- Berkshelf upload fails [\#1424](https://github.com/berkshelf/berkshelf/issues/1424)
|
159
|
-
|
160
136
|
**Merged pull requests:**
|
161
137
|
|
162
138
|
- tiny docfixes [\#1434](https://github.com/berkshelf/berkshelf/pull/1434) ([dastergon](https://github.com/dastergon))
|
@@ -166,35 +142,6 @@
|
|
166
142
|
## [v3.2.4](https://github.com/berkshelf/berkshelf/tree/v3.2.4) (2015-04-30)
|
167
143
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.2.3...v3.2.4)
|
168
144
|
|
169
|
-
**Closed issues:**
|
170
|
-
|
171
|
-
- Why does berkshelf tries to use deleted cookbook? [\#1421](https://github.com/berkshelf/berkshelf/issues/1421)
|
172
|
-
- Question about dependency resolver [\#1416](https://github.com/berkshelf/berkshelf/issues/1416)
|
173
|
-
- Weird version resolved for apache2 cookbook [\#1415](https://github.com/berkshelf/berkshelf/issues/1415)
|
174
|
-
- Support for multiple files [\#1411](https://github.com/berkshelf/berkshelf/issues/1411)
|
175
|
-
- berks upload fails with "Invalid value '~\> 0' for metadata.dependencies" [\#1409](https://github.com/berkshelf/berkshelf/issues/1409)
|
176
|
-
- Leverage non-supermarket dependencies' Berksfiles [\#1408](https://github.com/berkshelf/berkshelf/issues/1408)
|
177
|
-
- cookbook gets uploaded with half name [\#1407](https://github.com/berkshelf/berkshelf/issues/1407)
|
178
|
-
- Version metadata issue when using Berkshelf [\#1406](https://github.com/berkshelf/berkshelf/issues/1406)
|
179
|
-
- Long delay at "Resolving cookbook dependencies with Berkshelf 3.2.3..." during a "kitchen converge" [\#1403](https://github.com/berkshelf/berkshelf/issues/1403)
|
180
|
-
- Allow include support within Berksfile [\#1397](https://github.com/berkshelf/berkshelf/issues/1397)
|
181
|
-
- \[gh-pages\] Vagrant+Berkshelf plugin version is not supported [\#1396](https://github.com/berkshelf/berkshelf/issues/1396)
|
182
|
-
- Can't disable SSL verification [\#1390](https://github.com/berkshelf/berkshelf/issues/1390)
|
183
|
-
- Two cookbooks with different versions of the same dependency [\#1389](https://github.com/berkshelf/berkshelf/issues/1389)
|
184
|
-
- Can't package cookbooks on Windows host using test-kitchen [\#1388](https://github.com/berkshelf/berkshelf/issues/1388)
|
185
|
-
- berks install --without solo [\#1387](https://github.com/berkshelf/berkshelf/issues/1387)
|
186
|
-
- multiple depends lines for same cookbook? [\#1386](https://github.com/berkshelf/berkshelf/issues/1386)
|
187
|
-
- How to skip strict dependency check while running 'berks install' [\#1385](https://github.com/berkshelf/berkshelf/issues/1385)
|
188
|
-
- berks install error - data too large for key size \(OpenSSL::PKey::RSAError\) [\#1384](https://github.com/berkshelf/berkshelf/issues/1384)
|
189
|
-
- issue using "berks upload" [\#1383](https://github.com/berkshelf/berkshelf/issues/1383)
|
190
|
-
- "berks upload" Leaving out a File [\#1382](https://github.com/berkshelf/berkshelf/issues/1382)
|
191
|
-
- Dependancy resolution fails when using github: in cookbooks brought in via path: [\#1379](https://github.com/berkshelf/berkshelf/issues/1379)
|
192
|
-
- berks upload resolving wrong client\_key path from knife.rb [\#1376](https://github.com/berkshelf/berkshelf/issues/1376)
|
193
|
-
- Where to begin ... [\#1371](https://github.com/berkshelf/berkshelf/issues/1371)
|
194
|
-
- Getting undefined method `retryable' on new v3.2.3 [\#1370](https://github.com/berkshelf/berkshelf/issues/1370)
|
195
|
-
- Bump required Retryable gem version [\#1368](https://github.com/berkshelf/berkshelf/issues/1368)
|
196
|
-
- SLv3 read server certificate B: certificate verify failed \(Faraday::SSLError\) [\#1360](https://github.com/berkshelf/berkshelf/issues/1360)
|
197
|
-
|
198
145
|
**Merged pull requests:**
|
199
146
|
|
200
147
|
- Fix defunct link. [\#1417](https://github.com/berkshelf/berkshelf/pull/1417) ([lorefnon](https://github.com/lorefnon))
|
@@ -211,16 +158,6 @@
|
|
211
158
|
## [v3.2.3](https://github.com/berkshelf/berkshelf/tree/v3.2.3) (2015-01-14)
|
212
159
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.2.2...v3.2.3)
|
213
160
|
|
214
|
-
**Fixed bugs:**
|
215
|
-
|
216
|
-
- Recipe metadata.rb is removed [\#1344](https://github.com/berkshelf/berkshelf/issues/1344)
|
217
|
-
|
218
|
-
**Closed issues:**
|
219
|
-
|
220
|
-
- Unable to resolve dependencies: berkshelf requires retryable \(~\> 1.3.3\); ridley requires retryable \(\>= 2.0.0\) [\#1369](https://github.com/berkshelf/berkshelf/issues/1369)
|
221
|
-
- Berkshelf fails to parse metadata.rb when referencing cookbook from local directory / git / github [\#1366](https://github.com/berkshelf/berkshelf/issues/1366)
|
222
|
-
- Local cache and decomissioning version of cookbook in supermarket [\#1361](https://github.com/berkshelf/berkshelf/issues/1361)
|
223
|
-
|
224
161
|
**Merged pull requests:**
|
225
162
|
|
226
163
|
- super minor typo fix [\#1367](https://github.com/berkshelf/berkshelf/pull/1367) ([dpetzel](https://github.com/dpetzel))
|
@@ -232,12 +169,6 @@
|
|
232
169
|
## [v3.2.2](https://github.com/berkshelf/berkshelf/tree/v3.2.2) (2014-12-18)
|
233
170
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.2.1...v3.2.2)
|
234
171
|
|
235
|
-
**Closed issues:**
|
236
|
-
|
237
|
-
- Git option in Berksfile is ignored [\#1355](https://github.com/berkshelf/berkshelf/issues/1355)
|
238
|
-
- source "https://supermarket.getchef.com" should be updated to chef.io domain [\#1349](https://github.com/berkshelf/berkshelf/issues/1349)
|
239
|
-
- Error disabling SSL [\#1144](https://github.com/berkshelf/berkshelf/issues/1144)
|
240
|
-
|
241
172
|
**Merged pull requests:**
|
242
173
|
|
243
174
|
- Only exclude top-level metadata.rb file while vendoring [\#1353](https://github.com/berkshelf/berkshelf/pull/1353) ([jpruetting](https://github.com/jpruetting))
|
@@ -248,18 +179,6 @@
|
|
248
179
|
## [v3.2.1](https://github.com/berkshelf/berkshelf/tree/v3.2.1) (2014-11-13)
|
249
180
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.2.0...v3.2.1)
|
250
181
|
|
251
|
-
**Fixed bugs:**
|
252
|
-
|
253
|
-
- `berks vendor` puts all files in a single directory [\#1336](https://github.com/berkshelf/berkshelf/issues/1336)
|
254
|
-
- `berks upload` and `berks install` does not clean up temp directories and files [\#1333](https://github.com/berkshelf/berkshelf/issues/1333)
|
255
|
-
- berkshelf 3.1.1 is not uploading files from cookbook files directory [\#1191](https://github.com/berkshelf/berkshelf/issues/1191)
|
256
|
-
|
257
|
-
**Closed issues:**
|
258
|
-
|
259
|
-
- berks vendor does not exclude "metadata.rb" from destination dir [\#1338](https://github.com/berkshelf/berkshelf/issues/1338)
|
260
|
-
- \[test\] The tests shouldn't overwrite ~/.berkshelf/config.json [\#1227](https://github.com/berkshelf/berkshelf/issues/1227)
|
261
|
-
- \[test\] The spec for cookbook\_generator doesn't work with local ~/.chef/knife.rb file. [\#1226](https://github.com/berkshelf/berkshelf/issues/1226)
|
262
|
-
|
263
182
|
**Merged pull requests:**
|
264
183
|
|
265
184
|
- Correct exclusion of metadata.rb [\#1339](https://github.com/berkshelf/berkshelf/pull/1339) ([rveznaver](https://github.com/rveznaver))
|
@@ -269,58 +188,6 @@
|
|
269
188
|
## [v3.2.0](https://github.com/berkshelf/berkshelf/tree/v3.2.0) (2014-10-29)
|
270
189
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.1.5...v3.2.0)
|
271
190
|
|
272
|
-
**Implemented enhancements:**
|
273
|
-
|
274
|
-
- Update Vendor Directories without Top-Level Directory Removal [\#1275](https://github.com/berkshelf/berkshelf/issues/1275)
|
275
|
-
- Generate a lock file with the same name of the original Berksfile [\#1247](https://github.com/berkshelf/berkshelf/issues/1247)
|
276
|
-
|
277
|
-
**Fixed bugs:**
|
278
|
-
|
279
|
-
- Can't add a github cookbook - Failed to complete \#converge action: \[Berkshelf::NotACookbook\] [\#1311](https://github.com/berkshelf/berkshelf/issues/1311)
|
280
|
-
- BERKSHELF\_PATH must be an absolute path to checkout git-based Cookbooks [\#1256](https://github.com/berkshelf/berkshelf/issues/1256)
|
281
|
-
- timeout.rb:57:in `start': can't create Thread \(11\) \(ThreadError\) [\#1224](https://github.com/berkshelf/berkshelf/issues/1224)
|
282
|
-
- Package task reports unhelpful Ridley::Errors::MissingNameAttribute error message [\#1197](https://github.com/berkshelf/berkshelf/issues/1197)
|
283
|
-
- berks upload fails with "Invalid element in array value of 'files'." [\#706](https://github.com/berkshelf/berkshelf/issues/706)
|
284
|
-
|
285
|
-
**Closed issues:**
|
286
|
-
|
287
|
-
- Single quotes in berks viz will break windows clients [\#1323](https://github.com/berkshelf/berkshelf/issues/1323)
|
288
|
-
- Feature - viz with versions [\#1320](https://github.com/berkshelf/berkshelf/issues/1320)
|
289
|
-
- Can't fetch cookbook [\#1319](https://github.com/berkshelf/berkshelf/issues/1319)
|
290
|
-
- Can't vendor to existing directory [\#1315](https://github.com/berkshelf/berkshelf/issues/1315)
|
291
|
-
- Berks chooses supermarket over git [\#1310](https://github.com/berkshelf/berkshelf/issues/1310)
|
292
|
-
- berks upload fails with delete permission denied on metadata.json [\#1308](https://github.com/berkshelf/berkshelf/issues/1308)
|
293
|
-
- berks upload fails when berkshelf path has a space in it [\#1307](https://github.com/berkshelf/berkshelf/issues/1307)
|
294
|
-
- Support of multiple cookbook with same name [\#1306](https://github.com/berkshelf/berkshelf/issues/1306)
|
295
|
-
- Pre-release versions cause upload to fail [\#1305](https://github.com/berkshelf/berkshelf/issues/1305)
|
296
|
-
- Multiple sources causes Berkshelf to hang [\#1304](https://github.com/berkshelf/berkshelf/issues/1304)
|
297
|
-
- berkshelf / lib / berkshelf / locations / git.rb : 62 \[The issues with unstaged changes on case insensitive file system\) [\#1302](https://github.com/berkshelf/berkshelf/issues/1302)
|
298
|
-
- Bump Celluloid dependency to 0.16.0 \(not pre\) [\#1300](https://github.com/berkshelf/berkshelf/issues/1300)
|
299
|
-
- berks continues to show version 2.0.18 [\#1299](https://github.com/berkshelf/berkshelf/issues/1299)
|
300
|
-
- RuntimeError: Couldn't determine Berks version [\#1298](https://github.com/berkshelf/berkshelf/issues/1298)
|
301
|
-
- "Missing Cookbooks: No such cookbook: apt" when using depends in metadata.rb [\#1297](https://github.com/berkshelf/berkshelf/issues/1297)
|
302
|
-
- Berkshelf::Packager fails when in used in multithreading env [\#1296](https://github.com/berkshelf/berkshelf/issues/1296)
|
303
|
-
- Tag names with duplicate \#'s on the end are truncated in Berksfile.lock [\#1295](https://github.com/berkshelf/berkshelf/issues/1295)
|
304
|
-
- berks install failing on due to file compression error [\#1292](https://github.com/berkshelf/berkshelf/issues/1292)
|
305
|
-
- presumably berks should exit with 127 rather than 0 when no such subcomand [\#1288](https://github.com/berkshelf/berkshelf/issues/1288)
|
306
|
-
- \[Berkshelf::APIClient::TimeoutError\] Unable to connect to: https://supermarket.getchef.com [\#1287](https://github.com/berkshelf/berkshelf/issues/1287)
|
307
|
-
- I wrote a cookbook that can't be included in other cookbooks [\#1284](https://github.com/berkshelf/berkshelf/issues/1284)
|
308
|
-
- set cookbook sources in user/site configuration, not Berksfile [\#1281](https://github.com/berkshelf/berkshelf/issues/1281)
|
309
|
-
- Error installing berkshelf on FreeBSD 10.0-RELEASE [\#1280](https://github.com/berkshelf/berkshelf/issues/1280)
|
310
|
-
- Support Vagrant's rsync method for loading code into the VM [\#1278](https://github.com/berkshelf/berkshelf/issues/1278)
|
311
|
-
- Why Use Static String in Metadata.rb generated files? [\#1277](https://github.com/berkshelf/berkshelf/issues/1277)
|
312
|
-
- Lockout dependency gem versions [\#1276](https://github.com/berkshelf/berkshelf/issues/1276)
|
313
|
-
- Redirect Errors [\#1269](https://github.com/berkshelf/berkshelf/issues/1269)
|
314
|
-
- berks install fails with JSON error [\#1267](https://github.com/berkshelf/berkshelf/issues/1267)
|
315
|
-
- Expose berkshelf-api-client timeout features [\#1262](https://github.com/berkshelf/berkshelf/issues/1262)
|
316
|
-
- Default Vagrantfile requires vagrant-omnibus plugin [\#1244](https://github.com/berkshelf/berkshelf/issues/1244)
|
317
|
-
- Berks 3.1.2 - Ridley::Errors::SandboxCommitError: [\#1223](https://github.com/berkshelf/berkshelf/issues/1223)
|
318
|
-
- Hashie gem needs to be \< v3.0 [\#1218](https://github.com/berkshelf/berkshelf/issues/1218)
|
319
|
-
- berks throws in celluloid [\#1171](https://github.com/berkshelf/berkshelf/issues/1171)
|
320
|
-
- Failed to build gem native extension [\#1134](https://github.com/berkshelf/berkshelf/issues/1134)
|
321
|
-
- Respect transitive dependencies on git branches over community site [\#1126](https://github.com/berkshelf/berkshelf/issues/1126)
|
322
|
-
- Berks upload resulting in ECONNRESET [\#1067](https://github.com/berkshelf/berkshelf/issues/1067)
|
323
|
-
|
324
191
|
**Merged pull requests:**
|
325
192
|
|
326
193
|
- 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))
|
@@ -348,34 +215,14 @@
|
|
348
215
|
## [v3.1.5](https://github.com/berkshelf/berkshelf/tree/v3.1.5) (2014-08-01)
|
349
216
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.1.4...v3.1.5)
|
350
217
|
|
351
|
-
**
|
352
|
-
|
353
|
-
- Add Super Market location\_type support [\#1238](https://github.com/berkshelf/berkshelf/pull/1238) ([reset](https://github.com/reset))
|
354
|
-
|
355
|
-
**Fixed bugs:**
|
218
|
+
**Merged pull requests:**
|
356
219
|
|
357
220
|
- berks cookbook generator uninitialized constant Berkshelf::CookbookGenerator::LICENSES [\#1268](https://github.com/berkshelf/berkshelf/pull/1268) ([dasibre](https://github.com/dasibre))
|
358
|
-
|
359
|
-
**Closed issues:**
|
360
|
-
|
361
|
-
- Configurational issue [\#1272](https://github.com/berkshelf/berkshelf/issues/1272)
|
362
|
-
- Crashing when contraints doesn't mean [\#1263](https://github.com/berkshelf/berkshelf/issues/1263)
|
363
|
-
- bundle problems with 3.1.4 [\#1261](https://github.com/berkshelf/berkshelf/issues/1261)
|
221
|
+
- Add Super Market location\_type support [\#1238](https://github.com/berkshelf/berkshelf/pull/1238) ([reset](https://github.com/reset))
|
364
222
|
|
365
223
|
## [v3.1.4](https://github.com/berkshelf/berkshelf/tree/v3.1.4) (2014-07-14)
|
366
224
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.18...v3.1.4)
|
367
225
|
|
368
|
-
**Fixed bugs:**
|
369
|
-
|
370
|
-
- Berkshelf can't checkout Git Cookbooks to a custom BERKSHELF\_PATH [\#1255](https://github.com/berkshelf/berkshelf/issues/1255)
|
371
|
-
|
372
|
-
**Closed issues:**
|
373
|
-
|
374
|
-
- 301 from community \(supermarket\) stop some cookbooks installing [\#1257](https://github.com/berkshelf/berkshelf/issues/1257)
|
375
|
-
- Faraday::SSLError: SSL\_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed [\#1254](https://github.com/berkshelf/berkshelf/issues/1254)
|
376
|
-
- berks package/vendor converts metadata.rb to metadata.json [\#1253](https://github.com/berkshelf/berkshelf/issues/1253)
|
377
|
-
- Redirection forbidden by open-uri. [\#1252](https://github.com/berkshelf/berkshelf/issues/1252)
|
378
|
-
|
379
226
|
**Merged pull requests:**
|
380
227
|
|
381
228
|
- Version bump v3.1.4 [\#1260](https://github.com/berkshelf/berkshelf/pull/1260) ([sethvargo](https://github.com/sethvargo))
|
@@ -386,28 +233,6 @@
|
|
386
233
|
## [v2.0.18](https://github.com/berkshelf/berkshelf/tree/v2.0.18) (2014-07-08)
|
387
234
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.17...v2.0.18)
|
388
235
|
|
389
|
-
**Fixed bugs:**
|
390
|
-
|
391
|
-
- berks upload fail [\#1241](https://github.com/berkshelf/berkshelf/issues/1241)
|
392
|
-
- NoMethodError: undefined method `cookbook' for nil:NilClass [\#1221](https://github.com/berkshelf/berkshelf/issues/1221)
|
393
|
-
|
394
|
-
**Closed issues:**
|
395
|
-
|
396
|
-
- allow parallel fetching of cookbooks [\#1249](https://github.com/berkshelf/berkshelf/issues/1249)
|
397
|
-
- Unable to satisfy constrains on package jenkins... [\#1248](https://github.com/berkshelf/berkshelf/issues/1248)
|
398
|
-
- dhcp private\_network in default Vagrantfile hits Vagrant/VirtualBox bug [\#1246](https://github.com/berkshelf/berkshelf/issues/1246)
|
399
|
-
- bundle install Gemfile ~\> 2.0 does not install 2.0.17 [\#1245](https://github.com/berkshelf/berkshelf/issues/1245)
|
400
|
-
- Pessimistic version locking on thor [\#1242](https://github.com/berkshelf/berkshelf/issues/1242)
|
401
|
-
- Issue updating berkshelf gem [\#1239](https://github.com/berkshelf/berkshelf/issues/1239)
|
402
|
-
- Berkshelf 3 - Kitchen: Message: SSL\_connect returned=1 errno=0 state=SSLv3 read server certificate B: certificate verify failed [\#1237](https://github.com/berkshelf/berkshelf/issues/1237)
|
403
|
-
- Berkshelf3 - Berkshelf::MismatchedCookbookName - unable to provision box [\#1236](https://github.com/berkshelf/berkshelf/issues/1236)
|
404
|
-
- berks install broken \(v2.0.\*\) [\#1235](https://github.com/berkshelf/berkshelf/issues/1235)
|
405
|
-
- Library not loaded. Reason: image not found [\#1234](https://github.com/berkshelf/berkshelf/issues/1234)
|
406
|
-
- Race Condition in feature tests [\#1233](https://github.com/berkshelf/berkshelf/issues/1233)
|
407
|
-
- undefined local variable or method `user' [\#1232](https://github.com/berkshelf/berkshelf/issues/1232)
|
408
|
-
- Misleading error message when a cookbook version is not found [\#1228](https://github.com/berkshelf/berkshelf/issues/1228)
|
409
|
-
- bundler & Chef-DK [\#1220](https://github.com/berkshelf/berkshelf/issues/1220)
|
410
|
-
|
411
236
|
**Merged pull requests:**
|
412
237
|
|
413
238
|
- Follow redirects [\#1251](https://github.com/berkshelf/berkshelf/pull/1251) ([sethvargo](https://github.com/sethvargo))
|
@@ -416,12 +241,6 @@
|
|
416
241
|
## [v2.0.17](https://github.com/berkshelf/berkshelf/tree/v2.0.17) (2014-06-10)
|
417
242
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.1.3...v2.0.17)
|
418
243
|
|
419
|
-
**Closed issues:**
|
420
|
-
|
421
|
-
- remove pre-release versioned dependencies [\#1230](https://github.com/berkshelf/berkshelf/issues/1230)
|
422
|
-
- Segmentation Fault using Berkshelf 3 w/ accidental homebrew gcc installed [\#1229](https://github.com/berkshelf/berkshelf/issues/1229)
|
423
|
-
- "package" with data bags [\#1222](https://github.com/berkshelf/berkshelf/issues/1222)
|
424
|
-
|
425
244
|
**Merged pull requests:**
|
426
245
|
|
427
246
|
- Lockdown Hashie \(2.0\) [\#1231](https://github.com/berkshelf/berkshelf/pull/1231) ([sethvargo](https://github.com/sethvargo))
|
@@ -429,24 +248,6 @@
|
|
429
248
|
## [v3.1.3](https://github.com/berkshelf/berkshelf/tree/v3.1.3) (2014-06-03)
|
430
249
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.1.2...v3.1.3)
|
431
250
|
|
432
|
-
**Fixed bugs:**
|
433
|
-
|
434
|
-
- config.json in directory not respected [\#1214](https://github.com/berkshelf/berkshelf/issues/1214)
|
435
|
-
- Not having git in PATH environment variable in Windows gives error on running berks cookbook: No such file or directory - git init [\#1208](https://github.com/berkshelf/berkshelf/issues/1208)
|
436
|
-
- Berkshelf not resolving from correct source [\#1199](https://github.com/berkshelf/berkshelf/issues/1199)
|
437
|
-
|
438
|
-
**Closed issues:**
|
439
|
-
|
440
|
-
- Latest versions of Berkshelf are uninstallable due to Gecode [\#1212](https://github.com/berkshelf/berkshelf/issues/1212)
|
441
|
-
- `rescue in initialize': undefined local variable or method ` STDOUT' for \#\<Buff::Config::Ruby::Evaluator:0x00000101b23d18\> \(Buff::Errors::InvalidConfig\) [\#1207](https://github.com/berkshelf/berkshelf/issues/1207)
|
442
|
-
- 'berks apply' overwrites cookbook\_versions completely [\#1206](https://github.com/berkshelf/berkshelf/issues/1206)
|
443
|
-
- berks apply to local environment file [\#1205](https://github.com/berkshelf/berkshelf/issues/1205)
|
444
|
-
- Berks 2 on windows using tons of RAM and threads [\#1203](https://github.com/berkshelf/berkshelf/issues/1203)
|
445
|
-
- Upload skips dependencies? [\#1202](https://github.com/berkshelf/berkshelf/issues/1202)
|
446
|
-
- Does berkshelf support snapshot version from chef server? [\#1196](https://github.com/berkshelf/berkshelf/issues/1196)
|
447
|
-
- Multiple versions of cookbooks across environments [\#1167](https://github.com/berkshelf/berkshelf/issues/1167)
|
448
|
-
- development workflow with multiple cookbooks [\#1164](https://github.com/berkshelf/berkshelf/issues/1164)
|
449
|
-
|
450
251
|
**Merged pull requests:**
|
451
252
|
|
452
253
|
- bump ridley and buff dependencies [\#1219](https://github.com/berkshelf/berkshelf/pull/1219) ([reset](https://github.com/reset))
|
@@ -459,40 +260,6 @@
|
|
459
260
|
## [v3.1.2](https://github.com/berkshelf/berkshelf/tree/v3.1.2) (2014-05-08)
|
460
261
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.16...v3.1.2)
|
461
262
|
|
462
|
-
**Fixed bugs:**
|
463
|
-
|
464
|
-
- Possible Race Condition in Feature test [\#1185](https://github.com/berkshelf/berkshelf/issues/1185)
|
465
|
-
- `berks install` using git-sourced cookbook fails when there is no master branch [\#1148](https://github.com/berkshelf/berkshelf/issues/1148)
|
466
|
-
- Fix Berkshelf::Graph\#update [\#1182](https://github.com/berkshelf/berkshelf/pull/1182) ([mjcdiggity](https://github.com/mjcdiggity))
|
467
|
-
|
468
|
-
**Closed issues:**
|
469
|
-
|
470
|
-
- Remove GithubLocation in favor of GitLocation [\#1193](https://github.com/berkshelf/berkshelf/issues/1193)
|
471
|
-
- Strange conflict [\#1190](https://github.com/berkshelf/berkshelf/issues/1190)
|
472
|
-
- Berkshelf 3.1.1 breaks test-kitchen vagrant chef-zero workflow [\#1189](https://github.com/berkshelf/berkshelf/issues/1189)
|
473
|
-
- Has anyone successfully installed Berkshelf on Windows? [\#1184](https://github.com/berkshelf/berkshelf/issues/1184)
|
474
|
-
- Berkshelf::BerksfileReadError [\#1181](https://github.com/berkshelf/berkshelf/issues/1181)
|
475
|
-
- set buff-config dependency to '~\> 0.4' [\#1179](https://github.com/berkshelf/berkshelf/issues/1179)
|
476
|
-
- UI is broken on windows on master [\#1176](https://github.com/berkshelf/berkshelf/issues/1176)
|
477
|
-
- \[Berkshelf::OutdatedDependency\] improving error message [\#1175](https://github.com/berkshelf/berkshelf/issues/1175)
|
478
|
-
- Nested git sourced cookbooks fail to install [\#1174](https://github.com/berkshelf/berkshelf/issues/1174)
|
479
|
-
- Berkshelf depends on pre-release gems [\#1172](https://github.com/berkshelf/berkshelf/issues/1172)
|
480
|
-
- installing gem dep-selector-libgecode takes forever [\#1166](https://github.com/berkshelf/berkshelf/issues/1166)
|
481
|
-
- stack level too deep with medium-sized Berksfile. [\#1160](https://github.com/berkshelf/berkshelf/issues/1160)
|
482
|
-
- stack level too deep \(SystemStackError\) [\#1159](https://github.com/berkshelf/berkshelf/issues/1159)
|
483
|
-
- Berksfile.lock versions \*still\* not followed [\#1158](https://github.com/berkshelf/berkshelf/issues/1158)
|
484
|
-
- Unable to fetch private repos \(v3.1.1\) [\#1157](https://github.com/berkshelf/berkshelf/issues/1157)
|
485
|
-
- "berks install" formatting is all screwed up [\#1156](https://github.com/berkshelf/berkshelf/issues/1156)
|
486
|
-
- An error occurred while reading the Berksfile: uninitialized constant Solve::Version [\#1155](https://github.com/berkshelf/berkshelf/issues/1155)
|
487
|
-
- Berks 3.1.1 throws stack level too deep \(SystemStackError\) error [\#1154](https://github.com/berkshelf/berkshelf/issues/1154)
|
488
|
-
- The `berks outdated` command doesn't honor location info in the Berksfile [\#1153](https://github.com/berkshelf/berkshelf/issues/1153)
|
489
|
-
- Another "Unable to find a solution for demands with mercurial sources" [\#1152](https://github.com/berkshelf/berkshelf/issues/1152)
|
490
|
-
- berkshelf 3 not honoring protocol for github locations [\#1151](https://github.com/berkshelf/berkshelf/issues/1151)
|
491
|
-
- How do I generate a Berkshelf config.json file with Berkshelf 3.0? [\#1150](https://github.com/berkshelf/berkshelf/issues/1150)
|
492
|
-
- Specifying latest version of cookbook produces error [\#1149](https://github.com/berkshelf/berkshelf/issues/1149)
|
493
|
-
- Bundle CA certs [\#1030](https://github.com/berkshelf/berkshelf/issues/1030)
|
494
|
-
- Warn when declaring duplicate dependencies in metadata and Berksfile [\#526](https://github.com/berkshelf/berkshelf/issues/526)
|
495
|
-
|
496
263
|
**Merged pull requests:**
|
497
264
|
|
498
265
|
- Remove the .git directory for git-sourced cookbooks [\#1194](https://github.com/berkshelf/berkshelf/pull/1194) ([cnunciato](https://github.com/cnunciato))
|
@@ -500,6 +267,7 @@
|
|
500
267
|
- Fix typo in show cmd description [\#1187](https://github.com/berkshelf/berkshelf/pull/1187) ([dougireton](https://github.com/dougireton))
|
501
268
|
- Do not care about ordered output during installation [\#1186](https://github.com/berkshelf/berkshelf/pull/1186) ([sethvargo](https://github.com/sethvargo))
|
502
269
|
- Update README.md.erb [\#1183](https://github.com/berkshelf/berkshelf/pull/1183) ([mjuszczak](https://github.com/mjuszczak))
|
270
|
+
- Fix Berkshelf::Graph\#update [\#1182](https://github.com/berkshelf/berkshelf/pull/1182) ([mjcdiggity](https://github.com/mjcdiggity))
|
503
271
|
- Update to buff-config ~\> 0.4 [\#1180](https://github.com/berkshelf/berkshelf/pull/1180) ([sethvargo](https://github.com/sethvargo))
|
504
272
|
- Fix infinite lock check [\#1178](https://github.com/berkshelf/berkshelf/pull/1178) ([mi-wood](https://github.com/mi-wood))
|
505
273
|
- Create a subclass of the shell instead of a module [\#1177](https://github.com/berkshelf/berkshelf/pull/1177) ([sethvargo](https://github.com/sethvargo))
|
@@ -514,12 +282,6 @@
|
|
514
282
|
## [v2.0.16](https://github.com/berkshelf/berkshelf/tree/v2.0.16) (2014-04-22)
|
515
283
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.1.1...v2.0.16)
|
516
284
|
|
517
|
-
**Closed issues:**
|
518
|
-
|
519
|
-
- Really need to put /opt/chefdk/embedded/bin in $PATH? [\#1147](https://github.com/berkshelf/berkshelf/issues/1147)
|
520
|
-
- berks configure depreciated? [\#1145](https://github.com/berkshelf/berkshelf/issues/1145)
|
521
|
-
- Berkshelf does not use the latest versions [\#1140](https://github.com/berkshelf/berkshelf/issues/1140)
|
522
|
-
|
523
285
|
**Merged pull requests:**
|
524
286
|
|
525
287
|
- 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))
|
@@ -527,19 +289,6 @@
|
|
527
289
|
## [v3.1.1](https://github.com/berkshelf/berkshelf/tree/v3.1.1) (2014-04-20)
|
528
290
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.1.0...v3.1.1)
|
529
291
|
|
530
|
-
**Implemented enhancements:**
|
531
|
-
|
532
|
-
- Configurable templates [\#499](https://github.com/berkshelf/berkshelf/issues/499)
|
533
|
-
|
534
|
-
**Fixed bugs:**
|
535
|
-
|
536
|
-
- berks outdated is incorrect [\#1141](https://github.com/berkshelf/berkshelf/issues/1141)
|
537
|
-
|
538
|
-
**Closed issues:**
|
539
|
-
|
540
|
-
- berks upload fails after upgrading to chef-dk [\#1135](https://github.com/berkshelf/berkshelf/issues/1135)
|
541
|
-
- `berks upload` incorrectly updates Berksfile.lock, resulting in old version usage by vagrant [\#1054](https://github.com/berkshelf/berkshelf/issues/1054)
|
542
|
-
|
543
292
|
**Merged pull requests:**
|
544
293
|
|
545
294
|
- Bump required Ridley version to 3.1 [\#1143](https://github.com/berkshelf/berkshelf/pull/1143) ([sethvargo](https://github.com/sethvargo))
|
@@ -548,17 +297,6 @@
|
|
548
297
|
## [v3.1.0](https://github.com/berkshelf/berkshelf/tree/v3.1.0) (2014-04-19)
|
549
298
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.1...v3.1.0)
|
550
299
|
|
551
|
-
**Implemented enhancements:**
|
552
|
-
|
553
|
-
- add 'berks tree' command [\#607](https://github.com/berkshelf/berkshelf/issues/607)
|
554
|
-
|
555
|
-
**Closed issues:**
|
556
|
-
|
557
|
-
- Error uploading to chef server [\#1139](https://github.com/berkshelf/berkshelf/issues/1139)
|
558
|
-
- "gem install berkshelf" fails with Ruby 2.1.1 - "Failed to build gecode library" [\#1138](https://github.com/berkshelf/berkshelf/issues/1138)
|
559
|
-
- Official Ruby 2.1 Support [\#1131](https://github.com/berkshelf/berkshelf/issues/1131)
|
560
|
-
- Depsolver needs better error messages when missing a cookbook dependency [\#1130](https://github.com/berkshelf/berkshelf/issues/1130)
|
561
|
-
|
562
300
|
**Merged pull requests:**
|
563
301
|
|
564
302
|
- Add `berks viz` [\#1137](https://github.com/berkshelf/berkshelf/pull/1137) ([sethvargo](https://github.com/sethvargo))
|
@@ -569,10 +307,6 @@
|
|
569
307
|
## [v3.0.1](https://github.com/berkshelf/berkshelf/tree/v3.0.1) (2014-04-15)
|
570
308
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0...v3.0.1)
|
571
309
|
|
572
|
-
**Closed issues:**
|
573
|
-
|
574
|
-
- berks install still failing [\#1125](https://github.com/berkshelf/berkshelf/issues/1125)
|
575
|
-
|
576
310
|
**Merged pull requests:**
|
577
311
|
|
578
312
|
- Celluloid worker pool requires at least 2 cores [\#1129](https://github.com/berkshelf/berkshelf/pull/1129) ([sethvargo](https://github.com/sethvargo))
|
@@ -580,11 +314,6 @@
|
|
580
314
|
## [v3.0.0](https://github.com/berkshelf/berkshelf/tree/v3.0.0) (2014-04-14)
|
581
315
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.15...v3.0.0)
|
582
316
|
|
583
|
-
**Closed issues:**
|
584
|
-
|
585
|
-
- solve 1.1.0, released today, breaks berkshelf 2.0.14 [\#1128](https://github.com/berkshelf/berkshelf/issues/1128)
|
586
|
-
- Documentation for Berkshelf 3.0 [\#822](https://github.com/berkshelf/berkshelf/issues/822)
|
587
|
-
|
588
317
|
**Merged pull requests:**
|
589
318
|
|
590
319
|
- use celluloid for threaded cookbook downloads [\#1127](https://github.com/berkshelf/berkshelf/pull/1127) ([reset](https://github.com/reset))
|
@@ -592,42 +321,15 @@
|
|
592
321
|
## [v2.0.15](https://github.com/berkshelf/berkshelf/tree/v2.0.15) (2014-04-14)
|
593
322
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.rc1...v2.0.15)
|
594
323
|
|
595
|
-
**Fixed bugs:**
|
596
|
-
|
597
|
-
- Friendly error message when path location does not exist or contain a cookbook [\#1119](https://github.com/berkshelf/berkshelf/issues/1119)
|
598
|
-
- berks install failing [\#1116](https://github.com/berkshelf/berkshelf/issues/1116)
|
599
|
-
- `berks vendor` "cannot be trusted!" error [\#1124](https://github.com/berkshelf/berkshelf/pull/1124) ([JeanMertz](https://github.com/JeanMertz))
|
600
|
-
|
601
|
-
**Closed issues:**
|
602
|
-
|
603
|
-
- dep\_gecode.so undefined symbol: \_ZN6Gecode16ValBranchOptions3defE \(LoadError\) [\#1121](https://github.com/berkshelf/berkshelf/issues/1121)
|
604
|
-
|
605
324
|
**Merged pull requests:**
|
606
325
|
|
326
|
+
- `berks vendor` "cannot be trusted!" error [\#1124](https://github.com/berkshelf/berkshelf/pull/1124) ([JeanMertz](https://github.com/JeanMertz))
|
607
327
|
- Fix community cookbook download error [\#1123](https://github.com/berkshelf/berkshelf/pull/1123) ([mjcdiggity](https://github.com/mjcdiggity))
|
608
328
|
- Remove gecode install instructions from README [\#1122](https://github.com/berkshelf/berkshelf/pull/1122) ([danielsdeleo](https://github.com/danielsdeleo))
|
609
329
|
|
610
330
|
## [v3.0.0.rc1](https://github.com/berkshelf/berkshelf/tree/v3.0.0.rc1) (2014-04-09)
|
611
331
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta9...v3.0.0.rc1)
|
612
332
|
|
613
|
-
**Implemented enhancements:**
|
614
|
-
|
615
|
-
- Loosen constraint on Thor [\#1107](https://github.com/berkshelf/berkshelf/pull/1107) ([reset](https://github.com/reset))
|
616
|
-
- Add `--type` flag to `berks cookbook` command [\#955](https://github.com/berkshelf/berkshelf/pull/955) ([reset](https://github.com/reset))
|
617
|
-
|
618
|
-
**Fixed bugs:**
|
619
|
-
|
620
|
-
- Upload not uploading all transitive dependencies [\#1113](https://github.com/berkshelf/berkshelf/issues/1113)
|
621
|
-
- berks upload \<cookbook\> uploading all cookbooks [\#1097](https://github.com/berkshelf/berkshelf/issues/1097)
|
622
|
-
- `berks install` does not correctly update dependency when switching from remote to local cookbook [\#1061](https://github.com/berkshelf/berkshelf/issues/1061)
|
623
|
-
- A cookbook which is a dependency should be a valid argument for `berks update` [\#1005](https://github.com/berkshelf/berkshelf/issues/1005)
|
624
|
-
|
625
|
-
**Closed issues:**
|
626
|
-
|
627
|
-
- berks upload does not recognize second-level nested cookbooks [\#1118](https://github.com/berkshelf/berkshelf/issues/1118)
|
628
|
-
- Issues with conflicting gem versions \(Thor, specifically\) [\#1109](https://github.com/berkshelf/berkshelf/issues/1109)
|
629
|
-
- dep\_selector install error [\#1108](https://github.com/berkshelf/berkshelf/issues/1108)
|
630
|
-
|
631
333
|
**Merged pull requests:**
|
632
334
|
|
633
335
|
- Force unlock elements in the graph when reducing [\#1117](https://github.com/berkshelf/berkshelf/pull/1117) ([sethvargo](https://github.com/sethvargo))
|
@@ -636,15 +338,12 @@
|
|
636
338
|
- Support uploading a single cookbook \(transitive dependency\) [\#1112](https://github.com/berkshelf/berkshelf/pull/1112) ([sethvargo](https://github.com/sethvargo))
|
637
339
|
- use system gecode when building [\#1111](https://github.com/berkshelf/berkshelf/pull/1111) ([reset](https://github.com/reset))
|
638
340
|
- Dump statuses in gitter [\#1110](https://github.com/berkshelf/berkshelf/pull/1110) ([sethvargo](https://github.com/sethvargo))
|
341
|
+
- Loosen constraint on Thor [\#1107](https://github.com/berkshelf/berkshelf/pull/1107) ([reset](https://github.com/reset))
|
342
|
+
- Add `--type` flag to `berks cookbook` command [\#955](https://github.com/berkshelf/berkshelf/pull/955) ([reset](https://github.com/reset))
|
639
343
|
|
640
344
|
## [v3.0.0.beta9](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta9) (2014-04-07)
|
641
345
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta8...v3.0.0.beta9)
|
642
346
|
|
643
|
-
**Closed issues:**
|
644
|
-
|
645
|
-
- Update Resolver to Gecode [\#1093](https://github.com/berkshelf/berkshelf/issues/1093)
|
646
|
-
- Updated Bleeding edge guide doesn't work [\#1079](https://github.com/berkshelf/berkshelf/issues/1079)
|
647
|
-
|
648
347
|
**Merged pull requests:**
|
649
348
|
|
650
349
|
- Update the API to use semverse [\#1106](https://github.com/berkshelf/berkshelf/pull/1106) ([sethvargo](https://github.com/sethvargo))
|
@@ -655,86 +354,13 @@
|
|
655
354
|
## [v3.0.0.beta8](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta8) (2014-04-03)
|
656
355
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta7...v3.0.0.beta8)
|
657
356
|
|
658
|
-
**Implemented enhancements:**
|
659
|
-
|
660
|
-
- Move SCM downloaded cookbooks to a different cookbook store [\#970](https://github.com/berkshelf/berkshelf/issues/970)
|
661
|
-
- Refactor away the GithubLocation class [\#873](https://github.com/berkshelf/berkshelf/issues/873)
|
662
|
-
- Redundant Downloads/caching with multiple :rel paths off a single repo [\#832](https://github.com/berkshelf/berkshelf/issues/832)
|
663
|
-
- Upload should be more verbose [\#780](https://github.com/berkshelf/berkshelf/issues/780)
|
664
|
-
- add `berks search` command [\#754](https://github.com/berkshelf/berkshelf/issues/754)
|
665
|
-
- Recurse into transitive dependencies when lockfile trusting [\#1058](https://github.com/berkshelf/berkshelf/pull/1058) ([sethvargo](https://github.com/sethvargo))
|
666
|
-
- Make formatters object-oriented so we can Autoload them [\#1020](https://github.com/berkshelf/berkshelf/pull/1020) ([sethvargo](https://github.com/sethvargo))
|
667
|
-
|
668
|
-
**Fixed bugs:**
|
669
|
-
|
670
|
-
- berks update will not fetch latest commit from git [\#1072](https://github.com/berkshelf/berkshelf/issues/1072)
|
671
|
-
- berks install used to update the current cookbook's version in the lockfile. [\#1063](https://github.com/berkshelf/berkshelf/issues/1063)
|
672
|
-
- Shit goes south when there's no metadata name [\#1052](https://github.com/berkshelf/berkshelf/issues/1052)
|
673
|
-
- berks install hangs trying to resolve conflicting dependencies instead of failing fast [\#1040](https://github.com/berkshelf/berkshelf/issues/1040)
|
674
|
-
- New lockfile doesn't interact well with --except [\#1037](https://github.com/berkshelf/berkshelf/issues/1037)
|
675
|
-
- beta7- Apparent hang when running berks install with github locations in Berksfile [\#1034](https://github.com/berkshelf/berkshelf/issues/1034)
|
676
|
-
- Vendor only outputting top level cookbooks [\#1025](https://github.com/berkshelf/berkshelf/issues/1025)
|
677
|
-
- `berks update` does not work correctly [\#993](https://github.com/berkshelf/berkshelf/issues/993)
|
678
|
-
- --exclude is ignored [\#972](https://github.com/berkshelf/berkshelf/issues/972)
|
679
|
-
- 3.0.0beta4 Errors parsing some knife.rb options. [\#965](https://github.com/berkshelf/berkshelf/issues/965)
|
680
|
-
- Unsolvable demands [\#959](https://github.com/berkshelf/berkshelf/issues/959)
|
681
|
-
- Detect if Berksfile.lock is writable and raise early if not [\#956](https://github.com/berkshelf/berkshelf/issues/956)
|
682
|
-
- Only/Except flags should honor lockfile [\#902](https://github.com/berkshelf/berkshelf/issues/902)
|
683
|
-
- --halt-on-frozen option overly strict [\#883](https://github.com/berkshelf/berkshelf/issues/883)
|
684
|
-
- Massive chefignore spam in debug output [\#820](https://github.com/berkshelf/berkshelf/issues/820)
|
685
|
-
- berks install doesn't seem to install something local [\#779](https://github.com/berkshelf/berkshelf/issues/779)
|
686
|
-
- Berks package not producing tarballs compatible with chef-solo [\#1099](https://github.com/berkshelf/berkshelf/pull/1099) ([pghalliday](https://github.com/pghalliday))
|
687
|
-
- Fix location delegation [\#1090](https://github.com/berkshelf/berkshelf/pull/1090) ([sethvargo](https://github.com/sethvargo))
|
688
|
-
- Suppress default location [\#1062](https://github.com/berkshelf/berkshelf/pull/1062) ([sethvargo](https://github.com/sethvargo))
|
689
|
-
|
690
|
-
**Closed issues:**
|
691
|
-
|
692
|
-
- bundle install cannot resolve project dependencies [\#1100](https://github.com/berkshelf/berkshelf/issues/1100)
|
693
|
-
- metadata.rb dep changes don't cause Berkshelf to properly recompute dependencies [\#1098](https://github.com/berkshelf/berkshelf/issues/1098)
|
694
|
-
- Bump Ridley [\#1095](https://github.com/berkshelf/berkshelf/issues/1095)
|
695
|
-
- berks update tries to respect Berksfile.lock [\#1091](https://github.com/berkshelf/berkshelf/issues/1091)
|
696
|
-
- Recent git cookbook caching broken with multi-cookbook repos. [\#1081](https://github.com/berkshelf/berkshelf/issues/1081)
|
697
|
-
- API requests hanging [\#1080](https://github.com/berkshelf/berkshelf/issues/1080)
|
698
|
-
- berkshelf 100% CPU consumed [\#1076](https://github.com/berkshelf/berkshelf/issues/1076)
|
699
|
-
- Have to delete Berksfile.lock every time I run `install` [\#1073](https://github.com/berkshelf/berkshelf/issues/1073)
|
700
|
-
- Unable to find a solution for demands \> berkshelf 3.0.0.beta5 [\#1071](https://github.com/berkshelf/berkshelf/issues/1071)
|
701
|
-
- Confusion with tmp directories [\#1069](https://github.com/berkshelf/berkshelf/issues/1069)
|
702
|
-
- berks install fails on the second execution. [\#1066](https://github.com/berkshelf/berkshelf/issues/1066)
|
703
|
-
- Backport \#778 to 2-0-stable [\#1060](https://github.com/berkshelf/berkshelf/issues/1060)
|
704
|
-
- Show what was uploaded [\#1059](https://github.com/berkshelf/berkshelf/issues/1059)
|
705
|
-
- Unable to access cookbooks from a private github instance [\#1057](https://github.com/berkshelf/berkshelf/issues/1057)
|
706
|
-
- Bleeding edge instructions likely won't work [\#1055](https://github.com/berkshelf/berkshelf/issues/1055)
|
707
|
-
- Cookbook not found due to underscore? [\#1050](https://github.com/berkshelf/berkshelf/issues/1050)
|
708
|
-
- Berks can't resolve deps of a cookbook that can be resolved by chef server [\#1047](https://github.com/berkshelf/berkshelf/issues/1047)
|
709
|
-
- Wiki: 2.x-to-3.0-Upgrade-Guide - source lacks protocol [\#1046](https://github.com/berkshelf/berkshelf/issues/1046)
|
710
|
-
- Unable to add dependencies via metadata after lockfile creation [\#1043](https://github.com/berkshelf/berkshelf/issues/1043)
|
711
|
-
- Report version not found instead of Cookbook not found [\#1041](https://github.com/berkshelf/berkshelf/issues/1041)
|
712
|
-
- firewall issues with 3.0.0.beta7 [\#1039](https://github.com/berkshelf/berkshelf/issues/1039)
|
713
|
-
- Resolver.resolve takes a very long time for a new installation with many cookbooks. [\#1038](https://github.com/berkshelf/berkshelf/issues/1038)
|
714
|
-
- Can not resolve a dependency cookbook's "git" cookbook dependency [\#1036](https://github.com/berkshelf/berkshelf/issues/1036)
|
715
|
-
- Silent upload fail of frozen cookbooks [\#1024](https://github.com/berkshelf/berkshelf/issues/1024)
|
716
|
-
- `copy': unknown file type when cloning librato/statsd-cookbook [\#1015](https://github.com/berkshelf/berkshelf/issues/1015)
|
717
|
-
- "Can't convert Hash into String" when using "site: :opscode" location [\#1014](https://github.com/berkshelf/berkshelf/issues/1014)
|
718
|
-
- Error for missing transitive dependencies could be better. [\#1008](https://github.com/berkshelf/berkshelf/issues/1008)
|
719
|
-
- Better way to use Berkshelf 3 [\#981](https://github.com/berkshelf/berkshelf/issues/981)
|
720
|
-
- SSL errors with https://api.berkshelf.com/ [\#968](https://github.com/berkshelf/berkshelf/issues/968)
|
721
|
-
- Berkshelf is not honoring dependencies in metadata [\#952](https://github.com/berkshelf/berkshelf/issues/952)
|
722
|
-
- Fill out the deprecated-locations wiki page [\#936](https://github.com/berkshelf/berkshelf/issues/936)
|
723
|
-
- `berks upload` reports nonexistent cookbook is frozen [\#932](https://github.com/berkshelf/berkshelf/issues/932)
|
724
|
-
- Berkshelf 3 beta3 not uploading dependencies of Path-based cookbook [\#913](https://github.com/berkshelf/berkshelf/issues/913)
|
725
|
-
- Handle Bad Responses [\#912](https://github.com/berkshelf/berkshelf/issues/912)
|
726
|
-
- Library cookbook from Github [\#910](https://github.com/berkshelf/berkshelf/issues/910)
|
727
|
-
- Testing section of Contributing docs could use more detail [\#849](https://github.com/berkshelf/berkshelf/issues/849)
|
728
|
-
- Getting started with chef solo [\#819](https://github.com/berkshelf/berkshelf/issues/819)
|
729
|
-
- Make Installer idempotent or improve retrive\_locked [\#811](https://github.com/berkshelf/berkshelf/issues/811)
|
730
|
-
- Does "berks upload --skip-dependencies" no longer work? [\#773](https://github.com/berkshelf/berkshelf/issues/773)
|
731
|
-
- SSL issue when using vagrant's chef-client provisioner. [\#378](https://github.com/berkshelf/berkshelf/issues/378)
|
732
|
-
|
733
357
|
**Merged pull requests:**
|
734
358
|
|
735
359
|
- Update Ridley, Faraday, Berkshefl-API, Berkshefl-API-Client [\#1102](https://github.com/berkshelf/berkshelf/pull/1102) ([reset](https://github.com/reset))
|
360
|
+
- Berks package not producing tarballs compatible with chef-solo [\#1099](https://github.com/berkshelf/berkshelf/pull/1099) ([pghalliday](https://github.com/pghalliday))
|
736
361
|
- remove Berksfile and Berksfile.lock from generated chefignore file [\#1096](https://github.com/berkshelf/berkshelf/pull/1096) ([reset](https://github.com/reset))
|
737
362
|
- Add `berks search` command for searching remote sources [\#1092](https://github.com/berkshelf/berkshelf/pull/1092) ([sethvargo](https://github.com/sethvargo))
|
363
|
+
- Fix location delegation [\#1090](https://github.com/berkshelf/berkshelf/pull/1090) ([sethvargo](https://github.com/sethvargo))
|
738
364
|
- Add a feature for changing the location for a dependency [\#1089](https://github.com/berkshelf/berkshelf/pull/1089) ([sethvargo](https://github.com/sethvargo))
|
739
365
|
- Fix equality checking for PathLocations [\#1088](https://github.com/berkshelf/berkshelf/pull/1088) ([sethvargo](https://github.com/sethvargo))
|
740
366
|
- Add debug logging to the installer [\#1087](https://github.com/berkshelf/berkshelf/pull/1087) ([sethvargo](https://github.com/sethvargo))
|
@@ -746,6 +372,8 @@
|
|
746
372
|
- Updated README for PR \#1045 [\#1070](https://github.com/berkshelf/berkshelf/pull/1070) ([svanharmelen](https://github.com/svanharmelen))
|
747
373
|
- Add lifecycle command for bumping the local version [\#1065](https://github.com/berkshelf/berkshelf/pull/1065) ([sethvargo](https://github.com/sethvargo))
|
748
374
|
- Added location\_type :uri [\#1064](https://github.com/berkshelf/berkshelf/pull/1064) ([docwhat](https://github.com/docwhat))
|
375
|
+
- Suppress default location [\#1062](https://github.com/berkshelf/berkshelf/pull/1062) ([sethvargo](https://github.com/sethvargo))
|
376
|
+
- Recurse into transitive dependencies when lockfile trusting [\#1058](https://github.com/berkshelf/berkshelf/pull/1058) ([sethvargo](https://github.com/sethvargo))
|
749
377
|
- Make mercurial specs optional [\#1056](https://github.com/berkshelf/berkshelf/pull/1056) ([sersut](https://github.com/sersut))
|
750
378
|
- Improve errors [\#1051](https://github.com/berkshelf/berkshelf/pull/1051) ([sethvargo](https://github.com/sethvargo))
|
751
379
|
- Don't install when uploading [\#1049](https://github.com/berkshelf/berkshelf/pull/1049) ([sethvargo](https://github.com/sethvargo))
|
@@ -758,79 +386,33 @@
|
|
758
386
|
- 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))
|
759
387
|
- update README for oh-my-zsh plugin [\#1028](https://github.com/berkshelf/berkshelf/pull/1028) ([shengyou](https://github.com/shengyou))
|
760
388
|
- Add feature for vendoring transitive dependencies in path locations [\#1027](https://github.com/berkshelf/berkshelf/pull/1027) ([sethvargo](https://github.com/sethvargo))
|
389
|
+
- Make formatters object-oriented so we can Autoload them [\#1020](https://github.com/berkshelf/berkshelf/pull/1020) ([sethvargo](https://github.com/sethvargo))
|
761
390
|
|
762
391
|
## [v3.0.0.beta7](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta7) (2014-02-21)
|
763
392
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta6...v3.0.0.beta7)
|
764
393
|
|
765
|
-
**Implemented enhancements:**
|
766
|
-
|
767
|
-
- Github Enterprise Location Support [\#987](https://github.com/berkshelf/berkshelf/issues/987)
|
768
|
-
- Add private Github repository support to Downloader [\#958](https://github.com/berkshelf/berkshelf/issues/958)
|
769
|
-
- Berks outdated doesn't work [\#831](https://github.com/berkshelf/berkshelf/issues/831)
|
770
|
-
- First class Vagrant Chef-Zero support [\#810](https://github.com/berkshelf/berkshelf/issues/810)
|
771
|
-
- Refactor the lockfile to separate top-level dependencies from the graph [\#1009](https://github.com/berkshelf/berkshelf/pull/1009) ([sethvargo](https://github.com/sethvargo))
|
772
|
-
- Missing CHANGELOG.md [\#1007](https://github.com/berkshelf/berkshelf/pull/1007) ([jasnab](https://github.com/jasnab))
|
773
|
-
- Remove implicit default source [\#983](https://github.com/berkshelf/berkshelf/pull/983) ([borntyping](https://github.com/borntyping))
|
774
|
-
|
775
|
-
**Fixed bugs:**
|
776
|
-
|
777
|
-
- Incorrect error when there's no Internet [\#1018](https://github.com/berkshelf/berkshelf/issues/1018)
|
778
|
-
- Failure to parse metadata.rb can cause misleading error message to user [\#996](https://github.com/berkshelf/berkshelf/issues/996)
|
779
|
-
- Local cookbooks are ignored when selecting dependencies [\#898](https://github.com/berkshelf/berkshelf/issues/898)
|
780
|
-
- Berks upload throws Ridley::SandboxResource crashed! with local Chef11 [\#896](https://github.com/berkshelf/berkshelf/issues/896)
|
781
|
-
- berks vendor does not work if the path is nested [\#984](https://github.com/berkshelf/berkshelf/pull/984) ([rteabeault](https://github.com/rteabeault))
|
782
|
-
|
783
|
-
**Closed issues:**
|
784
|
-
|
785
|
-
- Delay freezing of cookbooks [\#1023](https://github.com/berkshelf/berkshelf/issues/1023)
|
786
|
-
- Unable to do a berks upload on ulimit dependency [\#1019](https://github.com/berkshelf/berkshelf/issues/1019)
|
787
|
-
- Encoding::InvalidByteSequenceError while running berks vendor [\#1016](https://github.com/berkshelf/berkshelf/issues/1016)
|
788
|
-
- Berkshelf 3.0 docs are invisible even though it's now the recommended version \(apparently\) [\#1012](https://github.com/berkshelf/berkshelf/issues/1012)
|
789
|
-
- Berkshelf ignores the locked versions of the current metadata.rb \(conflicts or depends\) [\#1010](https://github.com/berkshelf/berkshelf/issues/1010)
|
790
|
-
- Berkshelf crashes when running berks upload [\#985](https://github.com/berkshelf/berkshelf/issues/985)
|
791
|
-
- berks commands fail on OSX [\#927](https://github.com/berkshelf/berkshelf/issues/927)
|
792
|
-
- Don't fetch a new copy of the git repo each run [\#858](https://github.com/berkshelf/berkshelf/issues/858)
|
793
|
-
- Get timeout when uploading a largish cookbook [\#761](https://github.com/berkshelf/berkshelf/issues/761)
|
794
|
-
|
795
394
|
**Merged pull requests:**
|
796
395
|
|
797
396
|
- Add feature for vendoring transitive dependencies [\#1026](https://github.com/berkshelf/berkshelf/pull/1026) ([sethvargo](https://github.com/sethvargo))
|
798
397
|
- Update Vagrantfile.erb [\#1022](https://github.com/berkshelf/berkshelf/pull/1022) ([berniedurfee](https://github.com/berniedurfee))
|
799
398
|
- Don't load Octokit until we need it [\#1017](https://github.com/berkshelf/berkshelf/pull/1017) ([sethvargo](https://github.com/sethvargo))
|
399
|
+
- Refactor the lockfile to separate top-level dependencies from the graph [\#1009](https://github.com/berkshelf/berkshelf/pull/1009) ([sethvargo](https://github.com/sethvargo))
|
400
|
+
- Missing CHANGELOG.md [\#1007](https://github.com/berkshelf/berkshelf/pull/1007) ([jasnab](https://github.com/jasnab))
|
401
|
+
- berks vendor does not work if the path is nested [\#984](https://github.com/berkshelf/berkshelf/pull/984) ([rteabeault](https://github.com/rteabeault))
|
402
|
+
- Remove implicit default source [\#983](https://github.com/berkshelf/berkshelf/pull/983) ([borntyping](https://github.com/borntyping))
|
800
403
|
- Raise on all commands when install is required but not performed [\#949](https://github.com/berkshelf/berkshelf/pull/949) ([reset](https://github.com/reset))
|
801
404
|
|
802
405
|
## [v3.0.0.beta6](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta6) (2014-02-07)
|
803
406
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.14...v3.0.0.beta6)
|
804
407
|
|
805
|
-
**Fixed bugs:**
|
806
|
-
|
807
|
-
- berks upload fails with different berkshelf & ridley versions [\#890](https://github.com/berkshelf/berkshelf/issues/890)
|
808
|
-
|
809
408
|
## [v2.0.14](https://github.com/berkshelf/berkshelf/tree/v2.0.14) (2014-02-04)
|
810
409
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta5...v2.0.14)
|
811
410
|
|
812
|
-
**Implemented enhancements:**
|
813
|
-
|
814
|
-
- Sane defaults for OSX and keep current dir [\#1000](https://github.com/berkshelf/berkshelf/pull/1000) ([mjallday](https://github.com/mjallday))
|
815
|
-
|
816
|
-
**Fixed bugs:**
|
817
|
-
|
818
|
-
- berks install/update not accurately resolving dependency [\#1001](https://github.com/berkshelf/berkshelf/issues/1001)
|
819
|
-
- All dependencies are not being written to Lockfile on clean install [\#978](https://github.com/berkshelf/berkshelf/issues/978)
|
820
|
-
|
821
|
-
**Closed issues:**
|
822
|
-
|
823
|
-
- Berkshelf not fetching dependencies recursively [\#1003](https://github.com/berkshelf/berkshelf/issues/1003)
|
824
|
-
- Generated config.json unformatted [\#1002](https://github.com/berkshelf/berkshelf/issues/1002)
|
825
|
-
- Berks 3.0.0.beta4 hits API site when given git tag for cookbook [\#999](https://github.com/berkshelf/berkshelf/issues/999)
|
826
|
-
- Berks upload freeze [\#998](https://github.com/berkshelf/berkshelf/issues/998)
|
827
|
-
- cookbook path dependencies need to be specified in wrapper-cookbook as well [\#995](https://github.com/berkshelf/berkshelf/issues/995)
|
828
|
-
- packager should skip .git [\#994](https://github.com/berkshelf/berkshelf/issues/994)
|
829
|
-
|
830
411
|
**Merged pull requests:**
|
831
412
|
|
832
413
|
- Update berksfile.rb [\#1006](https://github.com/berkshelf/berkshelf/pull/1006) ([erichelgeson](https://github.com/erichelgeson))
|
833
414
|
- Backport metadata.json detection logic to berks2 [\#1004](https://github.com/berkshelf/berkshelf/pull/1004) ([ivey](https://github.com/ivey))
|
415
|
+
- Sane defaults for OSX and keep current dir [\#1000](https://github.com/berkshelf/berkshelf/pull/1000) ([mjallday](https://github.com/mjallday))
|
834
416
|
- 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))
|
835
417
|
|
836
418
|
## [v3.0.0.beta5](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta5) (2014-01-20)
|
@@ -839,12 +421,6 @@
|
|
839
421
|
## [v2.0.13](https://github.com/berkshelf/berkshelf/tree/v2.0.13) (2014-01-20)
|
840
422
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.12...v2.0.13)
|
841
423
|
|
842
|
-
**Closed issues:**
|
843
|
-
|
844
|
-
- Set chef-repo as default location [\#990](https://github.com/berkshelf/berkshelf/issues/990)
|
845
|
-
- Support Github Enterprise [\#986](https://github.com/berkshelf/berkshelf/issues/986)
|
846
|
-
- Incorrect branch name shown for cached Git locations [\#980](https://github.com/berkshelf/berkshelf/issues/980)
|
847
|
-
|
848
424
|
**Merged pull requests:**
|
849
425
|
|
850
426
|
- Fix extra whitespace when commented line is empty [\#989](https://github.com/berkshelf/berkshelf/pull/989) ([cpuguy83](https://github.com/cpuguy83))
|
@@ -853,53 +429,15 @@
|
|
853
429
|
## [v2.0.12](https://github.com/berkshelf/berkshelf/tree/v2.0.12) (2014-01-08)
|
854
430
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.11...v2.0.12)
|
855
431
|
|
856
|
-
**Closed issues:**
|
857
|
-
|
858
|
-
- Berkshelf 2.0.11 gem breaks when using faraday 0.9.0.rc6 [\#979](https://github.com/berkshelf/berkshelf/issues/979)
|
859
|
-
|
860
432
|
## [v2.0.11](https://github.com/berkshelf/berkshelf/tree/v2.0.11) (2014-01-07)
|
861
433
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta4...v2.0.11)
|
862
434
|
|
863
|
-
**Implemented enhancements:**
|
864
|
-
|
865
|
-
- Don't reach out to internet when not necessary \(Offline Mode\) [\#861](https://github.com/berkshelf/berkshelf/issues/861)
|
866
|
-
|
867
|
-
**Fixed bugs:**
|
868
|
-
|
869
|
-
- properly handle 'cannot connect' to api servers when building universe [\#918](https://github.com/berkshelf/berkshelf/issues/918)
|
870
|
-
- Cookbook dependency error on second invocation of berks install [\#916](https://github.com/berkshelf/berkshelf/issues/916)
|
871
|
-
- Berkshelf.lock file not respected [\#908](https://github.com/berkshelf/berkshelf/issues/908)
|
872
|
-
- --skip-dependencies not working when using a git source [\#886](https://github.com/berkshelf/berkshelf/issues/886)
|
873
|
-
- Berkshelf 3 overrides custom cookbooks w/ "locked\_version" of community cookbooks. [\#963](https://github.com/berkshelf/berkshelf/pull/963) ([joestump](https://github.com/joestump))
|
874
|
-
- berksfile.lock not honored for transitive dependencies [\#939](https://github.com/berkshelf/berkshelf/pull/939) ([keiths-osc](https://github.com/keiths-osc))
|
875
|
-
- Looking for wrong version [\#907](https://github.com/berkshelf/berkshelf/pull/907) ([scalp42](https://github.com/scalp42))
|
876
|
-
- exception info swallowed when git protocol doesn't work [\#879](https://github.com/berkshelf/berkshelf/pull/879) ([cjerdonek](https://github.com/cjerdonek))
|
877
|
-
- `berks install --quiet` mutes error output [\#827](https://github.com/berkshelf/berkshelf/pull/827) ([torandu](https://github.com/torandu))
|
878
|
-
|
879
|
-
**Closed issues:**
|
880
|
-
|
881
|
-
- Confused about `berks apply` semantics [\#977](https://github.com/berkshelf/berkshelf/issues/977)
|
882
|
-
- Path version is not a requirement [\#975](https://github.com/berkshelf/berkshelf/issues/975)
|
883
|
-
- berks update doesn't support --path [\#973](https://github.com/berkshelf/berkshelf/issues/973)
|
884
|
-
- Berkshelf 3 can't resolve on Linux. Works fine locally on OS X. [\#969](https://github.com/berkshelf/berkshelf/issues/969)
|
885
|
-
- Berkshelf ignores metadata.rb name when installing a cookbook. [\#964](https://github.com/berkshelf/berkshelf/issues/964)
|
886
|
-
- Berkshelf 3 sometimes downloads incomplete cookbook files. [\#961](https://github.com/berkshelf/berkshelf/issues/961)
|
887
|
-
- `berks install --path` broken in 464142ed8d [\#953](https://github.com/berkshelf/berkshelf/issues/953)
|
888
|
-
- mercurial \(hg\) location support [\#950](https://github.com/berkshelf/berkshelf/issues/950)
|
889
|
-
- berkshelf-3.0.0.beta4 Berkshelf::GitError [\#946](https://github.com/berkshelf/berkshelf/issues/946)
|
890
|
-
- ‘berks package’ includes .git directory for git/github cookbooks [\#938](https://github.com/berkshelf/berkshelf/issues/938)
|
891
|
-
- berkshelf-3.0.0.beta4 undefined method `cookbook' for nil:NilClass [\#937](https://github.com/berkshelf/berkshelf/issues/937)
|
892
|
-
- feature request: 'berks apply' or 'berks update' to warn/halt on minor/major version increases [\#930](https://github.com/berkshelf/berkshelf/issues/930)
|
893
|
-
- Berkshelf 2.0.10 gem breaks when using faraday 0.9.0.rc5 [\#855](https://github.com/berkshelf/berkshelf/issues/855)
|
894
|
-
- Can berks install add the current cookbook to the shelf? [\#834](https://github.com/berkshelf/berkshelf/issues/834)
|
895
|
-
- `berks shelf SUBCOMMAND` not apparent what actions can be taken [\#805](https://github.com/berkshelf/berkshelf/issues/805)
|
896
|
-
- `berks init` should warn when there is no default recipe [\#606](https://github.com/berkshelf/berkshelf/issues/606)
|
897
|
-
|
898
435
|
**Merged pull requests:**
|
899
436
|
|
900
437
|
- Make sure path/scm location is used during dependency resolution [\#976](https://github.com/berkshelf/berkshelf/pull/976) ([grobie](https://github.com/grobie))
|
901
438
|
- Fix typo [\#974](https://github.com/berkshelf/berkshelf/pull/974) ([gregkare](https://github.com/gregkare))
|
902
439
|
- improve warnings when receiving APIClientErrors when building universe [\#971](https://github.com/berkshelf/berkshelf/pull/971) ([reset](https://github.com/reset))
|
440
|
+
- Berkshelf 3 overrides custom cookbooks w/ "locked\_version" of community cookbooks. [\#963](https://github.com/berkshelf/berkshelf/pull/963) ([joestump](https://github.com/joestump))
|
903
441
|
- Added a Berkshelf 3 notice to the homepage. [\#962](https://github.com/berkshelf/berkshelf/pull/962) ([joestump](https://github.com/joestump))
|
904
442
|
- 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))
|
905
443
|
- Add deprecation warning for `berks install --path` [\#954](https://github.com/berkshelf/berkshelf/pull/954) ([reset](https://github.com/reset))
|
@@ -912,64 +450,22 @@
|
|
912
450
|
- Greatly improve `berks package` command [\#942](https://github.com/berkshelf/berkshelf/pull/942) ([reset](https://github.com/reset))
|
913
451
|
- properly identify a cookbook on disk by it's metadata [\#941](https://github.com/berkshelf/berkshelf/pull/941) ([reset](https://github.com/reset))
|
914
452
|
- Make 'package' command to filter hidden files from chefignore [\#940](https://github.com/berkshelf/berkshelf/pull/940) ([noorul](https://github.com/noorul))
|
453
|
+
- berksfile.lock not honored for transitive dependencies [\#939](https://github.com/berkshelf/berkshelf/pull/939) ([keiths-osc](https://github.com/keiths-osc))
|
454
|
+
- Looking for wrong version [\#907](https://github.com/berkshelf/berkshelf/pull/907) ([scalp42](https://github.com/scalp42))
|
455
|
+
- exception info swallowed when git protocol doesn't work [\#879](https://github.com/berkshelf/berkshelf/pull/879) ([cjerdonek](https://github.com/cjerdonek))
|
456
|
+
- `berks install --quiet` mutes error output [\#827](https://github.com/berkshelf/berkshelf/pull/827) ([torandu](https://github.com/torandu))
|
915
457
|
|
916
458
|
## [v3.0.0.beta4](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta4) (2013-12-05)
|
917
459
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta3...v3.0.0.beta4)
|
918
460
|
|
919
|
-
**Implemented enhancements:**
|
920
|
-
|
921
|
-
- Properly handle non 200 responses from Berkshelf-API [\#843](https://github.com/berkshelf/berkshelf/issues/843)
|
922
|
-
- Installer/setup script [\#743](https://github.com/berkshelf/berkshelf/issues/743)
|
923
|
-
- In memory API Server [\#730](https://github.com/berkshelf/berkshelf/issues/730)
|
924
|
-
- No proxy support for Community::REST [\#656](https://github.com/berkshelf/berkshelf/issues/656)
|
925
|
-
|
926
|
-
**Fixed bugs:**
|
927
|
-
|
928
|
-
- lockfile error [\#888](https://github.com/berkshelf/berkshelf/issues/888)
|
929
|
-
- Berks invoked from rspec/chefspec creates deeply nested vendor directory [\#828](https://github.com/berkshelf/berkshelf/issues/828)
|
930
|
-
- Installer doesn't always install all dependencies on first run [\#764](https://github.com/berkshelf/berkshelf/issues/764)
|
931
|
-
- locked\_version must be present for all items in Lockfile [\#934](https://github.com/berkshelf/berkshelf/pull/934) ([reset](https://github.com/reset))
|
932
|
-
- berks apply is an action on a lockfile, not a berksfile [\#933](https://github.com/berkshelf/berkshelf/pull/933) ([reset](https://github.com/reset))
|
933
|
-
- metadata.rb should be compiled into metadata.json before vendoring [\#923](https://github.com/berkshelf/berkshelf/pull/923) ([reset](https://github.com/reset))
|
934
|
-
|
935
|
-
**Closed issues:**
|
936
|
-
|
937
|
-
- Vendoring removes the metadata.rb breaking foodcritic [\#931](https://github.com/berkshelf/berkshelf/issues/931)
|
938
|
-
- crash on mac os x [\#929](https://github.com/berkshelf/berkshelf/issues/929)
|
939
|
-
- Install sometimes fails due to logging bug [\#928](https://github.com/berkshelf/berkshelf/issues/928)
|
940
|
-
- Lockfile conversion failing [\#924](https://github.com/berkshelf/berkshelf/issues/924)
|
941
|
-
- Clarify in docs that Berkshelf reads knife.rb [\#921](https://github.com/berkshelf/berkshelf/issues/921)
|
942
|
-
- Building universe error or Server 503 message. [\#911](https://github.com/berkshelf/berkshelf/issues/911)
|
943
|
-
- Identify speed improvements [\#899](https://github.com/berkshelf/berkshelf/issues/899)
|
944
|
-
- Flag to skip "recommends" dependencies [\#895](https://github.com/berkshelf/berkshelf/issues/895)
|
945
|
-
- Catch "invalid file" error thrown by Chef 11 when files are in the wrong directories [\#894](https://github.com/berkshelf/berkshelf/issues/894)
|
946
|
-
- How to have a local path dependency also be a metadata dependency? [\#892](https://github.com/berkshelf/berkshelf/issues/892)
|
947
|
-
- Cookbook dependency workings unclear [\#891](https://github.com/berkshelf/berkshelf/issues/891)
|
948
|
-
- `berks upload` raises several warnings before exiting [\#887](https://github.com/berkshelf/berkshelf/issues/887)
|
949
|
-
- Segmentation fault in beta3 with Maverick when running berks upload [\#884](https://github.com/berkshelf/berkshelf/issues/884)
|
950
|
-
- Make skip messages more accurate [\#882](https://github.com/berkshelf/berkshelf/issues/882)
|
951
|
-
- berks install tries to install unknown cookbook [\#878](https://github.com/berkshelf/berkshelf/issues/878)
|
952
|
-
- Can't get cookbook with tag on github working \(using nexus-cookbook\) [\#877](https://github.com/berkshelf/berkshelf/issues/877)
|
953
|
-
- Fix skip\_syntax\_check flag [\#876](https://github.com/berkshelf/berkshelf/issues/876)
|
954
|
-
- git location incorrectly displays branch as master [\#867](https://github.com/berkshelf/berkshelf/issues/867)
|
955
|
-
- Bump celluoid and use new testing mode [\#859](https://github.com/berkshelf/berkshelf/issues/859)
|
956
|
-
- Managing environment attributes along with using berks apply [\#846](https://github.com/berkshelf/berkshelf/issues/846)
|
957
|
-
- Add helpful output if github location in Berksfile ends with .git [\#845](https://github.com/berkshelf/berkshelf/issues/845)
|
958
|
-
- Berkshelf ignores metadata.rb dependency versions [\#836](https://github.com/berkshelf/berkshelf/issues/836)
|
959
|
-
- Berksfile.lock changes based on --except and --only install flags [\#796](https://github.com/berkshelf/berkshelf/issues/796)
|
960
|
-
- Doing bundle exec berks list consumes 100% CPU, over 13GB memory, takes forever. [\#793](https://github.com/berkshelf/berkshelf/issues/793)
|
961
|
-
- Add CHANGELOG entry for 2.0.8 [\#792](https://github.com/berkshelf/berkshelf/issues/792)
|
962
|
-
- Possible issue with Berksfile 'github' shortcut in 2.0.8 [\#791](https://github.com/berkshelf/berkshelf/issues/791)
|
963
|
-
- Cygwin/Windows BerksfileReadError [\#784](https://github.com/berkshelf/berkshelf/issues/784)
|
964
|
-
- Document new `berks outdated` [\#756](https://github.com/berkshelf/berkshelf/issues/756)
|
965
|
-
- Vagrant, chef-client; SSL certificate verify still failing [\#750](https://github.com/berkshelf/berkshelf/issues/750)
|
966
|
-
- Generic superclass for HTTP response/request errors [\#739](https://github.com/berkshelf/berkshelf/issues/739)
|
967
|
-
|
968
461
|
**Merged pull requests:**
|
969
462
|
|
970
463
|
- Ensure Berksfile.lock goes along with vendored cookbooks [\#935](https://github.com/berkshelf/berkshelf/pull/935) ([reset](https://github.com/reset))
|
464
|
+
- locked\_version must be present for all items in Lockfile [\#934](https://github.com/berkshelf/berkshelf/pull/934) ([reset](https://github.com/reset))
|
465
|
+
- berks apply is an action on a lockfile, not a berksfile [\#933](https://github.com/berkshelf/berkshelf/pull/933) ([reset](https://github.com/reset))
|
971
466
|
- Fix for tests on Windows [\#926](https://github.com/berkshelf/berkshelf/pull/926) ([rarenerd](https://github.com/rarenerd))
|
972
467
|
- generate instructions for using edge berkshelf + vagrant-berkshelf [\#925](https://github.com/berkshelf/berkshelf/pull/925) ([reset](https://github.com/reset))
|
468
|
+
- metadata.rb should be compiled into metadata.json before vendoring [\#923](https://github.com/berkshelf/berkshelf/pull/923) ([reset](https://github.com/reset))
|
973
469
|
- Address issue \#921: clarify configuration documentation [\#922](https://github.com/berkshelf/berkshelf/pull/922) ([cjerdonek](https://github.com/cjerdonek))
|
974
470
|
- Fix handling chefignore [\#917](https://github.com/berkshelf/berkshelf/pull/917) ([chulkilee](https://github.com/chulkilee))
|
975
471
|
- improvements to generated README [\#915](https://github.com/berkshelf/berkshelf/pull/915) ([reset](https://github.com/reset))
|
@@ -988,19 +484,6 @@
|
|
988
484
|
## [v3.0.0.beta3](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta3) (2013-10-17)
|
989
485
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.10...v3.0.0.beta3)
|
990
486
|
|
991
|
-
**Fixed bugs:**
|
992
|
-
|
993
|
-
- berks apply doesn't seem to be formatting versions properly for chef server 11 [\#760](https://github.com/berkshelf/berkshelf/issues/760)
|
994
|
-
|
995
|
-
**Closed issues:**
|
996
|
-
|
997
|
-
- simplify running a cookbook directly from Berkshelf [\#862](https://github.com/berkshelf/berkshelf/issues/862)
|
998
|
-
- Installing Berkshelf on Windows 7 w/ Cygwin [\#860](https://github.com/berkshelf/berkshelf/issues/860)
|
999
|
-
- Dependency conflicts between Berkshelf/Chef and Berkshelf/knife-ec2. [\#854](https://github.com/berkshelf/berkshelf/issues/854)
|
1000
|
-
- Managing Chef Environments [\#852](https://github.com/berkshelf/berkshelf/issues/852)
|
1001
|
-
- port cached cookbook loading fixes from \#829 [\#830](https://github.com/berkshelf/berkshelf/issues/830)
|
1002
|
-
- Berks install indicates using the wrong branch while installing cookbooks from a git repository [\#798](https://github.com/berkshelf/berkshelf/issues/798)
|
1003
|
-
|
1004
487
|
**Merged pull requests:**
|
1005
488
|
|
1006
489
|
- Fix bersk\* typos [\#863](https://github.com/berkshelf/berkshelf/pull/863) ([justincampbell](https://github.com/justincampbell))
|
@@ -1017,27 +500,11 @@
|
|
1017
500
|
## [v2.0.10](https://github.com/berkshelf/berkshelf/tree/v2.0.10) (2013-09-01)
|
1018
501
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.9...v2.0.10)
|
1019
502
|
|
1020
|
-
**Implemented enhancements:**
|
1021
|
-
|
1022
|
-
- Accept an environment variable to debug solve [\#824](https://github.com/berkshelf/berkshelf/pull/824) ([sethvargo](https://github.com/sethvargo))
|
1023
|
-
|
1024
|
-
**Fixed bugs:**
|
1025
|
-
|
1026
|
-
- 3.0.0beta2: knife.rb sets paths relative to itself, but berks is evaluating it relative to berks run directory [\#808](https://github.com/berkshelf/berkshelf/issues/808)
|
1027
|
-
- `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))
|
1028
|
-
|
1029
|
-
**Closed issues:**
|
1030
|
-
|
1031
|
-
- Newb question... does Berkfile go in with my application code? or would this be a separate repo? [\#826](https://github.com/berkshelf/berkshelf/issues/826)
|
1032
|
-
- Dependancies of Dependancies [\#825](https://github.com/berkshelf/berkshelf/issues/825)
|
1033
|
-
- `berks init` trying to overwrite files instead of append [\#823](https://github.com/berkshelf/berkshelf/issues/823)
|
1034
|
-
- berks init fails with: undefined method 'name' [\#816](https://github.com/berkshelf/berkshelf/issues/816)
|
1035
|
-
- `berks install` does not honor Berkshelf.lock transitive dependencies [\#815](https://github.com/berkshelf/berkshelf/issues/815)
|
1036
|
-
- Ridley::Connection crashed! [\#814](https://github.com/berkshelf/berkshelf/issues/814)
|
1037
|
-
|
1038
503
|
**Merged pull requests:**
|
1039
504
|
|
1040
505
|
- Avoid reloading each cached cookbook on every resolve [\#829](https://github.com/berkshelf/berkshelf/pull/829) ([kainosnoema](https://github.com/kainosnoema))
|
506
|
+
- Accept an environment variable to debug solve [\#824](https://github.com/berkshelf/berkshelf/pull/824) ([sethvargo](https://github.com/sethvargo))
|
507
|
+
- `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))
|
1041
508
|
- 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))
|
1042
509
|
- 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))
|
1043
510
|
- generate new Vagrantfile's with 1.9 style hashes [\#813](https://github.com/berkshelf/berkshelf/pull/813) ([reset](https://github.com/reset))
|
@@ -1045,27 +512,6 @@
|
|
1045
512
|
## [v2.0.9](https://github.com/berkshelf/berkshelf/tree/v2.0.9) (2013-08-22)
|
1046
513
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.8...v2.0.9)
|
1047
514
|
|
1048
|
-
**Implemented enhancements:**
|
1049
|
-
|
1050
|
-
- Refactor ChefIgnore [\#748](https://github.com/berkshelf/berkshelf/pull/748) ([sethvargo](https://github.com/sethvargo))
|
1051
|
-
|
1052
|
-
**Fixed bugs:**
|
1053
|
-
|
1054
|
-
- berks update/install fails with \[No Berksfile or Berksfile.lock found at: ...\] [\#787](https://github.com/berkshelf/berkshelf/issues/787)
|
1055
|
-
- Installing under ruby 2.0 on x64 Windows w/ devkit fails to compile dependency [\#774](https://github.com/berkshelf/berkshelf/issues/774)
|
1056
|
-
- When uploading a cookbook, Berkshelf fails to locate a cookbook's dependencies despite those dependencies being explicitly defined in the Berksfile [\#369](https://github.com/berkshelf/berkshelf/issues/369)
|
1057
|
-
|
1058
|
-
**Closed issues:**
|
1059
|
-
|
1060
|
-
- 3.0.0beta2: chef\_config processing fails if there are knife option assignments in knife.rb [\#807](https://github.com/berkshelf/berkshelf/issues/807)
|
1061
|
-
- Dependencies' Berksfiles should not be ignored [\#804](https://github.com/berkshelf/berkshelf/issues/804)
|
1062
|
-
- Berkshelf will delete berksfile , gemfile ? [\#803](https://github.com/berkshelf/berkshelf/issues/803)
|
1063
|
-
- Unable to upload cookbooks through an open SSH tunnel [\#802](https://github.com/berkshelf/berkshelf/issues/802)
|
1064
|
-
- berks install --path deletes everything in the target directory [\#801](https://github.com/berkshelf/berkshelf/issues/801)
|
1065
|
-
- Bad Berkshelf store path with multiple box on VirtualBox with Vagrant [\#795](https://github.com/berkshelf/berkshelf/issues/795)
|
1066
|
-
- bundle exec contingent mysql fails with ENOENT [\#794](https://github.com/berkshelf/berkshelf/issues/794)
|
1067
|
-
- Berkshelf init must be atomic [\#789](https://github.com/berkshelf/berkshelf/issues/789)
|
1068
|
-
|
1069
515
|
**Merged pull requests:**
|
1070
516
|
|
1071
517
|
- Bump ridley [\#812](https://github.com/berkshelf/berkshelf/pull/812) ([reset](https://github.com/reset))
|
@@ -1073,28 +519,18 @@
|
|
1073
519
|
- Support -h and --help flags on subcommands [\#806](https://github.com/berkshelf/berkshelf/pull/806) ([sethvargo](https://github.com/sethvargo))
|
1074
520
|
- Enable use of vagrant-omnibus plugin in generated vagrant files [\#799](https://github.com/berkshelf/berkshelf/pull/799) ([pghalliday](https://github.com/pghalliday))
|
1075
521
|
- Fixed bash-completion directory path [\#797](https://github.com/berkshelf/berkshelf/pull/797) ([chrisyunker](https://github.com/chrisyunker))
|
1076
|
-
- Missing backtick on incompatible version error [\#782](https://github.com/berkshelf/berkshelf/pull/782) ([fromonesrc](https://github.com/fromonesrc))
|
1077
522
|
- Use HTTPS by default for community API [\#775](https://github.com/berkshelf/berkshelf/pull/775) ([coderanger](https://github.com/coderanger))
|
1078
523
|
- 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))
|
524
|
+
- Refactor ChefIgnore [\#748](https://github.com/berkshelf/berkshelf/pull/748) ([sethvargo](https://github.com/sethvargo))
|
1079
525
|
|
1080
526
|
## [v2.0.8](https://github.com/berkshelf/berkshelf/tree/v2.0.8) (2013-08-02)
|
1081
527
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta2...v2.0.8)
|
1082
528
|
|
1083
|
-
**Fixed bugs:**
|
1084
|
-
|
1085
|
-
- berks upload --ssl-verify=false does not work [\#758](https://github.com/berkshelf/berkshelf/issues/758)
|
1086
|
-
|
1087
|
-
**Closed issues:**
|
1088
|
-
|
1089
|
-
- Berkshelf init must create files with OS line endings [\#790](https://github.com/berkshelf/berkshelf/issues/790)
|
1090
|
-
- Inconsistent ridley dependency between berkshelf and berkshelf-api [\#788](https://github.com/berkshelf/berkshelf/issues/788)
|
1091
|
-
- berks install removes custom cookbooks [\#785](https://github.com/berkshelf/berkshelf/issues/785)
|
1092
|
-
- Berkshelf uses old versions of cookbooks even when new ones are available [\#781](https://github.com/berkshelf/berkshelf/issues/781)
|
1093
|
-
|
1094
529
|
**Merged pull requests:**
|
1095
530
|
|
1096
531
|
- relax constraint on ridley to ~\> 1.5 [\#786](https://github.com/berkshelf/berkshelf/pull/786) ([reset](https://github.com/reset))
|
1097
532
|
- bump required solve version \>= 0.8.0 [\#783](https://github.com/berkshelf/berkshelf/pull/783) ([reset](https://github.com/reset))
|
533
|
+
- Missing backtick on incompatible version error [\#782](https://github.com/berkshelf/berkshelf/pull/782) ([fromonesrc](https://github.com/fromonesrc))
|
1098
534
|
- From bug https://github.com/RiotGames/berkshelf/issues/758 [\#778](https://github.com/berkshelf/berkshelf/pull/778) ([riotcku](https://github.com/riotcku))
|
1099
535
|
- clean hard tabs [\#771](https://github.com/berkshelf/berkshelf/pull/771) ([j4y](https://github.com/j4y))
|
1100
536
|
- When Cucumber can’t find a matching Step Definition [\#768](https://github.com/berkshelf/berkshelf/pull/768) ([sethvargo](https://github.com/sethvargo))
|
@@ -1103,47 +539,6 @@
|
|
1103
539
|
## [v3.0.0.beta2](https://github.com/berkshelf/berkshelf/tree/v3.0.0.beta2) (2013-07-19)
|
1104
540
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v3.0.0.beta1...v3.0.0.beta2)
|
1105
541
|
|
1106
|
-
**Implemented enhancements:**
|
1107
|
-
|
1108
|
-
- Improve message when skipping uploading a cookbook because it's frozen [\#689](https://github.com/berkshelf/berkshelf/issues/689)
|
1109
|
-
- proposal on installing cookbooks from subversion [\#672](https://github.com/berkshelf/berkshelf/issues/672)
|
1110
|
-
- proposal on installing cookbooks from subversion [\#672](https://github.com/berkshelf/berkshelf/issues/672)
|
1111
|
-
- Default git source [\#615](https://github.com/berkshelf/berkshelf/issues/615)
|
1112
|
-
- Hosted Berkshelf DependencyAPI [\#397](https://github.com/berkshelf/berkshelf/issues/397)
|
1113
|
-
- add 'search' command [\#384](https://github.com/berkshelf/berkshelf/issues/384)
|
1114
|
-
- Berkshelf support for Mercurial [\#354](https://github.com/berkshelf/berkshelf/issues/354)
|
1115
|
-
- Use Ridley::Chef::Config [\#741](https://github.com/berkshelf/berkshelf/pull/741) ([sethvargo](https://github.com/sethvargo))
|
1116
|
-
- `berks show` should not install cookbooks for the end user [\#740](https://github.com/berkshelf/berkshelf/pull/740) ([reset](https://github.com/reset))
|
1117
|
-
- Properly implement `berks outdated` [\#731](https://github.com/berkshelf/berkshelf/pull/731) ([reset](https://github.com/reset))
|
1118
|
-
- `berks vendor` command to replace `berks install --path` [\#729](https://github.com/berkshelf/berkshelf/pull/729) ([reset](https://github.com/reset))
|
1119
|
-
|
1120
|
-
**Fixed bugs:**
|
1121
|
-
|
1122
|
-
- Undefined method "validate\_cached", resolver.rb \(line 166, in use\_source\) when using Berkshelf in conjunction with Vagrant \(+plugin\) [\#718](https://github.com/berkshelf/berkshelf/issues/718)
|
1123
|
-
- berks update doesn't correctly handle multiple nested dependencies [\#250](https://github.com/berkshelf/berkshelf/issues/250)
|
1124
|
-
- `Berks package` should packaging properly for chef-solo [\#749](https://github.com/berkshelf/berkshelf/pull/749) ([johntdyer](https://github.com/johntdyer))
|
1125
|
-
|
1126
|
-
**Closed issues:**
|
1127
|
-
|
1128
|
-
- the `--path` flag not working on latest beta [\#759](https://github.com/berkshelf/berkshelf/issues/759)
|
1129
|
-
- Locked version constraints ignored [\#751](https://github.com/berkshelf/berkshelf/issues/751)
|
1130
|
-
- berks install -p=cookbooks copies cookbooks dir into itself [\#747](https://github.com/berkshelf/berkshelf/issues/747)
|
1131
|
-
- Lockfile site format handled incorrectly [\#745](https://github.com/berkshelf/berkshelf/issues/745)
|
1132
|
-
- ctags generated by git hooks cause berks install to fail [\#738](https://github.com/berkshelf/berkshelf/issues/738)
|
1133
|
-
- 'berks install' deletes all things when used incorrectly [\#726](https://github.com/berkshelf/berkshelf/issues/726)
|
1134
|
-
- Add `berks apply\_metadata` command [\#724](https://github.com/berkshelf/berkshelf/issues/724)
|
1135
|
-
- Guard is broken :\( [\#702](https://github.com/berkshelf/berkshelf/issues/702)
|
1136
|
-
- berks upload \<single\_cookbook\> doesn't seem to work [\#701](https://github.com/berkshelf/berkshelf/issues/701)
|
1137
|
-
- Berkshelf 2.0.5 does not honor --skip-dependencies [\#699](https://github.com/berkshelf/berkshelf/issues/699)
|
1138
|
-
- Does not fail on conflicting dependency in git and metadata [\#691](https://github.com/berkshelf/berkshelf/issues/691)
|
1139
|
-
- Unable to locate cookbooks using path: in transitive dependencies [\#690](https://github.com/berkshelf/berkshelf/issues/690)
|
1140
|
-
- Uploading frozen cookbooks are silently ignored [\#688](https://github.com/berkshelf/berkshelf/issues/688)
|
1141
|
-
- Don't rely on \#to\_s for a dependency's name [\#649](https://github.com/berkshelf/berkshelf/issues/649)
|
1142
|
-
- Upload command does not respect chefignore [\#587](https://github.com/berkshelf/berkshelf/issues/587)
|
1143
|
-
- berks outdated not doing The Thing [\#467](https://github.com/berkshelf/berkshelf/issues/467)
|
1144
|
-
- Failures creating cookbooks directory properly [\#421](https://github.com/berkshelf/berkshelf/issues/421)
|
1145
|
-
- add outdated to documentation [\#361](https://github.com/berkshelf/berkshelf/issues/361)
|
1146
|
-
|
1147
542
|
**Merged pull requests:**
|
1148
543
|
|
1149
544
|
- skip uploading an already uploaded metadata dependency [\#769](https://github.com/berkshelf/berkshelf/pull/769) ([reset](https://github.com/reset))
|
@@ -1154,12 +549,17 @@
|
|
1154
549
|
- Don't install cookbooks when looking for outdated ones [\#755](https://github.com/berkshelf/berkshelf/pull/755) ([sethvargo](https://github.com/sethvargo))
|
1155
550
|
- Only show failing specs and cukes on Travis [\#753](https://github.com/berkshelf/berkshelf/pull/753) ([sethvargo](https://github.com/sethvargo))
|
1156
551
|
- Listen to the lockfile [\#752](https://github.com/berkshelf/berkshelf/pull/752) ([sethvargo](https://github.com/sethvargo))
|
552
|
+
- `Berks package` should packaging properly for chef-solo [\#749](https://github.com/berkshelf/berkshelf/pull/749) ([johntdyer](https://github.com/johntdyer))
|
1157
553
|
- Mercurial Support \(rebased\) [\#746](https://github.com/berkshelf/berkshelf/pull/746) ([mryan43](https://github.com/mryan43))
|
1158
554
|
- Remove unused fixtures [\#744](https://github.com/berkshelf/berkshelf/pull/744) ([sethvargo](https://github.com/sethvargo))
|
1159
555
|
- Fix RSpec deprecation error [\#742](https://github.com/berkshelf/berkshelf/pull/742) ([sethvargo](https://github.com/sethvargo))
|
556
|
+
- Use Ridley::Chef::Config [\#741](https://github.com/berkshelf/berkshelf/pull/741) ([sethvargo](https://github.com/sethvargo))
|
557
|
+
- `berks show` should not install cookbooks for the end user [\#740](https://github.com/berkshelf/berkshelf/pull/740) ([reset](https://github.com/reset))
|
1160
558
|
- Rescue all errors, include Errno::EDENT [\#736](https://github.com/berkshelf/berkshelf/pull/736) ([sethvargo](https://github.com/sethvargo))
|
1161
559
|
- Rescue all errors when evaluating the Berksfile [\#735](https://github.com/berkshelf/berkshelf/pull/735) ([sethvargo](https://github.com/sethvargo))
|
1162
560
|
- 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))
|
561
|
+
- Properly implement `berks outdated` [\#731](https://github.com/berkshelf/berkshelf/pull/731) ([reset](https://github.com/reset))
|
562
|
+
- `berks vendor` command to replace `berks install --path` [\#729](https://github.com/berkshelf/berkshelf/pull/729) ([reset](https://github.com/reset))
|
1163
563
|
- Always raise exception when uploading a metadata frozen cookbook [\#692](https://github.com/berkshelf/berkshelf/pull/692) ([sethvargo](https://github.com/sethvargo))
|
1164
564
|
- Fix lockfile speed issues \(master\) [\#684](https://github.com/berkshelf/berkshelf/pull/684) ([sethvargo](https://github.com/sethvargo))
|
1165
565
|
|
@@ -1173,11 +573,6 @@
|
|
1173
573
|
## [v2.0.7](https://github.com/berkshelf/berkshelf/tree/v2.0.7) (2013-07-12)
|
1174
574
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.6...v2.0.7)
|
1175
575
|
|
1176
|
-
**Closed issues:**
|
1177
|
-
|
1178
|
-
- Unhandled exception when using berkshelf, hosted chef and vagrant [\#737](https://github.com/berkshelf/berkshelf/issues/737)
|
1179
|
-
- berks install produces an error with the -b option under certain conditions [\#721](https://github.com/berkshelf/berkshelf/issues/721)
|
1180
|
-
|
1181
576
|
**Merged pull requests:**
|
1182
577
|
|
1183
578
|
- Fix generator files to allow multiple hyphens in cookbook\_name [\#732](https://github.com/berkshelf/berkshelf/pull/732) ([maoe](https://github.com/maoe))
|
@@ -1190,20 +585,6 @@
|
|
1190
585
|
## [v2.0.6](https://github.com/berkshelf/berkshelf/tree/v2.0.6) (2013-07-03)
|
1191
586
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.5...v2.0.6)
|
1192
587
|
|
1193
|
-
**Fixed bugs:**
|
1194
|
-
|
1195
|
-
- dropping git, ref attributes from a source in a berks install [\#674](https://github.com/berkshelf/berkshelf/issues/674)
|
1196
|
-
|
1197
|
-
**Closed issues:**
|
1198
|
-
|
1199
|
-
- ref no longer a functional alias for branch [\#713](https://github.com/berkshelf/berkshelf/issues/713)
|
1200
|
-
- Version Constraint in metadata.rb not honored [\#709](https://github.com/berkshelf/berkshelf/issues/709)
|
1201
|
-
- Uploading cookbook with Unicode characters [\#708](https://github.com/berkshelf/berkshelf/issues/708)
|
1202
|
-
- Cookbooks with git sources are not updated when calling berks update [\#707](https://github.com/berkshelf/berkshelf/issues/707)
|
1203
|
-
- Berkshelf cannot find the Berksfile [\#705](https://github.com/berkshelf/berkshelf/issues/705)
|
1204
|
-
- Get a 'Ridley::SandboxResource crashed! Celluloid::FiberStackError: stack level too deep' error when uploading cookbooks [\#703](https://github.com/berkshelf/berkshelf/issues/703)
|
1205
|
-
- Investigate autostart [\#685](https://github.com/berkshelf/berkshelf/issues/685)
|
1206
|
-
|
1207
588
|
**Merged pull requests:**
|
1208
589
|
|
1209
590
|
- clarify usage of branch, tag and ref keys [\#719](https://github.com/berkshelf/berkshelf/pull/719) ([josephholsten](https://github.com/josephholsten))
|
@@ -1219,25 +600,10 @@
|
|
1219
600
|
## [v2.0.5](https://github.com/berkshelf/berkshelf/tree/v2.0.5) (2013-06-21)
|
1220
601
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.4...v2.0.5)
|
1221
602
|
|
1222
|
-
**Fixed bugs:**
|
1223
|
-
|
1224
|
-
- Berkshelf config is not reloaded [\#664](https://github.com/berkshelf/berkshelf/issues/664)
|
1225
|
-
- Berksfile.lock's `locked\_version` not honored when cookbook store is empty [\#637](https://github.com/berkshelf/berkshelf/issues/637)
|
1226
|
-
- wrong version chosen during vagrant run [\#226](https://github.com/berkshelf/berkshelf/issues/226)
|
1227
|
-
- 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))
|
1228
|
-
|
1229
|
-
**Closed issues:**
|
1230
|
-
|
1231
|
-
- Berkshelf ignores metadata.rb dependency versions [\#680](https://github.com/berkshelf/berkshelf/issues/680)
|
1232
|
-
- berks download with git path fails with "failed to download" [\#679](https://github.com/berkshelf/berkshelf/issues/679)
|
1233
|
-
- Berkshelf 2.0.4 and Chef 11 Dependency conflict [\#676](https://github.com/berkshelf/berkshelf/issues/676)
|
1234
|
-
- `berks upload` failing to pass args \(like --skip-dependencies\) on Windows [\#667](https://github.com/berkshelf/berkshelf/issues/667)
|
1235
|
-
- Bundler dependency error in generated cookbook [\#657](https://github.com/berkshelf/berkshelf/issues/657)
|
1236
|
-
- berks upload fails with undefined method `success?' [\#627](https://github.com/berkshelf/berkshelf/issues/627)
|
1237
|
-
|
1238
603
|
**Merged pull requests:**
|
1239
604
|
|
1240
605
|
- Gracefully fail LockfileParserError and handle empty lockfiles [\#687](https://github.com/berkshelf/berkshelf/pull/687) ([sethvargo](https://github.com/sethvargo))
|
606
|
+
- 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))
|
1241
607
|
- Fix lockfile speed issues \(2-0-stable\) [\#683](https://github.com/berkshelf/berkshelf/pull/683) ([sethvargo](https://github.com/sethvargo))
|
1242
608
|
- Forwardport lockfile fixes [\#681](https://github.com/berkshelf/berkshelf/pull/681) ([sethvargo](https://github.com/sethvargo))
|
1243
609
|
- remove dependency on active support [\#678](https://github.com/berkshelf/berkshelf/pull/678) ([reset](https://github.com/reset))
|
@@ -1248,17 +614,6 @@
|
|
1248
614
|
## [v2.0.4](https://github.com/berkshelf/berkshelf/tree/v2.0.4) (2013-06-17)
|
1249
615
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.6...v2.0.4)
|
1250
616
|
|
1251
|
-
**Fixed bugs:**
|
1252
|
-
|
1253
|
-
- Regression in speed improvements when installing with a Berksfile.lock [\#646](https://github.com/berkshelf/berkshelf/pull/646) ([reset](https://github.com/reset))
|
1254
|
-
- `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))
|
1255
|
-
|
1256
|
-
**Closed issues:**
|
1257
|
-
|
1258
|
-
- berks upload fails consistently during the upload of cookbook 'ohai' [\#661](https://github.com/berkshelf/berkshelf/issues/661)
|
1259
|
-
- Duplicate code? [\#660](https://github.com/berkshelf/berkshelf/issues/660)
|
1260
|
-
- custom path in 'berks install' fails when having rel and trying to install with --path [\#654](https://github.com/berkshelf/berkshelf/issues/654)
|
1261
|
-
|
1262
617
|
**Merged pull requests:**
|
1263
618
|
|
1264
619
|
- Rename lockfile sources to dependencies [\#665](https://github.com/berkshelf/berkshelf/pull/665) ([sethvargo](https://github.com/sethvargo))
|
@@ -1269,28 +624,21 @@
|
|
1269
624
|
- Use .values instead of mapping the hash \(2.0\) [\#652](https://github.com/berkshelf/berkshelf/pull/652) ([sethvargo](https://github.com/sethvargo))
|
1270
625
|
- Remove a test that creeped in from master [\#651](https://github.com/berkshelf/berkshelf/pull/651) ([sethvargo](https://github.com/sethvargo))
|
1271
626
|
- Fix broken metadata constraints [\#648](https://github.com/berkshelf/berkshelf/pull/648) ([sethvargo](https://github.com/sethvargo))
|
627
|
+
- Regression in speed improvements when installing with a Berksfile.lock [\#646](https://github.com/berkshelf/berkshelf/pull/646) ([reset](https://github.com/reset))
|
1272
628
|
- rename cookbook source/sources to dependency/dependencies [\#640](https://github.com/berkshelf/berkshelf/pull/640) ([reset](https://github.com/reset))
|
1273
629
|
- File syntax check [\#632](https://github.com/berkshelf/berkshelf/pull/632) ([sethvargo](https://github.com/sethvargo))
|
630
|
+
- `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))
|
1274
631
|
|
1275
632
|
## [v1.4.6](https://github.com/berkshelf/berkshelf/tree/v1.4.6) (2013-06-11)
|
1276
633
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.3...v1.4.6)
|
1277
634
|
|
1278
|
-
**Fixed bugs:**
|
1279
|
-
|
1280
|
-
- metadata.rb constraints are not respected [\#494](https://github.com/berkshelf/berkshelf/issues/494)
|
1281
|
-
- cached relative path of git repo broken in 2.0.1 [\#629](https://github.com/berkshelf/berkshelf/pull/629) ([bhouse](https://github.com/bhouse))
|
1282
|
-
|
1283
|
-
**Closed issues:**
|
1284
|
-
|
1285
|
-
- :git locations broken / shellout problem [\#633](https://github.com/berkshelf/berkshelf/issues/633)
|
1286
|
-
- Berkshelf ignores version constraints in metadata when there is already a version of the cookbook installed. [\#103](https://github.com/berkshelf/berkshelf/issues/103)
|
1287
|
-
|
1288
635
|
**Merged pull requests:**
|
1289
636
|
|
1290
637
|
- Merge pull request \#629 from RiotGames/rel\_lockfile [\#644](https://github.com/berkshelf/berkshelf/pull/644) ([reset](https://github.com/reset))
|
1291
638
|
- Merge pull request \#642 from RiotGames/use-mixin-shellout [\#643](https://github.com/berkshelf/berkshelf/pull/643) ([reset](https://github.com/reset))
|
1292
639
|
- use Mixin::ShellOut instead of Ridley::Mixin::ShellOut [\#642](https://github.com/berkshelf/berkshelf/pull/642) ([reset](https://github.com/reset))
|
1293
640
|
- Add bzip2 tarball support [\#641](https://github.com/berkshelf/berkshelf/pull/641) ([pdf](https://github.com/pdf))
|
641
|
+
- cached relative path of git repo broken in 2.0.1 [\#629](https://github.com/berkshelf/berkshelf/pull/629) ([bhouse](https://github.com/bhouse))
|
1294
642
|
- Fix metadata nested constraints [\#626](https://github.com/berkshelf/berkshelf/pull/626) ([sethvargo](https://github.com/sethvargo))
|
1295
643
|
- Full backport default locations [\#598](https://github.com/berkshelf/berkshelf/pull/598) ([sethvargo](https://github.com/sethvargo))
|
1296
644
|
|
@@ -1304,37 +652,21 @@
|
|
1304
652
|
## [v2.0.2](https://github.com/berkshelf/berkshelf/tree/v2.0.2) (2013-06-11)
|
1305
653
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.1...v2.0.2)
|
1306
654
|
|
1307
|
-
**Implemented enhancements:**
|
1308
|
-
|
1309
|
-
- Vagrant chef\_client provisioner not reflecting on Berks configuration for it's values [\#225](https://github.com/berkshelf/berkshelf/issues/225)
|
1310
|
-
|
1311
|
-
**Fixed bugs:**
|
1312
|
-
|
1313
|
-
- Unknown license error when running `berks cookbook` [\#624](https://github.com/berkshelf/berkshelf/pull/624) ([dougireton](https://github.com/dougireton))
|
1314
|
-
|
1315
|
-
**Closed issues:**
|
1316
|
-
|
1317
|
-
- Berkshelf 2.0.1 does not honor --skip-dependencies [\#628](https://github.com/berkshelf/berkshelf/issues/628)
|
1318
|
-
- Changelog for 1.4.5 [\#616](https://github.com/berkshelf/berkshelf/issues/616)
|
1319
|
-
- Backport default location fixes to 1.4-stable [\#577](https://github.com/berkshelf/berkshelf/issues/577)
|
1320
|
-
|
1321
655
|
**Merged pull requests:**
|
1322
656
|
|
1323
657
|
- 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))
|
1324
658
|
- move thor/monkies to thor\_ext [\#635](https://github.com/berkshelf/berkshelf/pull/635) ([reset](https://github.com/reset))
|
1325
659
|
- only expose methods we want to the Berksfile DSL [\#634](https://github.com/berkshelf/berkshelf/pull/634) ([reset](https://github.com/reset))
|
1326
660
|
- berks upload --skip-dependencies goes down in flames [\#631](https://github.com/berkshelf/berkshelf/pull/631) ([thommay](https://github.com/thommay))
|
661
|
+
- Unknown license error when running `berks cookbook` [\#624](https://github.com/berkshelf/berkshelf/pull/624) ([dougireton](https://github.com/dougireton))
|
1327
662
|
|
1328
663
|
## [v2.0.1](https://github.com/berkshelf/berkshelf/tree/v2.0.1) (2013-06-07)
|
1329
664
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.0...v2.0.1)
|
1330
665
|
|
1331
|
-
**
|
666
|
+
**Merged pull requests:**
|
1332
667
|
|
1333
668
|
- CLI does not actually respect the `-c` flag [\#622](https://github.com/berkshelf/berkshelf/pull/622) ([reset](https://github.com/reset))
|
1334
669
|
- Debug/Verbose logging is broken [\#621](https://github.com/berkshelf/berkshelf/pull/621) ([reset](https://github.com/reset))
|
1335
|
-
|
1336
|
-
**Merged pull requests:**
|
1337
|
-
|
1338
670
|
- Berksfile will now be installed instead of resolved before upload [\#620](https://github.com/berkshelf/berkshelf/pull/620) ([reset](https://github.com/reset))
|
1339
671
|
- Bump .ruby-version to 1.9.3-p429 \[ci skip\] [\#619](https://github.com/berkshelf/berkshelf/pull/619) ([sethvargo](https://github.com/sethvargo))
|
1340
672
|
- Fixing the version location in outdated source error message [\#618](https://github.com/berkshelf/berkshelf/pull/618) ([jeremyolliver](https://github.com/jeremyolliver))
|
@@ -1342,51 +674,19 @@
|
|
1342
674
|
## [v2.0.0](https://github.com/berkshelf/berkshelf/tree/v2.0.0) (2013-06-06)
|
1343
675
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.5...v2.0.0)
|
1344
676
|
|
1345
|
-
**Implemented enhancements:**
|
1346
|
-
|
1347
|
-
- Add Proxy Support [\#243](https://github.com/berkshelf/berkshelf/issues/243)
|
1348
|
-
- `berks shelf show` should take an optional VERSION argument [\#586](https://github.com/berkshelf/berkshelf/pull/586) ([reset](https://github.com/reset))
|
1349
|
-
- Allow user to specify licenses [\#543](https://github.com/berkshelf/berkshelf/pull/543) ([sethvargo](https://github.com/sethvargo))
|
1350
|
-
- Cookbook validation should be performed on `package` command [\#536](https://github.com/berkshelf/berkshelf/pull/536) ([reset](https://github.com/reset))
|
1351
|
-
|
1352
|
-
**Fixed bugs:**
|
1353
|
-
|
1354
|
-
- Identify Ruby 1.9.2 "Random" Failures? [\#595](https://github.com/berkshelf/berkshelf/issues/595)
|
1355
|
-
- knife.rb resolution logic doesn't seem to work [\#537](https://github.com/berkshelf/berkshelf/issues/537)
|
1356
|
-
- Berks cookbook misplaces files [\#603](https://github.com/berkshelf/berkshelf/pull/603) ([sethvargo](https://github.com/sethvargo))
|
1357
|
-
|
1358
|
-
**Closed issues:**
|
1359
|
-
|
1360
|
-
- Cookbook generation of Vagrantfile has double quoted string for box name and box\_url [\#612](https://github.com/berkshelf/berkshelf/issues/612)
|
1361
|
-
- Berkshelf documentation is offline [\#605](https://github.com/berkshelf/berkshelf/issues/605)
|
1362
|
-
- Vendor related feature request - downloading cookbook files [\#604](https://github.com/berkshelf/berkshelf/issues/604)
|
1363
|
-
- :git locations broken? [\#601](https://github.com/berkshelf/berkshelf/issues/601)
|
1364
|
-
- Support for Vendoring Cookbooks [\#597](https://github.com/berkshelf/berkshelf/issues/597)
|
1365
|
-
- berks install with --berksfile option does not work [\#594](https://github.com/berkshelf/berkshelf/issues/594)
|
1366
|
-
- When using multiple default locations, only the first location is used [\#588](https://github.com/berkshelf/berkshelf/issues/588)
|
1367
|
-
- Vagrant run list [\#584](https://github.com/berkshelf/berkshelf/issues/584)
|
1368
|
-
- Anyone feeling berks install/upload commands too slow? [\#549](https://github.com/berkshelf/berkshelf/issues/549)
|
1369
|
-
- Hide TK related things for 2.0 [\#547](https://github.com/berkshelf/berkshelf/issues/547)
|
1370
|
-
- Berks Install Not Parsing Cookbook API properly [\#542](https://github.com/berkshelf/berkshelf/issues/542)
|
1371
|
-
- chef\_handler run very slow [\#540](https://github.com/berkshelf/berkshelf/issues/540)
|
1372
|
-
- Berks init/cookbook generate a Vagrantfile that throws an undefined method error if berkshelf-vagrant is installed. [\#539](https://github.com/berkshelf/berkshelf/issues/539)
|
1373
|
-
- berks install fails on windows/cygwin when you specify a coobkook in Berksfile [\#522](https://github.com/berkshelf/berkshelf/issues/522)
|
1374
|
-
- Berkshelf cannot upload to multiple locations without re-resolving dependencies [\#462](https://github.com/berkshelf/berkshelf/issues/462)
|
1375
|
-
- When the requested version is not available on the chef server, the latest version is accepted [\#294](https://github.com/berkshelf/berkshelf/issues/294)
|
1376
|
-
- Using metadata should not resolve "self" [\#263](https://github.com/berkshelf/berkshelf/issues/263)
|
1377
|
-
- Berkshelf should ascend directories looking for Berksfile [\#166](https://github.com/berkshelf/berkshelf/issues/166)
|
1378
|
-
|
1379
677
|
**Merged pull requests:**
|
1380
678
|
|
1381
679
|
- test command registered to the CLI properly [\#610](https://github.com/berkshelf/berkshelf/pull/610) ([reset](https://github.com/reset))
|
1382
680
|
- remove all @author tags from source - rely on gemspec/readme/license [\#609](https://github.com/berkshelf/berkshelf/pull/609) ([reset](https://github.com/reset))
|
1383
681
|
- add Seth Vargo to authors list [\#608](https://github.com/berkshelf/berkshelf/pull/608) ([reset](https://github.com/reset))
|
682
|
+
- Berks cookbook misplaces files [\#603](https://github.com/berkshelf/berkshelf/pull/603) ([sethvargo](https://github.com/sethvargo))
|
1384
683
|
- 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))
|
1385
684
|
- Turns out the default sites were actually broken... [\#599](https://github.com/berkshelf/berkshelf/pull/599) ([sethvargo](https://github.com/sethvargo))
|
1386
685
|
- Don't generate real keys [\#596](https://github.com/berkshelf/berkshelf/pull/596) ([sethvargo](https://github.com/sethvargo))
|
1387
686
|
- Take \#2 at replacing MixLib::Shellout [\#593](https://github.com/berkshelf/berkshelf/pull/593) ([sethvargo](https://github.com/sethvargo))
|
1388
687
|
- Chef Zero still broken [\#592](https://github.com/berkshelf/berkshelf/pull/592) ([sethvargo](https://github.com/sethvargo))
|
1389
688
|
- Bring berkshelf specs up to the latest chef-zero [\#589](https://github.com/berkshelf/berkshelf/pull/589) ([jkeiser](https://github.com/jkeiser))
|
689
|
+
- `berks shelf show` should take an optional VERSION argument [\#586](https://github.com/berkshelf/berkshelf/pull/586) ([reset](https://github.com/reset))
|
1390
690
|
- :json is not registered on Faraday::Response \(RuntimeError\) [\#581](https://github.com/berkshelf/berkshelf/pull/581) ([mconigliaro](https://github.com/mconigliaro))
|
1391
691
|
- Create `berks shelf` [\#579](https://github.com/berkshelf/berkshelf/pull/579) ([sethvargo](https://github.com/sethvargo))
|
1392
692
|
- Convert many things to single quotes [\#575](https://github.com/berkshelf/berkshelf/pull/575) ([sethvargo](https://github.com/sethvargo))
|
@@ -1394,30 +694,12 @@
|
|
1394
694
|
- Speed up \#show command and operate off a Berksfile [\#564](https://github.com/berkshelf/berkshelf/pull/564) ([sethvargo](https://github.com/sethvargo))
|
1395
695
|
- Require a Berksfile for the \#info command [\#563](https://github.com/berkshelf/berkshelf/pull/563) ([sethvargo](https://github.com/sethvargo))
|
1396
696
|
- Speed up Lockfile feature [\#559](https://github.com/berkshelf/berkshelf/pull/559) ([sethvargo](https://github.com/sethvargo))
|
697
|
+
- Allow user to specify licenses [\#543](https://github.com/berkshelf/berkshelf/pull/543) ([sethvargo](https://github.com/sethvargo))
|
698
|
+
- Cookbook validation should be performed on `package` command [\#536](https://github.com/berkshelf/berkshelf/pull/536) ([reset](https://github.com/reset))
|
1397
699
|
|
1398
700
|
## [v1.4.5](https://github.com/berkshelf/berkshelf/tree/v1.4.5) (2013-05-29)
|
1399
701
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v2.0.0.beta...v1.4.5)
|
1400
702
|
|
1401
|
-
**Fixed bugs:**
|
1402
|
-
|
1403
|
-
- Recipes with spaces in the filename cause `berks upload` to fail [\#530](https://github.com/berkshelf/berkshelf/issues/530)
|
1404
|
-
- Lockfile 2.0 should use a relative path for a metadata cookbook [\#529](https://github.com/berkshelf/berkshelf/issues/529)
|
1405
|
-
- Default locations are broken [\#516](https://github.com/berkshelf/berkshelf/pull/516) ([sethvargo](https://github.com/sethvargo))
|
1406
|
-
|
1407
|
-
**Closed issues:**
|
1408
|
-
|
1409
|
-
- Why uploads all the cookbooks when issuing cmd to upload one cookbook only? [\#574](https://github.com/berkshelf/berkshelf/issues/574)
|
1410
|
-
- How to use Berkshelf to manage Organization repo like the Librarian-chef does? [\#535](https://github.com/berkshelf/berkshelf/issues/535)
|
1411
|
-
- Lockfile 2 breaks cookbooks located on a relative path [\#532](https://github.com/berkshelf/berkshelf/issues/532)
|
1412
|
-
- Tests on master are terribly slow due to test-kitchen integration [\#531](https://github.com/berkshelf/berkshelf/issues/531)
|
1413
|
-
- cookbook repo pointing to github in Berksfile is not finding it on berks upload [\#528](https://github.com/berkshelf/berkshelf/issues/528)
|
1414
|
-
- Berks Upload fails behind a proxy [\#524](https://github.com/berkshelf/berkshelf/issues/524)
|
1415
|
-
- berks apply errors out during environment.save [\#520](https://github.com/berkshelf/berkshelf/issues/520)
|
1416
|
-
- berks apply errors out during environment.save [\#519](https://github.com/berkshelf/berkshelf/issues/519)
|
1417
|
-
- berks apply errors out during environment.save [\#518](https://github.com/berkshelf/berkshelf/issues/518)
|
1418
|
-
- Deprecate Berksfile in favor of .berkshelf [\#517](https://github.com/berkshelf/berkshelf/issues/517)
|
1419
|
-
- vendor\_path option in config for default --path for install [\#512](https://github.com/berkshelf/berkshelf/issues/512)
|
1420
|
-
|
1421
703
|
**Merged pull requests:**
|
1422
704
|
|
1423
705
|
- 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))
|
@@ -1446,18 +728,11 @@
|
|
1446
728
|
- Lockfile fixes [\#533](https://github.com/berkshelf/berkshelf/pull/533) ([sethvargo](https://github.com/sethvargo))
|
1447
729
|
- Remove alias\_method on UI module [\#527](https://github.com/berkshelf/berkshelf/pull/527) ([sethvargo](https://github.com/sethvargo))
|
1448
730
|
- version numbers must be strings to prevent environment.save crash [\#521](https://github.com/berkshelf/berkshelf/pull/521) ([timops](https://github.com/timops))
|
731
|
+
- Default locations are broken [\#516](https://github.com/berkshelf/berkshelf/pull/516) ([sethvargo](https://github.com/sethvargo))
|
1449
732
|
|
1450
733
|
## [v2.0.0.beta](https://github.com/berkshelf/berkshelf/tree/v2.0.0.beta) (2013-05-15)
|
1451
734
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.4...v2.0.0.beta)
|
1452
735
|
|
1453
|
-
**Closed issues:**
|
1454
|
-
|
1455
|
-
- berks package [\#509](https://github.com/berkshelf/berkshelf/issues/509)
|
1456
|
-
- No option to disable default behavior of stripping .git/ directories on `berks install` git cookbooks [\#496](https://github.com/berkshelf/berkshelf/issues/496)
|
1457
|
-
- Do not fetch git repo if I have it in my Berksfile.lock [\#404](https://github.com/berkshelf/berkshelf/issues/404)
|
1458
|
-
- Pull `berks cookbook` templating command into new project? [\#386](https://github.com/berkshelf/berkshelf/issues/386)
|
1459
|
-
- Logs misrepresent the source of a cookbook [\#295](https://github.com/berkshelf/berkshelf/issues/295)
|
1460
|
-
|
1461
736
|
**Merged pull requests:**
|
1462
737
|
|
1463
738
|
- Fix tests [\#515](https://github.com/berkshelf/berkshelf/pull/515) ([sethvargo](https://github.com/sethvargo))
|
@@ -1467,33 +742,6 @@
|
|
1467
742
|
## [v1.4.4](https://github.com/berkshelf/berkshelf/tree/v1.4.4) (2013-05-14)
|
1468
743
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.3...v1.4.4)
|
1469
744
|
|
1470
|
-
**Implemented enhancements:**
|
1471
|
-
|
1472
|
-
- upgrade to Ridley 0.11.x [\#487](https://github.com/berkshelf/berkshelf/issues/487)
|
1473
|
-
|
1474
|
-
**Fixed bugs:**
|
1475
|
-
|
1476
|
-
- `berks list -F json` should not produce both human and json output [\#488](https://github.com/berkshelf/berkshelf/issues/488)
|
1477
|
-
- Issues with Vagrant plugin when "cookbooks" folder exists [\#267](https://github.com/berkshelf/berkshelf/issues/267)
|
1478
|
-
- Upload breaks with space in path name [\#258](https://github.com/berkshelf/berkshelf/issues/258)
|
1479
|
-
|
1480
|
-
**Closed issues:**
|
1481
|
-
|
1482
|
-
- upload does not upload files from files/default [\#511](https://github.com/berkshelf/berkshelf/issues/511)
|
1483
|
-
- Vagrant not using the lastest cookbooks [\#500](https://github.com/berkshelf/berkshelf/issues/500)
|
1484
|
-
- Change specs to depend on a fixture cookbook repo [\#498](https://github.com/berkshelf/berkshelf/issues/498)
|
1485
|
-
- Warn if cookbook name in Berksfile and name in metadata don't match [\#497](https://github.com/berkshelf/berkshelf/issues/497)
|
1486
|
-
- berks update not updating cookbook stored in github after updating cookbook version [\#493](https://github.com/berkshelf/berkshelf/issues/493)
|
1487
|
-
- Berkshelf displays color codes as garbage characters in Windows [\#482](https://github.com/berkshelf/berkshelf/issues/482)
|
1488
|
-
- Allow CWD configuration file [\#476](https://github.com/berkshelf/berkshelf/issues/476)
|
1489
|
-
- berks upload fails dude to fiber stack size limit [\#474](https://github.com/berkshelf/berkshelf/issues/474)
|
1490
|
-
- no way to use berkshelf with environments and git changesets that should not yet be release [\#469](https://github.com/berkshelf/berkshelf/issues/469)
|
1491
|
-
- vagrant plugin failed to load in windows [\#449](https://github.com/berkshelf/berkshelf/issues/449)
|
1492
|
-
- Vagrant + berksfile\_path + cookbook with path option = Berkshelf::CookbookNotFound [\#436](https://github.com/berkshelf/berkshelf/issues/436)
|
1493
|
-
- Error when uploading a large sandbox [\#376](https://github.com/berkshelf/berkshelf/issues/376)
|
1494
|
-
- Loading the CookbookStore is slow with a lot of Cookbooks present [\#285](https://github.com/berkshelf/berkshelf/issues/285)
|
1495
|
-
- validate the name of the retrieved cached\_cookbook is not different than the source [\#123](https://github.com/berkshelf/berkshelf/issues/123)
|
1496
|
-
|
1497
745
|
**Merged pull requests:**
|
1498
746
|
|
1499
747
|
- bump required ridley version to 0.12.1 [\#513](https://github.com/berkshelf/berkshelf/pull/513) ([reset](https://github.com/reset))
|
@@ -1507,48 +755,16 @@
|
|
1507
755
|
## [v1.4.3](https://github.com/berkshelf/berkshelf/tree/v1.4.3) (2013-05-09)
|
1508
756
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.2...v1.4.3)
|
1509
757
|
|
1510
|
-
**Implemented enhancements:**
|
1511
|
-
|
1512
|
-
- apply Berksfile.lock to environment [\#440](https://github.com/berkshelf/berkshelf/issues/440)
|
1513
|
-
- git SHA should be resolved in lockfile [\#486](https://github.com/berkshelf/berkshelf/pull/486) ([sethvargo](https://github.com/sethvargo))
|
1514
|
-
|
1515
|
-
**Fixed bugs:**
|
1516
|
-
|
1517
|
-
- Berks upload + open source Chef server + missing name in metadata = Ridley::Errors::HTTPBadRequest [\#442](https://github.com/berkshelf/berkshelf/issues/442)
|
1518
|
-
|
1519
|
-
**Closed issues:**
|
1520
|
-
|
1521
|
-
- Unable to install updated cookbook from github [\#495](https://github.com/berkshelf/berkshelf/issues/495)
|
1522
|
-
- berkshelf dot fetch transitive dependencies with git \(include\_attribute\) [\#492](https://github.com/berkshelf/berkshelf/issues/492)
|
1523
|
-
- Berksfile.lock should not entry for current cookbook [\#485](https://github.com/berkshelf/berkshelf/issues/485)
|
1524
|
-
- When getting "Connection Refused" errors, Berkshelf should return a friendly error message [\#439](https://github.com/berkshelf/berkshelf/issues/439)
|
1525
|
-
- Is there a way to override the generator templates? [\#437](https://github.com/berkshelf/berkshelf/issues/437)
|
1526
|
-
|
1527
758
|
**Merged pull requests:**
|
1528
759
|
|
1529
760
|
- Just use JSON [\#491](https://github.com/berkshelf/berkshelf/pull/491) ([sethvargo](https://github.com/sethvargo))
|
761
|
+
- git SHA should be resolved in lockfile [\#486](https://github.com/berkshelf/berkshelf/pull/486) ([sethvargo](https://github.com/sethvargo))
|
1530
762
|
- berks apply command [\#473](https://github.com/berkshelf/berkshelf/pull/473) ([capoferro](https://github.com/capoferro))
|
1531
763
|
- 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))
|
1532
764
|
|
1533
765
|
## [v1.4.2](https://github.com/berkshelf/berkshelf/tree/v1.4.2) (2013-05-02)
|
1534
766
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.1...v1.4.2)
|
1535
767
|
|
1536
|
-
**Implemented enhancements:**
|
1537
|
-
|
1538
|
-
- Lockfile Re-write [\#274](https://github.com/berkshelf/berkshelf/issues/274)
|
1539
|
-
- Clean up Chef Server on destruction if Chef Client provisioner [\#264](https://github.com/berkshelf/berkshelf/issues/264)
|
1540
|
-
|
1541
|
-
**Fixed bugs:**
|
1542
|
-
|
1543
|
-
- berks upload drops the port number in the URL [\#453](https://github.com/berkshelf/berkshelf/issues/453)
|
1544
|
-
|
1545
|
-
**Closed issues:**
|
1546
|
-
|
1547
|
-
- Orphan lockfile generated in CWD on berks cookbook [\#478](https://github.com/berkshelf/berkshelf/issues/478)
|
1548
|
-
- Install command does not respect chefignore [\#432](https://github.com/berkshelf/berkshelf/issues/432)
|
1549
|
-
- Remve unnecessary dependencies from lockfile [\#400](https://github.com/berkshelf/berkshelf/issues/400)
|
1550
|
-
- Berkshelf middleware appears to break cookbooks mounted over NFS [\#207](https://github.com/berkshelf/berkshelf/issues/207)
|
1551
|
-
|
1552
768
|
**Merged pull requests:**
|
1553
769
|
|
1554
770
|
- Fix Git caching [\#484](https://github.com/berkshelf/berkshelf/pull/484) ([ivey](https://github.com/ivey))
|
@@ -1558,33 +774,9 @@
|
|
1558
774
|
## [v1.4.1](https://github.com/berkshelf/berkshelf/tree/v1.4.1) (2013-04-30)
|
1559
775
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.0...v1.4.1)
|
1560
776
|
|
1561
|
-
**Implemented enhancements:**
|
1562
|
-
|
1563
|
-
- improve cookbook upload speeds [\#275](https://github.com/berkshelf/berkshelf/issues/275)
|
1564
|
-
- Don't copy cookbooks for every vagrant run [\#165](https://github.com/berkshelf/berkshelf/issues/165)
|
1565
|
-
|
1566
|
-
**Fixed bugs:**
|
1567
|
-
|
1568
|
-
- Symbol arg to `site` needs better error [\#458](https://github.com/berkshelf/berkshelf/issues/458)
|
1569
|
-
- chef\_server\_url not configurable for upload command [\#480](https://github.com/berkshelf/berkshelf/pull/480) ([KAllan357](https://github.com/KAllan357))
|
1570
|
-
|
1571
|
-
**Closed issues:**
|
1572
|
-
|
1573
|
-
- Dependency on cookbook README file [\#479](https://github.com/berkshelf/berkshelf/issues/479)
|
1574
|
-
- Cannot upload local path cookbook when it relies on another local path cookbook [\#475](https://github.com/berkshelf/berkshelf/issues/475)
|
1575
|
-
- Vagrant halt failing [\#464](https://github.com/berkshelf/berkshelf/issues/464)
|
1576
|
-
- timeout when upload especific newrelic cookbook [\#460](https://github.com/berkshelf/berkshelf/issues/460)
|
1577
|
-
- h5 font size is too small on berkshelf.com [\#433](https://github.com/berkshelf/berkshelf/issues/433)
|
1578
|
-
- Add link to berkshelf-shims [\#419](https://github.com/berkshelf/berkshelf/issues/419)
|
1579
|
-
- Passing dependency resolution off to another tool? \(Librarian\) [\#396](https://github.com/berkshelf/berkshelf/issues/396)
|
1580
|
-
- follow same convention as knife to find knife.rb [\#382](https://github.com/berkshelf/berkshelf/issues/382)
|
1581
|
-
- Document SSL Issues [\#380](https://github.com/berkshelf/berkshelf/issues/380)
|
1582
|
-
- add unrequested command [\#362](https://github.com/berkshelf/berkshelf/issues/362)
|
1583
|
-
- Unable to activate activemodel-3.2.8 [\#290](https://github.com/berkshelf/berkshelf/issues/290)
|
1584
|
-
- Cucumber test for skip-bundler option support check is mocked out [\#208](https://github.com/berkshelf/berkshelf/issues/208)
|
1585
|
-
|
1586
777
|
**Merged pull requests:**
|
1587
778
|
|
779
|
+
- chef\_server\_url not configurable for upload command [\#480](https://github.com/berkshelf/berkshelf/pull/480) ([KAllan357](https://github.com/KAllan357))
|
1588
780
|
- Re-think \#463? [\#472](https://github.com/berkshelf/berkshelf/pull/472) ([sethvargo](https://github.com/sethvargo))
|
1589
781
|
- Fix the failing cucumber scenaiors [\#471](https://github.com/berkshelf/berkshelf/pull/471) ([sethvargo](https://github.com/sethvargo))
|
1590
782
|
- Doc SSL issues - \#380 [\#470](https://github.com/berkshelf/berkshelf/pull/470) ([ivey](https://github.com/ivey))
|
@@ -1596,18 +788,9 @@
|
|
1596
788
|
## [v1.4.0](https://github.com/berkshelf/berkshelf/tree/v1.4.0) (2013-04-13)
|
1597
789
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.4.0.rc1...v1.4.0)
|
1598
790
|
|
1599
|
-
**Fixed bugs:**
|
1600
|
-
|
1601
|
-
- path source should expand from Berksfile location and now CWD [\#463](https://github.com/berkshelf/berkshelf/pull/463) ([reset](https://github.com/reset))
|
1602
|
-
|
1603
|
-
**Closed issues:**
|
1604
|
-
|
1605
|
-
- 1.4.0.rc1 - berks upload --freeze, thinks trying to upload cookbook named --freeze [\#447](https://github.com/berkshelf/berkshelf/issues/447)
|
1606
|
-
- berks upload skips definitions [\#445](https://github.com/berkshelf/berkshelf/issues/445)
|
1607
|
-
- Problems with Berkshelf and vagrant multi machine settings [\#441](https://github.com/berkshelf/berkshelf/issues/441)
|
1608
|
-
|
1609
791
|
**Merged pull requests:**
|
1610
792
|
|
793
|
+
- path source should expand from Berksfile location and now CWD [\#463](https://github.com/berkshelf/berkshelf/pull/463) ([reset](https://github.com/reset))
|
1611
794
|
- add addressable gem dependency to gemspec and explicitly require it [\#461](https://github.com/berkshelf/berkshelf/pull/461) ([reset](https://github.com/reset))
|
1612
795
|
- Enable berkshelf-vagrant by default [\#457](https://github.com/berkshelf/berkshelf/pull/457) ([danshultz](https://github.com/danshultz))
|
1613
796
|
- Thor 0.18 [\#456](https://github.com/berkshelf/berkshelf/pull/456) ([justincampbell](https://github.com/justincampbell))
|
@@ -1626,24 +809,10 @@
|
|
1626
809
|
## [v1.4.0.rc1](https://github.com/berkshelf/berkshelf/tree/v1.4.0.rc1) (2013-03-22)
|
1627
810
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.3.1...v1.4.0.rc1)
|
1628
811
|
|
1629
|
-
**Implemented enhancements:**
|
1630
|
-
|
1631
|
-
- Automatically freeze cookbooks on upload [\#431](https://github.com/berkshelf/berkshelf/pull/431) ([reset](https://github.com/reset))
|
1632
|
-
|
1633
|
-
**Fixed bugs:**
|
1634
|
-
|
1635
|
-
- Default locations are broken [\#399](https://github.com/berkshelf/berkshelf/issues/399)
|
1636
|
-
|
1637
|
-
**Closed issues:**
|
1638
|
-
|
1639
|
-
- Respect vagrant --no-provision [\#430](https://github.com/berkshelf/berkshelf/issues/430)
|
1640
|
-
- Vagrant 1.1 Support [\#416](https://github.com/berkshelf/berkshelf/issues/416)
|
1641
|
-
- Documentation should be updated [\#410](https://github.com/berkshelf/berkshelf/issues/410)
|
1642
|
-
- Upload '--freeze' flag is not respected [\#320](https://github.com/berkshelf/berkshelf/issues/320)
|
1643
|
-
|
1644
812
|
**Merged pull requests:**
|
1645
813
|
|
1646
814
|
- add logging mixin and refactor Berkshelf.log into Berkshelf::Logger [\#434](https://github.com/berkshelf/berkshelf/pull/434) ([reset](https://github.com/reset))
|
815
|
+
- Automatically freeze cookbooks on upload [\#431](https://github.com/berkshelf/berkshelf/pull/431) ([reset](https://github.com/reset))
|
1647
816
|
- remove facter language override prevention hack [\#428](https://github.com/berkshelf/berkshelf/pull/428) ([reset](https://github.com/reset))
|
1648
817
|
- Attempt \#2 at \#399 \(use local cache\) [\#415](https://github.com/berkshelf/berkshelf/pull/415) ([sethvargo](https://github.com/sethvargo))
|
1649
818
|
|
@@ -1667,16 +836,6 @@
|
|
1667
836
|
## [v1.3.0.rc1](https://github.com/berkshelf/berkshelf/tree/v1.3.0.rc1) (2013-03-20)
|
1668
837
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.2.1...v1.3.0.rc1)
|
1669
838
|
|
1670
|
-
**Closed issues:**
|
1671
|
-
|
1672
|
-
- Support for metadata.json fallback for non-existent metadata.rb [\#418](https://github.com/berkshelf/berkshelf/issues/418)
|
1673
|
-
- Subcommand --help creates cookbook [\#411](https://github.com/berkshelf/berkshelf/issues/411)
|
1674
|
-
- Upload fails with SignatureDoesNotMatch error [\#409](https://github.com/berkshelf/berkshelf/issues/409)
|
1675
|
-
- Vagrant getting pinned [\#403](https://github.com/berkshelf/berkshelf/issues/403)
|
1676
|
-
- Bump JSON dependency - Ruby 2.0 support [\#393](https://github.com/berkshelf/berkshelf/issues/393)
|
1677
|
-
- Web site annoyance: Choppy Gutters [\#377](https://github.com/berkshelf/berkshelf/issues/377)
|
1678
|
-
- Cookbook upload eating HTTP error messages [\#189](https://github.com/berkshelf/berkshelf/issues/189)
|
1679
|
-
|
1680
839
|
**Merged pull requests:**
|
1681
840
|
|
1682
841
|
- remove vagrant plugin from berkshelf core [\#423](https://github.com/berkshelf/berkshelf/pull/423) ([reset](https://github.com/reset))
|
@@ -1695,10 +854,6 @@
|
|
1695
854
|
## [v1.2.0](https://github.com/berkshelf/berkshelf/tree/v1.2.0) (2013-03-05)
|
1696
855
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.2.0.rc1...v1.2.0)
|
1697
856
|
|
1698
|
-
**Closed issues:**
|
1699
|
-
|
1700
|
-
- moneta/basic\_file missing [\#346](https://github.com/berkshelf/berkshelf/issues/346)
|
1701
|
-
|
1702
857
|
**Merged pull requests:**
|
1703
858
|
|
1704
859
|
- Look locally for cached cookbooks [\#395](https://github.com/berkshelf/berkshelf/pull/395) ([sethvargo](https://github.com/sethvargo))
|
@@ -1714,26 +869,6 @@
|
|
1714
869
|
## [v1.2.0.rc1](https://github.com/berkshelf/berkshelf/tree/v1.2.0.rc1) (2013-02-26)
|
1715
870
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.6...v1.2.0.rc1)
|
1716
871
|
|
1717
|
-
**Implemented enhancements:**
|
1718
|
-
|
1719
|
-
- remove dependency on Chef gem [\#342](https://github.com/berkshelf/berkshelf/pull/342) ([reset](https://github.com/reset))
|
1720
|
-
|
1721
|
-
**Fixed bugs:**
|
1722
|
-
|
1723
|
-
- hashie 2.0.0 throws an annoying warning [\#374](https://github.com/berkshelf/berkshelf/issues/374)
|
1724
|
-
- default sources are broken [\#319](https://github.com/berkshelf/berkshelf/issues/319)
|
1725
|
-
- `berks open` causing issues with my Vim config [\#259](https://github.com/berkshelf/berkshelf/issues/259)
|
1726
|
-
|
1727
|
-
**Closed issues:**
|
1728
|
-
|
1729
|
-
- "berks cookbook --help" creates a new cookbook named "--help" [\#373](https://github.com/berkshelf/berkshelf/issues/373)
|
1730
|
-
- How to generate metadata.json ? [\#372](https://github.com/berkshelf/berkshelf/issues/372)
|
1731
|
-
- Error running berks upload [\#370](https://github.com/berkshelf/berkshelf/issues/370)
|
1732
|
-
- Broken berkshelf/vagrant integration [\#368](https://github.com/berkshelf/berkshelf/issues/368)
|
1733
|
-
- chef attribute [\#353](https://github.com/berkshelf/berkshelf/issues/353)
|
1734
|
-
- berkshelf 1.1.3 use in vagrant 1.0.6 broken because of chef 11.2.0 [\#341](https://github.com/berkshelf/berkshelf/issues/341)
|
1735
|
-
- Segfault when running berks install in a vagrant [\#98](https://github.com/berkshelf/berkshelf/issues/98)
|
1736
|
-
|
1737
872
|
**Merged pull requests:**
|
1738
873
|
|
1739
874
|
- Autocreate git remotes [\#367](https://github.com/berkshelf/berkshelf/pull/367) ([capoferro](https://github.com/capoferro))
|
@@ -1741,10 +876,12 @@
|
|
1741
876
|
- Move vagrant development dependency to gemspec [\#356](https://github.com/berkshelf/berkshelf/pull/356) ([reset](https://github.com/reset))
|
1742
877
|
- backout PR \#298 [\#355](https://github.com/berkshelf/berkshelf/pull/355) ([reset](https://github.com/reset))
|
1743
878
|
- Git spec cleanup [\#352](https://github.com/berkshelf/berkshelf/pull/352) ([capoferro](https://github.com/capoferro))
|
879
|
+
- remove dependency on Chef gem [\#342](https://github.com/berkshelf/berkshelf/pull/342) ([reset](https://github.com/reset))
|
1744
880
|
- Remove unnecessary hard dependency on $HOME being set [\#340](https://github.com/berkshelf/berkshelf/pull/340) ([blasdelf](https://github.com/blasdelf))
|
1745
881
|
- Bash completion for cookbooks [\#337](https://github.com/berkshelf/berkshelf/pull/337) ([sethvargo](https://github.com/sethvargo))
|
1746
882
|
- Like bundler, berks should default do berks install [\#336](https://github.com/berkshelf/berkshelf/pull/336) ([sethvargo](https://github.com/sethvargo))
|
1747
883
|
- Add Cane [\#333](https://github.com/berkshelf/berkshelf/pull/333) ([justincampbell](https://github.com/justincampbell))
|
884
|
+
- Loading berkshelf sets locale to C [\#270](https://github.com/berkshelf/berkshelf/pull/270) ([sciurus](https://github.com/sciurus))
|
1748
885
|
|
1749
886
|
## [v1.1.6](https://github.com/berkshelf/berkshelf/tree/v1.1.6) (2013-02-07)
|
1750
887
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.5...v1.1.6)
|
@@ -1757,19 +894,13 @@
|
|
1757
894
|
## [v1.1.5](https://github.com/berkshelf/berkshelf/tree/v1.1.5) (2013-02-07)
|
1758
895
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.4...v1.1.5)
|
1759
896
|
|
1760
|
-
|
1761
|
-
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.3...v1.1.4)
|
1762
|
-
|
1763
|
-
**Fixed bugs:**
|
1764
|
-
|
1765
|
-
- Duplicated and unclear directions in Vagrantfile [\#330](https://github.com/berkshelf/berkshelf/issues/330)
|
1766
|
-
- Incompatibility with Chef 11 beta client [\#306](https://github.com/berkshelf/berkshelf/issues/306)
|
897
|
+
**Merged pull requests:**
|
1767
898
|
|
1768
|
-
|
899
|
+
- JSON \(in\)sanity [\#339](https://github.com/berkshelf/berkshelf/pull/339) ([reset](https://github.com/reset))
|
900
|
+
- Berkshelf gem should not depend on Vagrant gem [\#288](https://github.com/berkshelf/berkshelf/pull/288) ([charlesjohnson](https://github.com/charlesjohnson))
|
1769
901
|
|
1770
|
-
|
1771
|
-
|
1772
|
-
- Verify Berkshelf on Rubygems.org [\#318](https://github.com/berkshelf/berkshelf/issues/318)
|
902
|
+
## [v1.1.4](https://github.com/berkshelf/berkshelf/tree/v1.1.4) (2013-02-06)
|
903
|
+
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.3...v1.1.4)
|
1773
904
|
|
1774
905
|
**Merged pull requests:**
|
1775
906
|
|
@@ -1780,27 +911,6 @@
|
|
1780
911
|
## [v1.1.3](https://github.com/berkshelf/berkshelf/tree/v1.1.3) (2013-02-04)
|
1781
912
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.2...v1.1.3)
|
1782
913
|
|
1783
|
-
**Implemented enhancements:**
|
1784
|
-
|
1785
|
-
- Need a way to set maintainer info for skeleton cookbooks [\#313](https://github.com/berkshelf/berkshelf/issues/313)
|
1786
|
-
- Support --quiet option [\#292](https://github.com/berkshelf/berkshelf/pull/292) ([sethvargo](https://github.com/sethvargo))
|
1787
|
-
|
1788
|
-
**Fixed bugs:**
|
1789
|
-
|
1790
|
-
- Installer/Updater are not thread safe [\#308](https://github.com/berkshelf/berkshelf/issues/308)
|
1791
|
-
- Permission issues on cookbook install directory causes strange error [\#297](https://github.com/berkshelf/berkshelf/issues/297)
|
1792
|
-
- Lockfile not getting updated [\#261](https://github.com/berkshelf/berkshelf/issues/261)
|
1793
|
-
- Berkshelf has incompatible dependencies w/ Chef 10.16.2 [\#229](https://github.com/berkshelf/berkshelf/issues/229)
|
1794
|
-
|
1795
|
-
**Closed issues:**
|
1796
|
-
|
1797
|
-
- Vagrant ui deprecated and broken [\#312](https://github.com/berkshelf/berkshelf/issues/312)
|
1798
|
-
- Add faraday as a dependency in gemspec [\#311](https://github.com/berkshelf/berkshelf/issues/311)
|
1799
|
-
- Erlang Chef 11 compatibility [\#293](https://github.com/berkshelf/berkshelf/issues/293)
|
1800
|
-
- Cookbook version installed is not determined by Berksfile.lock [\#289](https://github.com/berkshelf/berkshelf/issues/289)
|
1801
|
-
- Add option to initialize cookbook with jenkins build support [\#272](https://github.com/berkshelf/berkshelf/issues/272)
|
1802
|
-
- include vagrant-windows gem in Gemfile [\#221](https://github.com/berkshelf/berkshelf/issues/221)
|
1803
|
-
|
1804
914
|
**Merged pull requests:**
|
1805
915
|
|
1806
916
|
- Add score to Code Climate badge [\#329](https://github.com/berkshelf/berkshelf/pull/329) ([justincampbell](https://github.com/justincampbell))
|
@@ -1822,25 +932,11 @@
|
|
1822
932
|
- Raise an exception if the berkshelf directory is not writable [\#299](https://github.com/berkshelf/berkshelf/pull/299) ([sethvargo](https://github.com/sethvargo))
|
1823
933
|
- Lockfile management and DEBUG flags [\#298](https://github.com/berkshelf/berkshelf/pull/298) ([sethvargo](https://github.com/sethvargo))
|
1824
934
|
- Allow cookbook uploads without dependency resolution. Add spec. [\#296](https://github.com/berkshelf/berkshelf/pull/296) ([chrisroberts](https://github.com/chrisroberts))
|
935
|
+
- Support --quiet option [\#292](https://github.com/berkshelf/berkshelf/pull/292) ([sethvargo](https://github.com/sethvargo))
|
1825
936
|
|
1826
937
|
## [v1.1.2](https://github.com/berkshelf/berkshelf/tree/v1.1.2) (2013-01-10)
|
1827
938
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.1...v1.1.2)
|
1828
939
|
|
1829
|
-
**Implemented enhancements:**
|
1830
|
-
|
1831
|
-
- Support path option for git sources [\#269](https://github.com/berkshelf/berkshelf/issues/269)
|
1832
|
-
- option to skip syntax check on 'berks upload' [\#266](https://github.com/berkshelf/berkshelf/issues/266)
|
1833
|
-
|
1834
|
-
**Fixed bugs:**
|
1835
|
-
|
1836
|
-
- Actor shutdown messages are affecting json output [\#278](https://github.com/berkshelf/berkshelf/issues/278)
|
1837
|
-
|
1838
|
-
**Closed issues:**
|
1839
|
-
|
1840
|
-
- update documentation about :rel option for Github location [\#286](https://github.com/berkshelf/berkshelf/issues/286)
|
1841
|
-
- Cleanup branches [\#284](https://github.com/berkshelf/berkshelf/issues/284)
|
1842
|
-
- add git\_collection source, or overload site: to work with cookbooks collections [\#88](https://github.com/berkshelf/berkshelf/issues/88)
|
1843
|
-
|
1844
940
|
**Merged pull requests:**
|
1845
941
|
|
1846
942
|
- Resolves issue \#286 [\#287](https://github.com/berkshelf/berkshelf/pull/287) ([arangamani](https://github.com/arangamani))
|
@@ -1849,50 +945,44 @@
|
|
1849
945
|
## [v1.1.1](https://github.com/berkshelf/berkshelf/tree/v1.1.1) (2013-01-01)
|
1850
946
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.0...v1.1.1)
|
1851
947
|
|
1852
|
-
**Implemented enhancements:**
|
1853
|
-
|
1854
|
-
- git+ssh://host/path/to/repo "is not a valid Git URI" [\#257](https://github.com/berkshelf/berkshelf/issues/257)
|
1855
|
-
|
1856
|
-
**Closed issues:**
|
1857
|
-
|
1858
|
-
- Berks update does not update cookbook to latest version. [\#273](https://github.com/berkshelf/berkshelf/issues/273)
|
1859
|
-
- Git dependencies of cookbooks not correctly resolved in main Berksfile [\#268](https://github.com/berkshelf/berkshelf/issues/268)
|
1860
|
-
- created a wiki showing how to vendorize cookbooks [\#249](https://github.com/berkshelf/berkshelf/issues/249)
|
1861
|
-
- `berks install --path blah` should honor .gitignore [\#248](https://github.com/berkshelf/berkshelf/issues/248)
|
1862
|
-
|
1863
948
|
**Merged pull requests:**
|
1864
949
|
|
1865
950
|
- Add option to skip ruby syntax check on upload [\#283](https://github.com/berkshelf/berkshelf/pull/283) ([reset](https://github.com/reset))
|
1866
951
|
- fix our failing tests [\#282](https://github.com/berkshelf/berkshelf/pull/282) ([reset](https://github.com/reset))
|
1867
952
|
- Add more files and patterns to chefignore. [\#281](https://github.com/berkshelf/berkshelf/pull/281) ([sethvargo](https://github.com/sethvargo))
|
1868
953
|
- Add 'test/\*' to chefignore generator file. [\#279](https://github.com/berkshelf/berkshelf/pull/279) ([fnichol](https://github.com/fnichol))
|
954
|
+
- Add IRC notifications for Travis CI [\#277](https://github.com/berkshelf/berkshelf/pull/277) ([justincampbell](https://github.com/justincampbell))
|
955
|
+
- bump ridley version and use improvements in uploader [\#276](https://github.com/berkshelf/berkshelf/pull/276) ([reset](https://github.com/reset))
|
956
|
+
- Allow wider range of repository URIs \(\#257\) [\#265](https://github.com/berkshelf/berkshelf/pull/265) ([aflatter](https://github.com/aflatter))
|
957
|
+
- Create CONTRIBUTING.md [\#262](https://github.com/berkshelf/berkshelf/pull/262) ([dwradcliffe](https://github.com/dwradcliffe))
|
1869
958
|
|
1870
959
|
## [v1.1.0](https://github.com/berkshelf/berkshelf/tree/v1.1.0) (2012-12-06)
|
1871
960
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.1.0.rc1...v1.1.0)
|
1872
961
|
|
1873
|
-
|
1874
|
-
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.4...v1.1.0.rc1)
|
1875
|
-
|
1876
|
-
**Implemented enhancements:**
|
1877
|
-
|
1878
|
-
- Feature Request: berks outdated [\#228](https://github.com/berkshelf/berkshelf/issues/228)
|
1879
|
-
- Add option to freeze cookbooks on upload [\#122](https://github.com/berkshelf/berkshelf/issues/122)
|
962
|
+
**Merged pull requests:**
|
1880
963
|
|
1881
|
-
|
964
|
+
- 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))
|
965
|
+
- Honor chefignore when vendorizing cookbooks [\#256](https://github.com/berkshelf/berkshelf/pull/256) ([sethvargo](https://github.com/sethvargo))
|
966
|
+
- Create `berks open` [\#254](https://github.com/berkshelf/berkshelf/pull/254) ([sethvargo](https://github.com/sethvargo))
|
1882
967
|
|
1883
|
-
|
968
|
+
## [v1.1.0.rc1](https://github.com/berkshelf/berkshelf/tree/v1.1.0.rc1) (2012-11-30)
|
969
|
+
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.4...v1.1.0.rc1)
|
1884
970
|
|
1885
|
-
**
|
971
|
+
**Merged pull requests:**
|
1886
972
|
|
1887
|
-
-
|
1888
|
-
-
|
1889
|
-
-
|
1890
|
-
-
|
1891
|
-
-
|
1892
|
-
-
|
1893
|
-
-
|
1894
|
-
-
|
1895
|
-
-
|
973
|
+
- More verbose outdated [\#255](https://github.com/berkshelf/berkshelf/pull/255) ([reset](https://github.com/reset))
|
974
|
+
- Add berks outdated command [\#252](https://github.com/berkshelf/berkshelf/pull/252) ([sethvargo](https://github.com/sethvargo))
|
975
|
+
- 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))
|
976
|
+
- "cookbook" argument is no longer optional for show command [\#246](https://github.com/berkshelf/berkshelf/pull/246) ([reset](https://github.com/reset))
|
977
|
+
- use File.open instead of File.write [\#245](https://github.com/berkshelf/berkshelf/pull/245) ([reset](https://github.com/reset))
|
978
|
+
- better errors in Vagrant plugin [\#244](https://github.com/berkshelf/berkshelf/pull/244) ([reset](https://github.com/reset))
|
979
|
+
- Better list and show output [\#241](https://github.com/berkshelf/berkshelf/pull/241) ([sethvargo](https://github.com/sethvargo))
|
980
|
+
- Allow the same cookbook in different groups [\#240](https://github.com/berkshelf/berkshelf/pull/240) ([sethvargo](https://github.com/sethvargo))
|
981
|
+
- Allow updating of a single cookbook [\#239](https://github.com/berkshelf/berkshelf/pull/239) ([sethvargo](https://github.com/sethvargo))
|
982
|
+
- Fix \#232 by merging with Thor options [\#238](https://github.com/berkshelf/berkshelf/pull/238) ([sethvargo](https://github.com/sethvargo))
|
983
|
+
- Add rvmrc [\#237](https://github.com/berkshelf/berkshelf/pull/237) ([sethvargo](https://github.com/sethvargo))
|
984
|
+
- Allow uploading one \(or more\) cookbooks [\#234](https://github.com/berkshelf/berkshelf/pull/234) ([sethvargo](https://github.com/sethvargo))
|
985
|
+
- `berks show` to look at a cookbook's location [\#219](https://github.com/berkshelf/berkshelf/pull/219) ([sethvargo](https://github.com/sethvargo))
|
1896
986
|
|
1897
987
|
## [v1.0.4](https://github.com/berkshelf/berkshelf/tree/v1.0.4) (2012-11-16)
|
1898
988
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.3...v1.0.4)
|
@@ -1906,84 +996,90 @@
|
|
1906
996
|
## [v1.0.1](https://github.com/berkshelf/berkshelf/tree/v1.0.1) (2012-11-14)
|
1907
997
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.0...v1.0.1)
|
1908
998
|
|
1909
|
-
**
|
999
|
+
**Merged pull requests:**
|
1910
1000
|
|
1911
|
-
-
|
1001
|
+
- Refactor 213 [\#224](https://github.com/berkshelf/berkshelf/pull/224) ([reset](https://github.com/reset))
|
1002
|
+
- Fix syntax on group example [\#223](https://github.com/berkshelf/berkshelf/pull/223) ([coderanger](https://github.com/coderanger))
|
1003
|
+
- Adds travis testing to docs [\#218](https://github.com/berkshelf/berkshelf/pull/218) ([miketheman](https://github.com/miketheman))
|
1004
|
+
- Adds documentation for GitHub location [\#217](https://github.com/berkshelf/berkshelf/pull/217) ([miketheman](https://github.com/miketheman))
|
1005
|
+
- 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))
|
1006
|
+
- 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))
|
1007
|
+
- 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))
|
1008
|
+
- 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))
|
1009
|
+
- 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))
|
1912
1010
|
|
1913
1011
|
## [v1.0.0](https://github.com/berkshelf/berkshelf/tree/v1.0.0) (2012-11-12)
|
1914
1012
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.0.rc3...v1.0.0)
|
1915
1013
|
|
1916
|
-
**
|
1917
|
-
|
1918
|
-
- `berks version` runs extremely slowly [\#163](https://github.com/berkshelf/berkshelf/issues/163)
|
1919
|
-
- Add github source [\#64](https://github.com/berkshelf/berkshelf/issues/64)
|
1920
|
-
|
1921
|
-
**Fixed bugs:**
|
1922
|
-
|
1923
|
-
- Should warn if using --foodcritic w/o thor-foodcritic installed [\#170](https://github.com/berkshelf/berkshelf/issues/170)
|
1924
|
-
- `berks version` runs extremely slowly [\#163](https://github.com/berkshelf/berkshelf/issues/163)
|
1925
|
-
|
1926
|
-
**Closed issues:**
|
1014
|
+
**Merged pull requests:**
|
1927
1015
|
|
1928
|
-
-
|
1016
|
+
- Using FileUtils.mv rather than File.rename fixes RiotGames/berkshelf\#209 [\#210](https://github.com/berkshelf/berkshelf/pull/210) ([tknerr](https://github.com/tknerr))
|
1017
|
+
- Github location \(Issue \#64\) [\#206](https://github.com/berkshelf/berkshelf/pull/206) ([capoferro](https://github.com/capoferro))
|
1018
|
+
- Check if options are supported \(Issue \#170\) [\#204](https://github.com/berkshelf/berkshelf/pull/204) ([capoferro](https://github.com/capoferro))
|
1929
1019
|
|
1930
1020
|
## [v1.0.0.rc3](https://github.com/berkshelf/berkshelf/tree/v1.0.0.rc3) (2012-11-12)
|
1931
1021
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.0.rc2...v1.0.0.rc3)
|
1932
1022
|
|
1933
|
-
**
|
1023
|
+
**Merged pull requests:**
|
1934
1024
|
|
1935
|
-
-
|
1936
|
-
-
|
1025
|
+
- organization is now automatically inferred by server\_url in Ridley [\#205](https://github.com/berkshelf/berkshelf/pull/205) ([reset](https://github.com/reset))
|
1026
|
+
- 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))
|
1027
|
+
- `berks upload` should read the knife.rb, if present [\#202](https://github.com/berkshelf/berkshelf/pull/202) ([sethvargo](https://github.com/sethvargo))
|
1028
|
+
- Specifying -c or --config during `berks upload` does nothing... [\#201](https://github.com/berkshelf/berkshelf/pull/201) ([sethvargo](https://github.com/sethvargo))
|
1029
|
+
- Allow config file to set ssl.verify usefully [\#200](https://github.com/berkshelf/berkshelf/pull/200) ([temujin9](https://github.com/temujin9))
|
1030
|
+
- Allowing Berkshelf::Config.path override [\#199](https://github.com/berkshelf/berkshelf/pull/199) ([temujin9](https://github.com/temujin9))
|
1031
|
+
- Disable default bridged networking [\#198](https://github.com/berkshelf/berkshelf/pull/198) ([someara](https://github.com/someara))
|
1032
|
+
- Default cookbook version [\#197](https://github.com/berkshelf/berkshelf/pull/197) ([someara](https://github.com/someara))
|
1033
|
+
- adding .rbenv-version to gitignore [\#196](https://github.com/berkshelf/berkshelf/pull/196) ([someara](https://github.com/someara))
|
1937
1034
|
|
1938
1035
|
## [v1.0.0.rc2](https://github.com/berkshelf/berkshelf/tree/v1.0.0.rc2) (2012-11-07)
|
1939
1036
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v1.0.0.rc1...v1.0.0.rc2)
|
1940
1037
|
|
1941
|
-
**
|
1038
|
+
**Merged pull requests:**
|
1942
1039
|
|
1943
|
-
-
|
1040
|
+
- ChefAPI Download bug [\#195](https://github.com/berkshelf/berkshelf/pull/195) ([reset](https://github.com/reset))
|
1041
|
+
- Code cleanup [\#192](https://github.com/berkshelf/berkshelf/pull/192) ([justincampbell](https://github.com/justincampbell))
|
1944
1042
|
|
1945
1043
|
## [v1.0.0.rc1](https://github.com/berkshelf/berkshelf/tree/v1.0.0.rc1) (2012-11-01)
|
1946
1044
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.6.0.beta4...v1.0.0.rc1)
|
1947
1045
|
|
1948
|
-
**
|
1046
|
+
**Merged pull requests:**
|
1949
1047
|
|
1950
|
-
-
|
1048
|
+
- add Cli\#configure function for interactively configuring Berkshelf [\#187](https://github.com/berkshelf/berkshelf/pull/187) ([reset](https://github.com/reset))
|
1951
1049
|
|
1952
1050
|
## [v0.6.0.beta4](https://github.com/berkshelf/berkshelf/tree/v0.6.0.beta4) (2012-11-01)
|
1953
1051
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.6.0.beta3...v0.6.0.beta4)
|
1954
1052
|
|
1955
|
-
**
|
1956
|
-
|
1957
|
-
- Should git initialization include a git commit? [\#181](https://github.com/berkshelf/berkshelf/issues/181)
|
1958
|
-
- `berks init` should generate the same files as `berks cookbook create` [\#158](https://github.com/berkshelf/berkshelf/issues/158)
|
1959
|
-
|
1960
|
-
**Closed issues:**
|
1053
|
+
**Merged pull requests:**
|
1961
1054
|
|
1962
|
-
-
|
1963
|
-
-
|
1964
|
-
-
|
1055
|
+
- simplify configuration generation, validation, and defaults [\#186](https://github.com/berkshelf/berkshelf/pull/186) ([reset](https://github.com/reset))
|
1056
|
+
- 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))
|
1057
|
+
- Fix regression \(infinite recursion on Windows\) in 4ad97d4 [\#182](https://github.com/berkshelf/berkshelf/pull/182) ([jdutton](https://github.com/jdutton))
|
1058
|
+
- Organize gemdeps [\#180](https://github.com/berkshelf/berkshelf/pull/180) ([reset](https://github.com/reset))
|
1059
|
+
- fixes issue 158 - init command accepts and uses the generator flags [\#179](https://github.com/berkshelf/berkshelf/pull/179) ([reset](https://github.com/reset))
|
1965
1060
|
|
1966
1061
|
## [v0.6.0.beta3](https://github.com/berkshelf/berkshelf/tree/v0.6.0.beta3) (2012-10-29)
|
1967
1062
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.6.0.beta2...v0.6.0.beta3)
|
1968
1063
|
|
1969
|
-
**
|
1970
|
-
|
1971
|
-
- Additional config options for `berks cookbook create` [\#151](https://github.com/berkshelf/berkshelf/issues/151)
|
1972
|
-
- Vagrant plugin always tries to load Knife config [\#138](https://github.com/berkshelf/berkshelf/issues/138)
|
1973
|
-
|
1974
|
-
**Fixed bugs:**
|
1975
|
-
|
1976
|
-
- Vagrant Plugin Always Loads, Contradicts Documentation [\#161](https://github.com/berkshelf/berkshelf/issues/161)
|
1977
|
-
- LoadError/json conflict [\#148](https://github.com/berkshelf/berkshelf/issues/148)
|
1978
|
-
- Fails w/ call to mixlib-shellout/windows.rb on windows [\#146](https://github.com/berkshelf/berkshelf/issues/146)
|
1979
|
-
- berks install error indicates wrong remote [\#145](https://github.com/berkshelf/berkshelf/issues/145)
|
1980
|
-
- Dependency Resolution Broken on Windows 7 [\#140](https://github.com/berkshelf/berkshelf/issues/140)
|
1981
|
-
|
1982
|
-
**Closed issues:**
|
1064
|
+
**Merged pull requests:**
|
1983
1065
|
|
1984
|
-
-
|
1985
|
-
-
|
1986
|
-
-
|
1066
|
+
- 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))
|
1067
|
+
- fix issue where FileUtils.mv fails on some Windows machines [\#176](https://github.com/berkshelf/berkshelf/pull/176) ([tknerr](https://github.com/tknerr))
|
1068
|
+
- Fix :git access on Windows [\#175](https://github.com/berkshelf/berkshelf/pull/175) ([jdutton](https://github.com/jdutton))
|
1069
|
+
- Touch metadata.rb before berk init [\#174](https://github.com/berkshelf/berkshelf/pull/174) ([justincampbell](https://github.com/justincampbell))
|
1070
|
+
- Fix git and vagrant flags [\#173](https://github.com/berkshelf/berkshelf/pull/173) ([justincampbell](https://github.com/justincampbell))
|
1071
|
+
- Make Git and Vagrant the defaults [\#172](https://github.com/berkshelf/berkshelf/pull/172) ([justincampbell](https://github.com/justincampbell))
|
1072
|
+
- Use Travis CI [\#171](https://github.com/berkshelf/berkshelf/pull/171) ([justincampbell](https://github.com/justincampbell))
|
1073
|
+
- Add additional options to the Berkshelf config [\#169](https://github.com/berkshelf/berkshelf/pull/169) ([justincampbell](https://github.com/justincampbell))
|
1074
|
+
- Remove Vagrant auto-require hook [\#168](https://github.com/berkshelf/berkshelf/pull/168) ([justincampbell](https://github.com/justincampbell))
|
1075
|
+
- Add support for a Berkshelf config file [\#162](https://github.com/berkshelf/berkshelf/pull/162) ([justincampbell](https://github.com/justincampbell))
|
1076
|
+
- Ignore all \*.pem files [\#160](https://github.com/berkshelf/berkshelf/pull/160) ([justincampbell](https://github.com/justincampbell))
|
1077
|
+
- Before download errors, output source and location [\#159](https://github.com/berkshelf/berkshelf/pull/159) ([justincampbell](https://github.com/justincampbell))
|
1078
|
+
- Use :rubygems symbol in generated Gemfile [\#157](https://github.com/berkshelf/berkshelf/pull/157) ([justincampbell](https://github.com/justincampbell))
|
1079
|
+
- Refactoring Downloader [\#156](https://github.com/berkshelf/berkshelf/pull/156) ([justincampbell](https://github.com/justincampbell))
|
1080
|
+
- Failing specs [\#155](https://github.com/berkshelf/berkshelf/pull/155) ([justincampbell](https://github.com/justincampbell))
|
1081
|
+
- Allow customization of generated Vagrantfile [\#153](https://github.com/berkshelf/berkshelf/pull/153) ([justincampbell](https://github.com/justincampbell))
|
1082
|
+
- Require chef before everything else, sort requires [\#149](https://github.com/berkshelf/berkshelf/pull/149) ([justincampbell](https://github.com/justincampbell))
|
1987
1083
|
|
1988
1084
|
## [v0.6.0.beta2](https://github.com/berkshelf/berkshelf/tree/v0.6.0.beta2) (2012-09-28)
|
1989
1085
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.5.1...v0.6.0.beta2)
|
@@ -1991,18 +1087,18 @@
|
|
1991
1087
|
## [v0.5.1](https://github.com/berkshelf/berkshelf/tree/v0.5.1) (2012-09-28)
|
1992
1088
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.6.0.beta1...v0.5.1)
|
1993
1089
|
|
1994
|
-
**
|
1995
|
-
|
1996
|
-
- Vagrant Plugin Fails When Upping \>1 VM [\#137](https://github.com/berkshelf/berkshelf/issues/137)
|
1997
|
-
|
1998
|
-
**Closed issues:**
|
1090
|
+
**Merged pull requests:**
|
1999
1091
|
|
2000
|
-
-
|
2001
|
-
-
|
1092
|
+
- Multi vm [\#143](https://github.com/berkshelf/berkshelf/pull/143) ([reset](https://github.com/reset))
|
1093
|
+
- Copy Cookbook Dir Contents Instead of Cookbook Dir Itself [\#142](https://github.com/berkshelf/berkshelf/pull/142) ([RoboticCheese](https://github.com/RoboticCheese))
|
2002
1094
|
|
2003
1095
|
## [v0.6.0.beta1](https://github.com/berkshelf/berkshelf/tree/v0.6.0.beta1) (2012-09-25)
|
2004
1096
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.5.0...v0.6.0.beta1)
|
2005
1097
|
|
1098
|
+
**Merged pull requests:**
|
1099
|
+
|
1100
|
+
- use the latest version of Solve [\#136](https://github.com/berkshelf/berkshelf/pull/136) ([reset](https://github.com/reset))
|
1101
|
+
|
2006
1102
|
## [v0.5.0](https://github.com/berkshelf/berkshelf/tree/v0.5.0) (2012-09-24)
|
2007
1103
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.5.0.rc4...v0.5.0)
|
2008
1104
|
|
@@ -2012,125 +1108,224 @@
|
|
2012
1108
|
## [v0.5.0.rc3](https://github.com/berkshelf/berkshelf/tree/v0.5.0.rc3) (2012-09-21)
|
2013
1109
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.5.0.rc2...v0.5.0.rc3)
|
2014
1110
|
|
1111
|
+
**Merged pull requests:**
|
1112
|
+
|
1113
|
+
- add ability to disable SSL verification in uploads [\#135](https://github.com/berkshelf/berkshelf/pull/135) ([reset](https://github.com/reset))
|
1114
|
+
- fix uploads when using chef\_client provisioner [\#134](https://github.com/berkshelf/berkshelf/pull/134) ([reset](https://github.com/reset))
|
1115
|
+
- Pages 5 [\#133](https://github.com/berkshelf/berkshelf/pull/133) ([reset](https://github.com/reset))
|
1116
|
+
|
2015
1117
|
## [v0.5.0.rc2](https://github.com/berkshelf/berkshelf/tree/v0.5.0.rc2) (2012-09-20)
|
2016
1118
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.5.0.rc1...v0.5.0.rc2)
|
2017
1119
|
|
2018
1120
|
## [v0.5.0.rc1](https://github.com/berkshelf/berkshelf/tree/v0.5.0.rc1) (2012-09-19)
|
2019
1121
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.4.0...v0.5.0.rc1)
|
2020
1122
|
|
2021
|
-
**
|
2022
|
-
|
2023
|
-
- Add support for updating an individual cookbook via knife cookbook deps update COOKBOOK\_NAME [\#36](https://github.com/berkshelf/berkshelf/issues/36)
|
2024
|
-
|
2025
|
-
**Closed issues:**
|
1123
|
+
**Merged pull requests:**
|
2026
1124
|
|
2027
|
-
-
|
2028
|
-
-
|
1125
|
+
- Ui class [\#132](https://github.com/berkshelf/berkshelf/pull/132) ([reset](https://github.com/reset))
|
1126
|
+
- use the Berkshelf.ui output Vagrant info [\#131](https://github.com/berkshelf/berkshelf/pull/131) ([reset](https://github.com/reset))
|
1127
|
+
- make sources and locations serializable into hash/json [\#129](https://github.com/berkshelf/berkshelf/pull/129) ([reset](https://github.com/reset))
|
1128
|
+
- 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))
|
1129
|
+
- Use ridley [\#127](https://github.com/berkshelf/berkshelf/pull/127) ([reset](https://github.com/reset))
|
1130
|
+
- Vplugin bugfix [\#126](https://github.com/berkshelf/berkshelf/pull/126) ([reset](https://github.com/reset))
|
1131
|
+
- vagrant destroy will clean up the plugin's shelf [\#125](https://github.com/berkshelf/berkshelf/pull/125) ([reset](https://github.com/reset))
|
1132
|
+
- Only except [\#124](https://github.com/berkshelf/berkshelf/pull/124) ([reset](https://github.com/reset))
|
1133
|
+
- Vendor install [\#121](https://github.com/berkshelf/berkshelf/pull/121) ([reset](https://github.com/reset))
|
1134
|
+
- remove 'shims' feature [\#120](https://github.com/berkshelf/berkshelf/pull/120) ([reset](https://github.com/reset))
|
1135
|
+
- Vagrant plugin [\#119](https://github.com/berkshelf/berkshelf/pull/119) ([reset](https://github.com/reset))
|
2029
1136
|
|
2030
1137
|
## [v0.4.0](https://github.com/berkshelf/berkshelf/tree/v0.4.0) (2012-09-11)
|
2031
1138
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.4.0.rc4...v0.4.0)
|
2032
1139
|
|
2033
|
-
**
|
2034
|
-
|
2035
|
-
- Provide a way to request 'recommends' dependencies [\#113](https://github.com/berkshelf/berkshelf/issues/113)
|
2036
|
-
|
2037
|
-
**Closed issues:**
|
1140
|
+
**Merged pull requests:**
|
2038
1141
|
|
2039
|
-
-
|
2040
|
-
-
|
1142
|
+
- remove Berkshelf::DSL and put it's functionality directly in Berksfile [\#118](https://github.com/berkshelf/berkshelf/pull/118) ([reset](https://github.com/reset))
|
1143
|
+
- 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))
|
1144
|
+
- treat 'recommends' in cookbook data as dependencies [\#116](https://github.com/berkshelf/berkshelf/pull/116) ([reset](https://github.com/reset))
|
1145
|
+
- add ability to define default locations for a Berksfile [\#115](https://github.com/berkshelf/berkshelf/pull/115) ([reset](https://github.com/reset))
|
1146
|
+
- Refactors for default locations feature [\#114](https://github.com/berkshelf/berkshelf/pull/114) ([reset](https://github.com/reset))
|
1147
|
+
- BERKSHELF-112 ignore temporary editor files [\#112](https://github.com/berkshelf/berkshelf/pull/112) ([bryanwb](https://github.com/bryanwb))
|
1148
|
+
- A couple cleanups [\#110](https://github.com/berkshelf/berkshelf/pull/110) ([matschaffer](https://github.com/matschaffer))
|
2041
1149
|
|
2042
1150
|
## [v0.4.0.rc4](https://github.com/berkshelf/berkshelf/tree/v0.4.0.rc4) (2012-08-21)
|
2043
1151
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.4.0.rc3...v0.4.0.rc4)
|
2044
1152
|
|
2045
|
-
**
|
1153
|
+
**Merged pull requests:**
|
2046
1154
|
|
2047
|
-
-
|
1155
|
+
- Bump thor for compatibility with test-kitchen [\#109](https://github.com/berkshelf/berkshelf/pull/109) ([matschaffer](https://github.com/matschaffer))
|
1156
|
+
- Formatters [\#108](https://github.com/berkshelf/berkshelf/pull/108) ([ivey](https://github.com/ivey))
|
2048
1157
|
|
2049
1158
|
## [v0.4.0.rc3](https://github.com/berkshelf/berkshelf/tree/v0.4.0.rc3) (2012-08-20)
|
2050
1159
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.4.0.rc2...v0.4.0.rc3)
|
2051
1160
|
|
2052
|
-
**
|
2053
|
-
|
2054
|
-
- Add support for retrieving cookbooks from the local chef server configured in the knife config [\#37](https://github.com/berkshelf/berkshelf/issues/37)
|
2055
|
-
|
2056
|
-
**Closed issues:**
|
1161
|
+
**Merged pull requests:**
|
2057
1162
|
|
2058
|
-
-
|
2059
|
-
-
|
2060
|
-
-
|
1163
|
+
- Git SSH uri's without organization will now be valid [\#107](https://github.com/berkshelf/berkshelf/pull/107) ([reset](https://github.com/reset))
|
1164
|
+
- Don't checksum the file if it's a broken symlink. [\#102](https://github.com/berkshelf/berkshelf/pull/102) ([capoferro](https://github.com/capoferro))
|
1165
|
+
- Capture errors that occur during berksfile eval to prevent being inadver... [\#101](https://github.com/berkshelf/berkshelf/pull/101) ([capoferro](https://github.com/capoferro))
|
1166
|
+
- move generator files out of ruby load path [\#100](https://github.com/berkshelf/berkshelf/pull/100) ([reset](https://github.com/reset))
|
1167
|
+
- Skip broken symlinks encountered in hardlink traversal. [\#91](https://github.com/berkshelf/berkshelf/pull/91) ([capoferro](https://github.com/capoferro))
|
2061
1168
|
|
2062
1169
|
## [v0.4.0.rc2](https://github.com/berkshelf/berkshelf/tree/v0.4.0.rc2) (2012-07-27)
|
2063
1170
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.4.0.rc1...v0.4.0.rc2)
|
2064
1171
|
|
2065
|
-
**
|
1172
|
+
**Merged pull requests:**
|
2066
1173
|
|
2067
|
-
-
|
1174
|
+
- Trivial changes due to spec update. Also pemfile ignore. [\#97](https://github.com/berkshelf/berkshelf/pull/97) ([capoferro](https://github.com/capoferro))
|
1175
|
+
- Thor::SCMVersion support in generators [\#95](https://github.com/berkshelf/berkshelf/pull/95) ([ivey](https://github.com/ivey))
|
1176
|
+
- -93 [\#94](https://github.com/berkshelf/berkshelf/pull/94) ([lastobelus](https://github.com/lastobelus))
|
1177
|
+
- Update cookbook versions in lockfile\_spec [\#92](https://github.com/berkshelf/berkshelf/pull/92) ([capoferro](https://github.com/capoferro))
|
1178
|
+
- Cookbook command [\#90](https://github.com/berkshelf/berkshelf/pull/90) ([reset](https://github.com/reset))
|
1179
|
+
- Invalid cross-device link during berks install --shims [\#81](https://github.com/berkshelf/berkshelf/pull/81) ([promisedlandt](https://github.com/promisedlandt))
|
2068
1180
|
|
2069
1181
|
## [v0.4.0.rc1](https://github.com/berkshelf/berkshelf/tree/v0.4.0.rc1) (2012-07-13)
|
2070
1182
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.7...v0.4.0.rc1)
|
2071
1183
|
|
2072
|
-
**
|
1184
|
+
**Merged pull requests:**
|
2073
1185
|
|
2074
|
-
-
|
1186
|
+
- Chef API location [\#87](https://github.com/berkshelf/berkshelf/pull/87) ([reset](https://github.com/reset))
|
1187
|
+
- Site location refactors [\#86](https://github.com/berkshelf/berkshelf/pull/86) ([reset](https://github.com/reset))
|
1188
|
+
- add validation for options in Berksfile [\#84](https://github.com/berkshelf/berkshelf/pull/84) ([reset](https://github.com/reset))
|
1189
|
+
- Replace DepSelector with Solve [\#83](https://github.com/berkshelf/berkshelf/pull/83) ([reset](https://github.com/reset))
|
1190
|
+
- 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))
|
1191
|
+
- Test fixes [\#79](https://github.com/berkshelf/berkshelf/pull/79) ([ivey](https://github.com/ivey))
|
1192
|
+
- Use knife rb [\#68](https://github.com/berkshelf/berkshelf/pull/68) ([erikh](https://github.com/erikh))
|
2075
1193
|
|
2076
1194
|
## [v0.3.7](https://github.com/berkshelf/berkshelf/tree/v0.3.7) (2012-07-04)
|
2077
1195
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.6...v0.3.7)
|
2078
1196
|
|
1197
|
+
**Merged pull requests:**
|
1198
|
+
|
1199
|
+
- fix issue when caching git sources with an aliased ref [\#77](https://github.com/berkshelf/berkshelf/pull/77) ([reset](https://github.com/reset))
|
1200
|
+
|
2079
1201
|
## [v0.3.6](https://github.com/berkshelf/berkshelf/tree/v0.3.6) (2012-07-04)
|
2080
1202
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.5...v0.3.6)
|
2081
1203
|
|
1204
|
+
**Merged pull requests:**
|
1205
|
+
|
1206
|
+
- fix bug with satisfying git sources that have not been downloaded [\#76](https://github.com/berkshelf/berkshelf/pull/76) ([reset](https://github.com/reset))
|
1207
|
+
|
2082
1208
|
## [v0.3.5](https://github.com/berkshelf/berkshelf/tree/v0.3.5) (2012-07-03)
|
2083
1209
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.4...v0.3.5)
|
2084
1210
|
|
1211
|
+
**Merged pull requests:**
|
1212
|
+
|
1213
|
+
- raise a more helpful error if git execution fails [\#75](https://github.com/berkshelf/berkshelf/pull/75) ([reset](https://github.com/reset))
|
1214
|
+
|
2085
1215
|
## [v0.3.4](https://github.com/berkshelf/berkshelf/tree/v0.3.4) (2012-07-03)
|
2086
1216
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.3...v0.3.4)
|
2087
1217
|
|
2088
|
-
**
|
1218
|
+
**Merged pull requests:**
|
2089
1219
|
|
2090
|
-
-
|
2091
|
-
-
|
1220
|
+
- Validate downloaded sources [\#74](https://github.com/berkshelf/berkshelf/pull/74) ([reset](https://github.com/reset))
|
1221
|
+
- shims will be rewritten if write\_shims is called [\#73](https://github.com/berkshelf/berkshelf/pull/73) ([reset](https://github.com/reset))
|
1222
|
+
- Validate Git location sources [\#72](https://github.com/berkshelf/berkshelf/pull/72) ([reset](https://github.com/reset))
|
1223
|
+
- Don't download sources that have already been downloaded [\#71](https://github.com/berkshelf/berkshelf/pull/71) ([reset](https://github.com/reset))
|
1224
|
+
- No require config file [\#69](https://github.com/berkshelf/berkshelf/pull/69) ([erikh](https://github.com/erikh))
|
1225
|
+
- Config file from environment [\#67](https://github.com/berkshelf/berkshelf/pull/67) ([erikh](https://github.com/erikh))
|
2092
1226
|
|
2093
1227
|
## [v0.3.3](https://github.com/berkshelf/berkshelf/tree/v0.3.3) (2012-06-27)
|
2094
1228
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.2...v0.3.3)
|
2095
1229
|
|
1230
|
+
**Merged pull requests:**
|
1231
|
+
|
1232
|
+
- fix infinite loop bug when writing shims of a path location [\#61](https://github.com/berkshelf/berkshelf/pull/61) ([reset](https://github.com/reset))
|
1233
|
+
|
2096
1234
|
## [v0.3.2](https://github.com/berkshelf/berkshelf/tree/v0.3.2) (2012-06-26)
|
2097
1235
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.1...v0.3.2)
|
2098
1236
|
|
1237
|
+
**Merged pull requests:**
|
1238
|
+
|
1239
|
+
- 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))
|
1240
|
+
|
2099
1241
|
## [v0.3.1](https://github.com/berkshelf/berkshelf/tree/v0.3.1) (2012-06-26)
|
2100
1242
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.3.0...v0.3.1)
|
2101
1243
|
|
1244
|
+
**Merged pull requests:**
|
1245
|
+
|
1246
|
+
- Berksfile resolve [\#59](https://github.com/berkshelf/berkshelf/pull/59) ([jhowarth](https://github.com/jhowarth))
|
1247
|
+
|
2102
1248
|
## [v0.3.0](https://github.com/berkshelf/berkshelf/tree/v0.3.0) (2012-06-25)
|
2103
1249
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.2.0...v0.3.0)
|
2104
1250
|
|
1251
|
+
**Merged pull requests:**
|
1252
|
+
|
1253
|
+
- Thor CLI instead of Knife [\#58](https://github.com/berkshelf/berkshelf/pull/58) ([reset](https://github.com/reset))
|
1254
|
+
|
2105
1255
|
## [v0.2.0](https://github.com/berkshelf/berkshelf/tree/v0.2.0) (2012-06-24)
|
2106
1256
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.1.5...v0.2.0)
|
2107
1257
|
|
1258
|
+
**Merged pull requests:**
|
1259
|
+
|
1260
|
+
- added install command --shims flag [\#57](https://github.com/berkshelf/berkshelf/pull/57) ([reset](https://github.com/reset))
|
1261
|
+
|
2108
1262
|
## [v0.1.5](https://github.com/berkshelf/berkshelf/tree/v0.1.5) (2012-06-23)
|
2109
1263
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.1.4...v0.1.5)
|
2110
1264
|
|
2111
1265
|
## [v0.1.4](https://github.com/berkshelf/berkshelf/tree/v0.1.4) (2012-06-23)
|
2112
1266
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.1.3...v0.1.4)
|
2113
1267
|
|
1268
|
+
**Merged pull requests:**
|
1269
|
+
|
1270
|
+
- add includable Thor tasks for Berkshelf [\#56](https://github.com/berkshelf/berkshelf/pull/56) ([reset](https://github.com/reset))
|
1271
|
+
|
2114
1272
|
## [v0.1.3](https://github.com/berkshelf/berkshelf/tree/v0.1.3) (2012-06-23)
|
2115
1273
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.1.2...v0.1.3)
|
2116
1274
|
|
2117
1275
|
## [v0.1.2](https://github.com/berkshelf/berkshelf/tree/v0.1.2) (2012-06-22)
|
2118
1276
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.1.1...v0.1.2)
|
2119
1277
|
|
1278
|
+
**Merged pull requests:**
|
1279
|
+
|
1280
|
+
- Fix uploader bug [\#55](https://github.com/berkshelf/berkshelf/pull/55) ([reset](https://github.com/reset))
|
1281
|
+
|
2120
1282
|
## [v0.1.1](https://github.com/berkshelf/berkshelf/tree/v0.1.1) (2012-06-21)
|
2121
1283
|
[Full Changelog](https://github.com/berkshelf/berkshelf/compare/v0.1.0...v0.1.1)
|
2122
1284
|
|
2123
1285
|
## [v0.1.0](https://github.com/berkshelf/berkshelf/tree/v0.1.0) (2012-06-21)
|
2124
|
-
**
|
2125
|
-
|
2126
|
-
- Refactor Cookbook to multiple classes handling each installation path [\#35](https://github.com/berkshelf/berkshelf/issues/35)
|
2127
|
-
- ambiguous error when cookbook not found [\#16](https://github.com/berkshelf/berkshelf/issues/16)
|
2128
|
-
- path source should link, not copy, to the source [\#15](https://github.com/berkshelf/berkshelf/issues/15)
|
2129
|
-
|
2130
|
-
**Fixed bugs:**
|
2131
|
-
|
2132
|
-
- 404 Not found when installing a cookbook by path and a lockfile exists [\#14](https://github.com/berkshelf/berkshelf/issues/14)
|
2133
|
-
|
2134
|
-
|
1286
|
+
**Merged pull requests:**
|
2135
1287
|
|
2136
|
-
|
1288
|
+
- Rename to Berkshelf [\#54](https://github.com/berkshelf/berkshelf/pull/54) ([reset](https://github.com/reset))
|
1289
|
+
- remove "clean" knife command and supporting functionality [\#53](https://github.com/berkshelf/berkshelf/pull/53) ([reset](https://github.com/reset))
|
1290
|
+
- add yarddoc gem and guard-yarddoc [\#50](https://github.com/berkshelf/berkshelf/pull/50) ([reset](https://github.com/reset))
|
1291
|
+
- Add upload command [\#47](https://github.com/berkshelf/berkshelf/pull/47) ([reset](https://github.com/reset))
|
1292
|
+
- lock required ruby version to \>= 1.9.1 [\#45](https://github.com/berkshelf/berkshelf/pull/45) ([reset](https://github.com/reset))
|
1293
|
+
- Add CookbookStore and CachedCookbook classes [\#44](https://github.com/berkshelf/berkshelf/pull/44) ([reset](https://github.com/reset))
|
1294
|
+
- refactor Downloader::Result and ResultSet into a more generalized TXResult [\#43](https://github.com/berkshelf/berkshelf/pull/43) ([reset](https://github.com/reset))
|
1295
|
+
- 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))
|
1296
|
+
- Improved error handling and messages [\#40](https://github.com/berkshelf/berkshelf/pull/40) ([reset](https://github.com/reset))
|
1297
|
+
- 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))
|
1298
|
+
- Init command [\#38](https://github.com/berkshelf/berkshelf/pull/38) ([reset](https://github.com/reset))
|
1299
|
+
- 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))
|
1300
|
+
- Fix typo in Readme [\#33](https://github.com/berkshelf/berkshelf/pull/33) ([erikh](https://github.com/erikh))
|
1301
|
+
- Update [\#32](https://github.com/berkshelf/berkshelf/pull/32) ([capoferro](https://github.com/capoferro))
|
1302
|
+
- Clean [\#31](https://github.com/berkshelf/berkshelf/pull/31) ([capoferro](https://github.com/capoferro))
|
1303
|
+
- 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))
|
1304
|
+
- Add dependency computation test. [\#29](https://github.com/berkshelf/berkshelf/pull/29) ([jhowarth](https://github.com/jhowarth))
|
1305
|
+
- Remove dependency reader [\#28](https://github.com/berkshelf/berkshelf/pull/28) ([jhowarth](https://github.com/jhowarth))
|
1306
|
+
- Use Chef::Cookbook::Metadata for handling metadata.rb files. [\#27](https://github.com/berkshelf/berkshelf/pull/27) ([jhowarth](https://github.com/jhowarth))
|
1307
|
+
- VCR with dynamic cassette generation [\#25](https://github.com/berkshelf/berkshelf/pull/25) ([capoferro](https://github.com/capoferro))
|
1308
|
+
- 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))
|
1309
|
+
- Alias itall [\#22](https://github.com/berkshelf/berkshelf/pull/22) ([reset](https://github.com/reset))
|
1310
|
+
- Lock tests [\#21](https://github.com/berkshelf/berkshelf/pull/21) ([erikh](https://github.com/erikh))
|
1311
|
+
- Refactors [\#20](https://github.com/berkshelf/berkshelf/pull/20) ([erikh](https://github.com/erikh))
|
1312
|
+
- not everyone who runs the tests has access to riot github :\) [\#19](https://github.com/berkshelf/berkshelf/pull/19) ([erikh](https://github.com/erikh))
|
1313
|
+
- Groups [\#18](https://github.com/berkshelf/berkshelf/pull/18) ([ivey](https://github.com/ivey))
|
1314
|
+
- Friendly errors [\#17](https://github.com/berkshelf/berkshelf/pull/17) ([capoferro](https://github.com/capoferro))
|
1315
|
+
- Lockfile support [\#13](https://github.com/berkshelf/berkshelf/pull/13) ([erikh](https://github.com/erikh))
|
1316
|
+
- Git ref [\#12](https://github.com/berkshelf/berkshelf/pull/12) ([erikh](https://github.com/erikh))
|
1317
|
+
- Knife plugin [\#11](https://github.com/berkshelf/berkshelf/pull/11) ([erikh](https://github.com/erikh))
|
1318
|
+
- Git support [\#10](https://github.com/berkshelf/berkshelf/pull/10) ([erikh](https://github.com/erikh))
|
1319
|
+
- Path [\#9](https://github.com/berkshelf/berkshelf/pull/9) ([capoferro](https://github.com/capoferro))
|
1320
|
+
- Cookbookfile \> Cheffile to avoid unintentional conflicts with librarian-chef [\#8](https://github.com/berkshelf/berkshelf/pull/8) ([capoferro](https://github.com/capoferro))
|
1321
|
+
- Cookbook refactors [\#7](https://github.com/berkshelf/berkshelf/pull/7) ([erikh](https://github.com/erikh))
|
1322
|
+
- test cleanup: [\#6](https://github.com/berkshelf/berkshelf/pull/6) ([erikh](https://github.com/erikh))
|
1323
|
+
- Fat commit, see comments: [\#5](https://github.com/berkshelf/berkshelf/pull/5) ([erikh](https://github.com/erikh))
|
1324
|
+
- Executable [\#4](https://github.com/berkshelf/berkshelf/pull/4) ([capoferro](https://github.com/capoferro))
|
1325
|
+
- Rdoc readme [\#3](https://github.com/berkshelf/berkshelf/pull/3) ([erikh](https://github.com/erikh))
|
1326
|
+
- Rake checks [\#2](https://github.com/berkshelf/berkshelf/pull/2) ([erikh](https://github.com/erikh))
|
1327
|
+
- 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))
|
1328
|
+
|
1329
|
+
|
1330
|
+
|
1331
|
+
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|