hiera-eyaml-rsa 1.0.0 → 1.1.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: 6c034e4142eb2e3068700c28561040a572c4250d8bf79486a20ab1e21ad6892e
4
- data.tar.gz: a4c647632e2bf247bc7b02b70ffe4845082a8dfceb31b85f01a3e9c3d4b0d632
3
+ metadata.gz: 7fcfa6d774949d5accf992ce331c5a94e2e8e02864ebae5d1052a8320090d0ee
4
+ data.tar.gz: c33609029773d2c7bef9b1177557d8c6fb31697614593e866c3eeac1e799a72a
5
5
  SHA512:
6
- metadata.gz: c8c7351c8b4703d75ce0383652c2f1262ead291eb9db673976ffbfac842168fc882570fc95c9f7ea29992f48bfa09368039e71714ede1f399a3be18d14d8d368
7
- data.tar.gz: 51d6921b1384f03cef341bb643129abea04f068c0530d2caf336ce58e04be852f60a5d3d15b94d3b6d22854c849398f2a8f04569f2699991b33511781bd2500c
6
+ metadata.gz: da2050ca8feecadc7475e648779e416388a864da572adf985f841faf49687ff918d909b8d5ea261d9c6d585249a5117d0a32aeffe6dbfa155d66e347eac5c6fd
7
+ data.tar.gz: e5463af3a8cdc29ea002160ae9d620acd49ef672765a0d28ae14c39caa698270cebe9f8854a0d81ff5a261442a28410578d5da3edf9cee1b7c16547435755aaf
data/CHANGELOG.md ADDED
@@ -0,0 +1,18 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [v1.1.0](https://github.com/smortex/hiera-eyaml-rsa/tree/v1.1.0) (2024-08-03)
9
+
10
+ [Full Changelog](https://github.com/smortex/hiera-eyaml-rsa/compare/v1.0.0...v1.1.0)
11
+
12
+ **Implemented enhancements:**
13
+
14
+ - Allow latest hiera\_eyaml [\#1](https://github.com/smortex/hiera-eyaml-rsa/pull/1) ([smortex](https://github.com/smortex))
15
+
16
+
17
+
18
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
data/README.md CHANGED
@@ -22,12 +22,6 @@ Create an RSA key:
22
22
 
23
23
  $ eyaml createkeys -n rsa
24
24
 
25
- Alternatively, if you have PKCS#7 material and want to switch to plain RSA without rekeying:
26
-
27
- $ rm keys/public_key.pkcs7.pem
28
- $ openssl rsa -pubout -in keys/private_key.pkcs7.pem -out keys/public_key.rsa.pem
29
- $ mv keys/private_key.pkcs7.pem keys/private_key.rsa.pem
30
-
31
25
  ## Development
32
26
 
33
27
  After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
data/Rakefile CHANGED
@@ -26,7 +26,7 @@ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
26
26
  HEADER
27
27
  config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog ignore]
28
28
  config.user = "smortex"
29
- config.project = "hiera-eyaml-plaintext"
29
+ config.project = "hiera-eyaml-rsa"
30
30
  config.since_tag = "v1.0.0"
31
31
  config.issues = false
32
32
  end
@@ -31,7 +31,7 @@ Gem::Specification.new do |spec|
31
31
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
32
32
  spec.require_paths = ["lib"]
33
33
 
34
- spec.add_dependency "hiera-eyaml", "~> 3.0"
34
+ spec.add_dependency "hiera-eyaml", ">= 3.0", "< 5.0"
35
35
 
36
36
  spec.add_development_dependency "aruba"
37
37
  spec.add_development_dependency "cucumber"
@@ -5,7 +5,7 @@ class Hiera
5
5
  module Eyaml
6
6
  module Encryptors
7
7
  module RsaVersion
8
- VERSION = "1.0.0"
8
+ VERSION = "1.1.0"
9
9
  end
10
10
  end
11
11
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: hiera-eyaml-rsa
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Romain Tartière
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-07-25 00:00:00.000000000 Z
11
+ date: 2024-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: hiera-eyaml
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
19
  version: '3.0'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: '5.0'
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
25
28
  - !ruby/object:Gem::Version
26
29
  version: '3.0'
30
+ - - "<"
31
+ - !ruby/object:Gem::Version
32
+ version: '5.0'
27
33
  - !ruby/object:Gem::Dependency
28
34
  name: aruba
29
35
  requirement: !ruby/object:Gem::Requirement
@@ -132,6 +138,7 @@ extra_rdoc_files: []
132
138
  files:
133
139
  - ".rspec"
134
140
  - ".rubocop.yml"
141
+ - CHANGELOG.md
135
142
  - CODE_OF_CONDUCT.md
136
143
  - Gemfile
137
144
  - LICENSE.txt
@@ -164,7 +171,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
164
171
  - !ruby/object:Gem::Version
165
172
  version: '0'
166
173
  requirements: []
167
- rubygems_version: 3.3.17
174
+ rubygems_version: 3.5.14
168
175
  signing_key:
169
176
  specification_version: 4
170
177
  summary: Simple RSA encryptor for use with hiera-eyaml