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 +4 -4
- data/CHANGELOG.markdown +33 -27
- data/lib/zeta/version.rb +1 -1
- data/zeta.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f14cc5661832663e107efc78e72f7e817bf124de
|
|
4
|
+
data.tar.gz: f748f3164fc950000936ba1c0315966977608cb8
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
-
-
|
|
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
|
-
-
|
|
13
|
+
- Change http basic auth env vars to ZETA_HTTP_USER and ZETA_HTTP_PASSWORD
|
|
8
14
|
|
|
9
15
|
# 0.8.0
|
|
10
|
-
-
|
|
16
|
+
- The Zeta singleton will update its contracts after it's initialized
|
|
11
17
|
|
|
12
18
|
# 0.7.4
|
|
13
|
-
-
|
|
14
|
-
-
|
|
19
|
+
- Hint to --trace option on error
|
|
20
|
+
- Fix cache dir cleanup on refetch
|
|
15
21
|
|
|
16
22
|
# 0.7.3
|
|
17
|
-
-
|
|
23
|
+
- Fix https://github.com/moviepilot/zeta/issues/13
|
|
18
24
|
|
|
19
25
|
# 0.7.2
|
|
20
|
-
-
|
|
26
|
+
- Broken 😱
|
|
21
27
|
|
|
22
28
|
# 0.7.1
|
|
23
|
-
-
|
|
29
|
+
- Remove require 'pry'
|
|
24
30
|
|
|
25
31
|
# 0.7.0
|
|
26
|
-
-
|
|
27
|
-
-
|
|
32
|
+
- Update Lacerda to ~> 0.12
|
|
33
|
+
- Add Zeta.convert_all! convenience method
|
|
28
34
|
|
|
29
35
|
# 0.6.0 (06-Nov-15)
|
|
30
|
-
-
|
|
36
|
+
- Update Lacerda
|
|
31
37
|
|
|
32
38
|
# 0.6.2 (04-Nov-15)
|
|
33
|
-
-
|
|
34
|
-
-
|
|
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
|
-
-
|
|
43
|
+
- Make rspec integration a little more convenient
|
|
38
44
|
|
|
39
45
|
# 0.6.0 (03-Nov-15)
|
|
40
|
-
-
|
|
41
|
-
-
|
|
42
|
-
-
|
|
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
|
-
-
|
|
46
|
-
-
|
|
51
|
+
- Update lacerda
|
|
52
|
+
- Use lacerda stdout reporter by default
|
|
47
53
|
|
|
48
54
|
# 0.4.0 (30-Oct-15)
|
|
49
|
-
-
|
|
55
|
+
- Update lacerda which uses ServiceName::Object in favor of ServiceName:Object
|
|
50
56
|
|
|
51
57
|
# 0.3.0 (29-Oct-15)
|
|
52
|
-
-
|
|
53
|
-
-
|
|
54
|
-
-
|
|
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
|
-
-
|
|
58
|
-
-
|
|
63
|
+
- Better CLI help
|
|
64
|
+
- Update lacerda version
|
|
59
65
|
|
|
60
66
|
# 0.2.3 (22-Oct-15)
|
|
61
|
-
-
|
|
67
|
+
- Log urls of downloaded service files
|
|
62
68
|
|
|
63
69
|
# 0.1.2 (20-Oct-15)
|
|
64
|
-
-
|
|
70
|
+
- Add `zeta` runner
|
data/lib/zeta/version.rb
CHANGED
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.
|
|
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.
|
|
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:
|
|
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.
|
|
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.
|
|
40
|
+
version: '0.13'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: activesupport
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|