hiera-eyaml 3.3.0 → 4.0.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.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/.github/dependabot.yml +17 -0
  3. data/.github/workflows/release.yml +2 -2
  4. data/.github/workflows/test.yml +38 -21
  5. data/.rubocop.yml +8 -0
  6. data/.rubocop_todo.yml +416 -0
  7. data/CHANGELOG.md +59 -0
  8. data/Gemfile +13 -14
  9. data/README.md +37 -7
  10. data/Rakefile +11 -4
  11. data/hiera-eyaml.gemspec +17 -15
  12. data/lib/hiera/backend/eyaml/CLI.rb +12 -19
  13. data/lib/hiera/backend/eyaml/commands.rb +2 -6
  14. data/lib/hiera/backend/eyaml/edithelper.rb +24 -19
  15. data/lib/hiera/backend/eyaml/encrypthelper.rb +17 -19
  16. data/lib/hiera/backend/eyaml/encryptor.rb +40 -43
  17. data/lib/hiera/backend/eyaml/encryptors/pkcs7.rb +79 -105
  18. data/lib/hiera/backend/eyaml/highlinehelper.rb +3 -5
  19. data/lib/hiera/backend/eyaml/logginghelper.rb +27 -29
  20. data/lib/hiera/backend/eyaml/options.rb +13 -16
  21. data/lib/hiera/backend/eyaml/parser/encrypted_tokens.rb +2 -2
  22. data/lib/hiera/backend/eyaml/parser/parser.rb +35 -36
  23. data/lib/hiera/backend/eyaml/parser/token.rb +15 -6
  24. data/lib/hiera/backend/eyaml/plugins.rb +13 -18
  25. data/lib/hiera/backend/eyaml/subcommand.rb +72 -74
  26. data/lib/hiera/backend/eyaml/subcommands/createkeys.rb +2 -6
  27. data/lib/hiera/backend/eyaml/subcommands/decrypt.rb +52 -52
  28. data/lib/hiera/backend/eyaml/subcommands/edit.rb +58 -59
  29. data/lib/hiera/backend/eyaml/subcommands/encrypt.rb +65 -69
  30. data/lib/hiera/backend/eyaml/subcommands/help.rb +17 -22
  31. data/lib/hiera/backend/eyaml/subcommands/recrypt.rb +13 -20
  32. data/lib/hiera/backend/eyaml/subcommands/unknown_command.rb +10 -14
  33. data/lib/hiera/backend/eyaml/subcommands/version.rb +4 -9
  34. data/lib/hiera/backend/eyaml/utils.rb +27 -28
  35. data/lib/hiera/backend/eyaml.rb +7 -9
  36. data/lib/hiera/backend/eyaml_backend.rb +34 -28
  37. metadata +63 -14
  38. data/tools/git_tag_release.rb +0 -98
  39. data/tools/regem.sh +0 -11
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1ba41ba9c345e4f06ad535c7b80c6ea77c6ac146e8c983ce19b447b75fbbec32
4
- data.tar.gz: 93ebbe3b9a22e5a3fda21e304faf1f837fc6f592288eb6a3745d862d592a8b74
3
+ metadata.gz: 678588aef70424addfe72a90edea53713e702cd2a55c4f707c19b1eb513f435e
4
+ data.tar.gz: 7ee2ee82496e760e298181a5109b43da47b260628f5934f950e60db0d67d50e4
5
5
  SHA512:
6
- metadata.gz: 16b457ef156c42950e5610e503ffe45a8553b383f845d983ebf71fe3104312b742dfd325d61a59ad6e09895c485313611699f1063139567432886a693f964cb0
7
- data.tar.gz: 66c315ed82b9516a246712d0659874188d6a58837068013f2bc40a31907624bf29c5044c883a519a216ebf8cdc5ce2347c94f960d93f50cca28b0fed79456be9
6
+ metadata.gz: '029e218037fb48bea447bed3c046272a5a6932b1741a1b456092951940fd3c39e5a85d3b3593a87f5a76bf3ed4fbaa10b6d4ab72a20e05ee28fe4b55d2bbbc2d'
7
+ data.tar.gz: ef8d842be54361731abca7a3d2ff953a63cb42174f6746d4079ce124d28f1b7a0801a0043f74f110ac8b450586e1a9ea55148f73bfa4aceb376393b444d61956
@@ -0,0 +1,17 @@
1
+ version: 2
2
+ updates:
3
+ # raise PRs for gem updates
4
+ - package-ecosystem: bundler
5
+ directory: "/"
6
+ schedule:
7
+ interval: daily
8
+ time: "13:00"
9
+ open-pull-requests-limit: 10
10
+
11
+ # Maintain dependencies for GitHub Actions
12
+ - package-ecosystem: github-actions
13
+ directory: "/"
14
+ schedule:
15
+ interval: daily
16
+ time: "13:00"
17
+ open-pull-requests-limit: 10
@@ -10,13 +10,13 @@ jobs:
10
10
  runs-on: ubuntu-latest
