envilder 0.7.4 → 0.7.6
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.
- package/README.md +10 -22
- package/docs/CHANGELOG.md +233 -135
- package/package.json +4 -7
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# 🗝️ Envilder ☁️
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="https://github.com/user-attachments/assets/
|
|
4
|
+
<img src="https://github.com/user-attachments/assets/70635670-9235-4400-83a9-cb6543915ed9" alt="Envilder">
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
@@ -9,26 +9,12 @@
|
|
|
9
9
|
<span>Streamline your environment setup with AWS Parameter Store</span>
|
|
10
10
|
</p>
|
|
11
11
|
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
</a>
|
|
19
|
-
<a href="https://github.com/macalbert/envilder/actions/workflows/tests.yml">
|
|
20
|
-
<img src="https://github.com/macalbert/envilder/actions/workflows/tests.yml/badge.svg" alt="CI Tests">
|
|
21
|
-
</a>
|
|
22
|
-
<a href="https://macalbert.github.io/envilder/">
|
|
23
|
-
<img src="https://img.shields.io/badge/coverage-report-green.svg" alt="Coverage Report">
|
|
24
|
-
</a>
|
|
25
|
-
<a href="https://snyk.io/test/github/macalbert/envilder">
|
|
26
|
-
<img src="https://snyk.io/test/github/macalbert/envilder/badge.svg" alt="Known Vulnerabilities">
|
|
27
|
-
</a>
|
|
28
|
-
<a href="./LICENSE">
|
|
29
|
-
<img src="https://img.shields.io/badge/license-MIT-blue.svg" alt="MIT License">
|
|
30
|
-
</a>
|
|
31
|
-
</p>
|
|
12
|
+
[](https://www.npmjs.com/package/envilder)
|
|
13
|
+
[](https://npmcharts.com/compare/envilder)
|
|
14
|
+
[](https://github.com/macalbert/envilder/actions/workflows/tests.yml)
|
|
15
|
+
[](https://macalbert.github.io/envilder/)
|
|
16
|
+
[](https://snyk.io/test/github/macalbert/envilder)
|
|
17
|
+
[](./LICENSE)
|
|
32
18
|
|
|
33
19
|
## Why centralize environment variables?
|
|
34
20
|
|
|
@@ -70,7 +56,9 @@ onboarding and CI/CD workflows.
|
|
|
70
56
|
- [✅ How Envilder makes life easier](#-how-envilder-makes-life-easier)
|
|
71
57
|
- [📚 Table of Contents](#-table-of-contents)
|
|
72
58
|
- [⚙️ Features](#️-features)
|
|
59
|
+
- [🧱 Feature Status](#-feature-status)
|
|
73
60
|
- [💾 Installation](#-installation)
|
|
61
|
+
- [🤖 GitHub Action](#-github-action)
|
|
74
62
|
- [🚀 Quick Start](#-quick-start)
|
|
75
63
|
- [🎥 Video Demonstration](#-video-demonstration)
|
|
76
64
|
- [🏁 Get Started (3 steps)](#-get-started-3-steps)
|
|
@@ -129,7 +117,7 @@ Use Envilder directly in your CI/CD workflows with our official GitHub Action:
|
|
|
129
117
|
aws-region: us-east-1
|
|
130
118
|
|
|
131
119
|
- name: Pull secrets from AWS SSM
|
|
132
|
-
uses: macalbert/envilder/github-action@v0.7.
|
|
120
|
+
uses: macalbert/envilder/github-action@v0.7.6
|
|
133
121
|
with:
|
|
134
122
|
map-file: param-map.json
|
|
135
123
|
env-file: .env
|
package/docs/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,102 @@
|
|
|
1
|
-
|
|
1
|
+
<!-- markdownlint-disable MD024 -->
|
|
2
|
+
# Changelog
|
|
2
3
|
|
|
4
|
+
## [0.7.6] - 2026-01-16
|
|
3
5
|
|
|
4
|
-
|
|
6
|
+
### Fixed
|
|
7
|
+
|
|
8
|
+
* **ci:** Align npm publish script with CI workflow expectations to prevent failures
|
|
9
|
+
* Removed redundant validation steps (lint, build, test) from publish script that were already executed in CI
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
* Simplified npm publish script from full validation pipeline to `npm pack --dry-run && npm publish`
|
|
14
|
+
* Updated README badge links - npm downloads now links to npmcharts for visual statistics
|
|
15
|
+
* Converted README badges from HTML to standard Markdown format for better maintainability
|
|
16
|
+
* Updated GitHub Action version references from v0.7.2 to v0.7.6 in documentation
|
|
17
|
+
|
|
18
|
+
### Removed
|
|
19
|
+
|
|
20
|
+
* **ci:** Deleted deprecated `publish-action.yml` workflow
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## [0.7.5] - 2026-01-15
|
|
25
|
+
|
|
26
|
+
### Documentation
|
|
27
|
+
|
|
28
|
+
* Remove changelog generation instructions from documentation ([#104](https://github.com/macalbert/envilder/pull/104))
|
|
29
|
+
* Update GitHub Copilot instructions
|
|
5
30
|
|
|
31
|
+
### Dependencies
|
|
32
|
+
|
|
33
|
+
* Bump undici to address security vulnerability ([#105](https://github.com/macalbert/envilder/pull/105))
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## [0.7.4] - 2026-01-02
|
|
38
|
+
|
|
39
|
+
### Changed
|
|
40
|
+
|
|
41
|
+
* **ci:** Update npm publish command to include `--no-git-checks` flag
|
|
42
|
+
|
|
43
|
+
### Dependencies
|
|
44
|
+
|
|
45
|
+
* Bump @commitlint/cli from 20.1.0 to 20.2.0 ([#103](https://github.com/macalbert/envilder/pull/103))
|
|
46
|
+
* Bump testcontainers from 11.9.0 to 11.11.0 ([#102](https://github.com/macalbert/envilder/pull/102))
|
|
47
|
+
* Bump @types/node from 24.10.1 to 25.0.3 ([#101](https://github.com/macalbert/envilder/pull/101))
|
|
48
|
+
* Bump @testcontainers/localstack from 11.9.0 to 11.11.0 ([#100](https://github.com/macalbert/envilder/pull/100))
|
|
49
|
+
* Bump @commitlint/config-conventional ([#99](https://github.com/macalbert/envilder/pull/99))
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## [0.7.3] - 2025-12-06
|
|
54
|
+
|
|
55
|
+
### Dependencies
|
|
56
|
+
|
|
57
|
+
* Bump actions/checkout from 5 to 6 ([#98](https://github.com/macalbert/envilder/pull/98))
|
|
58
|
+
* Bump glob from 11.1.0 to 13.0.0 ([#97](https://github.com/macalbert/envilder/pull/97))
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## [0.7.2] - 2025-11-29
|
|
63
|
+
|
|
64
|
+
### Changed
|
|
65
|
+
|
|
66
|
+
* **ci:** Update Node.js version to 24 in workflow
|
|
67
|
+
* Update publish command to use pnpm
|
|
68
|
+
* Add repository field to package.json
|
|
69
|
+
* Standardize quotes in publish-npm.yml
|
|
70
|
+
|
|
71
|
+
### Dependencies
|
|
72
|
+
|
|
73
|
+
* Bump pnpm/action-setup from 2 to 4 ([#92](https://github.com/macalbert/envilder/pull/92))
|
|
74
|
+
* Bump @commitlint/cli from 19.8.1 to 20.1.0 ([#94](https://github.com/macalbert/envilder/pull/94))
|
|
75
|
+
* Bump glob in the npm_and_yarn group ([#96](https://github.com/macalbert/envilder/pull/96))
|
|
76
|
+
|
|
77
|
+
---
|
|
78
|
+
|
|
79
|
+
## [0.7.1] - 2025-11-16
|
|
80
|
+
|
|
81
|
+
### Documentation
|
|
82
|
+
|
|
83
|
+
* Update README and ROADMAP for GitHub Action integration ([#95](https://github.com/macalbert/envilder/pull/95))
|
|
84
|
+
* Update GitHub Action version from v1 to v0.7.1
|
|
85
|
+
* Fix example version for GitHub Action
|
|
86
|
+
|
|
87
|
+
### Changed
|
|
88
|
+
|
|
89
|
+
* **ci:** Update workflow to use pnpm for dependency management
|
|
90
|
+
|
|
91
|
+
### Tests
|
|
92
|
+
|
|
93
|
+
* Increase timeout for E2E tests to 60 seconds
|
|
94
|
+
|
|
95
|
+
---
|
|
96
|
+
|
|
97
|
+
## [0.7.0](https://github.com/macalbert/envilder/compare/v0.6.6...v0.7.0) (2025-11-16)
|
|
98
|
+
|
|
99
|
+
* ♻️ Move GitHub Action to github-action/ subfolder ([d9bf4d2](https://github.com/macalbert/envilder/commit/d9bf4d2e81acbb1ef2b4e0034c0b6aaa8b307ba3))
|
|
6
100
|
|
|
7
101
|
### Bug Fixes
|
|
8
102
|
|
|
@@ -12,23 +106,20 @@
|
|
|
12
106
|
* **githubAction:** Remove source map generation from build:gha script ([8989448](https://github.com/macalbert/envilder/commit/898944898cdea866f28f8874b714bfe3fd2dd88e))
|
|
13
107
|
* **githubAction:** Update action references in documentation and code ([412601b](https://github.com/macalbert/envilder/commit/412601b7b56a90dd50e031addcaf192e2dec8ba3))
|
|
14
108
|
|
|
15
|
-
|
|
16
|
-
### Features
|
|
109
|
+
## Features
|
|
17
110
|
|
|
18
111
|
* **githubAction:** Add end-to-end tests for GitHub Actions simulation ([29464a0](https://github.com/macalbert/envilder/commit/29464a016d0072cc728345400f68e0c62669579b))
|
|
19
112
|
* **githubAction:** Update action paths and add new GitHub Action implementation ([4310e50](https://github.com/macalbert/envilder/commit/4310e5040fa4952c50e800578fb91e00cf2f7a36))
|
|
20
113
|
* **githubAction:** Update action script paths and add entry point ([9f64e56](https://github.com/macalbert/envilder/commit/9f64e567d8c90832ee402accb6aba9264554a1e7))
|
|
21
114
|
* **packaging:** Add project build and uninstall functionality ([70fc574](https://github.com/macalbert/envilder/commit/70fc5745c1490f33322f5fb8af1b68dd7e565fc1))
|
|
22
115
|
|
|
23
|
-
|
|
24
116
|
### BREAKING CHANGES
|
|
25
117
|
|
|
26
118
|
* Action path changed from macalbert/envilder@v1 to macalbert/envilder/github-action@v1
|
|
27
119
|
|
|
120
|
+
---
|
|
28
121
|
|
|
29
|
-
|
|
30
|
-
# Changelog
|
|
31
|
-
<!-- markdownlint-disable MD024 -->
|
|
122
|
+
## Changelog
|
|
32
123
|
|
|
33
124
|
All notable changes to this project will be documented in this file.
|
|
34
125
|
|
|
@@ -39,221 +130,221 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
39
130
|
|
|
40
131
|
### Changed
|
|
41
132
|
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
133
|
+
* Updated AWS credentials configuration in workflows
|
|
134
|
+
* Bumped vite from 7.1.10 to 7.1.11
|
|
135
|
+
* Bumped @types/node from 24.7.2 to 24.9.2
|
|
136
|
+
* Bumped @biomejs/biome from 2.2.6 to 2.3.2
|
|
137
|
+
* Bumped GitHub/codeql-action from 3 to 4
|
|
138
|
+
* Bumped actions/setup-node from 5 to 6
|
|
139
|
+
* Bumped vitest from 3.2.4 to 4.0.6
|
|
49
140
|
|
|
50
141
|
### Documentation
|
|
51
142
|
|
|
52
|
-
|
|
143
|
+
* Added Snyk badge for known vulnerabilities in README
|
|
53
144
|
|
|
54
145
|
## [0.6.5] - 2025-10-15
|
|
55
146
|
|
|
56
147
|
### Added
|
|
57
148
|
|
|
58
|
-
|
|
149
|
+
* Enabled npm trusted publishing with OIDC authentication
|
|
59
150
|
|
|
60
151
|
### Changed
|
|
61
152
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
153
|
+
* Bumped tmp from 0.2.3 to 0.2.4
|
|
154
|
+
* Bumped @types/node from 22.16.3 to 24.3.0
|
|
155
|
+
* Bumped @testcontainers/localstack from 11.2.1 to 11.5.1
|
|
156
|
+
* Bumped testcontainers from 11.2.1 to 11.5.1
|
|
157
|
+
* Bumped @aws-sdk/credential-providers from 3.844.0 to 3.879.0
|
|
158
|
+
* Bumped secretlint from 10.2.1 to 11.2.0
|
|
159
|
+
* Bumped @biomejs/biome from 2.1.3 to 2.2.4
|
|
160
|
+
* Bumped @secretlint/secretlint-rule-preset-recommend from 10.2.1 to 11.2.4
|
|
161
|
+
* Bumped vite from 7.0.4 to 7.1.5
|
|
162
|
+
* Bumped commander from 14.0.0 to 14.0.1
|
|
163
|
+
* Bumped inversify from 7.6.1 to 7.10.2
|
|
164
|
+
* Updated actions/checkout from 4 to 5
|
|
165
|
+
* Updated actions/setup-node from 4 to 5
|
|
166
|
+
* Updated actions/upload-pages-artifact from 3 to 4
|
|
167
|
+
* Updated aws-actions/configure-aws-credentials from 4 to 5
|
|
77
168
|
|
|
78
169
|
## [0.6.4] - 2025-08-02
|
|
79
170
|
|
|
80
171
|
### Changed
|
|
81
172
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
173
|
+
* Bumped typescript from 5.8.3 to 5.9.2
|
|
174
|
+
* Bumped secretlint from 10.2.0 to 10.2.1
|
|
175
|
+
* Bumped @types/glob from 8.1.0 to 9.0.0
|
|
176
|
+
* Bumped @secretlint/secretlint-rule-preset-recommend from 10.2.0 to 10.2.1
|
|
177
|
+
* Bumped @biomejs/biome from 2.1.1 to 2.1.3
|
|
87
178
|
|
|
88
179
|
## [0.6.3] - 2025-07-20
|
|
89
180
|
|
|
90
181
|
### Changed
|
|
91
182
|
|
|
92
|
-
|
|
93
|
-
|
|
183
|
+
* Implemented .NET-Style DIP Startup Pattern for dependency injection
|
|
184
|
+
* Improved separation of concerns in dependency configuration
|
|
94
185
|
|
|
95
186
|
## [0.6.1] - 2025-07-13
|
|
96
187
|
|
|
97
188
|
### Added
|
|
98
189
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
190
|
+
* **Push Mode** functionality to upload environment variables to AWS SSM Parameter Store
|
|
191
|
+
* File-based approach for pushing multiple variables from `.env` files
|
|
192
|
+
* Single-variable approach for direct command line uploads
|
|
193
|
+
* Support for working with different AWS profiles when pushing secrets
|
|
194
|
+
* Comprehensive test coverage for all Push Mode functionality
|
|
104
195
|
|
|
105
196
|
### Security
|
|
106
197
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
198
|
+
* Implemented secure parameter handling to protect sensitive values
|
|
199
|
+
* Maintained AWS IAM best practices for least privilege
|
|
200
|
+
* Added safeguards against accidental overwrites of critical parameters
|
|
110
201
|
|
|
111
202
|
### Changed
|
|
112
203
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
204
|
+
* Designed clean, modular command structure for Push Mode operations
|
|
205
|
+
* Added new domain models and handlers to support Push feature
|
|
206
|
+
* Maintained separation of concerns between infrastructure and application layers
|
|
207
|
+
* Ensured backward compatibility with existing Pull Mode features
|
|
117
208
|
|
|
118
209
|
### Documentation
|
|
119
210
|
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
211
|
+
* Added comprehensive examples for all new Push Mode commands
|
|
212
|
+
* Created visual diagrams explaining Push Mode data flow
|
|
213
|
+
* Documented options and parameters for Push Mode operations
|
|
123
214
|
|
|
124
215
|
## [0.5.6] - 2025-07-06
|
|
125
216
|
|
|
126
217
|
### Added
|
|
127
218
|
|
|
128
|
-
|
|
219
|
+
* Introduced new logger interface for seamless integration of custom logging implementations
|
|
129
220
|
|
|
130
221
|
### Changed
|
|
131
222
|
|
|
132
|
-
|
|
223
|
+
* Updated several packages to latest versions for improved security and performance
|
|
133
224
|
|
|
134
225
|
### Documentation
|
|
135
226
|
|
|
136
|
-
|
|
137
|
-
|
|
227
|
+
* Added video guide to README demonstrating CLI usage
|
|
228
|
+
* Enhanced user onboarding materials
|
|
138
229
|
|
|
139
230
|
## [0.5.5] - 2025-06-29
|
|
140
231
|
|
|
141
232
|
### Changed
|
|
142
233
|
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
234
|
+
* Moved `EnvilderBuilder` from `domain` to `application/builders` directory
|
|
235
|
+
* Updated import paths across codebase for better organization
|
|
236
|
+
* Enhanced code architecture alignment with domain-driven design principles
|
|
146
237
|
|
|
147
238
|
### Fixed
|
|
148
239
|
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
240
|
+
* Fixed glob pattern and path handling in test cleanup functions
|
|
241
|
+
* Corrected file path resolution in end-to-end tests
|
|
242
|
+
* Improved error handling during test file deletions
|
|
152
243
|
|
|
153
244
|
### Documentation
|
|
154
245
|
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
246
|
+
* Extensively updated README with clearer structure and table of contents
|
|
247
|
+
* Added feature status table to clarify implemented vs planned features
|
|
248
|
+
* Simplified installation and usage instructions
|
|
249
|
+
* Revamped pull request template for better contributor experience
|
|
250
|
+
* Removed outdated environment-specific parameter examples
|
|
160
251
|
|
|
161
252
|
## [0.5.4] - 2025-06-10
|
|
162
253
|
|
|
163
254
|
### Added
|
|
164
255
|
|
|
165
|
-
|
|
166
|
-
|
|
256
|
+
* Added unit tests for error handling with missing CLI arguments
|
|
257
|
+
* Enhanced unit test reporting with JUnit format for better CI integration
|
|
167
258
|
|
|
168
259
|
### Changed
|
|
169
260
|
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
261
|
+
* Refactored `EnvFileManager` and related interfaces to use async/await
|
|
262
|
+
* Improved error handling and modularized secret processing in `Envilder`
|
|
263
|
+
* Enhanced error handling for missing secrets with clearer feedback
|
|
264
|
+
* Renamed methods, test suite descriptions, and filenames for consistency
|
|
265
|
+
* Extracted package.json version retrieval into dedicated `PackageJsonFinder` class
|
|
266
|
+
* Modularized and simplified `escapeEnvValue` method and related tests
|
|
267
|
+
* Updated dependencies for better reliability
|
|
268
|
+
* Improved test cleanup for more reliable test runs
|
|
269
|
+
* Added and reorganized permissions in CI workflow
|
|
270
|
+
* Updated `.gitattributes` for better language stats on GitHub
|
|
180
271
|
|
|
181
272
|
## [0.5.3] - 2025-06-07
|
|
182
273
|
|
|
183
274
|
### Added
|
|
184
275
|
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
276
|
+
* Modular CLI for environment variable synchronization with pluggable secret providers
|
|
277
|
+
* Builder pattern for flexible CLI configuration and usage
|
|
278
|
+
* Extensive unit, integration, and end-to-end tests
|
|
279
|
+
* AWS integration testing using Localstack with Testcontainers
|
|
280
|
+
* Expanded tests for environment file escaping and builder configuration
|
|
190
281
|
|
|
191
282
|
### Changed
|
|
192
283
|
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
284
|
+
* **BREAKING**: Full TypeScript migration from JavaScript
|
|
285
|
+
* Introduced modular, layered architecture with clear separation
|
|
286
|
+
* Restructured CLI internals for improved maintainability
|
|
287
|
+
* Test structure now mirrors production code structure
|
|
288
|
+
* Migrated CI/CD workflows and scripts from Yarn to npm
|
|
289
|
+
* Updated ignore files and configuration
|
|
199
290
|
|
|
200
291
|
### Documentation
|
|
201
292
|
|
|
202
|
-
|
|
203
|
-
|
|
293
|
+
* Updated documentation to focus on npm commands
|
|
294
|
+
* Improved workflow and script documentation
|
|
204
295
|
|
|
205
296
|
## [0.5.2] - 2025-05-18
|
|
206
297
|
|
|
207
298
|
### Added
|
|
208
299
|
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
300
|
+
* Comprehensive E2E validation test in CI/CD pipeline
|
|
301
|
+
* Validation includes: build, `npm pack`, local install, and CLI command execution
|
|
302
|
+
* Ensures package integrity and command-line operability before release
|
|
212
303
|
|
|
213
304
|
## [0.5.1] - 2025-05-16
|
|
214
305
|
|
|
215
306
|
### Fixed
|
|
216
307
|
|
|
217
|
-
|
|
218
|
-
|
|
308
|
+
* CLI command not recognized after global install (`npm install -g envilder`)
|
|
309
|
+
* Fixed missing compiled `lib/` files in published package
|
|
219
310
|
|
|
220
311
|
## [0.3.0] - 2025-05-09
|
|
221
312
|
|
|
222
313
|
### Added
|
|
223
314
|
|
|
224
|
-
|
|
315
|
+
* Support for working with different AWS accounts and configurations via AWS profiles
|
|
225
316
|
|
|
226
317
|
### Changed
|
|
227
318
|
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
319
|
+
* Bumped @secretlint/secretlint-rule-preset-recommend from 9.3.0 to 9.3.2
|
|
320
|
+
* Bumped @types/node from 22.14.1 to 22.15.3
|
|
321
|
+
* Bumped commander from 12.1.0 to 13.1.0
|
|
322
|
+
* Bumped vite from 6.2.6 to 6.3.4
|
|
323
|
+
* Bumped @aws-sdk/client-ssm from 3.787.0 to 3.799.0
|
|
233
324
|
|
|
234
325
|
## [0.2.3] - 2025-04-12
|
|
235
326
|
|
|
236
327
|
### Changed
|
|
237
328
|
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
329
|
+
* Updated multiple dependencies including:
|
|
330
|
+
* @types/node from 22.7.5 to 22.10.3
|
|
331
|
+
* @aws-sdk/client-ssm from 3.670.0 to 3.716.0
|
|
332
|
+
* @biomejs/biome from 1.9.3 to 1.9.4
|
|
333
|
+
* nanoid from 3.3.7 to 3.3.8
|
|
334
|
+
* @secretlint/secretlint-rule-preset-recommend from 8.5.0 to 9.0.0
|
|
335
|
+
* secretlint from 8.5.0 to 9.0.0
|
|
245
336
|
|
|
246
337
|
## [0.2.1] - 2024-10-16
|
|
247
338
|
|
|
248
339
|
### Added
|
|
249
340
|
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
341
|
+
* Code coverage reporting and deployment to GitHub Pages
|
|
342
|
+
* CodeQL workflow for security analysis
|
|
343
|
+
* Preserve existing `.env` file and update values if present
|
|
253
344
|
|
|
254
345
|
### Documentation
|
|
255
346
|
|
|
256
|
-
|
|
347
|
+
* Updated README.md with improved documentation
|
|
257
348
|
|
|
258
349
|
## [0.1.4] - 2024-10-01
|
|
259
350
|
|
|
@@ -277,15 +368,15 @@ This changelog follows [Conventional Commits](https://www.conventionalcommits.or
|
|
|
277
368
|
|
|
278
369
|
### Types
|
|
279
370
|
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
371
|
+
* `feat`: A new feature (triggers MINOR version bump)
|
|
372
|
+
* `fix`: A bug fix (triggers PATCH version bump)
|
|
373
|
+
* `docs`: Documentation-only changes
|
|
374
|
+
* `style`: Changes that don't affect code meaning (formatting, etc.)
|
|
375
|
+
* `refactor`: Code change that neither fixes a bug nor adds a feature
|
|
376
|
+
* `perf`: Performance improvements
|
|
377
|
+
* `test`: Adding or correcting tests
|
|
378
|
+
* `chore`: Changes to build process or auxiliary tools
|
|
379
|
+
* `ci`: Changes to CI configuration files and scripts
|
|
289
380
|
|
|
290
381
|
### Breaking Changes
|
|
291
382
|
|
|
@@ -314,20 +405,26 @@ git commit -m "feat!: redesign CLI interface"
|
|
|
314
405
|
|
|
315
406
|
---
|
|
316
407
|
|
|
317
|
-
##
|
|
408
|
+
## Maintenance
|
|
409
|
+
|
|
410
|
+
This project follows [Conventional Commits](https://www.conventionalcommits.org/) for commit messages.
|
|
318
411
|
|
|
319
|
-
|
|
412
|
+
**To update this changelog**:
|
|
320
413
|
|
|
321
|
-
1.
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
414
|
+
1. Edit this file following the format above
|
|
415
|
+
2. Add entries under `[Unreleased]` section
|
|
416
|
+
3. Run `pnpm version [patch|minor|major]` to create a new release
|
|
417
|
+
4. Move `[Unreleased]` entries to the new version section
|
|
325
418
|
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
- Run `pnpm changelog` to generate entries from git history
|
|
329
|
-
- Changelog will be auto-generated from commit messages
|
|
419
|
+
**Alternative**: Use [GitHub Releases](https://github.com/macalbert/envilder/releases) to auto-generate release notes
|
|
420
|
+
from commit messages.
|
|
330
421
|
|
|
422
|
+
[0.7.6]: https://github.com/macalbert/envilder/compare/v0.7.5...v0.7.6
|
|
423
|
+
[0.7.5]: https://github.com/macalbert/envilder/compare/v0.7.4...v0.7.5
|
|
424
|
+
[0.7.4]: https://github.com/macalbert/envilder/compare/v0.7.3...v0.7.4
|
|
425
|
+
[0.7.3]: https://github.com/macalbert/envilder/compare/v0.7.2...v0.7.3
|
|
426
|
+
[0.7.2]: https://github.com/macalbert/envilder/compare/v0.7.1...v0.7.2
|
|
427
|
+
[0.7.1]: https://github.com/macalbert/envilder/compare/v0.6.6...v0.7.1
|
|
331
428
|
[0.6.6]: https://github.com/macalbert/envilder/compare/v0.6.5...v0.6.6
|
|
332
429
|
[0.6.5]: https://github.com/macalbert/envilder/compare/v0.6.4...v0.6.5
|
|
333
430
|
[0.6.4]: https://github.com/macalbert/envilder/compare/v0.6.3...v0.6.4
|
|
@@ -343,3 +440,4 @@ This project uses automated changelog generation. To generate changelog entries:
|
|
|
343
440
|
[0.2.3]: https://github.com/macalbert/envilder/compare/v0.2.1...v0.2.3
|
|
344
441
|
[0.2.1]: https://github.com/macalbert/envilder/compare/v0.1.4...v0.2.1
|
|
345
442
|
[0.1.4]: https://github.com/macalbert/envilder/releases/tag/v0.1.4
|
|
443
|
+
<!-- markdownlint-enable MD024 -->
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "envilder",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.6",
|
|
4
4
|
"description": "A CLI that securely centralizes your environment variables from AWS SSM as a single source of truth",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Marçal Albert Castellví",
|
|
@@ -70,7 +70,6 @@
|
|
|
70
70
|
"@testcontainers/localstack": "^11.11.0",
|
|
71
71
|
"@vercel/ncc": "^0.38.4",
|
|
72
72
|
"@vitest/coverage-v8": "^4.0.16",
|
|
73
|
-
"conventional-changelog-cli": "^5.0.0",
|
|
74
73
|
"glob": "^13.0.0",
|
|
75
74
|
"secretlint": "^11.2.5",
|
|
76
75
|
"testcontainers": "^11.11.0",
|
|
@@ -94,12 +93,10 @@
|
|
|
94
93
|
"lint:fix": "biome lint --fix",
|
|
95
94
|
"test": "vitest run --reporter=verbose --coverage",
|
|
96
95
|
"test:ci": "vitest run --reporter=verbose --reporter=junit --coverage --outputFile=coverage/junit/test-results.xml",
|
|
97
|
-
"changelog": "conventional-changelog -p angular -i docs/CHANGELOG.md -s",
|
|
98
|
-
"changelog:all": "conventional-changelog -p angular -i docs/CHANGELOG.md -s -r 0",
|
|
99
96
|
"action-publish": "pnpm build:gha && pnpm verify:gha",
|
|
100
|
-
"release-patch": "pnpm version patch
|
|
101
|
-
"release-minor": "pnpm version minor
|
|
102
|
-
"release-major": "pnpm version major
|
|
97
|
+
"release-patch": "pnpm version patch",
|
|
98
|
+
"release-minor": "pnpm version minor",
|
|
99
|
+
"release-major": "pnpm version major",
|
|
103
100
|
"release-prerelease": "pnpm version prerelease"
|
|
104
101
|
}
|
|
105
102
|
}
|