yamload 0.8.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e758b62515b04c2077aaf86f11c984d4420d4554ae2949ea42a26a74b7a51058
4
- data.tar.gz: f81d42230bcf5e724a942681d3a41be87ebd8bde1324d19527d5439edfd16a21
3
+ metadata.gz: 77f8f5a34d06ab4ffe2dedc15cb0a041db2cf78af90159a4c56ca6ca2183ae37
4
+ data.tar.gz: 18cdc178e8539f3c2d8671a0656c83c75b27ec023e7ef79ff15d72dd39460245
5
5
  SHA512:
6
- metadata.gz: a8b86f003e03b652f37ceb35cac2d85c56392da63ade3331477d59b5ecb010b69001bc9f61227f0a2fb0006123869bbea18cfce8b19eb528c623c78b73317461
7
- data.tar.gz: c4939e33a6d673ac6a9dd527305e51b7e0b1cf47dc66de9ff11b9ef320c7d804401c3d587c41e2d4d5c49419ca961421d2bbe639c2fbc1088fdca191c3c70d48
6
+ metadata.gz: 73238d4be29ce9a4beda11955608138a281429cd85ca8ccfe6788821c108e603bc910ecc63749b6c2971d4211ae59e30bd07527433a3b6d54099e3e2d07f81ec
7
+ data.tar.gz: 5674598610e1c01b591972512a053e5f1f6cb17ec08fbb488f60d3527af9b0d1e3cfe9ff5e0c64e4ec712ac0e31a9ca7f7d8f5598f226aa4a1ba6c3dcd498f7f
@@ -0,0 +1,12 @@
1
+ # The commits that did automated reformatting. You can ignore them
2
+ # during git-blame with `--ignore-rev` or `--ignore-revs-file`.
3
+ # You can also globally configure GIT with the following command
4
+ #
5
+ # $ git config --add 'blame.ignoreRevsFile' '.git-blame-ignore-revs'
6
+ #
7
+ # Example entries:
8
+ #
9
+ # <full commit hash> # initial black-format
10
+ # <full commit hash> # rename something internal
11
+
12
+ 4ac64416bf38bab7509f784428c3677cce652bcc # Pretty CHANGELOG.md
@@ -5,7 +5,7 @@ jobs:
5
5
  strategy:
6
6
  fail-fast: false
7
7
  matrix:
8
- ruby: ["2.6", "2.7", "3.0", "3.1"]
8
+ ruby: ["3.0", "3.1", "3.2"]
9
9
  runs-on: ubuntu-latest
10
10
  env:
11
11
  AWS_REGION: us-east-1
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.1.0
1
+ 3.2.0
data/.standard.yml CHANGED
@@ -1 +1 @@
1
- ruby_version: 2.6
1
+ ruby_version: 3.2
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ ## 0.9.0
2
+
3
+ - [PLAT-1175] Update to Ruby 3.2
4
+
1
5
  ## 0.8.0
2
6
 
3
7
  - [PLAT-379] Improve bundler startup time
@@ -16,72 +20,74 @@
16
20
 
17
21
  ## 0.5.0 (2020-07-02)
18
22
 
19
- - [TT-7683] Add support for AWS SSM and AWS Secrets Manager
23
+ - [TT-7683] Add support for AWS SSM and AWS Secrets Manager
20
24
 
21
25
  ## 0.4.0 (2020-05-20)
22
26
 
23
- - [TT-7323] Bring all dependencies up to date
27
+ - [TT-7323] Bring all dependencies up to date
24
28
 
25
29
  ## 0.3.0 (2017-07-31)
26
30
 
27
31
  Removed:
28
- - [TT-2967] Remove deprecated `Yamload::Loader#loaded_hash`
29
- - [TT-2967] Remove schema validation
32
+
33
+ - [TT-2967] Remove deprecated `Yamload::Loader#loaded_hash`
34
+ - [TT-2967] Remove schema validation
30
35
 
31
36
  Changed:
32
- - [TT-1790] Update ClassyHash to version 0.2.0
37
+
38
+ - [TT-1790] Update ClassyHash to version 0.2.0
33
39
 
34
40
  ## 0.2.0 (2015-02-20)
35
41
 
36
42
  Features:
37
43
 
38
- - Add ERB parsing as a prestep for loaded YAML files
44
+ - Add ERB parsing as a prestep for loaded YAML files
39
45
 
40
46
  ## 0.1.0 (2015-02-17)
41
47
 
42
- - use proper semantic versioning (semver.org)
48
+ - use proper semantic versioning (semver.org)
43
49
 