11
11
  if: github.repository_owner == 'voxpupuli'
12
12
  steps:
13
- - uses: actions/checkout@v2
13
+ - uses: actions/checkout@v4
14
14
  - name: Install Ruby 3.1
15
15
  uses: ruby/setup-ruby@v1
16
16
  with:
17
17
  ruby-version: '3.1'
18
18
  - name: Build gem
19
- run: gem build *.gemspec
19
+ run: gem build --strict --verbose *.gemspec
20
20
  - name: Publish gem to rubygems.org
21
21
  run: gem push *.gem
22
22
  env:
@@ -1,42 +1,52 @@
1
1
  name: Test
2
2
 
3
3
  on:
4
- - pull_request
5
- - push
4
+ pull_request: {}
5
+ push:
6
+ branches:
7
+ - master
6
8
 
7
9
  env:
8
10
  BUNDLE_WITHOUT: release
9
11
 
10
12
  jobs:
13
+ rubocop:
14
+ env:
15
+ BUNDLE_WITHOUT: release
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - name: Install Ruby ${{ matrix.ruby }}
20
+ uses: ruby/setup-ruby@v1
21
+ with:
22
+ ruby-version: "3.3"
23
+ bundler-cache: true
24
+ - name: Run Rubocop
25
+ run: bundle exec rake rubocop
11
26
  test:
12
27
  runs-on: ubuntu-latest
13
28
  strategy:
14
29
  fail-fast: false
15
30
  matrix:
16
31
  ruby:
17
- - "2.5"
18
- - "2.6"
19
32
  - "2.7"
20
33
  - "3.0"
21
34
  - "3.1"
35
+ - "3.2"
36
+ - jruby-9.4
22
37
  puppet:
23
- - "~> 7.0"
24
- - "~> 6.0"
38
+ - "~> 8.0"
39
+ - "~> 7.24"
25
40
  - "https://github.com/puppetlabs/puppet.git#main"
26
41
  exclude:
27
- - ruby: "2.6"
28
- puppet: "~> 7.0"
29
- - ruby: "2.5"
30
- puppet: "~> 7.0"
31
-
32
- - ruby: "3.1"
33
- puppet: "~> 6.0"
34
42
  - ruby: "3.0"
35
- puppet: "~> 6.0"
43
+ puppet: "~> 8.0"
44
+ - ruby: "2.7"
45
+ puppet: "~> 8.0"
36
46
 
37
- - ruby: "2.6"
47
+ - ruby: "3.0"
38
48
  puppet: "https://github.com/puppetlabs/puppet.git#main"
39
- - ruby: "2.5"
49
+ - ruby: "2.7"
40
50
  puppet: "https://github.com/puppetlabs/puppet.git#main"
41
51
  env:
42
52
  PUPPET_VERSION: ${{ matrix.puppet }}
@@ -44,9 +54,9 @@ jobs:
44
54
  name: "Ruby ${{ matrix.ruby }} - Puppet ${{ matrix.puppet }}"
45
55
  steps:
46
56
  - name: Enable coverage reporting on Ruby 3.1
47
- if: matrix.puppet == '~> 7.0' && matrix.ruby == '3.1'
57
+ if: matrix.puppet == '~> 7.24' && matrix.ruby == '3.1'
48
58
  run: echo 'COVERAGE=yes' >> $GITHUB_ENV
49
- - uses: actions/checkout@v2
59
+ - uses: actions/checkout@v4
50
60
  - name: Install expect
51
61
  run: sudo apt-get install expect
52
62
  - name: Install Ruby ${{ matrix.ruby }}
@@ -57,6 +67,13 @@ jobs:
57
67
  - name: spec tests
58
68
  run: bundle exec rake features
59
69
  - name: Verify gem builds
