complex_config 0.22.3 → 0.24.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 88d0367562a3dd7f7c842c8cb5a992358f7259782e989c1e75125a889bcab4c8
4
- data.tar.gz: d449645011ca5ab1151eea7e1606a5cd0a0162a3a90b048d3e48e74587c1e28e
3
+ metadata.gz: e91a5c6200dc7097395a12f476351fa74e6396405e458316966b53c81d583aaf
4
+ data.tar.gz: ac7df446aa65171fa58cc426740302dc98e19bf6671fdd050ea6a7695e044ace
5
5
  SHA512:
6
- metadata.gz: cbba4bb79df0421dc7f467ccec1e5511a139b258b781b3210371b7afa4b3e12813e183713b103a99098188dc40d50cea1eef3a434cacaa967da1e5b4f6bb8226
7
- data.tar.gz: 642063aff4f227c5e580f6aa588e57aa9e8b36e0e4eef8607925dd0ce60d8d6465427e6919a1cb44e646425a3597610222be921bed1ddc251315d18d4faad759
6
+ metadata.gz: 7226e11f74de096385e5168fed25171e1ddf5dd49e8bd4bf3514e7f93865e4b434aaded31e9da46720cd0d0ac401e2bc2bea755490b1cc71af70b8f9fb66d2f9
7
+ data.tar.gz: 57bed154ea2ce2106251ba12d8e58c6555225c59a0fffd59d9770fd326b29fa17d5b2c5cc68940d65799bb9b1b09ae6c7f1bb9412a7a3c226347ca970734275f
data/CHANGES.md CHANGED
@@ -1,5 +1,35 @@
1
1
  # Changes
2
2
 
3
+ ## 2025-11-24 v0.24.0
4
+
5
+ - Added `-O` option to `complex_config` decrypt command to write output to stdout
6
+ - Added `-I` option to `complex_config` encrypt command to read input from stdin
7
+ - Modified `decrypt` command to handle stdout output when `-O` flag is present
8
+ - Marked `display` as alias for `decrypt -O` in help text
9
+ - Replaced custom `did_not_change` exception with `catch`/`throw` mechanism in edit command
10
+ - Updated `rubygems_version` from **3.6.9** to **3.7.2**
11
+ - Updated `gem_hadar` development dependency from **~> 2.6** to **~> 2.8**
12
+ - Added `openssl-dev` to apk packages in `.all_images.yml`
13
+
14
+ ## 2025-09-14 v0.23.0
15
+
16
+ - **README overhaul** with comprehensive encryption documentation, debugging
17
+ section, architecture overview, error handling guides, YARD integration,
18
+ emoji formatting, and updated license link
19
+ - **Enhanced YARD documentation** integrated at module and class levels with
20
+ comprehensive method documentation, for improved code documentation quality
21
+ and developer experience.
22
+ - **Test coverage configuration** updated to use `GemHadar::SimpleCov` for
23
+ improved coverage analysis.
24
+
25
+ ## 2025-09-11 v0.22.3
26
+
27
+ - Dependencies updated
28
+ - `gem_hadar`: Updated to **2.4**
29
+ - `tins`: Updated to **1**
30
+ - `mize`: Updated to **0.6**
31
+ - Added support for **Ruby 3.4** images in `all_images`
32
+
3
33
  ## 2024-10-21 v0.22.2
4
34
 
5
35
  * Update file to handle ENOENT and ENOTDIR errors when reading from file:
@@ -7,12 +37,11 @@
7
37
  + Rescue both `Errno::ENOENT` and `Errno::ENOTDIR` exceptions for robustness
8
38
  * Improved test(s) in specs:
9
39
  + Removed unneeded `allow` statement from `provider_spec.rb`
10
- + Modified `shortcuts_spec.rb` to use `at_least(:once)` for `expect(provider).to receive(:env)`
40
+ + Modified `shortcuts_spec.rb` to use `at_least(:once)` for
41
+ `expect(provider).to receive(:env)`
11
42
 
12
43
  ## 2024-09-22 v0.22.1
13
44
 
14
- #### Bug Fixes and Improvements
15
-
16
45
  * Refactor ComplexConfig settings and specs to handle nil values:
17
46
  * Added `nil` handling in `ComplexConfig::Settings`
18
47
  * Updated `settings_spec.rb` to test for `nil` values
@@ -20,17 +49,14 @@
20
49
  - Removed development dependency `'utils'` from Rakefile.
