envilder 0.9.3 → 0.10.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.
Files changed (66) hide show
  1. package/README.md +46 -13
  2. package/ROADMAP.md +3 -3
  3. package/docs/CHANGELOG.md +9 -609
  4. package/docs/changelogs/cli.md +519 -0
  5. package/docs/changelogs/gha.md +88 -0
  6. package/docs/changelogs/sdk-dotnet.md +96 -0
  7. package/docs/changelogs/sdk-nodejs.md +38 -0
  8. package/docs/changelogs/sdk-python.md +98 -0
  9. package/lib/envilder/core/application/pushEnvToSecrets/PushEnvToSecretsCommandHandler.js +3 -3
  10. package/lib/envilder/core/application/pushEnvToSecrets/PushEnvToSecretsCommandHandler.js.map +1 -1
  11. package/lib/envilder/core/infrastructure/variableStore/FileVariableStore.d.ts.map +1 -1
  12. package/lib/envilder/core/infrastructure/variableStore/FileVariableStore.js +7 -1
  13. package/lib/envilder/core/infrastructure/variableStore/FileVariableStore.js.map +1 -1
  14. package/lib/sdks/nodejs/src/application/envilder-client.d.ts +29 -0
  15. package/lib/sdks/nodejs/src/application/envilder-client.d.ts.map +1 -0
  16. package/lib/sdks/nodejs/src/application/envilder-client.js +60 -0
  17. package/lib/sdks/nodejs/src/application/envilder-client.js.map +1 -0
  18. package/lib/sdks/nodejs/src/application/envilder.d.ts +64 -0
  19. package/lib/sdks/nodejs/src/application/envilder.d.ts.map +1 -0
  20. package/lib/sdks/nodejs/src/application/envilder.js +168 -0
  21. package/lib/sdks/nodejs/src/application/envilder.js.map +1 -0
  22. package/lib/sdks/nodejs/src/application/map-file-parser.d.ts +16 -0
  23. package/lib/sdks/nodejs/src/application/map-file-parser.d.ts.map +1 -0
  24. package/lib/sdks/nodejs/src/application/map-file-parser.js +64 -0
  25. package/lib/sdks/nodejs/src/application/map-file-parser.js.map +1 -0
  26. package/lib/sdks/nodejs/src/application/secret-validation.d.ts +18 -0
  27. package/lib/sdks/nodejs/src/application/secret-validation.d.ts.map +1 -0
  28. package/lib/sdks/nodejs/src/application/secret-validation.js +32 -0
  29. package/lib/sdks/nodejs/src/application/secret-validation.js.map +1 -0
  30. package/lib/sdks/nodejs/src/domain/envilder-options.d.ts +7 -0
  31. package/lib/sdks/nodejs/src/domain/envilder-options.d.ts.map +1 -0
  32. package/lib/sdks/nodejs/src/domain/envilder-options.js +2 -0
  33. package/lib/sdks/nodejs/src/domain/envilder-options.js.map +1 -0
  34. package/lib/sdks/nodejs/src/domain/map-file-config.d.ts +7 -0
  35. package/lib/sdks/nodejs/src/domain/map-file-config.d.ts.map +1 -0
  36. package/lib/sdks/nodejs/src/domain/map-file-config.js +2 -0
  37. package/lib/sdks/nodejs/src/domain/map-file-config.js.map +1 -0
  38. package/lib/sdks/nodejs/src/domain/parsed-map-file.d.ts +6 -0
  39. package/lib/sdks/nodejs/src/domain/parsed-map-file.d.ts.map +1 -0
  40. package/lib/sdks/nodejs/src/domain/parsed-map-file.js +2 -0
  41. package/lib/sdks/nodejs/src/domain/parsed-map-file.js.map +1 -0
  42. package/lib/sdks/nodejs/src/domain/ports/secret-provider.d.ts +18 -0
  43. package/lib/sdks/nodejs/src/domain/ports/secret-provider.d.ts.map +1 -0
  44. package/lib/sdks/nodejs/src/domain/ports/secret-provider.js +2 -0
  45. package/lib/sdks/nodejs/src/domain/ports/secret-provider.js.map +1 -0
  46. package/lib/sdks/nodejs/src/domain/secret-provider-type.d.ts +5 -0
  47. package/lib/sdks/nodejs/src/domain/secret-provider-type.d.ts.map +1 -0
  48. package/lib/sdks/nodejs/src/domain/secret-provider-type.js +6 -0
  49. package/lib/sdks/nodejs/src/domain/secret-provider-type.js.map +1 -0
  50. package/lib/sdks/nodejs/src/index.d.ts +12 -0
  51. package/lib/sdks/nodejs/src/index.d.ts.map +1 -0
  52. package/lib/sdks/nodejs/src/index.js +11 -0
  53. package/lib/sdks/nodejs/src/index.js.map +1 -0
  54. package/lib/sdks/nodejs/src/infrastructure/aws/aws-ssm-secret-provider.d.ts +17 -0
  55. package/lib/sdks/nodejs/src/infrastructure/aws/aws-ssm-secret-provider.d.ts.map +1 -0
  56. package/lib/sdks/nodejs/src/infrastructure/aws/aws-ssm-secret-provider.js +56 -0
  57. package/lib/sdks/nodejs/src/infrastructure/aws/aws-ssm-secret-provider.js.map +1 -0
  58. package/lib/sdks/nodejs/src/infrastructure/azure/azure-key-vault-secret-provider.d.ts +15 -0
  59. package/lib/sdks/nodejs/src/infrastructure/azure/azure-key-vault-secret-provider.d.ts.map +1 -0
  60. package/lib/sdks/nodejs/src/infrastructure/azure/azure-key-vault-secret-provider.js +68 -0
  61. package/lib/sdks/nodejs/src/infrastructure/azure/azure-key-vault-secret-provider.js.map +1 -0
  62. package/lib/sdks/nodejs/src/infrastructure/secret-provider-factory.d.ts +5 -0
  63. package/lib/sdks/nodejs/src/infrastructure/secret-provider-factory.d.ts.map +1 -0
  64. package/lib/sdks/nodejs/src/infrastructure/secret-provider-factory.js +42 -0
  65. package/lib/sdks/nodejs/src/infrastructure/secret-provider-factory.js.map +1 -0
  66. package/package.json +11 -7
