zeta 0.10.0 → 0.11.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8b5e908506772595d20fc1d1792e3769a34582f9
4
- data.tar.gz: c533f99341f47de3c7921f6a73f7128a0e56582d
3
+ metadata.gz: f14cc5661832663e107efc78e72f7e817bf124de
4
+ data.tar.gz: f748f3164fc950000936ba1c0315966977608cb8
5
5
  SHA512:
6
- metadata.gz: 0ccb8f8477e702f9a472aa88e832781e14281c0401799a33c698278ab2a1fe460ff2c327705e35094122f2a90b1db2f9e20ec1922afc16bde1e991f3d660a48d
7
- data.tar.gz: eb6521417057a4c5040d3187d82b672f0fec7a45d5eda43f7c002d1950bde48a50bbfc98e876512328a64caa1665bde58de80c3ca25e797f821d2e389244bb5d
6
+ metadata.gz: d7faf28bf21d80ffd55b0f0813d081b156d857fd72491e7d35a4312ed06114fdfad351b3c1d61a28c4c2802d6fc6dd0b87d6141bbc89471cb77474a8e6431e92
7
+ data.tar.gz: b7bb290bae4f0796fc8cf82f8ed02bd56bd3a54f2d00ed52fb17d3fea0a0a31d22b566084dc78db4617b5d20c9a06d7bb2d169c7737ba42207a3f4effa07a5c9
data/CHANGELOG.markdown CHANGED
@@ -1,64 +1,70 @@
1
+ # 0.11.0
2
+ - Use a lacerda version that makes optional attributes nullable by
3
+ default. If you have an object with an optional property `foo`,
4
+ now both {"foo": null} and {} will be valid objects (up to 0.11.0
5
+ only the latter was valid)
6
+
1
7
  # 0.10.0
2
- - the Zeta singleton will only transform its own contracts after it's
8
+ - The Zeta singleton will only transform its own contracts after it's
3
9
  initialized, but not fetch remote contracts as this is not necessary
4
10
  at runtime see [#15](https://github.com/moviepilot/zeta/issues/15)
5
11
 
6
12
  # 0.9.0
7
- - change http basic auth env vars to ZETA_HTTP_USER and ZETA_HTTP_PASSWORD
13
+ - Change http basic auth env vars to ZETA_HTTP_USER and ZETA_HTTP_PASSWORD
8
14
 
9
15
  # 0.8.0
10
- - the Zeta singleton will update its contracts after it's initialized
16
+ - The Zeta singleton will update its contracts after it's initialized
11
17
 
12
18
  # 0.7.4
13
- - hint to --trace option on error
14
- - fix cache dir cleanup on refetch
19
+ - Hint to --trace option on error
20
+ - Fix cache dir cleanup on refetch
15
21
 
16
22
  # 0.7.3
17
- - fix https://github.com/moviepilot/zeta/issues/13
23
+ - Fix https://github.com/moviepilot/zeta/issues/13
18
24
 
19
25
  # 0.7.2
20
- - broken 😱
26
+ - Broken 😱
21
27
 
22
28
  # 0.7.1
23
- - remove require 'pry'
29
+ - Remove require 'pry'
24
30
 
25
31
  # 0.7.0
26
- - update Lacerda to ~> 0.12
27
- - add Zeta.convert_all! convenience method
32
+ - Update Lacerda to ~> 0.12
33
+ - Add Zeta.convert_all! convenience method
28
34
 
29
35
  # 0.6.0 (06-Nov-15)
30
- - update Lacerda
36
+ - Update Lacerda
31
37
 
32
38
  # 0.6.2 (04-Nov-15)
33
- - update Lacerda
34
- - add --trace option so we don't bother people with exception traces all the time
39
+ - Update Lacerda
40
+ - Add --trace option so we don't bother people with exception traces all the time
35
41
 
36
42
  # 0.6.1 (03-Nov-15)
37
- - make rspec integration a little more convenient
43
+ - Make rspec integration a little more convenient
38
44
 
39
45
  # 0.6.0 (03-Nov-15)
40
- - make reporter configurable for contracts_fulfilled?
41
- - add rspec integration
42
- - add Zeta.verbose= setter
46
+ - Make reporter configurable for contracts_fulfilled?
47
+ - Add rspec integration
48
+ - Add Zeta.verbose= setter
43
49
 
44
50
  # 0.5.0 (02-Nov-15)
45
- - update lacerda
46
- - use lacerda stdout reporter by default
51
+ - Update lacerda
52
+ - Use lacerda stdout reporter by default
47
53
 
48
54
  # 0.4.0 (30-Oct-15)
49
- - update lacerda which uses ServiceName::Object in favor of ServiceName:Object
55
+ - Update lacerda which uses ServiceName::Object in favor of ServiceName:Object
50
56
 
51
57
  # 0.3.0 (29-Oct-15)
52
- - forward published/consume object validation method to the current service in the infrastructure
53
- - forward wrapped consume object creation to the current service
54
- - use ZETA_HTTP_USER and ZETA_HTTP_PASSWORD instead of GITHUB_USER and GITHUB_TOKEN
58
+ - Forward published/consume object validation method to the current service in the infrastructure
59
+ - Forward wrapped consume object creation to the current service
60
+ - Use ZETA_HTTP_USER and ZETA_HTTP_PASSWORD instead of GITHUB_USER and GITHUB_TOKEN
55
61
 
56
62
  # 0.2.5 (28-Oct-15)
57
- - better CLI help
58
- - update lacerda version
63
+ - Better CLI help
64
+ - Update lacerda version
59
65
 
60
66
  # 0.2.3 (22-Oct-15)
61
- - log urls of downloaded service files
67
+ - Log urls of downloaded service files
62
68
 
63
69
  # 0.1.2 (20-Oct-15)
64
- - add `zeta` runner
70
+ - Add `zeta` runner
data/lib/zeta/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  class Zeta
2
- VERSION = "0.10.0"
2
+ VERSION = "0.11.0"
3
3
  end
data/zeta.gemspec CHANGED
@@ -19,7 +19,7 @@ Gem::Specification.new do |spec|
19
19
  spec.require_paths = ['lib']
20
20
 
21
21
  spec.add_runtime_dependency 'rake', '~> 10.2'
22
- spec.add_runtime_dependency 'lacerda', '~> 0.12'
22
+ spec.add_runtime_dependency 'lacerda', '~> 0.13'
23
23
  spec.add_runtime_dependency 'activesupport'
24
24
  spec.add_runtime_dependency 'httparty', '~> 0.13'
25
25
  spec.add_runtime_dependency 'colorize'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: zeta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.10.0
4
+ version: 0.11.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jannis Hermanns
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-11-18 00:00:00.000000000 Z
11
+ date: 2016-01-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: '0.12'
33
+ version: '0.13'
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: '0.12'
40
+ version: '0.13'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: activesupport
43
43
  requirement: !ruby/object:Gem::Requirement