60
- run: gem build *.gemspec
61
- - name: Run tests
62
- run: bundle exec cucumber -f progress
70
+ run: gem build --strict --verbose *.gemspec
71
+
72
+ tests:
73
+ needs:
74
+ - rubocop
75
+ - test
76
+ runs-on: ubuntu-latest
77
+ name: Test suite
78
+ steps:
79
+ - run: echo Test suite completed
data/.rubocop.yml ADDED
@@ -0,0 +1,8 @@
1
+ ---
2
+ inherit_from: .rubocop_todo.yml
3
+
4
+ inherit_gem:
5
+ voxpupuli-rubocop: rubocop.yml
6
+
7
+ Metrics:
8
+ Enabled: false
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,416 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2024-05-02 19:12:37 UTC using RuboCop version 1.62.1.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 1
10
+ # This cop supports safe autocorrection (--autocorrect).
11
+ # Configuration parameters: AllowForAlignment.
12
+ Layout/CommentIndentation:
13
+ Exclude:
14
+ - 'lib/hiera/backend/eyaml/subcommands/help.rb'
15
+
16
+ # Offense count: 2
17
+ # This cop supports safe autocorrection (--autocorrect).
18
+ # Configuration parameters: EnforcedStyle.
19
+ # SupportedStyles: space, compact, no_space
20
+ Layout/SpaceInsideParens:
21
+ Exclude:
22
+ - 'lib/hiera/backend/eyaml/logginghelper.rb'
23
+
24
+ # Offense count: 1
25
+ Lint/DuplicateMethods:
26
+ Exclude:
27
+ - 'lib/hiera/backend/eyaml/subcommand.rb'
28
+
29
+ # Offense count: 5
30
+ # Configuration parameters: AllowedParentClasses.
31
+ Lint/MissingSuper:
32
+ Exclude:
33
+ - 'lib/hiera/backend/eyaml/parser/encrypted_tokens.rb'
34
+
35
+ # Offense count: 2
36
+ # This cop supports unsafe autocorrection (--autocorrect-all).
37
+ # Configuration parameters: AllowedImplicitNamespaces.
38
+ # AllowedImplicitNamespaces: Gem
39
+ Lint/RaiseException:
40
+ Exclude:
41
+ - 'lib/hiera/backend/eyaml_backend.rb'
42
+
43
+ # Offense count: 1
44
+ Lint/RescueException:
45
+ Exclude:
46
+ - 'lib/hiera/backend/eyaml/subcommand.rb'
47
+
48
+ # Offense count: 1
49
+ Lint/ShadowingOuterLocalVariable:
50
+ Exclude:
51
+ - 'lib/hiera/backend/eyaml_backend.rb'
52
+
53
+ # Offense count: 7
54
+ # This cop supports unsafe autocorrection (--autocorrect-all).
55
+ # Configuration parameters: AutoCorrect.
56
+ Lint/UselessAssignment:
57
+ Exclude:
58
+ - 'features/support/env.rb'
59
+ - 'lib/hiera/backend/eyaml/plugins.rb'
60
+ - 'lib/hiera/backend/eyaml/subcommand.rb'
61
+ - 'lib/hiera/backend/eyaml/subcommands/unknown_command.rb'
62
+ - 'lib/hiera/backend/eyaml/subcommands/version.rb'
63
+ - 'lib/hiera/backend/eyaml/utils.rb'
64
+
65
+ # Offense count: 1
66
+ # This cop supports unsafe autocorrection (--autocorrect-all).
67
+ # Configuration parameters: AutoCorrect.
68
+ Lint/UselessMethodDefinition:
69
+ Exclude:
70
+ - 'lib/hiera/backend/eyaml/parser/token.rb'
71
+
72
+ # Offense count: 1
73
+ # This cop supports safe autocorrection (--autocorrect).
74
+ # Configuration parameters: AutoCorrect, CheckForMethodsWithNoSideEffects.
75
+ Lint/Void:
76
+ Exclude:
77
+ - 'lib/hiera/backend/eyaml/parser/token.rb'
78
+
79
+ # Offense count: 1
80
+ Naming/AccessorMethodName:
81
+ Exclude:
82
+ - 'lib/hiera/backend/eyaml/parser/encrypted_tokens.rb'
83
+
84
+ # Offense count: 1
85
+ # Configuration parameters: AllowedNames.
86
+ # AllowedNames: module_parent
87
+ Naming/ClassAndModuleCamelCase:
88
+ Exclude:
89
+ - 'lib/hiera/backend/eyaml_backend.rb'
90
+
91
+ # Offense count: 1
92
+ # Configuration parameters: ExpectMatchingDefinition, CheckDefinitionPathHierarchy, CheckDefinitionPathHierarchyRoots, Regex, IgnoreExecutableScripts, AllowedAcronyms.
93
+ # CheckDefinitionPathHierarchyRoots: lib, spec, test, src
94
+ # AllowedAcronyms: CLI, DSL, ACL, API, ASCII, CPU, CSS, DNS, EOF, GUID, HTML, HTTP, HTTPS, ID, IP, JSON, LHS, QPS, RAM, RHS, RPC, SLA, SMTP, SQL, SSH, TCP, TLS, TTL, UDP, UI, UID, UUID, URI, URL, UTF8, VM, XML, XMPP, XSRF, XSS
95
+ Naming/FileName:
96
+ Exclude:
97
+ - 'lib/hiera/backend/eyaml/CLI.rb'
98
+
99
+ # Offense count: 3
100
+ # Configuration parameters: ForbiddenDelimiters.
101
+ # ForbiddenDelimiters: (?i-mx:(^|\s)(EO[A-Z]{1}|END)(\s|$))
102
+ Naming/HeredocDelimiterNaming:
103
+ Exclude:
104
+ - 'lib/hiera/backend/eyaml/subcommands/edit.rb'
105
+ - 'lib/hiera/backend/eyaml/subcommands/help.rb'
106
+ - 'lib/hiera/backend/eyaml/subcommands/unknown_command.rb'
107
+
108
+ # Offense count: 1
109
+ # Configuration parameters: EnforcedStyle, AllowedPatterns.
110
+ # SupportedStyles: snake_case, camelCase
111
+ Naming/MethodName:
112
+ Exclude:
113
+ - 'lib/hiera/backend/eyaml/encryptors/pkcs7.rb'
114
+
115
+ # Offense count: 1
116
+ # Configuration parameters: MinNameLength, AllowNamesEndingInNumbers, AllowedNames, ForbiddenNames.
117
+ # AllowedNames: as, at, by, cc, db, id, if, in, io, ip, of, on, os, pp, to
118
+ Naming/MethodParameterName:
119
+ Exclude:
120
+ - 'lib/hiera/backend/eyaml/parser/parser.rb'
121
+
122
+ # Offense count: 1
123
+ # Configuration parameters: EnforcedStyle, CheckMethodNames, CheckSymbols, AllowedIdentifiers, AllowedPatterns.
124
+ # SupportedStyles: snake_case, normalcase, non_integer
125
+ # AllowedIdentifiers: capture3, iso8601, rfc1123_date, rfc822, rfc2822, rfc3339, x86_64
126
+ Naming/VariableNumber:
127
+ Exclude:
128
+ - 'lib/hiera/backend/eyaml/utils.rb'
129
+
130
+ # Offense count: 3
131
+ # This cop supports unsafe autocorrection (--autocorrect-all).
132
+ Performance/Casecmp:
133
+ Exclude:
134
+ - 'lib/hiera/backend/eyaml/highlinehelper.rb'
135
+ - 'lib/hiera/backend/eyaml/utils.rb'
136
+
137
+ # Offense count: 1
138
+ # This cop supports unsafe autocorrection (--autocorrect-all).
139
+ Performance/Detect:
140
+ Exclude:
141
+ - 'lib/hiera/backend/eyaml/edithelper.rb'
142
+
143
+ # Offense count: 5
144
+ # This cop supports unsafe autocorrection (--autocorrect-all).
145
+ Performance/MapCompact:
146
+ Exclude:
147
+ - 'lib/hiera/backend/eyaml/edithelper.rb'
148
+ - 'lib/hiera/backend/eyaml/subcommands/decrypt.rb'
149
+ - 'lib/hiera/backend/eyaml/subcommands/encrypt.rb'
150
+ - 'lib/hiera/backend/eyaml/subcommands/help.rb'
151
+ - 'lib/hiera/backend/eyaml/subcommands/unknown_command.rb'
152
+
153
+ # Offense count: 1
154
+ # This cop supports unsafe autocorrection (--autocorrect-all).
155
+ # Configuration parameters: MaxKeyValuePairs.
156
+ Performance/RedundantMerge:
157
+ Exclude:
158
+ - 'lib/hiera/backend/eyaml/logginghelper.rb'
159
+
160
+ # Offense count: 1
161
+ # This cop supports unsafe autocorrection (--autocorrect-all).
162
+ Performance/StringInclude:
163
+ Exclude:
164
+ - 'lib/hiera/backend/eyaml/utils.rb'
165
+
166
+ # Offense count: 1
167
+ Security/Open:
168
+ Exclude:
169
+ - 'lib/hiera/backend/eyaml/encrypthelper.rb'
170
+
171
+ # Offense count: 2
172
+ # This cop supports unsafe autocorrection (--autocorrect-all).
173
+ Security/YAMLLoad:
174
+ Exclude:
175
+ - 'features/step_definitions/decrypt_steps.rb'
176
+ - 'lib/hiera/backend/eyaml_backend.rb'
177
+
178
+ # Offense count: 9
179
+ # This cop supports unsafe autocorrection (--autocorrect-all).
180
+ # Configuration parameters: EnforcedStyle.
181
+ # SupportedStyles: always, conditionals
182
+ Style/AndOr:
183
+ Exclude:
184
+ - 'lib/hiera/backend/eyaml/encryptors/pkcs7.rb'
185
+ - 'lib/hiera/backend/eyaml/highlinehelper.rb'
186
+ - 'lib/hiera/backend/eyaml/logginghelper.rb'
187
+ - 'lib/hiera/backend/eyaml/subcommand.rb'
188
+ - 'lib/hiera/backend/eyaml_backend.rb'
189
+
190
+ # Offense count: 1
191
+ # This cop supports unsafe autocorrection (--autocorrect-all).
192
+ # Configuration parameters: MinBranchesCount.
193
+ Style/CaseLikeIf:
194
+ Exclude:
195
+ - 'lib/hiera/backend/eyaml_backend.rb'
196
+
197
+ # Offense count: 18
198
+ Style/ClassVars:
199
+ Exclude:
200
+ - 'lib/hiera/backend/eyaml.rb'
201
+ - 'lib/hiera/backend/eyaml/commands.rb'
202
+ - 'lib/hiera/backend/eyaml/options.rb'
203
+ - 'lib/hiera/backend/eyaml/parser/encrypted_tokens.rb'
204
+ - 'lib/hiera/backend/eyaml/plugins.rb'
205
+ - 'lib/hiera/backend/eyaml/subcommand.rb'
206
+ - 'lib/hiera/backend/eyaml/subcommands/unknown_command.rb'
207
+
208
+ # Offense count: 1
209
+ # This cop supports unsafe autocorrection (--autocorrect-all).
210
+ # Configuration parameters: AllowedReceivers.
211
+ Style/CollectionCompact:
212
+ Exclude:
213
+ - 'lib/hiera/backend/eyaml/parser/parser.rb'
214
+
215
+ # Offense count: 35
216
+ # Configuration parameters: AllowedConstants.
217
+ Style/Documentation:
218
+ Enabled: false
219
+
220
+ # Offense count: 2
221
+ # This cop supports unsafe autocorrection (--autocorrect-all).
222
+ Style/EnvHome:
223
+ Exclude:
224
+ - 'lib/hiera/backend/eyaml/edithelper.rb'
225
+ - 'lib/hiera/backend/eyaml/subcommand.rb'
226
+
227
+ # Offense count: 10
228
+ # This cop supports safe autocorrection (--autocorrect).
229
+ # Configuration parameters: MaxUnannotatedPlaceholdersAllowed, AllowedMethods, AllowedPatterns.
230
+ # SupportedStyles: annotated, template, unannotated
231
+ Style/FormatStringToken:
232
+ EnforcedStyle: unannotated
233
+
234
+ # Offense count: 36
235
+ # This cop supports unsafe autocorrection (--autocorrect-all).
236
+ # Configuration parameters: EnforcedStyle.
237
+ # SupportedStyles: always, always_true, never
238
+ Style/FrozenStringLiteralComment:
239
+ Enabled: false
240
+
241
+ # Offense count: 3
242
+ # This cop supports unsafe autocorrection (--autocorrect-all).
243
+ Style/GlobalStdStream:
244
+ Exclude:
245
+ - 'lib/hiera/backend/eyaml/logginghelper.rb'
246
+ - 'lib/hiera/backend/eyaml/subcommands/decrypt.rb'
247
+ - 'lib/hiera/backend/eyaml/subcommands/encrypt.rb'
248
+
249
+ # Offense count: 6
250
+ # This cop supports unsafe autocorrection (--autocorrect-all).
251
+ Style/IdenticalConditionalBranches:
252
+ Exclude:
253
+ - 'lib/hiera/backend/eyaml/subcommand.rb'
254
+ - 'lib/hiera/backend/eyaml/subcommands/decrypt.rb'
255
+ - 'lib/hiera/backend/eyaml/subcommands/edit.rb'
256
+
257
+ # Offense count: 3
258
+ # This cop supports safe autocorrection (--autocorrect).
259
+ Style/IfUnlessModifier:
260
+ Exclude:
261
+ - 'lib/hiera/backend/eyaml/encryptors/pkcs7.rb'
262
+ - 'lib/hiera/backend/eyaml/parser/encrypted_tokens.rb'
263
+
264
+ # Offense count: 2
265
+ # This cop supports unsafe autocorrection (--autocorrect-all).
266
+ # Configuration parameters: AllowedMethods.
267
+ # AllowedMethods: nonzero?
268
+ Style/IfWithBooleanLiteralBranches:
269
+ Exclude:
270
+ - 'lib/hiera/backend/eyaml/highlinehelper.rb'
271
+ - 'lib/hiera/backend/eyaml_backend.rb'
272
+
273
+ # Offense count: 1
274
+ Style/MultilineBlockChain:
275
+ Exclude:
276
+ - 'lib/hiera/backend/eyaml/parser/parser.rb'
277
+
278
+ # Offense count: 2
279
+ # This cop supports unsafe autocorrection (--autocorrect-all).
280
+ # Configuration parameters: EnforcedStyle.
281
+ # SupportedStyles: literals, strict
282
+ Style/MutableConstant:
283
+ Exclude:
284
+ - 'lib/hiera/backend/eyaml.rb'
285
+
286
+ # Offense count: 4
287
+ # This cop supports unsafe autocorrection (--autocorrect-all).
288
+ # Configuration parameters: EnforcedStyle, AllowedMethods, AllowedPatterns.
289
+ # SupportedStyles: predicate, comparison
290
+ Style/NumericPredicate:
291
+ Exclude:
292
+ - 'spec/**/*'
293
+ - 'lib/hiera/backend/eyaml/logginghelper.rb'
294
+ - 'lib/hiera/backend/eyaml/parser/parser.rb'
295
+ - 'lib/hiera/backend/eyaml/subcommands/edit.rb'
296
+ - 'lib/hiera/backend/eyaml/utils.rb'
297
+
298
+ # Offense count: 1
299
+ # This cop supports unsafe autocorrection (--autocorrect-all).
300
+ # Configuration parameters: EnforcedStyle.
301
+ # SupportedStyles: short, verbose
302
+ Style/PreferredHashMethods:
303
+ Exclude:
304
+ - 'lib/hiera/backend/eyaml/subcommand.rb'
305
+
306
+ # Offense count: 1
307
+ # This cop supports unsafe autocorrection (--autocorrect-all).
308
+ # Configuration parameters: Methods.
309
+ Style/RedundantArgument:
310
+ Exclude:
311
+ - 'lib/hiera/backend/eyaml/edithelper.rb'
312
+
313
+ # Offense count: 1
314
+ # This cop supports unsafe autocorrection (--autocorrect-all).
315
+ Style/RedundantFilterChain:
316
+ Exclude:
317
+ - 'lib/hiera/backend/eyaml/edithelper.rb'
318
+
319
+ # Offense count: 1
320
+ # This cop supports unsafe autocorrection (--autocorrect-all).
321
+ # Configuration parameters: AutoCorrect, AllowComments.
322
+ Style/RedundantInitialize:
323
+ Exclude:
324
+ - 'lib/hiera/backend/eyaml/parser/token.rb'
325
+
326
+ # Offense count: 6
327
+ # This cop supports unsafe autocorrection (--autocorrect-all).
328
+ Style/RedundantInterpolation:
329
+ Exclude:
330
+ - 'features/support/env.rb'
331
+ - 'lib/hiera/backend/eyaml/encrypthelper.rb'
332
+ - 'lib/hiera/backend/eyaml/subcommand.rb'
333
+ - 'lib/hiera/backend/eyaml/subcommands/edit.rb'
334
+ - 'lib/hiera/backend/eyaml/subcommands/recrypt.rb'
335
+
336
+ # Offense count: 1
337
+ # This cop supports safe autocorrection (--autocorrect).
338
+ Style/RedundantSelf:
339
+ Exclude:
340
+ - 'lib/hiera/backend/eyaml/logginghelper.rb'
341
+
342
+ # Offense count: 1
343
+ # This cop supports unsafe autocorrection (--autocorrect-all).
344
+ # Configuration parameters: ConvertCodeThatCanStartToReturnNil, AllowedMethods, MaxChainLength.
345
+ # AllowedMethods: present?, blank?, presence, try, try!
346
+ Style/SafeNavigation:
347
+ Exclude:
348
+ - 'lib/hiera/backend/eyaml/subcommand.rb'
349
+
350
+ # Offense count: 1
351
+ # This cop supports unsafe autocorrection (--autocorrect-all).
352
+ Style/SelectByRegexp:
353
+ Exclude:
354
+ - 'hiera-eyaml.gemspec'
355
+
356
+ # Offense count: 1
357
+ # This cop supports unsafe autocorrection (--autocorrect-all).
358
+ Style/SlicingWithRange:
359
+ Exclude:
360
+ - 'lib/hiera/backend/eyaml/edithelper.rb'
361
+
362
+ # Offense count: 4
363
+ # This cop supports unsafe autocorrection (--autocorrect-all).
364
+ # Configuration parameters: RequireEnglish, EnforcedStyle.
365
+ # SupportedStyles: use_perl_names, use_english_names, use_builtin_english_names
366
+ Style/SpecialGlobalVars:
367
+ Exclude:
368
+ - 'hiera-eyaml.gemspec'
369
+ - 'lib/hiera/backend/eyaml/subcommands/edit.rb'
370
+
371
+ # Offense count: 1
372
+ # This cop supports safe autocorrection (--autocorrect).
373
+ Style/StderrPuts:
374
+ Exclude:
375
+ - 'lib/hiera/backend/eyaml/logginghelper.rb'
376
+
377
+ # Offense count: 11
378
+ # This cop supports unsafe autocorrection (--autocorrect-all).
379
+ # Configuration parameters: Mode.
380
+ Style/StringConcatenation:
381
+ Exclude:
382
+ - 'features/support/env.rb'
383
+ - 'lib/hiera/backend/eyaml/edithelper.rb'
384
+ - 'lib/hiera/backend/eyaml/parser/encrypted_tokens.rb'
385
+ - 'lib/hiera/backend/eyaml/subcommand.rb'
386
+ - 'lib/hiera/backend/eyaml/subcommands/decrypt.rb'
387
+ - 'lib/hiera/backend/eyaml/subcommands/help.rb'
388
+ - 'lib/hiera/backend/eyaml/subcommands/unknown_command.rb'
389
+ - 'lib/hiera/backend/eyaml/utils.rb'
390
+
391
+ # Offense count: 9
392
+ # This cop supports unsafe autocorrection (--autocorrect-all).
393
+ # Configuration parameters: AllowMethodsWithArguments, AllowedMethods, AllowedPatterns, AllowComments.
394
+ # AllowedMethods: define_method
395
+ Style/SymbolProc:
396
+ Exclude:
397
+ - 'features/step_definitions/recrypt_steps.rb'
398
+ - 'lib/hiera/backend/eyaml/parser/parser.rb'
399
+ - 'lib/hiera/backend/eyaml/subcommands/decrypt.rb'
400
+ - 'lib/hiera/backend/eyaml/subcommands/edit.rb'
401
+ - 'lib/hiera/backend/eyaml/subcommands/encrypt.rb'
402
+ - 'lib/hiera/backend/eyaml/utils.rb'
403
+ - 'lib/hiera/backend/eyaml_backend.rb'
404
+
405
+ # Offense count: 1
406
+ # This cop supports unsafe autocorrection (--autocorrect-all).
407
+ Style/ZeroLengthPredicate:
408
+ Exclude:
409
+ - 'lib/hiera/backend/eyaml/parser/parser.rb'
410
+
411
+ # Offense count: 11
412
+ # This cop supports safe autocorrection (--autocorrect).
413
+ # Configuration parameters: AllowHeredoc, AllowURI, URISchemes, IgnoreCopDirectives, AllowedPatterns.
414
+ # URISchemes: http, https
415
+ Layout/LineLength:
416
+ Max: 194
data/CHANGELOG.md CHANGED
@@ -2,6 +2,65 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [v4.0.0](https://github.com/voxpupuli/hiera-eyaml/tree/v4.0.0) (2024-05-10)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/hiera-eyaml/compare/v3.4.0...v4.0.0)
8
+
9
+ **Breaking changes:**
10
+
11
+ - Drop support for ruby 2.6 [\#366](https://github.com/voxpupuli/hiera-eyaml/pull/366) ([cmd-ntrf](https://github.com/cmd-ntrf))
12
+ - Drop EoL Puppet 6 testing [\#358](https://github.com/voxpupuli/hiera-eyaml/pull/358) ([bastelfreak](https://github.com/bastelfreak))
13
+ - Drop Ruby 2.5 support [\#351](https://github.com/voxpupuli/hiera-eyaml/pull/351) ([bastelfreak](https://github.com/bastelfreak))
14
+
15
+ **Implemented enhancements:**
16
+
17
+ - Remove non-essential public certificate attributes [\#380](https://github.com/voxpupuli/hiera-eyaml/pull/380) ([cmd-ntrf](https://github.com/cmd-ntrf))
18
+ - Add support to encrypt with an RSA public key [\#379](https://github.com/voxpupuli/hiera-eyaml/pull/379) ([cmd-ntrf](https://github.com/cmd-ntrf))
19
+ - Add more jruby interpreter to CI [\#376](https://github.com/voxpupuli/hiera-eyaml/pull/376) ([bastelfreak](https://github.com/bastelfreak))
20
+ - CI: Allow newer aruba/cucumber versions [\#373](https://github.com/voxpupuli/hiera-eyaml/pull/373) ([bastelfreak](https://github.com/bastelfreak))
21
+ - rubocop: lint for Ruby 2.7 [\#370](https://github.com/voxpupuli/hiera-eyaml/pull/370) ([bastelfreak](https://github.com/bastelfreak))
22
+ - Load configuration file from working directory [\#356](https://github.com/voxpupuli/hiera-eyaml/pull/356) ([micmax93](https://github.com/micmax93))
23
+ - Update gems and introduce rubocop [\#353](https://github.com/voxpupuli/hiera-eyaml/pull/353) ([bastelfreak](https://github.com/bastelfreak))
24
+
25
+ **Fixed bugs:**
26
+
27
+ - CI: fix coverage reporting [\#374](https://github.com/voxpupuli/hiera-eyaml/pull/374) ([bastelfreak](https://github.com/bastelfreak))
28
+
29
+ **Merged pull requests:**
30
+
31
+ - rubocop: switch to voxpupuli-rubocop [\#372](https://github.com/voxpupuli/hiera-eyaml/pull/372) ([bastelfreak](https://github.com/bastelfreak))
32
+ - Drop Ruby 2.6 leftovers in CI config [\#369](https://github.com/voxpupuli/hiera-eyaml/pull/369) ([bastelfreak](https://github.com/bastelfreak))
33
+ - README.md: Refactor markdown, cleanup links [\#368](https://github.com/voxpupuli/hiera-eyaml/pull/368) ([bastelfreak](https://github.com/bastelfreak))
34
+ - fix: upgrade to aruba-2/cucumber-8 [\#360](https://github.com/voxpupuli/hiera-eyaml/pull/360) ([robbat2](https://github.com/robbat2))
35
+ - rubocop: autofix [\#357](https://github.com/voxpupuli/hiera-eyaml/pull/357) ([bastelfreak](https://github.com/bastelfreak))
36
+ - CI: Build gems with strictness and verbosity [\#348](https://github.com/voxpupuli/hiera-eyaml/pull/348) ([bastelfreak](https://github.com/bastelfreak))
37
+
38
+ ## [v3.4.0](https://github.com/voxpupuli/hiera-eyaml/tree/v3.4.0) (2023-05-26)
39
+
40
+ [Full Changelog](https://github.com/voxpupuli/hiera-eyaml/compare/v3.3.0...v3.4.0)
41
+
42
+ **Implemented enhancements:**
43
+
44
+ - Add Puppet 8 to CI matrix [\#349](https://github.com/voxpupuli/hiera-eyaml/pull/349) ([bastelfreak](https://github.com/bastelfreak))
45
+ - Add Ruby 3.2 support [\#340](https://github.com/voxpupuli/hiera-eyaml/pull/340) ([pschrammel](https://github.com/pschrammel))
46
+
47
+ **Fixed bugs:**
48
+
49
+ - Puppet 7: Ensure we test against 7.24 or newer [\#347](https://github.com/voxpupuli/hiera-eyaml/pull/347) ([bastelfreak](https://github.com/bastelfreak))
50
+ - Run puppet main branch on Ruby 3.1 and newer [\#346](https://github.com/voxpupuli/hiera-eyaml/pull/346) ([bastelfreak](https://github.com/bastelfreak))
51
+
52
+ **Closed issues:**
53
+
54
+ - Encrypt yaml file on my workstation and push to git [\#344](https://github.com/voxpupuli/hiera-eyaml/issues/344)
55
+ - hiera lookup arbitrary hierachy level [\#185](https://github.com/voxpupuli/hiera-eyaml/issues/185)
56
+
57
+ **Merged pull requests:**
58
+
59
+ - Apply Vox Pupuli CI best practices [\#345](https://github.com/voxpupuli/hiera-eyaml/pull/345) ([bastelfreak](https://github.com/bastelfreak))
60
+ - Add dependabot for gems and github actions [\#342](https://github.com/voxpupuli/hiera-eyaml/pull/342) ([bastelfreak](https://github.com/bastelfreak))
61
+ - CI: Ensure we use Puppet 6.29 or newer [\#341](https://github.com/voxpupuli/hiera-eyaml/pull/341) ([bastelfreak](https://github.com/bastelfreak))
62
+ - README: Add apt to installation methods [\#338](https://github.com/voxpupuli/hiera-eyaml/pull/338) ([AntoineSebert](https://github.com/AntoineSebert))
63
+
5
64
  ## [v3.3.0](https://github.com/voxpupuli/hiera-eyaml/tree/v3.3.0) (2022-05-20)
6
65
 
7
66
  [Full Changelog](https://github.com/voxpupuli/hiera-eyaml/compare/v3.2.2...v3.3.0)
data/Gemfile CHANGED
@@ -6,31 +6,30 @@ source 'https://rubygems.org/'
6
6
  # is specified as `file://some/location/on/disk`.
7
7
  def location_for(place_or_version, fake_version = nil)
8
8
  if place_or_version =~ /^(https[:@][^#]*)#(.*)/
9
- [fake_version, { :git => $1, :branch => $2, :require => false }].compact
10
- elsif place_or_version =~ /^file:\/\/(.*)/
11
- ['>= 0', { :path => File.expand_path($1), :require => false }]
9
+ [fake_version, { git: Regexp.last_match(1), branch: Regexp.last_match(2), require: false }].compact
10
+ elsif place_or_version =~ %r{^file://(.*)}
11
+ ['>= 0', { path: File.expand_path(Regexp.last_match(1)), require: false }]
12
12
  else
13
- [place_or_version, { :require => false }]
13
+ [place_or_version, { require: false }]
14
14
  end
15
15
  end
16
16
 
17
17
  gemspec
18
18
 
19
19
  group :development do
20
- gem "aruba", '~> 0.6.2'
21
- gem "cucumber", '~> 1.1'
22
- gem "rspec-expectations", '~> 3.1.0'
23
- gem "hiera-eyaml-plaintext"
20
+ gem 'activesupport'
21
+ gem 'aruba', '~> 2.2'
22
+ gem 'cucumber', '~> 9.2'
23
+ gem 'hiera-eyaml-plaintext'
24
24
  gem 'puppet', *location_for(ENV['PUPPET_VERSION']) if ENV['PUPPET_VERSION']
25
- gem 'github_changelog_generator'
26
- gem "activesupport"
27
25
  end
28
26
 
29
- group :test do
30
- gem "rake"
27
+ group :release do
28
+ gem 'faraday-retry', require: false
29
+ gem 'github_changelog_generator', require: false
31
30
  end
32
31
 
33
32
  group :coverage, optional: ENV['COVERAGE'] != 'yes' do
34
- gem 'simplecov-console', :require => false
35
- gem 'codecov', :require => false
33
+ gem 'codecov', require: false
34
+ gem 'simplecov-console', require: false
36
35
  end