21
50
  - Updated date in `complex_config.gemspec` from "2024-09-13" to "2024-09-22"
22
51
 
23
- * Bumped version to **0.22.1**:
24
- - Updated `VERSION` in `lib/complex_config/version.rb` from **0.22.0** to **0.22.1**
25
- - Updated `s.version` in `complex_config.gemspec` from **0.22.0** to **0.22.1**
26
- - Updated gem stub version in `complex_config.gemspec` from **0.22.0** to **0.22.1**
27
-
28
52
  ## 2024-09-12 v0.22.0
29
53
 
30
54
  * **New Feature: UTF-8 Support**
31
55
  + Added `utf8` parameter to `Tree#initialize`
32
- + Introduced `default_utf8` method to determine default encoding based on environment variables
33
- + Modified `inner_child_prefix` and `last_child_prefix` methods for UTF-8 and ASCII encodings
56
+ + Introduced `default_utf8` method to determine default encoding based on
57
+ environment variables
58
+ + Modified `inner_child_prefix` and `last_child_prefix` methods for UTF-8 and
59
+ ASCII encodings
34
60
  + Updated tests in `spec/complex_config/settings_spec.rb`
35
61
 
36
62
  ## 2024-09-09 v0.21.2
@@ -42,9 +68,11 @@
42
68
  ## 2024-09-09 v0.21.1
43
69
 
44
70
  * **API Changes**:
45
- * The default string representation of ComplexConfig has been changed to a tree-like structure.
71
+ * The default string representation of ComplexConfig has been changed to a
72
+ tree-like structure.
46
73
  * The `to_s` method in ComplexConfig::Settings has been renamed to `list`.
47
- * A new `list` method has been added to ComplexConfig::Settings for listing settings as a string.
74
+ * A new `list` method has been added to ComplexConfig::Settings for listing
75
+ settings as a string.
48
76
 
49
77
  ## 2024-09-09 v0.21.0
50
78
 
@@ -55,15 +83,15 @@
55
83
  * **Components Array**: Add components array for flux capacitors
56
84
  * **Rakefile and Gemspec**:
57
85
  - Add clobber task for coverage to Rakefile
58
- - Update all_images script: update `bundle` to `bundle install --full-index`
86
+ - Update `all_images` script: update `bundle` to `bundle install --full-index`
59
87
  * **.gitignore**: Remove `.byebug_history` from ignored files
60
88
  * **Complex Config**:
61
89
  + Raise type error and add test for empty configuration file.
62
90
  + Update gemspec to use GemHadar 1.17.0
63
- + Add requirement for tins/xt/ask_and_send in complex_config/provider.rb
91
+ + Add requirement for `tins/xt/ask_and_send` in `complex_config/provider.rb`
64
92
  + Add check for hash type in ComplexConfig::Settings#build method
65
- + Add test for reading from empty configuration file in provider_spec.rb
66
- + Replace byebug with debug in spec_helper.rb
93
+ + Add test for reading from empty configuration file in `provider_spec.rb`
94
+ + Replace byebug with debug in `spec_helper.rb`
67
95
 
68
96
  ## 2024-04-17 v0.20.0
69
97
 
@@ -286,13 +314,13 @@
286
314
  + Test on Ruby 2.3.3
287
315
  * **Bug Fixes**
288
316
  + Fix Travis builds
289
- + travis fiddles with RAILS_ENV variable, breaking specs (resolved)
317
+ + travis fiddles with `RAILS_ENV` variable, breaking specs (resolved)
290
318
  * **Testing Improvements**
291
319
  + Test newer Rubies
292
320
 
293
321
  ## 2016-11-22 v0.9.0
294
322
 
295
- * **Gem Update**: Updated to newest gem_hadar.
323
+ * **Gem Update**: Updated to newest `gem_hadar`.
296
324
  * **Coverage Report**: Only send new coverage report on success.
297
325
  * **Manual Run**: We are supposed to run this manually now.
298
326
  * **Code Organization**: Moved provider shortcuts into its own module.
@@ -357,7 +385,7 @@
357
385
  + Adds a decent string representation for ComplexConfig::Settings objects
358
386
  * **Dependency Updates**
359
387
  + Use newest gem hadar
360
- + Add some development_dependencies (including tins)
388
+ + Add some `development_dependencies` (including tins)
361
389
  * **Code Improvements**
362
390
  + Shorten codeclimate snippet
363
391