package/docs/CHANGELOG.md CHANGED
@@ -1,611 +1,11 @@
1
- ## [0.9.3] - 2026-04-17
1
+ # Changelog
2
2
 
3
- ### Added
3
+ Each Envilder component maintains its own changelog:
4
4
 
5
- * **Runtime SDKs now available** Load secrets directly into your application
6
- at startup, no `.env` file needed:
7
-
8
- **.NET** ([NuGet](https://www.nuget.org/packages/Envilder)):
9
-
10
- ```csharp
11
- builder.Configuration.AddEnvilder(
12
- "secrets-map.json", provider);
13
- ```
14
-
15
- **Python** ([PyPI](https://pypi.org/project/envilder)):
16
-
17
- ```python
18
- from envilder import Envilder
19
- Envilder.load('secrets-map.json')
20
- ```
21
-
22
- **CLI** (as always):
23
-
24
- ```bash
25
- npx envilder --map=secrets-map.json --envfile=.env
26
- ```
27
-
28
- **GitHub Action:**
29
-
30
- ```yaml
31
- - uses: macalbert/envilder/github-action@v0
32
- with:
33
- map-file: secrets-map.json
34
- env-file: .env
35
- ```
36
-
37
- ### Changed
38
-
39
- * **README rewritten** — Streamlined messaging, accurate comparison
40
- tables, simplified quick start (2 steps), and reduced noise
41
- * **Comparison table corrected** — Infisical SDKs, dotenvx (successor
42
- to dotenv-vault), and chamber capabilities now accurately represented
43
- with verified references
44
-
45
- ### Fixed
46
-
47
- * **ci(publish-npm):** Narrowed `paths` filter from `src/**` to
48
- `src/envilder/**` so SDK/website/IaC changes no longer trigger the
49
- npm publish workflow
50
- * **ci(publish-npm):** Replaced `npm view` with `curl` against the npm
51
- registry API to avoid `.npmrc` auth failures during version detection
52
- * **ci(publish-website):** Added `docs/CHANGELOG.md` and
53
- `docs/changelogs/**` to path filters so changelog updates trigger
54
- website deployment
55
-
56
- ### Dependencies
57
-
58
- * Bump `typescript` from 6.0.2 to 6.0.3
59
-
60
- ---
61
-
62
- ## [0.9.2] - 2026-04-02
63
-
64
- ### Added
65
-
66
- * **LocalStack sponsor section** — Added sponsor section to website homepage and README with LocalStack logos (dark, light, color variants) and a new `Sponsors.astro` component ([#136](https://github.com/macalbert/envilder/pull/136))
67
- * **SDK platform scaffolding** — Added placeholder structure under `src/sdks/` for future .NET, Go, Java, Python, and TypeScript SDK implementations
68
- * **Website test suite** — Added `tests/website/` with Vitest coverage for i18n utilities and Markdown helpers (`utils.test.ts`, `markdown.test.ts`)
69
- * **`BackToTop` component** — New scroll-to-top button component for the documentation website
70
-
71
- ### Changed
72
-
73
- * **Project layout restructured for SDK platform readiness** ([#134](https://github.com/macalbert/envilder/pull/134)):
74
- * Core domain layer moved from `src/envilder/` to `src/envilder/core/`
75
- * Website moved from `src/apps/website/` to `src/website/`
76
- * All imports, `tsconfig.json`, `package.json`, and workspace config updated accordingly
77
- * **Website UX improvements** — `DocsContent`, `HowItWorks`, `ThemeSwitcher`, `TerminalMockup`, and `BaseLayout` components updated; global CSS expanded; i18n keys added for new content
78
-
79
- ### Fixed
80
-
81
- * **README:** Replace `#gh-light-mode-only` / `#gh-dark-mode-only` image fragments with a `<picture>` element using `prefers-color-scheme` media queries for reliable dark/light theme logo switching
82
- * **ci:** Update version check in publish workflow to use published version from npm
83
-
84
- ### Dependencies
85
-
86
- * Bump `@aws-sdk/client-ssm` from 3.1019.0 to 3.1021.0 ([#140](https://github.com/macalbert/envilder/pull/140))
87
- * Bump `@aws-sdk/credential-providers` from 3.1019.0 to 3.1021.0 ([#142](https://github.com/macalbert/envilder/pull/142))
88
- * Bump `secretlint` from 11.4.0 to 11.4.1 ([#141](https://github.com/macalbert/envilder/pull/141))
89
- * Bump `@secretlint/secretlint-rule-preset-recommend` from 11.4.0 to 11.4.1 ([#144](https://github.com/macalbert/envilder/pull/144))
90
- * Bump `astro` from 6.1.1 to 6.1.2 ([#143](https://github.com/macalbert/envilder/pull/143))
91
- * Bump `actions/configure-pages` from 5 to 6 ([#139](https://github.com/macalbert/envilder/pull/139))
92
- * Bump `actions/deploy-pages` from 4 to 5 ([#138](https://github.com/macalbert/envilder/pull/138))
93
- * Bump `pnpm/action-setup` from 4 to 5 ([#137](https://github.com/macalbert/envilder/pull/137))
94
-
95
- ---
96
-
97
- ## [0.9.1] - 2026-03-30
98
-
99
- ### Added
100
-
101
- * **Documentation website** — Full Astro-based docs site deployed at [envilder.com](https://envilder.com), with multi-language support (EN, ES, CA), dark/retro and light themes, and a dedicated changelog page
102
-
103
- ### Changed
104
-
105
- * Updated Envilder logo in README
106
-
107
- ### Fixed
108
-
109
- * **deps:** Move `@types/node` from `dependencies` to `devDependencies` to prevent it from being bundled as a runtime dependency
110
- * **e2e:** Use unique SSM paths per CLI test run to prevent race conditions between parallel test executions
111
-
112
- ### Dependencies
113
-
114
- * Bump `brace-expansion` from 5.0.4 to 5.0.5 (security patch)
115
- * Bump `@azure/core-rest-pipeline` and `@azure/identity` group updates
116
-
117
- ---
118
-
119
- ## [0.8.0] - 2026-03-22
120
-
121
- ### Added
122
-
123
- * **`$config` section in map files** — Map files now support an optional `$config` key to declare provider and connection
124
- details inline (e.g., `"provider": "azure"`, `"vaultUrl": "https://..."`, `"profile": "dev-account"`)
125
- * New CLI flag `--vault-url <url>` — Azure Key Vault URL, overrides `$config.vaultUrl` in the map file
126
- * New GitHub Action input `vault-url` — Azure Key Vault URL, overrides `$config.vaultUrl` in the map file
127
- * Precedence chain: CLI flags / GHA inputs > `$config` in map file > defaults
128
- * Backward compatible: existing map files without `$config` continue to work (defaults to AWS provider)
129
- * **Azure Key Vault support** — Use `--provider=azure` (CLI) or `provider: azure` (GitHub Action) to pull/push secrets
130
- from Azure Key Vault ([#90](https://github.com/macalbert/envilder/pull/90))
131
- * New infrastructure adapter: `AzureKeyVaultSecretProvider` implementing `ISecretProvider`
132
- * New CLI option `--provider <name>` to select cloud provider (`aws` or `azure`, default: `aws`)
133
- * New GitHub Action input `provider` for selecting the cloud provider
134
- * Azure authentication via `DefaultAzureCredential` (supports Azure CLI, managed identity, etc.)
135
- * Automatic secret name normalization for Azure Key Vault naming constraints
136
-
137
- ### Changed
138
-
139
- * **CLI flag `--ssm-path` renamed to `--secret-path`** — The old flag is still accepted as a deprecated alias and
140
- prints a warning. It will be removed in a future release.
141
- * `configureInfrastructureServices()` now receives a single `MapFileConfig` object instead of separate parameters
142
- * CLI and GHA entry points read `$config` from the map file and merge with CLI flags / GHA inputs
143
- * Extracted shared `ContainerConfiguration` module (`src/envilder/apps/shared/`) for DI setup reused by CLI and GitHub Action
144
- * Both `Startup.ts` files (CLI and GHA) now delegate to shared `configureInfrastructureServices()` and `configureApplicationServices()`
145
- * Updated CLI description to include Azure Key Vault examples
146
- * Updated `action.yml` description and inputs to reflect multi-provider support
147
-
148
- ### Dependencies
149
-
150
- * Added `@azure/keyvault-secrets`
151
- * Added `@azure/identity`
152
- * Added `@azure/core-rest-pipeline`
153
-
154
- ### Documentation
155
-
156
- * Updated all documentation to reflect `$config` map-file section and `--vault-url` flag
157
- * Updated architecture diagrams and DI code snippets
158
- * Updated GitHub Action examples to use `vault-url` input
159
- * Updated ROADMAP to mark Azure Key Vault as fully implemented
160
-
161
- ---
162
-
163
- ## [0.7.12] - 2026-03-22
164
-
165
- ### Fixed
166
-
167
- * **ssm:** Upgrade AWS SDK to resolve fast-xml-parser CVEs ([#128](https://github.com/macalbert/envilder/pull/128))
168
-
169
- ### Changed
170
-
171
- * **ci:** Upgrade `dorny/test-reporter` to v3 for Node.js 24 support ([#127](https://github.com/macalbert/envilder/pull/127))
172
- * **dx:** Add AI workflow agents, prompts, and lefthook pre-commit hook ([#125](https://github.com/macalbert/envilder/pull/125))
173
-
174
- ### Dependencies
175
-
176
- * Bump `undici` from 7.22.0 to 7.24.1 ([#126](https://github.com/macalbert/envilder/pull/126))
177
-
178
- ---
179
-
180
- ## [0.7.11] - 2026-03-08
181
-
182
- ### Security
183
-
184
- * Bump AWS SDK packages to resolve `fast-xml-parser` vulnerability ([#124](https://github.com/macalbert/envilder/pull/124))
185
-
186
- ---
187
-
188
- ## [0.7.10] - 2026-03-02
189
-
190
- ### Changed
191
-
192
- * **ci:** Update CI configuration for improved build reliability
193
- * Bump AWS SDK SSM to 3.1000.0 and align CI/publish workflows ([#123](https://github.com/macalbert/envilder/pull/123))
194
-
195
- ### Dependencies
196
-
197
- * Bump `@aws-sdk/credential-providers` from 3.995.0 to 3.1000.0 ([#122](https://github.com/macalbert/envilder/pull/122))
198
- * Bump `@types/node` from 25.3.0 to 25.3.3 ([#121](https://github.com/macalbert/envilder/pull/121))
199
- * Bump `minimatch` ([#119](https://github.com/macalbert/envilder/pull/119))
200
-
201
- ---
202
-
203
- ## [0.7.9] - 2026-02-22
204
-
205
- ### Fixed
206
-
207
- * **security:** Patch transitive dependency vulnerabilities ([#118](https://github.com/macalbert/envilder/pull/118))
208
- * **ci:** Simplify npm publish command in workflow
209
-
210
- ### Documentation
211
-
212
- * Updated GitHub Action docs to reference v0.7.9
213
-
214
- ---
215
-
216
- ## [0.7.8] - 2026-02-05
217
-
218
- ### Fixed
219
-
220
- * **deps:** Upgrade AWS SDK to resolve `fast-xml-parser` DoS vulnerability ([#116](https://github.com/macalbert/envilder/pull/116))
221
-
222
- ### Dependencies
223
-
224
- * Bump `@isaacs/brace-expansion` ([#115](https://github.com/macalbert/envilder/pull/115))
225
- * Bump `@secretlint/secretlint-rule-preset-recommend` ([#114](https://github.com/macalbert/envilder/pull/114))
226
- * Bump `commander` from 14.0.2 to 14.0.3 ([#113](https://github.com/macalbert/envilder/pull/113))
227
- * Bump `@aws-sdk/client-ssm` from 3.958.0 to 3.980.0 ([#112](https://github.com/macalbert/envilder/pull/112))
228
- * Bump `secretlint` from 11.2.5 to 11.3.1 ([#110](https://github.com/macalbert/envilder/pull/110))
229
- * Bump `@commitlint/cli` from 20.3.0 to 20.4.0 ([#111](https://github.com/macalbert/envilder/pull/111))
230
-
231
- ---
232
-
233
- ## [0.7.7] - 2026-01-27
234
-
235
- ### Added
236
-
237
- * **push:** AWS throttling retry logic and duplicate SSM path validation ([#109](https://github.com/macalbert/envilder/pull/109))
238
-
239
- ### Fixed
240
-
241
- * **ci:** Streamline `npm publish` workflow to prevent failures ([#106](https://github.com/macalbert/envilder/pull/106))
242
- * **ci-publish:** Update publish command in workflow
243
-
244
- ### Dependencies
245
-
246
- * Bump `lodash` ([#108](https://github.com/macalbert/envilder/pull/108))
247
- * Bump `diff` ([#107](https://github.com/macalbert/envilder/pull/107))
248
-
249
- ---
250
-
251
- ## [0.7.6] - 2026-01-16
252
-
253
- ### Fixed
254
-
255
- * **ci:** Align npm publish script with CI workflow expectations to prevent failures
256
- * Removed redundant validation steps (lint, build, test) from publish script that were already executed in CI
257
-
258
- ### Changed
259
-
260
- * Simplified npm publish script from full validation pipeline to `npm pack --dry-run && npm publish`
261
- * Updated README badge links - npm downloads now links to npmcharts for visual statistics
262
- * Converted README badges from HTML to standard Markdown format for better maintainability
263
- * Updated GitHub Action version references from v0.7.2 to v0.7.6 in documentation
264
-
265
- ### Removed
266
-
267
- * **ci:** Deleted deprecated `publish-action.yml` workflow
268
-
269
- ---
270
-
271
- ## [0.7.5] - 2026-01-15
272
-
273
- ### Documentation
274
-
275
- * Remove changelog generation instructions from documentation ([#104](https://github.com/macalbert/envilder/pull/104))
276
- * Update GitHub Copilot instructions
277
-
278
- ### Dependencies
279
-
280
- * Bump undici to address security vulnerability ([#105](https://github.com/macalbert/envilder/pull/105))
281
-
282
- ---
283
-
284
- ## [0.7.4] - 2026-01-02
285
-
286
- ### Changed
287
-
288
- * **ci:** Update npm publish command to include `--no-git-checks` flag
289
-
290
- ### Dependencies
291
-
292
- * Bump @commitlint/cli from 20.1.0 to 20.2.0 ([#103](https://github.com/macalbert/envilder/pull/103))
293
- * Bump testcontainers from 11.9.0 to 11.11.0 ([#102](https://github.com/macalbert/envilder/pull/102))
294
- * Bump @types/node from 24.10.1 to 25.0.3 ([#101](https://github.com/macalbert/envilder/pull/101))
295
- * Bump @testcontainers/localstack from 11.9.0 to 11.11.0 ([#100](https://github.com/macalbert/envilder/pull/100))
296
- * Bump @commitlint/config-conventional ([#99](https://github.com/macalbert/envilder/pull/99))
297
-
298
- ---
299
-
300
- ## [0.7.3] - 2025-11-29
301
-
302
- ### Changed
303
-
304
- * **ci:** Update Node.js version to 24 in workflow
305
- * Update publish command to use pnpm
306
- * Add repository field to package.json
307
- * Standardize quotes in publish-npm.yml
308
-
309
- ### Dependencies
310
-
311
- * Bump actions/checkout from 5 to 6 ([#98](https://github.com/macalbert/envilder/pull/98))
312
- * Bump glob from 11.1.0 to 13.0.0 ([#97](https://github.com/macalbert/envilder/pull/97))
313
- * Bump pnpm/action-setup from 2 to 4 ([#92](https://github.com/macalbert/envilder/pull/92))
314
- * Bump @commitlint/cli from 19.8.1 to 20.1.0 ([#94](https://github.com/macalbert/envilder/pull/94))
315
- * Bump glob in the npm_and_yarn group ([#96](https://github.com/macalbert/envilder/pull/96))
316
-
317
- ---
318
-
319
- ## [0.7.1] - 2025-11-16
320
-
321
- ### Documentation
322
-
323
- * Update README and ROADMAP for GitHub Action integration ([#95](https://github.com/macalbert/envilder/pull/95))
324
- * Update GitHub Action version from v1 to v0.7.1
325
- * Fix example version for GitHub Action
326
-
327
- ### Changed
328
-
329
- * **ci:** Update workflow to use pnpm for dependency management
330
-
331
- ### Tests
332
-
333
- * Increase timeout for E2E tests to 60 seconds
334
-
335
- ---
336
-
337
- ## [0.7.0] - 2025-11-16
338
-
339
- ### Added
340
-
341
- * **githubAction:** Add end-to-end tests for GitHub Actions simulation
342
- * **githubAction:** Update action paths and add new GitHub Action implementation
343
- * **packaging:** Add project build and uninstall functionality
344
-
345
- ### Fixed
346
-
347
- * **githubAction:** Correct author name in action.yml
348
- * **githubAction:** Correct build command from `ppnpm` to `pnpm`
349
- * **githubAction:** Correct path to `GitHubAction.js` in validation step
350
- * **githubAction:** Remove source map generation from `build:gha` script
351
- * **githubAction:** Update action references in documentation and code
352
-
353
- ### Changed
354
-
355
- * Move GitHub Action to `github-action/` subfolder
356
-
357
- ### Breaking Changes
358
-
359
- * Action path changed from `macalbert/envilder@v1` to `macalbert/envilder/github-action@v1`
360
-
361
- ---
362
-
363
- ## [0.6.6] - 2025-11-02
364
-
365
- ### Changed
366
-
367
- * Updated AWS credentials configuration in workflows
368
- * Bumped vite from 7.1.10 to 7.1.11
369
- * Bumped @types/node from 24.7.2 to 24.9.2
370
- * Bumped @biomejs/biome from 2.2.6 to 2.3.2
371
- * Bumped GitHub/codeql-action from 3 to 4
372
- * Bumped actions/setup-node from 5 to 6
373
- * Bumped vitest from 3.2.4 to 4.0.6
374
-
375
- ### Documentation
376
-
377
- * Added Snyk badge for known vulnerabilities in README
378
-
379
- ## [0.6.5] - 2025-10-15
380
-
381
- ### Added
382
-
383
- * Enabled npm trusted publishing with OIDC authentication
384
-
385
- ### Changed
386
-
387
- * Bumped tmp from 0.2.3 to 0.2.4
388
- * Bumped @types/node from 22.16.3 to 24.3.0
389
- * Bumped @testcontainers/localstack from 11.2.1 to 11.5.1
390
- * Bumped testcontainers from 11.2.1 to 11.5.1
391
- * Bumped @aws-sdk/credential-providers from 3.844.0 to 3.879.0
392
- * Bumped secretlint from 10.2.1 to 11.2.0
393
- * Bumped @biomejs/biome from 2.1.3 to 2.2.4
394
- * Bumped @secretlint/secretlint-rule-preset-recommend from 10.2.1 to 11.2.4
395
- * Bumped vite from 7.0.4 to 7.1.5
396
- * Bumped commander from 14.0.0 to 14.0.1
397
- * Bumped inversify from 7.6.1 to 7.10.2
398
- * Updated actions/checkout from 4 to 5
399
- * Updated actions/setup-node from 4 to 5
400
- * Updated actions/upload-pages-artifact from 3 to 4
401
- * Updated aws-actions/configure-aws-credentials from 4 to 5
402
-
403
- ## [0.6.4] - 2025-08-02
404
-
405
- ### Changed
406
-
407
- * Bumped typescript from 5.8.3 to 5.9.2
408
- * Bumped secretlint from 10.2.0 to 10.2.1
409
- * Bumped @types/glob from 8.1.0 to 9.0.0
410
- * Bumped @secretlint/secretlint-rule-preset-recommend from 10.2.0 to 10.2.1
411
- * Bumped @biomejs/biome from 2.1.1 to 2.1.3
412
-
413
- ## [0.6.3] - 2025-07-20
414
-
415
- ### Changed
416
-
417
- * Bump version to 0.6.3 in package.json
418
-
419
- ---
420
-
421
- ## [0.6.2] - 2025-07-20
422
-
423
- ### Changed
424
-
425
- * **di:** Implement .NET-Style DIP Startup Pattern for dependency injection — improved separation of concerns in DI configuration ([#59](https://github.com/macalbert/envilder/pull/59))
426
-
427
- ---
428
-
429
- ## [0.6.1] - 2025-07-13
430
-
431
- ### Added
432
-
433
- * **Push Mode** functionality to upload environment variables to AWS SSM Parameter Store
434
- * File-based approach for pushing multiple variables from `.env` files
435
- * Single-variable approach for direct command line uploads
436
- * Support for working with different AWS profiles when pushing secrets
437
- * Comprehensive test coverage for all Push Mode functionality
438
-
439
- ### Security
440
-
441
- * Implemented secure parameter handling to protect sensitive values
442
- * Maintained AWS IAM best practices for least privilege
443
- * Added safeguards against accidental overwrites of critical parameters
444
-
445
- ### Changed
446
-
447
- * Designed clean, modular command structure for Push Mode operations
448
- * Added new domain models and handlers to support Push feature
449
- * Maintained separation of concerns between infrastructure and application layers
450
- * Ensured backward compatibility with existing Pull Mode features
451
-
452
- ### Documentation
453
-
454
- * Added comprehensive examples for all new Push Mode commands
455
- * Created visual diagrams explaining Push Mode data flow
456
- * Documented options and parameters for Push Mode operations
457
-
458
- ---
459
-
460
- ## [0.6.0] - 2025-07-13
461
-
462
- ### Added
463
-
464
- * **push:** Introduced Push Mode — sync local `.env` variables to AWS SSM Parameter Store ([#57](https://github.com/macalbert/envilder/pull/57))
465
-
466
- ---
467
-
468
- ## [0.5.6] - 2025-07-06
469
-
470
- ### Added
471
-
472
- * Introduced new logger interface for seamless integration of custom logging implementations
473
-
474
- ### Changed
475
-
476
- * Updated several packages to latest versions for improved security and performance
477
-
478
- ### Documentation
479
-
480
- * Added video guide to README demonstrating CLI usage
481
- * Enhanced user onboarding materials
482
-
483
- ## [0.5.5] - 2025-06-29
484
-
485
- ### Changed
486
-
487
- * Moved `EnvilderBuilder` from `domain` to `application/builders` directory
488
- * Updated import paths across codebase for better organization
489
- * Enhanced code architecture alignment with domain-driven design principles
490
-
491
- ### Fixed
492
-
493
- * Fixed glob pattern and path handling in test cleanup functions
494
- * Corrected file path resolution in end-to-end tests
495
- * Improved error handling during test file deletions
496
-
497
- ### Documentation
498
-
499
- * Extensively updated README with clearer structure and table of contents
500
- * Added feature status table to clarify implemented vs planned features
501
- * Simplified installation and usage instructions
502
- * Revamped pull request template for better contributor experience
503
- * Removed outdated environment-specific parameter examples
504
-
505
- ## [0.5.4] - 2025-06-10
506
-
507
- ### Added
508
-
509
- * Added unit tests for error handling with missing CLI arguments
510
- * Enhanced unit test reporting with JUnit format for better CI integration
511
-
512
- ### Changed
513
-
514
- * Refactored `EnvFileManager` and related interfaces to use async/await
515
- * Improved error handling and modularized secret processing in `Envilder`
516
- * Enhanced error handling for missing secrets with clearer feedback
517
- * Renamed methods, test suite descriptions, and filenames for consistency
518
- * Extracted package.json version retrieval into dedicated `PackageJsonFinder` class
519
- * Modularized and simplified `escapeEnvValue` method and related tests
520
- * Updated dependencies for better reliability
521
- * Improved test cleanup for more reliable test runs
522
- * Added and reorganized permissions in CI workflow
523
- * Updated `.gitattributes` for better language stats on GitHub
524
-
525
- ## [0.5.3] - 2025-06-07
526
-
527
- ### Added
528
-
529
- * Modular CLI for environment variable synchronization with pluggable secret providers
530
- * Builder pattern for flexible CLI configuration and usage
531
- * Extensive unit, integration, and end-to-end tests
532
- * AWS integration testing using Localstack with Testcontainers
533
- * Expanded tests for environment file escaping and builder configuration
534
-
535
- ### Changed
536
-
537
- * **BREAKING**: Full TypeScript migration from JavaScript
538
- * Introduced modular, layered architecture with clear separation
539
- * Restructured CLI internals for improved maintainability
540
- * Test structure now mirrors production code structure
541
- * Migrated CI/CD workflows and scripts from Yarn to npm
542
- * Updated ignore files and configuration
543
-
544
- ### Documentation
545
-
546
- * Updated documentation to focus on npm commands
547
- * Improved workflow and script documentation
548
-
549
- ## [0.5.2] - 2025-05-18
550
-
551
- ### Added
552
-
553
- * Comprehensive E2E validation test in CI/CD pipeline
554
- * Validation includes: build, `npm pack`, local install, and CLI command execution
555
- * Ensures package integrity and command-line operability before release
556
-
557
- ## [0.5.1] - 2025-05-16
558
-
559
- ### Fixed
560
-
561
- * CLI command not recognized after global install (`npm install -g envilder`)
562
- * Fixed missing compiled `lib/` files in published package
563
-
564
- ---
565
-
566
- > **Note:** Versions below 0.5.1 are deprecated on npm and no longer supported.
567
- > They are preserved here for historical reference only.
568
-
569
- ---
570
-
571
- ## [0.3.0] - 2025-05-09 [DEPRECATED]
572
-
573
- ### Added
574
-
575
- * Support for working with different AWS accounts and configurations via AWS profiles
576
-
577
- ### Changed
578
-
579
- * Bumped @secretlint/secretlint-rule-preset-recommend from 9.3.0 to 9.3.2
580
- * Bumped @types/node from 22.14.1 to 22.15.3
581
- * Bumped commander from 12.1.0 to 13.1.0
582
- * Bumped vite from 6.2.6 to 6.3.4
583
- * Bumped @aws-sdk/client-ssm from 3.787.0 to 3.799.0
584
-
585
- ## [0.2.3] - 2025-04-12 [DEPRECATED]
586
-
587
- ### Changed
588
-
589
- * Updated multiple dependencies including:
590
- * @types/node from 22.7.5 to 22.10.3
591
- * @aws-sdk/client-ssm from 3.670.0 to 3.716.0
592
- * @biomejs/biome from 1.9.3 to 1.9.4
593
- * nanoid from 3.3.7 to 3.3.8
594
- * @secretlint/secretlint-rule-preset-recommend from 8.5.0 to 9.0.0
595
- * secretlint from 8.5.0 to 9.0.0
596
-
597
- ## [0.2.1] - 2024-10-16 [DEPRECATED]
598
-
599
- ### Added
600
-
601
- * Code coverage reporting and deployment to GitHub Pages
602
- * CodeQL workflow for security analysis
603
- * Preserve existing `.env` file and update values if present
604
-
605
- ### Documentation
606
-
607
- * Updated README.md with improved documentation
608
-
609
- ## [0.1.4] - 2024-10-01 [DEPRECATED]
610
-
611
- Initial public release of Envilder.
5
+ | Component | Changelog | Package |
6
+ |-----------|-----------|---------|
7
+ | CLI | [cli.md](changelogs/cli.md) | [npm](https://www.npmjs.com/package/envilder) |
8
+ | GitHub Action | [gha.md](changelogs/gha.md) | [Marketplace](https://github.com/marketplace/actions/envilder) |
9
+ | .NET SDK | [sdk-dotnet.md](changelogs/sdk-dotnet.md) | [NuGet](https://www.nuget.org/packages/Envilder) |
10
+ | Python SDK | [sdk-python.md](changelogs/sdk-python.md) | [PyPI](https://pypi.org/project/envilder) |
11
+ | Node.js SDK | [sdk-nodejs.md](changelogs/sdk-nodejs.md) | [npm](https://www.npmjs.com/package/@envilder/sdk) |