pdk 2.2.0 → 2.5.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
- SHA1:
3
- metadata.gz: 8e2609c042f89068710f065fadda48fe3ae5f32b
4
- data.tar.gz: 40acaf2ef749d5e369387bf345f2ed2cb4588078
2
+ SHA256:
3
+ metadata.gz: c23783303c42e317dff08b45f859c1cca94c82415cc86e4a132539cd43439690
4
+ data.tar.gz: d012cb7736c92721abb3d8470004431f67aaa921239f7d0c69b06e87e75e1589
5
5
  SHA512:
6
- metadata.gz: 774972368cefed1e1100d3ddd3804e216cbf13fbebd5b8af63c93862972e4d2339336aa5e0b48ea7ee7b09dd176eb98f2355dc0fc7b270ac92e0e8a1c6eac271
7
- data.tar.gz: e966d37fdcf70b2a90227e3e5eebfc6a611950db8da230930a309f5d57a1a3407c4ee1fb23d1c322c7aaa7b57eaa392b48538ad48991b6de5a8a9e7e2e7550ec
6
+ metadata.gz: a1f4f77d1a1cc42d7a812871178a34ca80e50cf146bb43b09a270cbfe103fb72bf39b5c53f7c709e6351a8bec6d74f4a9a6958c55531f0d4da59659f47d41b36
7
+ data.tar.gz: edf0ffb9910f66e7bbdd48201b18c43d2576ac67342cb5c73599ac60b8b0dca078c807dbcccfc6d845d4b22f0a013b13424b4cafa8cb286abf6796290d024baa
data/CHANGELOG.md CHANGED
@@ -3,6 +3,30 @@
3
3
  All changes to this repo will be documented in this file.