44
50
  Features:
45
51
 
46
- - support loading valid yml files which don't define a hash
47
- - deprecates `Yamload::Loader#loaded_hash` in favour of `Yamload::Loader#content`
52
+ - support loading valid yml files which don't define a hash
53
+ - deprecates `Yamload::Loader#loaded_hash` in favour of `Yamload::Loader#content`
48
54
 
49
55
  ## 0.0.6 (2015-02-04)
50
56
 
51
57
  Bugfixes:
52
58
 
53
- - check for directory existence
59
+ - check for directory existence
54
60
 
55
61
  ## 0.0.5 (2015-02-04)
56
62
 
57
63
  Bugfixes:
58
64
 
59
- - check for file existence
60
- - check for validity of file contents
65
+ - check for file existence
66
+ - check for validity of file contents
61
67
 
62
68
  ## 0.0.4 (2015-02-04)
63
69
 
64
70
  Features:
65
71
 
66
- - implement `Yamload::Loader#exist?` to check for file presence
72
+ - implement `Yamload::Loader#exist?` to check for file presence
67
73
 
68
74
  ## 0.0.3 (2015-02-04)
69
75
 
70
76
  Features:
71
77
 
72
- - use a faster schema validation engine with no dependencies
78
+ - use a faster schema validation engine with no dependencies
73
79
 
74
80
  ## 0.0.2 (2015-02-04)
75
81
 
76
82
  Features:
77
83
 
78
- - freeze the loaded hash
84
+ - freeze the loaded hash
79
85
 
80
86
  ## 0.0.1 (2015-02-04)
81
87
 
82
88
  Features:
83
89
 
84
- - load valid yml files defining a hash
85
- - conversion of loaded hash to immutable object
86
- - default values
87
- - schema validation
90
+ - load valid yml files defining a hash
91
+ - conversion of loaded hash to immutable object
92
+ - default values
93
+ - schema validation
@@ -1,3 +1,3 @@
1
1
  module Yamload
2
- VERSION = "0.8.0"
2
+ VERSION = "0.9.0"
3
3
  end
data/yamload.gemspec CHANGED
@@ -14,10 +14,9 @@ Gem::Specification.new do |spec|
14
14
 
15
15
  spec.files = `git ls-files -z`.split("\x0")
16
16
  spec.executables = spec.files.grep(/^bin\//) { |f| File.basename(f) }
17
- spec.test_files = spec.files.grep(/^(test|spec|features)\//)
18
17
  spec.require_paths = ["lib"]
19
18
 
20
- spec.required_ruby_version = ">= 2.6.0"
19
+ spec.required_ruby_version = ">= 3.0"
21
20
 
22
21
  spec.add_dependency "anima", ">= 0.2"
23
22
  spec.add_dependency "facets", ">= 3.0"
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: yamload
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.9.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Alessandro Berardi
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2022-07-02 00:00:00.000000000 Z
12
+ date: 2023-01-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: anima
@@ -173,6 +173,7 @@ executables: []
173
173
  extensions: []
174
174
  extra_rdoc_files: []
175
175
  files:
176
+ - ".git-blame-ignore-revs"
176
177
  - ".github/dependabot.yml"
177
178
  - ".github/workflows/release.yml"
178
179
  - ".github/workflows/ruby.yml"
@@ -221,26 +222,15 @@ required_ruby_version: !ruby/object:Gem::Requirement
221
222
  requirements:
222
223
  - - ">="
223
224
  - !ruby/object:Gem::Version
224
- version: 2.6.0
225
+ version: '3.0'
225
226
  required_rubygems_version: !ruby/object:Gem::Requirement
226
227
  requirements:
227
228
  - - ">="
228
229
  - !ruby/object:Gem::Version
229
230
  version: '0'
230
231
  requirements: []
231
- rubygems_version: 3.3.3
232
+ rubygems_version: 3.4.1
232
233
  signing_key:
233
234
  specification_version: 4
234
235
  summary: YAML files loader
235
- test_files:
236
- - spec/conversion_spec.rb
237
- - spec/fixtures/array.yml
238
- - spec/fixtures/empty.yml
239
- - spec/fixtures/erb.yml
240
- - spec/fixtures/erb_bad.yml
241
- - spec/fixtures/string.yml
242
- - spec/fixtures/test.yml
243
- - spec/fixtures/unsafe.yml
244
- - spec/loader_spec.rb
245
- - spec/spec_helper.rb
246
- - spec/support/coverage_loader.rb
236
+ test_files: []