dotenv-merge 1.0.0 → 1.0.1

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: 59de455da6b9e74b0f8ccb9801d67788fb7d2130e00b6a563d8e941d017c7d21
4
- data.tar.gz: 3abe5e613b532885ac9ba11ea430f75a6d7b613ca447bf9240718a426e17892c
3
+ metadata.gz: f2f61ab8206645b763c803606b57761a9d2f2dfd1ab9681a3d2403041750ecc0
4
+ data.tar.gz: 0fe6095d564764ac602d7382d1c7257dfb9be78e908256fd3be6899b317755fd
5
5
  SHA512:
6
- metadata.gz: 728968cd1fd6a830b58a4c65d6c28cd59ad493d297c0b5bf39ea5cbd2b07eb3c1d8aa695c1a8b0b856f99db8c1f0a84dde6030dd1235052d772f0ab6feb744c0
7
- data.tar.gz: e04a360dea42ee200664ec3cd60ed78e5d754c327e1724c11c29d771b158bd5ff5006f4b39af8bb2ffaf4bc88b3c56f4f7a344b4846765aee1115d26379346f8
6
+ metadata.gz: 30eaef68fe4f68ad4851c0493f4e138468de2c3c348c3df495ec01c509d65ad2b9050f75749eb2f7394acded92e960cc79b4a955174e261d96101099dbc43f47
7
+ data.tar.gz: 9f913cc700a8c5138ea286c78e30049f70321a12171fa6cf66d528d4739781e50ed71d12cdb046fd74b820b860ec4520b87ebed71b668ffab7b7a8dd8f0411b2
checksums.yaml.gz.sig CHANGED
Binary file
data/CHANGELOG.md CHANGED
@@ -30,6 +30,34 @@ Please file a bug if you notice a violation of semantic versioning.
30
30
 
31
31
  ### Security
32
32
 
33
+ ## [1.0.1] - 2026-01-01
34
+
35
+ - TAG: [v1.0.1][1.0.1t]
36
+ - COVERAGE: 97.72% -- 343/351 lines in 8 files
37
+ - BRANCH COVERAGE: 83.61% -- 102/122 branches in 8 files
38
+ - 96.83% documented
39
+
40
+ ### Added
41
+
42
+ - `node_typing` parameter for per-node-type merge preferences
43
+ - Enables `preference: { default: :destination, special_type: :template }` pattern
44
+ - Works with custom merge_types assigned via node_typing lambdas
45
+ - `match_refiner` parameter for fuzzy matching support
46
+ - `regions` and `region_placeholder` parameters for nested content merging
47
+ - `EnvLine#type` method returning `"env_line"` for TreeHaver::Node protocol compatibility
48
+
49
+ ### Changed
50
+
51
+ - **SmartMerger**: Added `**options` for forward compatibility
52
+ - Accepts additional options that may be added to base class in future
53
+ - Passes all options through to `SmartMergerBase`
54
+ - **MergeResult**: Added `**options` for forward compatibility
55
+ - **BREAKING**: `SmartMerger` now inherits from `Ast::Merge::SmartMergerBase`
56
+ - Provides standardized options API consistent with all other `*-merge` gems
57
+ - All keyword arguments are now explicit (no more positional-only arguments)
58
+ - Gains automatic support for new SmartMergerBase features
59
+ - Renamed `EnvLine#type` attribute to `EnvLine#line_type` to avoid conflict with TreeHaver::Node protocol
60
+
33
61
  ## [1.0.0] - 2025-12-12
34
62
 
35
63
  - TAG: [v1.0.0][1.0.0t]
@@ -41,6 +69,8 @@ Please file a bug if you notice a violation of semantic versioning.
41
69
 
42
70
  - Initial release
43
71
 
44
- [Unreleased]: https://github.com/kettle-rb/dotenv-merge/compare/v1.0.0...HEAD
72
+ [Unreleased]: https://github.com/kettle-rb/dotenv-merge/compare/v1.0.1...HEAD
73
+ [1.0.1]: https://github.com/kettle-rb/dotenv-merge/compare/v1.0.0...v1.0.1
74
+ [1.0.1t]: https://github.com/kettle-rb/dotenv-merge/releases/tag/v1.0.1
45
75
  [1.0.0]: https://github.com/kettle-rb/dotenv-merge/compare/a34c8f20c877a45d03b9f0b83b973614e123a92b...v1.0.0
46
76
  [1.0.0t]: https://github.com/kettle-rb/dotenv-merge/tags/v1.0.0
data/LICENSE.txt CHANGED
@@ -1,6 +1,6 @@
1
1
  The MIT License (MIT)
2
2
 
3
- Copyright (c) 2025 Peter H. Boling
3
+ Copyright (c) 2025-2026 Peter H. Boling
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal