builderator 1.1.9 → 1.1.10

Sign up to get free protection for your applications and to get access to all the features.
data/rvm.env DELETED
@@ -1,53 +0,0 @@
1
- declare -x GEM_HOME="/home/jenkins/.rvm/gems/ruby-2.1.5@bakery-2"
2
- declare -x GEM_PATH="/home/jenkins/.rvm/gems/ruby-2.1.5@bakery-2:/home/jenkins/.rvm/gems/ruby-2.1.5@global"
3
- declare -x HOME="/home/jenkins"
4
- declare -x HUDSON_COOKIE="de7bb2fb-26ab-4c83-96e0-e90cece37be6"
5
- declare -x IRBRC="/home/jenkins/.rvm/rubies/ruby-2.1.5/.irbrc"
6
- declare -x LANG="en_US.UTF-8"
7
- declare -x LC_ALL="en_US.UTF-8"
8
- declare -x MY_RUBY_HOME="/home/jenkins/.rvm/rubies/ruby-2.1.5"
9
- declare -x NLSPATH="/usr/dt/lib/nls/msg/%L/%N.cat"
10
- declare -x OLDPWD
11
- declare -x PATH="/home/jenkins/.rvm/gems/ruby-2.1.5@bakery-2/bin:/home/jenkins/.rvm/gems/ruby-2.1.5@global/bin:/home/jenkins/.rvm/rubies/ruby-2.1.5/bin:/home/jenkins/.rvm/bin:/usr/local/bin:/usr/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin"
12
- declare -x PWD="/home/jenkins/workspace/gem-public-builderator-master"
13
- declare -x RUBY_VERSION="ruby-2.1.5"
14
- declare -x SHLVL="1"
15
- declare -x USER="jenkins"
16
- declare -x XFILESEARCHPATH="/usr/dt/app-defaults/%L/Dt"
17
- declare -x _system_arch="x86_64"
18
- declare -x _system_name="Ubuntu"
19
- declare -x _system_type="Linux"
20
- declare -x _system_version="14.04"
21
- declare -x rvm_alias_expanded
22
- declare -x rvm_bin_flag
23
- declare -x rvm_bin_path="/home/jenkins/.rvm/bin"
24
- declare -x rvm_delete_flag="0"
25
- declare -x rvm_docs_type
26
- declare -x rvm_file_name
27
- declare -x rvm_gem_options="--no-rdoc --no-ri"
28
- declare -x rvm_gemstone_package_file
29
- declare -x rvm_gemstone_url
30
- declare -x rvm_niceness
31
- declare -x rvm_nightly_flag
32
- declare -x rvm_only_path_flag
33
- declare -x rvm_path="/home/jenkins/.rvm"
34
- declare -x rvm_prefix="/home/jenkins"
35
- declare -x rvm_proxy
36
- declare -x rvm_quiet_flag
37
- declare -x rvm_ruby_alias
38
- declare -x rvm_ruby_bits
39
- declare -x rvm_ruby_file
40
- declare -x rvm_ruby_make
41
- declare -x rvm_ruby_make_install
42
- declare -x rvm_ruby_mode
43
- declare -x rvm_ruby_string="ruby-2.1.5"
44
- declare -x rvm_script_name
45
- declare -x rvm_sdk
46
- declare -x rvm_silent_flag
47
- declare -x rvm_sticky_flag
48
- declare -x rvm_system_flag
49
- declare -x rvm_use_flag
50
- declare -x rvm_user_flag
51
- declare -x rvm_version="1.27.0 (1.27.0)"
52
- declare -x rvm_wrapper_name
53
- declare -x rvmsudo_secure_path="1"
@@ -1,107 +0,0 @@
1
- require_relative './spec_helper'
2
-
3
- # :nodoc:
4
- module Builderator
5
- RSpec.describe Config, '#load' do
6
- before(:example) do
7
- Config.reset!
8
- Config.load(::File.expand_path('../resource/Buildfile', __FILE__))
9
- end
10
-
11
- it 'defaults to the gecode solver' do
12
- Config.compile
13
- expect(Config.berkshelf.solver).to eq :gecode
14
- end
15
-
16
- it 'loads a DSL file' do
17
- expect(Config.layers.length).to eq 1
18
- end
19
-
20
- it 'compiles loaded DSL' do
21
- layer = Config.layers.first
22
- layer.compile.seal
23
-
24
- expect(layer.build_name).to eq 'builderator'
25
- expect(layer.autoversion.create_tags).to be false
26
-
27
- ## Collection `depends` in Namespace `cookbook`
28
- expect(layer.cookbook.depends['apt']).to be_kind_of(Config::Attributes::Namespace)
29
- expect(layer.cookbook.depends['etcd-v2']).to be_kind_of(Config::Attributes::Namespace)
30
- end
31
-
32
- it 'compiles configuration layers' do
33
- skip
34
- Config.compile
35
-
36
- ## Ensure that layer-order is respected
37
- expect(Config.aws.region).to eq 'us-east-1'
38
- expect(Config.build_name).to eq 'builderator'
39
- end
40
- end
41
-
42
- RSpec.describe Config, '#compile' do
43
- before(:example) do
44
- Builderator::Config::GLOBAL_DEFAULTS.reset!
45
- Builderator::Config.reset!
46
- end
47
-
48
- it 'compiles a trivial build configuration' do
49
- expect(Builderator::Config.layers).to be_empty
50
-
51
- Builderator::Config.load(::File.expand_path('../resource/Buildfile-home-directory', __FILE__))
52
- Builderator::Config.load(::File.expand_path('../resource/Buildfile-simple', __FILE__))
53
-
54
- expect(Builderator::Config.all_layers.any?(&:dirty)).to be false
55
-
56
- expect { Config.compile }.not_to raise_error
57
- end
58
-
59
- it 'compiles a build with a build-type policy' do
60
- expect(Builderator::Config.layers).to be_empty
61
-
62
- Builderator::Config.load(::File.expand_path('../resource/Buildfile-home-directory', __FILE__))
63
- Builderator::Config.load(::File.expand_path('../resource/Buildfile-with-policy', __FILE__))
64
-
65
- expect(Builderator::Config.all_layers.any?(&:dirty)).to be false
66
-
67
- expect { Config.compile }.not_to raise_error
68
- end
69
-
70
- it 'compiles a build with a build-type policy and overrides' do
71
- expect(Builderator::Config.layers).to be_empty
72
-
73
- Builderator::Config.load(::File.expand_path('../resource/Buildfile-home-directory', __FILE__))
74
- Builderator::Config.load(::File.expand_path('../resource/Buildfile-with-overrides', __FILE__))
75
-
76
- expect(Builderator::Config.all_layers.any?(&:dirty)).to be false
77
-
78
- expect { Config.compile }.not_to raise_error
79
- end
80
-
81
- it 'compiles a build with a build-type policy and overrides, and an extended collection item with hash values' do
82
- expect(Builderator::Config.layers).to be_empty
83
-
84
- Builderator::Config.load(::File.expand_path('../resource/Buildfile-home-directory', __FILE__))
85
- Builderator::Config.load(::File.expand_path('../resource/Buildfile-with-overrides2', __FILE__))
86
-
87
- expect(Builderator::Config.all_layers.any?(&:dirty)).to be false
88
-
89
- expect { Config.compile }.not_to raise_error
90
- end
91
-
92
- it 'compiles a change after an initial compilation' do
93
- expect(Builderator::Config.layers).to be_empty
94
-
95
- Builderator::Config.load(::File.expand_path('../resource/Buildfile-home-directory', __FILE__))
96
- Builderator::Config.load(::File.expand_path('../resource/Buildfile-with-overrides2', __FILE__))
97
- expect(Builderator::Config.all_layers.any?(&:dirty)).to be false
98
- expect { Config.compile }.not_to raise_error
99
-
100
- Builderator::Config.defaults.version '1.2.3'
101
- Builderator::Config.defaults.build_number = '4'
102
- expect { Config.compile }.not_to raise_error
103
-
104
- expect(Builderator::Config.profile('default').tags['version']).to eq '1.2.3-4'
105
- end
106
- end
107
- end
@@ -1,6 +0,0 @@
1
- require 'builderator/patch/berkshelf'
2
-
3
- source 'https://supermarket.chef.io'
4
-
5
- cookbook 'apt', '>= 0.0.0', {}
6
- cookbook 'etcd-v2', '>= 0.0.0', {}
File without changes
File without changes
@@ -1,492 +0,0 @@
1
- [
2
- {
3
- "id": "d6f0ae080a484b40687350110f15795bdcde6d7e",
4
- "message": "In reset, check for the setter-method instead of the getter-method",
5
- "tags": [
6
- "help"
7
- ]
8
- },
9
- {
10
- "id": "506d7d8d17c49d80c7d4e72cd7ebbe67c04d679d",
11
- "message": "Add auto-version controller"
12
- },
13
- {
14
- "id": "945beb804859749706f67268229fe991f496c41a",
15
- "message": "Merge pull request #16 from rapid7/cleaner-refactor"
16
- },
17
- {
18
- "id": "0b1b7a9fe1aa840b73fe9a0b96097967027cf6ab",
19
- "message": "Fix cleaner CLI options. Pass AWS region to COnfig argv correctly"
20
- },
21
- {
22
- "id": "a1d3dcbd91a0abff829f8f09337ddc257257e730",
23
- "message": "Merge pull request #14 from rapid7/gemspec",
24
- "tags": [
25
- "not.the.tag.you.are.looking.for"
26
- ]
27
- },
28
- {
29
- "id": "c3a0b2402ddf4084c175cc69793d592f8864daf1",
30
- "message": "Add mixlib-shellout, remove mkfifo from gemspec dependencies"
31
- },
32
- {
33
- "id": "a0213856213536f4b2ea8a75543b12e35b8cc52e",
34
- "message": "Make thor-scmversion a dev dependency"
35
- },
36
- {
37
- "id": "bc8dd9b9ceac207ef9b45613f66228aeef698dd0",
38
- "message": "Add vagrant, berkshelf, and builderator state files as well as VERSION to gitignore"
39
- },
40
- {
41
- "id": "723184617c594635c5191621e3b6a519609adcaf",
42
- "message": "Merge pull request #11 from rapid7/interface"
43
- },
44
- {
45
- "id": "560cea5ea897a2c9e6a484aa5ed95e1a0d81b9c9",
46
- "message": "Add berkshelf_config parameter to berkshelf interface, and copy tags from profile to packer-builders in the packer interface",
47
- "tags": [
48
- "not_the_tag_you_are_looking_for"
49
- ]
50
- },
51
- {
52
- "id": "89403f24e8a4a82ffa67eb941d5afefe55ced37a",
53
- "message": "Fix packer build parameter name `ami_virtualization_type`"
54
- },
55
- {
56
- "id": "91c4e2aea4f391c966fe5a2f049bed29d05783aa",
57
- "message": "Don't try to template an embedded cookbook's Berksfile in berks tasks. We may handle that in cookbook tasks later on..."
58
- },
59
- {
60
- "id": "6287a49d467a0a049a59e3a6f025373b529f0578",
61
- "message": "Add node about packer assuming ubuntu user"
62
- },
63
- {
64
- "id": "cd9b9d6738b25abb80d2256c76c9b8297f07009f",
65
- "message": "Can't test Vafrantfile generator against a file with an absolute path"
66
- },
67
- {
68
- "id": "ab703a9cfb4fdeea319a0de37c258cb803bbd5a4",
69
- "message": "Rename write to render in interface/packer"
70
- },
71
- {
72
- "id": "3f785e2f9306605d4574da8384e22e1bcd8c4c33",
73
- "message": "Remove comment cruft at the bottom of interface/packer"
74
- },
75
- {
76
- "id": "d9719348b177741a18a4e064a01767d1f7dd907f",
77
- "message": "Adds a configuration parameter for a path to Berkshelf's config.json file (defaults to localtion in HOME), and removes invalid default for tags from the default packer configuration"
78
- },
79
- {
80
- "id": "6d5778ab1b7ac7a8e73287c6e1ddb783a67ec395",
81
- "message": "Ensure that Config is compiled before trying to get values from it"
82
- },
83
- {
84
- "id": "2807c5881c4aa8f6a5beef2b5ba23e83d6a7ddf4",
85
- "message": "Add a helper method to check if the project includes a cookbook"
86
- },
87
- {
88
- "id": "1fed58c680c7cfd3bc53083d97a6346b2f0aa2a6",
89
- "message": "Add a patch for Berksfiles to add gzip middleware to Faraday"
90
- },
91
- {
92
- "id": "2fa5cb96b5fb13a4e0240dede3896c8a04079a37",
93
- "message": "Add tests for Interface"
94
- },
95
- {
96
- "id": "74e666d7d7c495eb5e837959fd681962779526dd",
97
- "message": "Add creater/getters to Interface. Fix Vagrantfile template"
98
- },
99
- {
100
- "id": "0e85b3e22da561272103435e5562ec77123ad428",
101
- "message": "Document integration file changes"
102
- },
103
- {
104
- "id": "58203268e7ea1074ba5edd637b4360349d059f66",
105
- "message": "Add configuration interfaces and templates"
106
- },
107
- {
108
- "id": "8c953123b65b53544468c43bac7fa2d6d379c1f2",
109
- "message": "Merge pull request #12 from rapid7/cleaner-refactor"
110
- },
111
- {
112
- "id": "ed1422283e31c694704ba9241066a8601f88b50d",
113
- "message": "Don't tell users to re-run with --force if Config.cleaner.force is already true"
114
- },
115
- {
116
- "id": "1a5ed1d683bce8e49a03245ec2b6f944918fa009",
117
- "message": "Refactor warning messages to print limit, force, and commit warnings and stop-waits for every task"
118
- },
119
- {
120
- "id": "5e0b2b24ba49e78699656a06c179f5088246dd61",
121
- "message": "Favor fluent Config interface over hash-getters"
122
- },
123
- {
124
- "id": "1745be5b51d85f520a8d41b15ef9df6b485aeb07",
125
- "message": "Refactor model, controller, and exceptions to use Config"
126
- },
127
- {
128
- "id": "2aeda487ec631e00701529e776633a34b97386c0",
129
- "message": "Replace - with _ in keys when merging: makes loading CLI options much simpler"
130
- },
131
- {
132
- "id": "5e3401f098653678febc41659eff15d9ca728984",
133
- "message": "Add config parameters from cleaner CLI options and sane defaults"
134
- },
135
- {
136
- "id": "662ca3dffcd50c9ddc600076feedc0d6593f221a",
137
- "message": "Fix source name for argv layer"
138
- },
139
- {
140
- "id": "9a5ecc7a57a642e12ec9279616ffb01f2a3c1011",
141
- "message": "Use configuration sys-system for limits and AWS region"
142
- },
143
- {
144
- "id": "35cd14da75b83a2162ad70610be28a886423de11",
145
- "message": "Refactor clean tasks into their own CLI"
146
- },
147
- {
148
- "id": "c926b1effd1ef30b48d7331cf62eef3d8b1ab53f",
149
- "message": "Create build-clean executable and rename clean contorller to cleaner"
150
- },
151
- {
152
- "id": "ed5c8f8460accd3db414f675893a037bb506f3e4",
153
- "message": "Move module Model into Model::Cleaner"
154
- },
155
- {
156
- "id": "880d43d45846d3f422b569b7a1f7cd769933b643",
157
- "message": "Fix grammar in exception message"
158
- },
159
- {
160
- "id": "543206c0c679671360de75761664f76a447972d9",
161
- "message": "remove shadowed getter for `status`"
162
- },
163
- {
164
- "id": "5a1d6913f1a348462f336013a7557647ef6cf4cb",
165
- "message": "Merge pull request #9 from rapid7/configuration"
166
- },
167
- {
168
- "id": "8d8b08acc05c20c8acff69eafe46914930288a54",
169
- "message": "Clean up usage of method_missing and fix/dedup some getter code in attributes"
170
- },
171
- {
172
- "id": "b04825102b97285b27b98e29a76183b54bb395b7",
173
- "message": "First pass at adding RSpec tests"
174
- },
175
- {
176
- "id": "0c14d1aa7218af12e5e6d8e0771981afd61d8747",
177
- "message": "Remove data_bag and environment paths from defaults. These should be matched with a vendor config in a site or build-specific Buildfile"
178
- },
179
- {
180
- "id": "bd6331500fcd9e0eac6983faf8628a6af5f3dc08",
181
- "message": "Spelling"
182
- },
183
- {
184
- "id": "fc19a72782b83962030b6ca1ee79da6da9ede372",
185
- "message": "Adds a central configuration layer"
186
- },
187
- {
188
- "id": "50d6d78e2c0b189380714221f56e068476ed47fc",
189
- "message": "First pass at a composite configuration layer"
190
- },
191
- {
192
- "id": "3ad70114e85745fe3fe6039d5b8d23e65b4bfde5",
193
- "message": "Merge pull request #6 from rapid7/find_amazon_windows_baseami",
194
- "tags": [
195
- "0.3.15"
196
- ]
197
- },
198
- {
199
- "id": "13cd4aeeca1c87c607dddc654c798b4278e80818",
200
- "message": "Support for finding the latest Windows AMI from Amazon (defaults to 2012 R2)"
201
- },
202
- {
203
- "id": "560dffc6680b6ad633352b5f06a2445602c24f67",
204
- "message": "Merge pull request #5 from rapid7/negative-filtering"
205
- },
206
- {
207
- "id": "d6a6795a268531bd56df84ef49e104f950ad969e",
208
- "message": "Implement negative resource filtering"
209
- },
210
- {
211
- "id": "145f71212a2679763f0e45ac6e0bcc0dc7795146",
212
- "message": "Exit the clean task with a non-zero code when errors occur to make Jenkins jobs fail."
213
- },
214
- {
215
- "id": "0e5ab9fd83371e725614ec73b252b70b298c8eb0",
216
- "message": "Merge pull request #4 from rapid7/complete-cleaner",
217
- "tags": [
218
- "0.3.14"
219
- ]
220
- },
221
- {
222
- "id": "29149adaa2286d35466b7a77761c8d4ab6eb5765",
223
- "message": "Add API calls to delete resources"
224
- },
225
- {
226
- "id": "19bc4022fdd8acdb8f36422d5b030e05aed7b581",
227
- "message": "returned berkshelf to 3.2"
228
- },
229
- {
230
- "id": "9100add6f6defd1e523709f63ffb30eabc905bb3",
231
- "message": "revert berkshelf to 3.2"
232
- },
233
- {
234
- "id": "94e8d1784e4215459288f343e8f1ff1319ce58f2",
235
- "message": "updated berkshelf to 4.0.1"
236
- },
237
- {
238
- "id": "a2e694f8e3954b24a8269a8957b920f2a4dea837",
239
- "message": "updated berkshelf to 4.0 as berkshelf-api-clinet required to be on 2.0.0 to run"
240
- },
241
- {
242
- "id": "3c438f6f1c3e4d6da11f19e7f9355a50170a478e",
243
- "message": "Chef::Cookbook::Medata.from_json expects JSON, not a filepath",
244
- "tags": [
245
- "0.3.13"
246
- ]
247
- },
248
- {
249
- "id": "1e03d71f7f93861139bfc471cecd95b4c7e721da",
250
- "message": "Handle Pathname obects in berks tasks",
251
- "tags": [
252
- "0.3.12"
253
- ]
254
- },
255
- {
256
- "id": "bf9581b0efef5585a6908c13b1d6224b56d7fc7a",
257
- "message": "Merge pull request #3 from rapid7/cookbook-push",
258
- "tags": [
259
- "0.3.11"
260
- ]
261
- },
262
- {
263
- "id": "ea9927b2d5d4ea07deea4909a5dd13e249e11e46",
264
- "message": "Require thor-scmversion in the Tasks module, not Util"
265
- },
266
- {
267
- "id": "6be176bc0b2f7c0cb968b5ad9a331bc43bd5ee46",
268
- "message": "Add build and push tasks for cookbooks"
269
- },
270
- {
271
- "id": "8e6be1d6ac1347e6961e0a74a13ae3639414dcef",
272
- "message": "Extend Chef::Cookbook::Metadata"
273
- },
274
- {
275
- "id": "e7584e73c56aa9b32f4f57cd3ac13e6715d9bb53",
276
- "message": "Bring in ignorefile"
277
- },
278
- {
279
- "id": "e8d9dbe9962b933eac7eeb990729a17bd709ce63",
280
- "message": "Add homepage to gemspec",
281
- "tags": [
282
- "0.3.10"
283
- ]
284
- },
285
- {
286
- "id": "31ba2630e260edc8ac0db80499bb46e2f053562a",
287
- "message": "Merge pull request #2 from rapid7/fix-cookbook-path"
288
- },
289
- {
290
- "id": "f4105a9bee4aeba116c54cc05d0e8a7643f4f775",
291
- "message": "Fix cookbook path resolution"
292
- },
293
- {
294
- "id": "9303364ba5e298271e4dde6317100fe84bcd49d6",
295
- "message": "Some opinionated changes... -> Error message when executed outside of Bundler -> Name of CONSTANT that the gem path is stored in"
296
- },
297
- {
298
- "id": "20106bebfb63163bbb899b2106f1174938c805e3",
299
- "message": "Update vagrant version in config instructions"
300
- },
301
- {
302
- "id": "bae8761a1b54bd3a26a3de2b4e013b9082684c81",
303
- "message": "Add a helper to reference files relative to pwd"
304
- },
305
- {
306
- "id": "d6075989bb7b7b7d4ef21bb0ba6134a07945b8dd",
307
- "message": "Move packer helpers into Util namespace"
308
- },
309
- {
310
- "id": "773c3cdd824d2c77bba13c2f4a8116404f589487",
311
- "message": "Merge pull request #1 from rapid7/ec2-clean-tasks"
312
- },
313
- {
314
- "id": "e4cc2f2531ccbfca956666956397ddb140c1fe5e",
315
- "message": "Whelp, the launch config cleaner seemed to work..."
316
- },
317
- {
318
- "id": "2b748d8aee8d8b2de2529a1ecceb319108bf9084",
319
- "message": "Fix packer install/build paths",
320
- "tags": [
321
- "0.3.9"
322
- ]
323
- },
324
- {
325
- "id": "5ba1233d6b6278777a57f7920d3d139c339464f8",
326
- "message": "Use AwsException in Clean controller"
327
- },
328
- {
329
- "id": "99ca8ec34d98beca0ded33091e311a5a83fb131b",
330
- "message": "Fix argument lists passed to invocations in the 'all' task"
331
- },
332
- {
333
- "id": "4d664756ef6d13aac9fbf3f6010d5b06c9ea41df",
334
- "message": "Add a wrapper exception for AWS-SDK service errors"
335
- },
336
- {
337
- "id": "c24a83c7a0645c76c6e39dc055cf999197a62486",
338
- "message": "Abstract the status method from LimitException into a generic TaskException class that cen be reused for other Thor task exceptions"
339
- },
340
- {
341
- "id": "072dd13091ccbac2fca30302c3a6795d1043f6ad",
342
- "message": "Add exception handling to the Clean controller"
343
- },
344
- {
345
- "id": "c32f0ea60f395226b913528263acbe9281fafd41",
346
- "message": "Add default to reject argument"
347
- },
348
- {
349
- "id": "94a41faef678fbf86a459b2922185d8b264332fc",
350
- "message": "Fix class header comment, override the safety LIMIT constant for several resources"
351
- },
352
- {
353
- "id": "e241d71098c9fdca904ff2a243bd845eab38ae7f",
354
- "message": "Clean up data model and logic that determines if a resource is in use"
355
- },
356
- {
357
- "id": "bd0b2585263d25de51d6582443fc2dd5c5602dd7",
358
- "message": "Starting usage docs for clean tasks"
359
- },
360
- {
361
- "id": "861b642a63342b4d51c5535bf419f01145cb6ecb",
362
- "message": "First pass at tasks to clean up abandoned EC2 resources"
363
- },
364
- {
365
- "id": "f0b7b990ac953eaccc5725ec498be00ffb0550fe",
366
- "message": "Move AWS clients into util"
367
- },
368
- {
369
- "id": "1d9120c0621a020fac5a65b952578031e6d0340c",
370
- "message": "Fix AMI ID matching logic in packer:build"
371
- },
372
- {
373
- "id": "bfb61e34baa264a11a9022e8867e1b1755979bea",
374
- "message": "Bump version",
375
- "tags": [
376
- "0.3.8"
377
- ]
378
- },
379
- {
380
- "id": "c6893e182bf1e56766094ae5bc515e6557c1a5a9",
381
- "message": "Add option to disable version:current task"
382
- },
383
- {
384
- "id": "f490a14a428db458be63748da544547956babb36",
385
- "message": "Bump version",
386
- "tags": [
387
- "0.3.7"
388
- ]
389
- },
390
- {
391
- "id": "fa6883ba10217ae8347ec90c96942814f07bc28e",
392
- "message": "Fix berksfile finder logic"
393
- },
394
- {
395
- "id": "67d8551a5a3da923ef155161e90d924a48cbeb8a",
396
- "message": "Bump version",
397
- "tags": [
398
- "0.3.6"
399
- ]
400
- },
401
- {
402
- "id": "db948f53914ca08df25adb077cee6b4bfb2e8b2d",
403
- "message": "Fix packer:find_ami task"
404
- },
405
- {
406
- "id": "e231d947bcc70d4bf0fad231f8ff2a0ce520b844",
407
- "message": "Bump version",
408
- "tags": [
409
- "0.3.5"
410
- ]
411
- },
412
- {
413
- "id": "b3d75ec63987368009942092de38f16dbd716e82",
414
- "message": "Update packer:install to use 0.8.1"
415
- },
416
- {
417
- "id": "468e7515ad88fa61c0f59a1a599d3da69ce549ce",
418
- "message": "Bump version",
419
- "tags": [
420
- "0.3.4"
421
- ]
422
- },
423
- {
424
- "id": "671e874ef03fa9dd35f45f264a1fd60eafad5ac1",
425
- "message": "Use Dir to find bin scripts in gemspec"
426
- },
427
- {
428
- "id": "fbab43f58cc54d5ab58bd43293360b91e4b8fc49",
429
- "message": "Add output capture from Packer to find AMI ids"
430
- },
431
- {
432
- "id": "5816a03973e2c8ba734b3aea85cfda458bcdceee",
433
- "message": "Add execution checks for Bundler and Vagrant"
434
- },
435
- {
436
- "id": "52742381f8f3cfa8f5079d55439e0fa3c4b05521",
437
- "message": "Add VERSION file to git repo while this is in development",
438
- "tags": [
439
- "0.3.3"
440
- ]
441
- },
442
- {
443
- "id": "d33519df2a10d134c454fa05a7a91e445cae7fb4",
444
- "message": "Pass options from berks upload to berks local"
445
- },
446
- {
447
- "id": "abafd9de16c6a77f989d33a00037060a80a73f11",
448
- "message": "Run Berks install before upload. Upload requires a Berksfile.lock",
449
- "tags": [
450
- "0.3.2"
451
- ]
452
- },
453
- {
454
- "id": "6ad2938a70d3f0b1ff9578d116c88ea3e615b7e2",
455
- "message": "Fix thor-scmversion invocation in cookbook tasks",
456
- "tags": [
457
- "0.3.1"
458
- ]
459
- },
460
- {
461
- "id": "51aa9de31c98873b101aeaeac3b83ce99c1169d8",
462
- "message": "Add more tasks to wrap berkshelf, and vagrant",
463
- "tags": [
464
- "0.3.0"
465
- ]
466
- },
467
- {
468
- "id": "17a514cf3eedcb143472c4351cb84ca695bbd68a",
469
- "message": "Add first packer tasks, seperate shared logic from tasks, complete ami tasks",
470
- "tags": [
471
- "0.2.0"
472
- ]
473
- },
474
- {
475
- "id": "7b11c43da2dd90f9cfd28f1e2d12590e716f4bfe",
476
- "message": "Fix handling of multiple results",
477
- "tags": [
478
- "0.1.1"
479
- ]
480
- },
481
- {
482
- "id": "760040713d5b59981c639dd9523b7e2d8a24c8ba",
483
- "message": "Basic Ubuntu iamge lookup",
484
- "tags": [
485
- "0.1.0"
486
- ]
487
- },
488
- {
489
- "id": "0893bfd3477c1373e2beeb53cf5f872ee70c0a91",
490
- "message": "Starting Gem"
491
- }
492
- ]