4
4
  See the [release notes](https://puppet.com/docs/pdk/latest/release_notes.html) for a high-level summary.
5
5
 
6
+ ## [v2.5.0](https://github.com/puppetlabs/pdk/tree/v2.4.0) (2022-04-25)
7
+
8
+ [Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.4.0...v2.5.0)
9
+
10
+ **Merged pull requests:**
11
+
12
+ - Fixing puppet-syntax errors [#1169](https://github.com/puppetlabs/pdk/pull/1169) ([chelnak](https://github.com/chalnak))
13
+
14
+ ## [v2.4.0](https://github.com/puppetlabs/pdk/tree/v2.4.0) (2022-02-08)
15
+
16
+ [Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.3.0...v2.4.0)
17
+
18
+ **Merged pull requests:**
19
+
20
+ - Supplement `in_module_root` with check for `metadata.json` [\#1147](https://github.com/puppetlabs/pdk/pull/1154) ([da-ar](https://github.com/da-ar))
21
+
22
+ ## [v2.3.0](https://github.com/puppetlabs/pdk/tree/v2.3.0) (2021-10-21)
23
+
24
+ [Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.2.0...v2.3.0)
25
+
26
+ **Merged pull requests:**
27
+
28
+ - Account for Psych API changes [\#1147](https://github.com/puppetlabs/pdk/pull/1147) ([binford2k](https://github.com/binford2k))
29
+
6
30
  ## [v2.2.0](https://github.com/puppetlabs/pdk/tree/v2.2.0) (2021-08-02)
7
31
 
8
32
  [Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.1.1...v2.2.0)
@@ -15,6 +39,10 @@ See the [release notes](https://puppet.com/docs/pdk/latest/release_notes.html) f
15
39
 
16
40
  - \(GH-1113\) \(GH-917\) Fix forge-token handling [\#1121](https://github.com/puppetlabs/pdk/pull/1121) ([sanfrancrisko](https://github.com/sanfrancrisko))
17
41
 
42
+ **Merged pull requests:**
43
+
44
+ - \(PDK-1729\) version to 2.2.0.pre2 [\#1106](https://github.com/puppetlabs/pdk/pull/1106) ([da-ar](https://github.com/da-ar))
45
+
18
46
  ## [v2.1.1](https://github.com/puppetlabs/pdk/tree/v2.1.1) (2021-06-22)
19
47
 
20
48
  [Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.1.0...v2.1.1)
@@ -13,7 +13,11 @@ module PDK
13
13
 
14
14
  require 'yaml'
15
15
 
16
- data = ::YAML.safe_load(data, [Symbol], [], true)
16
+ data = if Gem::Version.new(Psych::VERSION) >= Gem::Version.new('3.1.0.pre1')
17
+ ::YAML.safe_load(data, permitted_classes: [Symbol], permitted_symbols: [], aliases: true)
18
+ else
19
+ ::YAML.safe_load(data, [Symbol], [], true)
20
+ end
17
21
  return if data.nil?
18
22
 
19
23
  data.each { |k, v| yield k, PDK::Config::Setting.new(k, self, v) }
data/lib/pdk/util.rb CHANGED
@@ -187,7 +187,8 @@ module PDK
187
187
  # @return [boolean] True if any folders from MODULE_FOLDERS are found in the current dir,
188
188
  # false otherwise.
189
189
  def in_module_root?(path = Dir.pwd)
190
- PDK::Util::MODULE_FOLDERS.any? { |dir| PDK::Util::Filesystem.directory?(File.join(path, dir)) }
190
+ PDK::Util::MODULE_FOLDERS.any? { |dir| PDK::Util::Filesystem.directory?(File.join(path, dir)) } ||
191
+ PDK::Util::Filesystem.file?(File.join(path, 'metadata.json'))
191
192
  end
192
193
  module_function :in_module_root?
193
194
 
data/lib/pdk/version.rb CHANGED
@@ -1,4 +1,4 @@
1
1
  module PDK
2
- VERSION = '2.2.0'.freeze
3
- TEMPLATE_REF = VERSION
2
+ VERSION = '2.5.0'.freeze
3
+ TEMPLATE_REF = '2.5.0'.freeze
4
4
  end
data/locales/pdk.pot CHANGED
@@ -1,16 +1,16 @@
1
1
  # SOME DESCRIPTIVE TITLE.
2
- # Copyright (C) 2020 Puppet, Inc.
2
+ # Copyright (C) 2022 Puppet, Inc.
3
3
  # This file is distributed under the same license as the puppet development kit package.
4
- # FIRST AUTHOR <EMAIL@ADDRESS>, 2020.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, 2022.
5
5
  #
6
6
  #, fuzzy
7
7
  msgid ""
8
8
  msgstr ""
9
- "Project-Id-Version: puppet development kit v1.17.0-43-gfcce10d\n"
9
+ "Project-Id-Version: puppet development kit v2.4.0-6-g0eec3ab\n"
10
10
  "\n"
11
11
  "Report-Msgid-Bugs-To: docs@puppet.com\n"
12
- "POT-Creation-Date: 2020-05-12 11:14-0700\n"
13
- "PO-Revision-Date: 2020-05-12 11:14-0700\n"
12
+ "POT-Creation-Date: 2022-04-25 13:04+0100\n"
13
+ "PO-Revision-Date: 2022-04-25 13:04+0100\n"
14
14
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
15
15
  "Language-Team: LANGUAGE <LL@li.org>\n"
16
16
  "Language: \n"
@@ -23,63 +23,63 @@ msgstr ""
23
23
  msgid "Unknown analytics key '%{key}'"
24
24
  msgstr ""
25
25
 
26
- #: ../lib/pdk/cli.rb:56
26
+ #: ../lib/pdk/cli.rb:59
27
27
  msgid "Support for Ruby versions older than 2.4 will be dropped in the future PDK 2.0.0 release. We recommend updating your Ruby installation to ensure that you can continue using the latest version of PDK."
28
28
  msgstr ""
29
29
 
30
- #: ../lib/pdk/cli.rb:94
30
+ #: ../lib/pdk/cli.rb:97
31
31
  msgid "Specifies the URL to the template to use when creating new modules or classes. (default: %{default_url})"
32
32
  msgstr ""
33
33
 
34
- #: ../lib/pdk/cli.rb:100
34
+ #: ../lib/pdk/cli.rb:103
35
35
  msgid "Specifies the template git branch or tag to use when creating new modules or classes."
36
36
  msgstr ""
37
37
 
38
- #: ../lib/pdk/cli.rb:104
38
+ #: ../lib/pdk/cli.rb:107
39
39
  msgid "When specified, skips interactive querying of metadata."
40
40
  msgstr ""
41
41
 
42
- #: ../lib/pdk/cli.rb:108
42
+ #: ../lib/pdk/cli.rb:111
43
43
  msgid "When specified, interactive querying of metadata will include all optional questions."
44
44
  msgstr ""
45
45
 
46
- #: ../lib/pdk/cli.rb:112
46
+ #: ../lib/pdk/cli.rb:115
47
47
  msgid "Puppet version to run tests or validations against."
48
48
  msgstr ""
49
49
 
50
- #: ../lib/pdk/cli.rb:113
50
+ #: ../lib/pdk/cli.rb:116
51
51
  msgid "Puppet Enterprise version to run tests or validations against."
52
52
  msgstr ""
53
53
 
54
- #: ../lib/pdk/cli.rb:119
54
+ #: ../lib/pdk/cli.rb:122
55
55
  msgid "When specified, PDK will validate or test against the current Puppet source from github.com. To use this option, you must have network access to https://github.com."
56
56
  msgstr ""
57
57
 
58
- #: ../lib/pdk/cli.rb:124
58
+ #: ../lib/pdk/cli.rb:127
59
59
  msgid "pdk command [options]"
60
60
  msgstr ""
61
61
 
62
- #: ../lib/pdk/cli.rb:125
62
+ #: ../lib/pdk/cli.rb:128
63
63
  msgid "Puppet Development Kit"
64
64
  msgstr ""
65
65
 
66
- #: ../lib/pdk/cli.rb:126
66
+ #: ../lib/pdk/cli.rb:129
67
67
  msgid "The shortest path to better modules."
68
68
  msgstr ""
69
69
 
70
- #: ../lib/pdk/cli.rb:129
70
+ #: ../lib/pdk/cli.rb:132
71
71
  msgid "Show version of pdk."
72
72
  msgstr ""
73
73
 
74
- #: ../lib/pdk/cli.rb:134
74
+ #: ../lib/pdk/cli.rb:137
75
75
  msgid "Show help for this command."
76
76
  msgstr ""
77
77
 
78
- #: ../lib/pdk/cli.rb:139
78
+ #: ../lib/pdk/cli.rb:142
79
79
  msgid "Specify desired output format. Valid formats are '%{available_formats}'. You may also specify a file to which the formatted output is sent, for example: '--format=junit:report.xml'. This option may be specified multiple times if each option specifies a distinct target file."
80
80
  msgstr ""
81
81
 
82
- #: ../lib/pdk/cli.rb:150
82
+ #: ../lib/pdk/cli.rb:153
83
83
  msgid "Enable debug output."
84
84
  msgstr ""
85
85
 
@@ -103,7 +103,7 @@ msgstr ""
103
103
  msgid "`pdk build` can only be run from inside a valid module with a metadata.json."
104
104
  msgstr ""
105
105
 
106
- #: ../lib/pdk/cli/build.rb:33 ../lib/pdk/cli/release.rb:59
106
+ #: ../lib/pdk/cli/build.rb:33 ../lib/pdk/cli/release.rb:60
107
107
  msgid "This module is missing the following fields in the metadata.json: %{fields}. These missing fields may affect the visibility of the module on the Forge."
108
108
  msgstr ""
109
109
 
@@ -115,15 +115,15 @@ msgstr ""
115
115
  msgid "Overwrite?"
116
116
  msgstr ""
117
117
 
118
- #: ../lib/pdk/cli/build.rb:52 ../lib/pdk/cli/build.rb:63 ../lib/pdk/cli/release.rb:79
118
+ #: ../lib/pdk/cli/build.rb:52 ../lib/pdk/cli/build.rb:63 ../lib/pdk/cli/release.rb:80
119
119
  msgid "Build cancelled; exiting."
120
120
  msgstr ""
121
121
 
122
- #: ../lib/pdk/cli/build.rb:58 ../lib/pdk/cli/release.rb:75
122
+ #: ../lib/pdk/cli/build.rb:58 ../lib/pdk/cli/release.rb:76
123
123
  msgid "This module is not compatible with PDK, so PDK can not validate or test this build. Unvalidated modules may have errors when uploading to the Forge. To make this module PDK compatible and use validate features, cancel the build and run `pdk convert`."
124
124
  msgstr ""
125
125
 
126
- #: ../lib/pdk/cli/build.rb:62 ../lib/pdk/cli/release.rb:78
126
+ #: ../lib/pdk/cli/build.rb:62 ../lib/pdk/cli/release.rb:79
127
127
  msgid "Continue build without converting?"
128
128
  msgstr ""
129
129
 
@@ -257,6 +257,19 @@ msgstr ""
257
257
  msgid "Ignoring --full-interview and continuing with --force."
258
258
  msgstr ""
259
259
 
260
+ #: ../lib/pdk/cli/env.rb:4
261
+ msgid "env"
262
+ msgstr ""
263
+
264
+ #: ../lib/pdk/cli/env.rb:5
265
+ msgid "(Experimental) Output environment variables for specific Puppet context"
266
+ msgstr ""
267
+
268
+ #: ../lib/pdk/cli/env.rb:6
269
+ msgid ""
270
+ "[experimental] Aids in setting a CLI context for a specified version of Puppet by outputting export commands for necessary environment variables.\n"
271
+ msgstr ""
272
+
260
273
  #: ../lib/pdk/cli/errors.rb:8
261
274
  msgid "An unexpected error has occurred. Try running the command again with --debug"
262
275
  msgstr ""
@@ -277,43 +290,43 @@ msgstr ""
277
290
  msgid "Using '%{vendored_bin}' from PDK package."
278
291
  msgstr ""
279
292
 
280
- #: ../lib/pdk/cli/exec/command.rb:50
293
+ #: ../lib/pdk/cli/exec/command.rb:60
281
294
  msgid "Expected execution context to be :system or :module but got '%{context}'."
282
295
  msgstr ""
283
296
 
284
- #: ../lib/pdk/cli/exec/command.rb:101 ../lib/pdk/cli/exec/interactive_command.rb:46
297
+ #: ../lib/pdk/cli/exec/command.rb:111 ../lib/pdk/cli/exec/interactive_command.rb:46
285
298
  msgid "Current working directory is not part of a module. (No metadata.json was found.)"
286
299
  msgstr ""
287
300
 
288
- #: ../lib/pdk/cli/exec/command.rb:128
301
+ #: ../lib/pdk/cli/exec/command.rb:138
289
302
  msgid "STDOUT: %{output}"
290
303
  msgstr ""
291
304
 
292
- #: ../lib/pdk/cli/exec/command.rb:131
305
+ #: ../lib/pdk/cli/exec/command.rb:141
293
306
  msgid "STDERR: %{output}"
294
307
  msgstr ""
295
308
 
296
- #: ../lib/pdk/cli/exec/command.rb:145
309
+ #: ../lib/pdk/cli/exec/command.rb:155
297
310
  msgid "PUPPET_GEM_VERSION is not supported by PDK. Use the --puppet-version option on your PDK command or set the PDK_PUPPET_VERSION environment variable instead"
298
311
  msgstr ""
299
312
 
300
- #: ../lib/pdk/cli/exec/command.rb:154
313
+ #: ../lib/pdk/cli/exec/command.rb:164
301
314
  msgid "%{varname} is not supported by PDK."
302
315
  msgstr ""
303
316
 
304
- #: ../lib/pdk/cli/exec/command.rb:225
317
+ #: ../lib/pdk/cli/exec/command.rb:235
305
318
  msgid "Executing '%{command}'"
306
319
  msgstr ""
307
320
 
308
- #: ../lib/pdk/cli/exec/command.rb:228 ../lib/pdk/cli/exec/interactive_command.rb:78
321
+ #: ../lib/pdk/cli/exec/command.rb:238 ../lib/pdk/cli/exec/interactive_command.rb:78
309
322
  msgid "Command environment:"
310
323
  msgstr ""
311
324
 
312
- #: ../lib/pdk/cli/exec/command.rb:239
325
+ #: ../lib/pdk/cli/exec/command.rb:249
313
326
  msgid "Failed to execute '%{command}': %{message}"
314
327
  msgstr ""
315
328
 
316
- #: ../lib/pdk/cli/exec/command.rb:255
329
+ #: ../lib/pdk/cli/exec/command.rb:265
317
330
  msgid "Execution of '%{command}' complete (duration: %{duration_in_seconds}s; exit code: %{exit_code})"
318
331
  msgstr ""
319
332
 
@@ -435,6 +448,34 @@ msgstr ""
435
448
  msgid "'%{name}' is not a valid defined type name"
436
449
  msgstr ""
437
450
 
451
+ #: ../lib/pdk/cli/new/fact.rb:4
452
+ msgid "fact [options] <name>"
453
+ msgstr ""
454
+
455
+ #: ../lib/pdk/cli/new/fact.rb:5
456
+ msgid "Create a new custom fact named <name> using given options"
457
+ msgstr ""
458
+
459
+ #: ../lib/pdk/cli/new/fact.rb:18
460
+ msgid "'%{name}' is not a valid fact name"
461
+ msgstr ""
462
+
463
+ #: ../lib/pdk/cli/new/function.rb:4
464
+ msgid "function [options] <name>"
465
+ msgstr ""
466
+
467
+ #: ../lib/pdk/cli/new/function.rb:5
468
+ msgid "Create a new function named <name> using given options"
469
+ msgstr ""
470
+
471
+ #: ../lib/pdk/cli/new/function.rb:6
472
+ msgid "The function type, (native or v4)"
473
+ msgstr ""
474
+
475
+ #: ../lib/pdk/cli/new/function.rb:19
476
+ msgid "'%{name}' is not a valid function name"
477
+ msgstr ""
478
+
438
479
  #: ../lib/pdk/cli/new/module.rb:4
439
480
  msgid "module [options] [module_name] [target_dir]"
440
481
  msgstr ""
@@ -567,67 +608,67 @@ msgstr ""
567
608
  msgid "Set forge upload url path."
568
609
  msgstr ""
569
610
 
570
- #: ../lib/pdk/cli/release.rb:25 ../lib/pdk/cli/release/publish.rb:14
611
+ #: ../lib/pdk/cli/release.rb:25
571
612
  msgid "Set Forge API token."
572
613
  msgstr ""
573
614
 
574
- #: ../lib/pdk/cli/release.rb:27 ../lib/pdk/cli/release/prep.rb:15
615
+ #: ../lib/pdk/cli/release.rb:28 ../lib/pdk/cli/release/prep.rb:15
575
616
  msgid "Update the module to the specified version prior to release. When not specified, the new version will be computed from the Changelog where possible."
576
617
  msgstr ""
577
618
 
578
- #: ../lib/pdk/cli/release.rb:30
619
+ #: ../lib/pdk/cli/release.rb:31
579
620
  msgid "Path to the built module to push to the Forge. This option can only be used when --skip-build is also used. Defaults to pkg/<module version>.tar.gz"
580
621
  msgstr ""
581
622
 
582
- #: ../lib/pdk/cli/release.rb:36
623
+ #: ../lib/pdk/cli/release.rb:37
583
624
  msgid "`pdk release` can only be run from inside a valid module with a metadata.json."
584
625
  msgstr ""
585
626
 
586
- #: ../lib/pdk/cli/release.rb:73
627
+ #: ../lib/pdk/cli/release.rb:74
587
628
  msgid "This module is not compatible with PDK, so PDK can not validate or test this build."
588
629
  msgstr ""
589
630
 
590
- #: ../lib/pdk/cli/release.rb:98
631
+ #: ../lib/pdk/cli/release.rb:99
591
632
  msgid "Do you want to run the module validation ?"
592
633
  msgstr ""
593
634
 
594
- #: ../lib/pdk/cli/release.rb:105
635
+ #: ../lib/pdk/cli/release.rb:106
595
636
  msgid "Do you want to run the automatic changelog generation ?"
596
637
  msgstr ""
597
638
 
598
- #: ../lib/pdk/cli/release.rb:112
639
+ #: ../lib/pdk/cli/release.rb:113
599
640
  msgid "Do you want to set the module version ?"
600
641
  msgstr ""
601
642
 
602
- #: ../lib/pdk/cli/release.rb:119
643
+ #: ../lib/pdk/cli/release.rb:120
603
644
  msgid "Do you want to run the dependency-checker on this module?"
604
645
  msgstr ""
605
646
 
606
- #: ../lib/pdk/cli/release.rb:126
647
+ #: ../lib/pdk/cli/release.rb:127
607
648
  msgid "Do you want to update the documentation for this module?"
608
649
  msgstr ""
609
650
 
610
- #: ../lib/pdk/cli/release.rb:133
651
+ #: ../lib/pdk/cli/release.rb:134
611
652
  msgid "Do you want to publish the module on the Puppet Forge?"
612
653
  msgstr ""
613
654
 
614
- #: ../lib/pdk/cli/release.rb:160
655
+ #: ../lib/pdk/cli/release.rb:162
615
656
  msgid "Please set the module version"
616
657
  msgstr ""
617
658
 
618
- #: ../lib/pdk/cli/release.rb:161
659
+ #: ../lib/pdk/cli/release.rb:163
619
660
  msgid "This value is the version that will be used in the changelog generator and building of the module."
620
661
  msgstr ""
621
662
 
622
- #: ../lib/pdk/cli/release.rb:164
663
+ #: ../lib/pdk/cli/release.rb:166
623
664
  msgid "The version format should be in the format x.y.z where x represents the major version, y the minor version and z the build number."
624
665
  msgstr ""
625
666
 
626
- #: ../lib/pdk/cli/release.rb:178
667
+ #: ../lib/pdk/cli/release.rb:180
627
668
  msgid "Please set the api key(authorization token) to upload on the Puppet Forge"
628
669
  msgstr ""
629
670
 
630
- #: ../lib/pdk/cli/release.rb:179
671
+ #: ../lib/pdk/cli/release.rb:181
631
672
  msgid "This value is used for authentication on the Puppet Forge to upload your module tarball."
632
673
  msgstr ""
633
674
 
@@ -659,6 +700,14 @@ msgstr ""
659
700
  msgid "Publish the module automatically, with no prompts."
660
701
  msgstr ""
661
702
 
703
+ #: ../lib/pdk/cli/release/publish.rb:14
704
+ msgid "Set Forge API token (you may also set via environment variable PDK_FORGE_TOKEN)"
705
+ msgstr ""
706
+
707
+ #: ../lib/pdk/cli/release/publish.rb:33
708
+ msgid "You must supply a Forge API token either via `--forge-token` option or PDK_FORGE_TOKEN environment variable."
709
+ msgstr ""
710
+
662
711
  #: ../lib/pdk/cli/remove.rb:4
663
712
  msgid "remove [subcommand] [options]"
664
713
  msgstr ""
@@ -939,7 +988,7 @@ msgstr ""
939
988
  msgid "'%{name}' is not a valid report format (%{valid})"
940
989
  msgstr ""
941
990
 
942
- #: ../lib/pdk/cli/util/option_validator.rb:16
991
+ #: ../lib/pdk/cli/util/option_validator.rb:21
943
992
  msgid "Error: the following values are invalid: %{invalid_entries}"
944
993
  msgstr ""
945
994
 
@@ -988,60 +1037,60 @@ msgstr ""
988
1037
  msgid "Running all available validators..."
989
1038
  msgstr ""
990
1039
 
991
- #: ../lib/pdk/config.rb:140
1040
+ #: ../lib/pdk/config.rb:146
992
1041
  msgid "Expected an Array but got '%{klass}' for scopes"
993
1042
  msgstr ""
994
1043
 
995
- #: ../lib/pdk/config.rb:141
1044
+ #: ../lib/pdk/config.rb:147
996
1045
  msgid "Expected an Array or String but got '%{klass}' for setting_name"
997
1046
  msgstr ""
998
1047
 
999
- #: ../lib/pdk/config.rb:161 ../lib/pdk/config/setting.rb:113
1048
+ #: ../lib/pdk/config.rb:167 ../lib/pdk/config/setting.rb:113
1000
1049
  msgid "must be passed a block"
1001
1050
  msgstr ""
1002
1051
 
1003
- #: ../lib/pdk/config.rb:180
1052
+ #: ../lib/pdk/config.rb:186
1004
1053
  msgid "Invalid configuration names"
1005
1054
  msgstr ""
1006
1055
 
1007
- #: ../lib/pdk/config.rb:182
1056
+ #: ../lib/pdk/config.rb:188
1008
1057
  msgid "Unknown configuration root '%{name}'"
1009
1058
  msgstr ""
1010
1059
 
1011
- #: ../lib/pdk/config.rb:190
1060
+ #: ../lib/pdk/config.rb:196
1012
1061
  msgid "Unable to load %{file}: %{message}"
1013
1062
  msgstr ""
1014
1063
 
1015
- #: ../lib/pdk/config.rb:231
1064
+ #: ../lib/pdk/config.rb:237
1016
1065
  msgid ""
1017
1066
  "PDK collects anonymous usage information to help us understand how it is being used and make decisions on how to improve it. You can find out more about what data we collect and how it is used in the PDK documentation at %{url}.\n"
1018
1067
  msgstr ""
1019
1068
 
1020
- #: ../lib/pdk/config.rb:237
1069
+ #: ../lib/pdk/config.rb:243
1021
1070
  msgid "You can opt in or out of the usage data collection at any time by editing the analytics configuration file at %{path} and changing the '%{key}' value."
1022
1071
  msgstr ""
1023
1072
 
1024
- #: ../lib/pdk/config.rb:249
1073
+ #: ../lib/pdk/config.rb:255
1025
1074
  msgid "Do you consent to the collection of anonymous PDK usage information?"
1026
1075
  msgstr ""
1027
1076
 
1028
- #: ../lib/pdk/config.rb:263
1077
+ #: ../lib/pdk/config.rb:269
1029
1078
  msgid "No answer given, opting out of analytics collection."
1030
1079
  msgstr ""
1031
1080
 
1032
- #: ../lib/pdk/config.rb:301
1081
+ #: ../lib/pdk/config.rb:307
1033
1082
  msgid "Expected a String but got '%{klass}'"
1034
1083
  msgstr ""
1035
1084
 
1036
- #: ../lib/pdk/config.rb:325
1085
+ #: ../lib/pdk/config.rb:331
1037
1086
  msgid "Missing or invalid namespace"
1038
1087
  msgstr ""
1039
1088
 
1040
- #: ../lib/pdk/config.rb:326
1089
+ #: ../lib/pdk/config.rb:332
1041
1090
  msgid "Missing a name to set"
1042
1091
  msgstr ""
1043
1092
 
1044
- #: ../lib/pdk/config.rb:377
1093
+ #: ../lib/pdk/config.rb:383
1045
1094
  msgid "Unable to set '%{key}' to '%{value}' as it is not a Hash"
1046
1095
  msgstr ""
1047
1096
 
@@ -1105,11 +1154,11 @@ msgstr ""
1105
1154
  msgid "must be a version 4 UUID"
1106
1155
  msgstr ""
1107
1156
 
1108
- #: ../lib/pdk/config/yaml.rb:21 ../lib/pdk/config/yaml_with_schema.rb:39
1157
+ #: ../lib/pdk/config/yaml.rb:25 ../lib/pdk/config/yaml_with_schema.rb:39
1109
1158
  msgid "Syntax error when loading %{file}: %{error}"
1110
1159
  msgstr ""
1111
1160
 
1112
- #: ../lib/pdk/config/yaml.rb:26 ../lib/pdk/config/yaml_with_schema.rb:44
1161
+ #: ../lib/pdk/config/yaml.rb:30 ../lib/pdk/config/yaml_with_schema.rb:44
1113
1162
  msgid "Unsupported class in %{file}: %{error}"
1114
1163
  msgstr ""
1115
1164
 
@@ -1321,46 +1370,6 @@ msgstr ""
1321
1370
  msgid "Unable to find the %{type} template in %{url}."
1322
1371
  msgstr ""
1323
1372
 
1324
- #: ../lib/pdk/generate/resource_api_object.rb:20
1325
- msgid ".sync.yml not found"
1326
- msgstr ""
1327
-
1328
- #: ../lib/pdk/generate/resource_api_object.rb:24
1329
- msgid ".sync.yml contents is not a Hash"
1330
- msgstr ""
1331
-
1332
- #: ../lib/pdk/generate/resource_api_object.rb:26
1333
- msgid "Gemfile configuration not found"
1334
- msgstr ""
1335
-
1336
- #: ../lib/pdk/generate/resource_api_object.rb:28
1337
- msgid "Gemfile.optional configuration not found"
1338
- msgstr ""
1339
-
1340
- #: ../lib/pdk/generate/resource_api_object.rb:30
1341
- msgid "Gemfile.optional.:development configuration not found"
1342
- msgstr ""
1343
-
1344
- #: ../lib/pdk/generate/resource_api_object.rb:32
1345
- msgid "puppet-resource_api not found in the Gemfile config"
1346
- msgstr ""
1347
-
1348
- #: ../lib/pdk/generate/resource_api_object.rb:34
1349
- msgid "spec/spec_helper.rb configuration not found"
1350
- msgstr ""
1351
-
1352
- #: ../lib/pdk/generate/resource_api_object.rb:36
1353
- msgid "spec/spec_helper.rb.mock_with configuration not found"
1354
- msgstr ""
1355
-
1356
- #: ../lib/pdk/generate/resource_api_object.rb:38
1357
- msgid "spec/spec_helper.rb.mock_with not set to ':rspec'"
1358
- msgstr ""
1359
-
1360
- #: ../lib/pdk/generate/resource_api_object.rb:46
1361
- msgid "%{error}: Creating a %{thing_name} needs some local configuration in your module. Please follow the docs at https://puppet.com/docs/puppet/latest/create_types_and_providers_resource_api.html"
1362
- msgstr ""
1363
-
1364
1373
  #: ../lib/pdk/generate/task.rb:31
1365
1374
  msgid "A task named '%{name}' already exists in this module; defined in %{file}"
1366
1375
  msgstr ""
@@ -1405,83 +1414,83 @@ msgstr ""
1405
1414
  msgid "No test changes required."
1406
1415
  msgstr ""
1407
1416
 
1408
- #: ../lib/pdk/module/convert.rb:156
1417
+ #: ../lib/pdk/module/convert.rb:158
1409
1418
  msgid "skipping '%{path}'"
1410
1419
  msgstr ""
1411
1420
 
1412
- #: ../lib/pdk/module/convert.rb:195
1421
+ #: ../lib/pdk/module/convert.rb:197
1413
1422
  msgid "Unable to update module metadata; %{path} exists but it is not readable."
1414
1423
  msgstr ""
1415
1424
 
1416
- #: ../lib/pdk/module/convert.rb:211
1425
+ #: ../lib/pdk/module/convert.rb:213
1417
1426
  msgid "Unable to update module metadata; %{path} exists but it is not a file."
1418
1427
  msgstr ""
1419
1428
 
1420
- #: ../lib/pdk/module/convert.rb:256 ../lib/pdk/module/convert.rb:261 ../lib/pdk/module/convert.rb:267
1429
+ #: ../lib/pdk/module/convert.rb:258 ../lib/pdk/module/convert.rb:263 ../lib/pdk/module/convert.rb:269
1421
1430
  msgid ""
1422
1431
  "\n"
1423
1432
  "%{banner}"
1424
1433
  msgstr ""
1425
1434
 
1426
- #: ../lib/pdk/module/convert.rb:269
1435
+ #: ../lib/pdk/module/convert.rb:271
1427
1436
  msgid ""
1428
1437
  "\n"
1429
1438
  "%{summary}\n"
1430
1439
  "\n"
1431
1440
  msgstr ""
1432
1441
 
1433
- #: ../lib/pdk/module/convert.rb:278
1442
+ #: ../lib/pdk/module/convert.rb:280
1434
1443
  msgid ""
1435
1444
  "\n"
1436
1445
  "You can find a report of differences in %{path}.\n"
1437
1446
  "\n"
1438
1447
  msgstr ""
1439
1448
 
1440
- #: ../lib/pdk/module/metadata.rb:91
1449
+ #: ../lib/pdk/module/metadata.rb:95
1441
1450
  msgid "Cannot read metadata from file: no path to file was given."
1442
1451
  msgstr ""
1443
1452
 
1444
- #: ../lib/pdk/module/metadata.rb:95
1453
+ #: ../lib/pdk/module/metadata.rb:99
1445
1454
  msgid "'%{file}' does not exist or is not a file."
1446
1455
  msgstr ""
1447
1456
 
1448
- #: ../lib/pdk/module/metadata.rb:99
1457
+ #: ../lib/pdk/module/metadata.rb:103
1449
1458
  msgid "Unable to open '%{file}' for reading."
1450
1459
  msgstr ""
1451
1460
 
1452
- #: ../lib/pdk/module/metadata.rb:106
1461
+ #: ../lib/pdk/module/metadata.rb:110
1453
1462
  msgid "Invalid JSON in metadata.json: %{msg}"
1454
1463
  msgstr ""
1455
1464
 
1456
- #: ../lib/pdk/module/metadata.rb:143
1465
+ #: ../lib/pdk/module/metadata.rb:147
1457
1466
  msgid "Module metadata does not contain any requirements."
1458
1467
  msgstr ""
1459
1468
 
1460
- #: ../lib/pdk/module/metadata.rb:144
1469
+ #: ../lib/pdk/module/metadata.rb:148
1461
1470
  msgid "Module metadata does not contain a \"puppet\" requirement."
1462
1471
  msgstr ""
1463
1472
 
1464
- #: ../lib/pdk/module/metadata.rb:145
1473
+ #: ../lib/pdk/module/metadata.rb:149
1465
1474
  msgid "The \"puppet\" requirement in module metadata does not specify a \"version_requirement\"."
1466
1475
  msgstr ""
1467
1476
 
1468
- #: ../lib/pdk/module/metadata.rb:185
1477
+ #: ../lib/pdk/module/metadata.rb:189
1469
1478
  msgid "Field must be a dash-separated user name and module name."
1470
1479
  msgstr ""
1471
1480
 
1472
- #: ../lib/pdk/module/metadata.rb:187
1481
+ #: ../lib/pdk/module/metadata.rb:191
1473
1482
  msgid "Module name must contain only alphanumeric or underscore characters."
1474
1483
  msgstr ""
1475
1484
 
1476
- #: ../lib/pdk/module/metadata.rb:189
1485
+ #: ../lib/pdk/module/metadata.rb:193
1477
1486
  msgid "Module name must begin with a letter."
1478
1487
  msgstr ""
1479
1488
 
1480
- #: ../lib/pdk/module/metadata.rb:191
1489
+ #: ../lib/pdk/module/metadata.rb:195
1481
1490
  msgid "Namespace must contain only alphanumeric characters."
1482
1491
  msgstr ""
1483
1492
 
1484
- #: ../lib/pdk/module/metadata.rb:194
1493
+ #: ../lib/pdk/module/metadata.rb:198
1485
1494
  msgid "Invalid 'name' field in metadata.json: %{err}"
1486
1495
  msgstr ""
1487
1496
 
@@ -1513,47 +1522,51 @@ msgstr ""
1513
1522
  msgid "Updating version to %{module_version}"
1514
1523
  msgstr ""
1515
1524
 
1516
- #: ../lib/pdk/module/release.rb:115
1525
+ #: ../lib/pdk/module/release.rb:72
1526
+ msgid "%{new_version} does not match %{latest_version}"
1527
+ msgstr ""
1528
+
1529
+ #: ../lib/pdk/module/release.rb:121
1517
1530
  msgid "An error occured during validation"
1518
1531
  msgstr ""
1519
1532
 
1520
- #: ../lib/pdk/module/release.rb:119
1533
+ #: ../lib/pdk/module/release.rb:125
1521
1534
  msgid "Updating documentation using puppet strings"
1522
1535
  msgstr ""
1523
1536
 
1524
- #: ../lib/pdk/module/release.rb:123
1537
+ #: ../lib/pdk/module/release.rb:129
1525
1538
  msgid "An error occured generating the module documentation: %{stdout}"
1526
1539
  msgstr ""
1527
1540
 
1528
- #: ../lib/pdk/module/release.rb:128
1541
+ #: ../lib/pdk/module/release.rb:134
1529
1542
  msgid "Running dependency checks"
1530
1543
  msgstr ""
1531
1544
 
1532
- #: ../lib/pdk/module/release.rb:134
1545
+ #: ../lib/pdk/module/release.rb:140
1533
1546
  msgid "An error occured checking the module dependencies: %{stdout}"
1534
1547
  msgstr ""
1535
1548
 
1536
- #: ../lib/pdk/module/release.rb:144
1549
+ #: ../lib/pdk/module/release.rb:150
1537
1550
  msgid "Module tarball %{tarball_path} does not exist"
1538
1551
  msgstr ""
1539
1552
 
1540
- #: ../lib/pdk/module/release.rb:150
1553
+ #: ../lib/pdk/module/release.rb:156
1541
1554
  msgid "Uploading tarball to puppet forge..."
1542
1555
  msgstr ""
1543
1556
 
1544
- #: ../lib/pdk/module/release.rb:166
1557
+ #: ../lib/pdk/module/release.rb:172
1545
1558
  msgid "Error uploading to Puppet Forge: %{result}"
1546
1559
  msgstr ""
1547
1560
 
1548
- #: ../lib/pdk/module/release.rb:167
1561
+ #: ../lib/pdk/module/release.rb:173
1549
1562
  msgid "Publish to Forge was successful"
1550
1563
  msgstr ""
1551
1564
 
1552
- #: ../lib/pdk/module/release.rb:172
1565
+ #: ../lib/pdk/module/release.rb:178
1553
1566
  msgid "Missing forge-upload-url option"
1554
1567
  msgstr ""
1555
1568
 
1556
- #: ../lib/pdk/module/release.rb:173
1569
+ #: ../lib/pdk/module/release.rb:179
1557
1570
  msgid "Missing forge-token option"
1558
1571
  msgstr ""
1559
1572
 
@@ -1593,47 +1606,47 @@ msgstr ""
1593
1606
  msgid "You do not have permission to write to '%{path}'"
1594
1607
  msgstr ""
1595
1608
 
1596
- #: ../lib/pdk/report/event.rb:192
1609
+ #: ../lib/pdk/report/event.rb:198
1597
1610
  msgid "File not specified."
1598
1611
  msgstr ""
1599
1612
 
1600
- #: ../lib/pdk/report/event.rb:196
1613
+ #: ../lib/pdk/report/event.rb:202
1601
1614
  msgid "File must be a String."
1602
1615
  msgstr ""
1603
1616
 
1604
- #: ../lib/pdk/report/event.rb:232
1617
+ #: ../lib/pdk/report/event.rb:238
1605
1618
  msgid "State not specified."
1606
1619
  msgstr ""
1607
1620
 
1608
- #: ../lib/pdk/report/event.rb:237
1621
+ #: ../lib/pdk/report/event.rb:243
1609
1622
  msgid "State must be a Symbol, not %{type}"
1610
1623
  msgstr ""
1611
1624
 
1612
- #: ../lib/pdk/report/event.rb:242
1625
+ #: ../lib/pdk/report/event.rb:248
1613
1626
  msgid "Invalid state %{state}. Valid states are: %{valid}."
1614
1627
  msgstr ""
1615
1628
 
1616
- #: ../lib/pdk/report/event.rb:261
1629
+ #: ../lib/pdk/report/event.rb:267
1617
1630
  msgid "Source not specified."
1618
1631
  msgstr ""
1619
1632
 
1620
- #: ../lib/pdk/report/event.rb:282
1633
+ #: ../lib/pdk/report/event.rb:288
1621
1634
  msgid "Line must be an Integer or a String representation of an Integer."
1622
1635
  msgstr ""
1623
1636
 
1624
- #: ../lib/pdk/report/event.rb:286
1637
+ #: ../lib/pdk/report/event.rb:292
1625
1638
  msgid "The line number can contain only the digits 0-9."
1626
1639
  msgstr ""
1627
1640
 
1628
- #: ../lib/pdk/report/event.rb:307
1641
+ #: ../lib/pdk/report/event.rb:313
1629
1642
  msgid "Column must be an Integer or a String representation of an Integer."
1630
1643
  msgstr ""
1631
1644
 
1632
- #: ../lib/pdk/report/event.rb:311
1645
+ #: ../lib/pdk/report/event.rb:317
1633
1646
  msgid "The column number can contain only the digits 0-9."
1634
1647
  msgstr ""
1635
1648
 
1636
- #: ../lib/pdk/report/event.rb:329
1649
+ #: ../lib/pdk/report/event.rb:335
1637
1650
  msgid "Trace must be an Array of stack trace lines."
1638
1651
  msgstr ""
1639
1652
 
@@ -1712,11 +1725,11 @@ msgid "Failed to prepare to run the unit tests."
1712
1725
  msgstr ""
1713
1726
 
1714
1727
  #: ../lib/pdk/tests/unit.rb:100
1715
- msgid "Running unit tests in parallel."
1728
+ msgid "Running unit tests."
1716
1729
  msgstr ""
1717
1730
 
1718
1731
  #: ../lib/pdk/tests/unit.rb:100
1719
- msgid "Running unit tests."
1732
+ msgid "Running unit tests in parallel."
1720
1733
  msgstr ""
1721
1734
 
1722
1735
  #: ../lib/pdk/tests/unit.rb:125
@@ -1727,15 +1740,15 @@ msgstr ""
1727
1740
  msgid "Evaluated %{total} tests in %{duration} seconds: %{failures} failures, %{pending} pending."
1728
1741
  msgstr ""
1729
1742
 
1730
- #: ../lib/pdk/tests/unit.rb:231
1743
+ #: ../lib/pdk/tests/unit.rb:233
1731
1744
  msgid "Finding unit tests."
1732
1745
  msgstr ""
1733
1746
 
1734
- #: ../lib/pdk/tests/unit.rb:234
1747
+ #: ../lib/pdk/tests/unit.rb:236
1735
1748
  msgid "Failed to find valid JSON in output from rspec: %{output}"
1736
1749
  msgstr ""
1737
1750
 
1738
- #: ../lib/pdk/tests/unit.rb:239
1751
+ #: ../lib/pdk/tests/unit.rb:241
1739
1752
  msgid "Unable to enumerate examples. rspec reported: %{message}"
1740
1753
  msgstr ""
1741
1754
 
@@ -1805,23 +1818,23 @@ msgstr ""
1805
1818
  msgid "Unable to install requested binstubs."
1806
1819
  msgstr ""
1807
1820
 
1808
- #: ../lib/pdk/util/changelog_generator.rb:15
1809
- msgid "Unable to generate the changelog as the %{gem} gem is not installed"
1821
+ #: ../lib/pdk/util/changelog_generator.rb:19
1822
+ msgid "Unable to generate the changelog as the %{gem} gem is not included in this module's Gemfile"
1810
1823
  msgstr ""
1811
1824
 
1812
- #: ../lib/pdk/util/changelog_generator.rb:30
1825
+ #: ../lib/pdk/util/changelog_generator.rb:34
1813
1826
  msgid "Error generating changelog: %{stdout}"
1814
1827
  msgstr ""
1815
1828
 
1816
- #: ../lib/pdk/util/changelog_generator.rb:34
1829
+ #: ../lib/pdk/util/changelog_generator.rb:38
1817
1830
  msgid "The generated changelog contains uncategorized Pull Requests. Please label them and try again. See %{changelog_file} for more details"
1818
1831
  msgstr ""
1819
1832
 
1820
- #: ../lib/pdk/util/changelog_generator.rb:43
1833
+ #: ../lib/pdk/util/changelog_generator.rb:47
1821
1834
  msgid "Invalid version string %{version}"
1822
1835
  msgstr ""
1823
1836
 
1824
- #: ../lib/pdk/util/changelog_generator.rb:45
1837
+ #: ../lib/pdk/util/changelog_generator.rb:49
1825
1838
  msgid "Determing the target version from '%{file}'"
1826
1839
  msgstr ""
1827
1840
 
@@ -1945,11 +1958,11 @@ msgstr ""
1945
1958
  msgid "%{file_name} was not found in the cache, downloading it from %{url}."
1946
1959
  msgstr ""
1947
1960
 
1948
- #: ../lib/pdk/util/vendored_file.rb:65
1961
+ #: ../lib/pdk/util/vendored_file.rb:64
1949
1962
  msgid "Unable to download %{url}. %{code}: %{message}."
1950
1963
  msgstr ""
1951
1964
 
1952
- #: ../lib/pdk/util/vendored_file.rb:74
1965
+ #: ../lib/pdk/util/vendored_file.rb:73
1953
1966
  msgid "Unable to download %{url}. Check internet connectivity and try again. %{error}"
1954
1967
  msgstr ""
1955
1968
 
@@ -2009,23 +2022,27 @@ msgstr ""
2009
2022
  msgid "environment_timeout is set to '%{timeout}' but should be 0, 'unlimited' or not set."
2010
2023
  msgstr ""
2011
2024
 
2012
- #: ../lib/pdk/validate/invokable_validator.rb:119
2025
+ #: ../lib/pdk/validate/invokable_validator.rb:90
2026
+ msgid "Validator '%{validator}' skipped for '%{target}'. No files matching '%{pattern}' found to validate."
2027
+ msgstr ""
2028
+
2029
+ #: ../lib/pdk/validate/invokable_validator.rb:124
2013
2030
  msgid "Running %{name} validator ..."
2014
2031
  msgstr ""
2015
2032
 
2016
- #: ../lib/pdk/validate/invokable_validator.rb:136
2033
+ #: ../lib/pdk/validate/invokable_validator.rb:141
2017
2034
  msgid "%{validator}: Skipped '%{target}'. Target does not contain any files to validate (%{pattern})."
2018
2035
  msgstr ""
2019
2036
 
2020
- #: ../lib/pdk/validate/invokable_validator.rb:140
2037
+ #: ../lib/pdk/validate/invokable_validator.rb:145
2021
2038
  msgid "Target does not contain any files to validate (%{pattern})."
2022
2039
  msgstr ""
2023
2040
 
2024
- #: ../lib/pdk/validate/invokable_validator.rb:152
2041
+ #: ../lib/pdk/validate/invokable_validator.rb:157
2025
2042
  msgid "%{validator}: Skipped '%{target}'. Target file not found."
2026
2043
  msgstr ""
2027
2044
 
2028
- #: ../lib/pdk/validate/invokable_validator.rb:156
2045
+ #: ../lib/pdk/validate/invokable_validator.rb:161
2029
2046
  msgid "File does not exist."
2030
2047
  msgstr ""
2031
2048
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pdk
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Puppet, Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-08-02 00:00:00.000000000 Z
11
+ date: 2022-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -146,14 +146,14 @@ dependencies:
146
146
  requirements:
147
147
  - - "~>"
148
148
  - !ruby/object:Gem::Version
149
- version: 2.1.0
149
+ version: 2.5.1
150
150
  type: :runtime
151
151
  prerelease: false
152
152
  version_requirements: !ruby/object:Gem::Requirement
153
153
  requirements:
154
154
  - - "~>"
155
155
  - !ruby/object:Gem::Version
156
- version: 2.1.0
156
+ version: 2.5.1
157
157
  - !ruby/object:Gem::Dependency
158
158
  name: minitar
159
159
  requirement: !ruby/object:Gem::Requirement
@@ -443,7 +443,6 @@ files:
443
443
  - lib/pdk/validate/yaml/yaml_syntax_validator.rb
444
444
  - lib/pdk/validate/yaml/yaml_validator_group.rb
445
445
  - lib/pdk/version.rb
446
- - lib/pdk/version.rb.orig
447
446
  - locales/config.yaml
448
447
  - locales/pdk.pot
449
448
  homepage: https://github.com/puppetlabs/pdk
@@ -464,8 +463,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
464
463
  - !ruby/object:Gem::Version
465
464
  version: '0'
466
465
  requirements: []
467
- rubyforge_project:
468
- rubygems_version: 2.6.14.4
466
+ rubygems_version: 3.1.6
469
467
  signing_key:
470
468
  specification_version: 4
471
469
  summary: A key part of the Puppet Development Kit, the shortest path to better modules
@@ -1,9 +0,0 @@
1
- module PDK
2
- <<<<<<< HEAD
3
- VERSION = '2.2.0.pre2'.freeze
4
- TEMPLATE_REF = '2.1.1'.freeze
5
- =======
6
- VERSION = '2.2.0'.freeze
7
- TEMPLATE_REF = VERSION
8
- >>>>>>> 8ef8eb2 ((MAINT) Release prep for 2.2.0)
9
- end