zod-envkit 1.0.2 → 1.0.3

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 (2) hide show
  1. package/CHANGELOG.md +25 -15
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,11 +1,34 @@
1
1
  # Changelog
2
2
 
3
- All notable changes to this project will be documented in this file.
4
-
3
+ All notable changes to this project will be documented in this file.
5
4
  This project follows [Semantic Versioning](https://semver.org/).
6
5
 
7
6
  ---
8
7
 
8
+ ## [1.0.2] – 2026-01-26
9
+
10
+ ### Added
11
+ - `zod-envkit show` command to display environment status in a readable table (with secret masking)
12
+ - `zod-envkit check` command to validate required variables with CI-friendly exit codes
13
+
14
+ ### Changed
15
+ - CLI now also searches for `env.meta.json` in `./examples/` by default
16
+ - CLI output and documentation updated accordingly
17
+
18
+ [1.0.2]: https://www.npmjs.com/package/zod-envkit/v/1.0.2
19
+
20
+ ---
21
+
22
+ ## [1.0.1] – 2026-01-26
23
+
24
+ ### Changed
25
+ - Packaging improvements for npm (ship only compiled output and docs)
26
+ - Documentation updates
27
+
28
+ [1.0.1]: https://www.npmjs.com/package/zod-envkit/v/1.0.1
29
+
30
+ ---
31
+
9
32
  ## [1.0.0] – 2026-01-26
10
33
 
11
34
  ### Added
@@ -16,11 +39,9 @@ This project follows [Semantic Versioning](https://semver.org/).
16
39
  - CLI tool to generate:
17
40
  - `.env.example`
18
41
  - `ENV.md` documentation
19
- - Automatic type inference for validated environment variables
20
42
  - Support for ESM and CommonJS builds
21
43
  - TypeScript declaration files (`.d.ts`) included
22
44
  - Basic test suite using Vitest
23
- - Clear and documented API surface
24
45
  - MIT license
25
46
 
26
47
  ### Design Decisions
@@ -29,15 +50,4 @@ This project follows [Semantic Versioning](https://semver.org/).
29
50
  - Environment variables treated as an explicit runtime contract
30
51
  - Small, framework-agnostic core
31
52
 
32
- ---
33
-
34
53
  [1.0.0]: https://www.npmjs.com/package/zod-envkit/v/1.0.0
35
-
36
-
37
- ## [1.0.1] – 2026-01-26
38
-
39
- ### Changed
40
- - Documentation and packaging improvements
41
- - Minor CLI/docs adjustments
42
-
43
- [1.0.1]: https://www.npmjs.com/package/zod-envkit/v/1.0.1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zod-envkit",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "Validate environment variables with Zod and generate .env.example",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",