dotenv-diff 2.4.11 → 2.5.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.
Files changed (85) hide show
  1. package/CHANGELOG.md +348 -533
  2. package/README.md +2 -2
  3. package/dist/src/cli/run.js +2 -1
  4. package/dist/src/cli/run.js.map +1 -1
  5. package/dist/src/commands/compare.d.ts.map +1 -1
  6. package/dist/src/commands/compare.js +8 -22
  7. package/dist/src/commands/compare.js.map +1 -1
  8. package/dist/src/commands/ensureFilesOrPrompt.d.ts +6 -0
  9. package/dist/src/commands/ensureFilesOrPrompt.d.ts.map +1 -1
  10. package/dist/src/commands/ensureFilesOrPrompt.js +1 -1
  11. package/dist/src/commands/ensureFilesOrPrompt.js.map +1 -1
  12. package/dist/src/commands/scanUsage.js +1 -1
  13. package/dist/src/commands/scanUsage.js.map +1 -1
  14. package/dist/src/config/types.d.ts +18 -0
  15. package/dist/src/config/types.d.ts.map +1 -1
  16. package/dist/src/core/compare/calculateStats.d.ts +19 -0
  17. package/dist/src/core/compare/calculateStats.d.ts.map +1 -0
  18. package/dist/src/core/compare/calculateStats.js +27 -0
  19. package/dist/src/core/compare/calculateStats.js.map +1 -0
  20. package/dist/src/core/compare/parseAndFilterEnv.d.ts +20 -0
  21. package/dist/src/core/compare/parseAndFilterEnv.d.ts.map +1 -0
  22. package/dist/src/core/compare/parseAndFilterEnv.js +22 -0
  23. package/dist/src/core/compare/parseAndFilterEnv.js.map +1 -0
  24. package/dist/src/core/compare/updateTotals.d.ts +22 -0
  25. package/dist/src/core/compare/updateTotals.d.ts.map +1 -0
  26. package/dist/src/core/compare/updateTotals.js +37 -0
  27. package/dist/src/core/compare/updateTotals.js.map +1 -0
  28. package/dist/src/core/defaultExcludeKeys.d.ts +7 -0
  29. package/dist/src/core/defaultExcludeKeys.d.ts.map +1 -0
  30. package/dist/src/core/diffEnv.d.ts +9 -0
  31. package/dist/src/core/diffEnv.d.ts.map +1 -1
  32. package/dist/src/core/diffEnv.js +2 -2
  33. package/dist/src/core/diffEnv.js.map +1 -1
  34. package/dist/src/core/filterIgnoredKeys.d.ts +5 -0
  35. package/dist/src/core/filterIgnoredKeys.d.ts.map +1 -1
  36. package/dist/src/core/filterIgnoredKeys.js +14 -1
  37. package/dist/src/core/filterIgnoredKeys.js.map +1 -1
  38. package/dist/src/core/fixEnv.d.ts +6 -0
  39. package/dist/src/core/fixEnv.d.ts.map +1 -1
  40. package/dist/src/core/fixEnv.js.map +1 -1
  41. package/dist/src/core/frameworks/nextJsRules.js +2 -2
  42. package/dist/src/core/frameworks/nextJsRules.js.map +1 -1
  43. package/dist/src/core/frameworks/sveltekitRules.d.ts.map +1 -1
  44. package/dist/src/core/frameworks/sveltekitRules.js +12 -0
  45. package/dist/src/core/frameworks/sveltekitRules.js.map +1 -1
  46. package/dist/src/core/patterns.d.ts +4 -5
  47. package/dist/src/core/patterns.d.ts.map +1 -1
  48. package/dist/src/core/patterns.js +4 -13
  49. package/dist/src/core/patterns.js.map +1 -1
  50. package/dist/src/core/scan/compareScan.d.ts +10 -0
  51. package/dist/src/core/scan/compareScan.d.ts.map +1 -0
  52. package/dist/src/core/scan/compareScan.js +19 -0
  53. package/dist/src/core/scan/compareScan.js.map +1 -0
  54. package/dist/src/core/scan/computeHealthScore.d.ts +8 -0
  55. package/dist/src/core/scan/computeHealthScore.d.ts.map +1 -0
  56. package/dist/src/core/scan/computeHealthScore.js +35 -0
  57. package/dist/src/core/scan/computeHealthScore.js.map +1 -0
  58. package/dist/src/core/scan/determineComparisonFile.d.ts +13 -0
  59. package/dist/src/core/scan/determineComparisonFile.d.ts.map +1 -0
  60. package/dist/src/core/scan/determineComparisonFile.js +33 -0
  61. package/dist/src/core/scan/determineComparisonFile.js.map +1 -0
  62. package/dist/src/core/scan/scanFile.d.ts +10 -0
  63. package/dist/src/core/scan/scanFile.d.ts.map +1 -0
  64. package/dist/src/core/scan/scanFile.js +65 -0
  65. package/dist/src/core/scan/scanFile.js.map +1 -0
  66. package/dist/src/core/security/secretDetectors.d.ts +3 -0
  67. package/dist/src/core/security/secretDetectors.d.ts.map +1 -1
  68. package/dist/src/core/security/secretDetectors.js +14 -36
  69. package/dist/src/core/security/secretDetectors.js.map +1 -1
  70. package/dist/src/services/envDiscovery.d.ts.map +1 -1
  71. package/dist/src/services/envDiscovery.js +9 -1
  72. package/dist/src/services/envDiscovery.js.map +1 -1
  73. package/dist/src/services/printScanResult.js +1 -1
  74. package/dist/src/services/printScanResult.js.map +1 -1
  75. package/dist/src/services/processComparisonFile.d.ts +3 -0
  76. package/dist/src/services/processComparisonFile.d.ts.map +1 -1
  77. package/dist/src/services/processComparisonFile.js +1 -1
  78. package/dist/src/services/processComparisonFile.js.map +1 -1
  79. package/dist/src/services/scanCodebase.js +1 -1
  80. package/dist/src/services/scanCodebase.js.map +1 -1
  81. package/dist/src/ui/scan/printHeader.js +1 -1
  82. package/dist/src/ui/scan/printHeader.js.map +1 -1
  83. package/dist/src/ui/scan/scanJsonOutput.js +1 -1
  84. package/dist/src/ui/scan/scanJsonOutput.js.map +1 -1
  85. package/package.json +5 -1
package/CHANGELOG.md CHANGED
@@ -1,556 +1,371 @@
1
1
  # Changelog
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
- This project follows [Keep a Changelog](https://keepachangelog.com/) and [Semantic Versioning](https://semver.org/).
5
4
 
6
- ## [Unreleased]
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+
9
+ ## [](https://github.com/Chrilleweb/dotenv-diff/compare/v2.4.11...vnull) (2026-01-26)
10
+
11
+ ### Bug Fixes
12
+
13
+ * modifed release.yml ([cbe3129](https://github.com/Chrilleweb/dotenv-diff/commit/cbe3129942775c8c1b7bf60a5b888399d08de081))
14
+ * removed tests from release-it ([1cc591f](https://github.com/Chrilleweb/dotenv-diff/commit/1cc591f4c34c285035d66dd4dd8c58031ba0ef8b))
15
+ * standardize scan output colors ([6d3348b](https://github.com/Chrilleweb/dotenv-diff/commit/6d3348b9b6ff184c7767a4b2a99917319923efff))
16
+
17
+ ### Changelog
7
18
 
8
- ### Added
19
+ All notable changes to this project will be documented in this file. Dates are displayed in UTC.
20
+
21
+ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
22
+
23
+ #### [2.5.1](https://github.com/Chrilleweb/dotenv-diff/compare/2.5.0...2.5.1)
24
+
25
+ - chore: removed publish fra package manager [`#220`](https://github.com/Chrilleweb/dotenv-diff/pull/220)
26
+ - chore: npm publish false [`#219`](https://github.com/Chrilleweb/dotenv-diff/pull/219)
27
+ - chore: package.json [`#217`](https://github.com/Chrilleweb/dotenv-diff/pull/217)
28
+ - chore: skipChek npm [`#216`](https://github.com/Chrilleweb/dotenv-diff/pull/216)
29
+ - chore: release yml [`#215`](https://github.com/Chrilleweb/dotenv-diff/pull/215)
30
+ - chore: release yml file [`#214`](https://github.com/Chrilleweb/dotenv-diff/pull/214)
31
+ - chore: updated release.yml [`#213`](https://github.com/Chrilleweb/dotenv-diff/pull/213)
32
+ - chore: updated pnpm in workflows [`#212`](https://github.com/Chrilleweb/dotenv-diff/pull/212)
33
+ - chore: pnpm frozen lockfile [`#211`](https://github.com/Chrilleweb/dotenv-diff/pull/211)
34
+ - chore: debug release yml file [`#210`](https://github.com/Chrilleweb/dotenv-diff/pull/210)
35
+ - chore: updated gitignore [`#209`](https://github.com/Chrilleweb/dotenv-diff/pull/209)
36
+ - fix: removed tests from release-it [`#208`](https://github.com/Chrilleweb/dotenv-diff/pull/208)
37
+ - fix: modifed release.yml [`#207`](https://github.com/Chrilleweb/dotenv-diff/pull/207)
38
+ - fix: standardize scan output colors [`#206`](https://github.com/Chrilleweb/dotenv-diff/pull/206)
39
+ - chore: setup release-it [`#204`](https://github.com/Chrilleweb/dotenv-diff/pull/204)
40
+ - ci: release yml [`a1db55f`](https://github.com/Chrilleweb/dotenv-diff/commit/a1db55f7701f3328396359f90154cc3ecab5cb69)
41
+ - chore: release npm outside og release-it [`b685037`](https://github.com/Chrilleweb/dotenv-diff/commit/b685037b8a8f1e5a5fd59d21e7a877d11dc75196)
42
+ - chore: removed pnpm specified v [`08f331c`](https://github.com/Chrilleweb/dotenv-diff/commit/08f331c6f4e044ec0d64c904767885fbaa123b36)
43
+
44
+ #### [2.5.0](https://github.com/Chrilleweb/dotenv-diff/compare/v2.4.11...2.5.0)
45
+
46
+ > 24 January 2026
47
+
48
+ - v2.5.0 [`#203`](https://github.com/Chrilleweb/dotenv-diff/pull/203)
49
+ - codecov in readme [`#202`](https://github.com/Chrilleweb/dotenv-diff/pull/202)
50
+ - added lcov for coverage data [`#201`](https://github.com/Chrilleweb/dotenv-diff/pull/201)
51
+ - coverage token [`#200`](https://github.com/Chrilleweb/dotenv-diff/pull/200)
52
+ - JSDoc for interface [`#199`](https://github.com/Chrilleweb/dotenv-diff/pull/199)
53
+ - JSDoc for diffEnv type [`#198`](https://github.com/Chrilleweb/dotenv-diff/pull/198)
54
+ - Improve documentation [`#197`](https://github.com/Chrilleweb/dotenv-diff/pull/197)
55
+ - added default exclude keys / framework rules / ISSUE templates [`#193`](https://github.com/Chrilleweb/dotenv-diff/pull/193)
56
+ - deter unit tests [`a5135e4`](https://github.com/Chrilleweb/dotenv-diff/commit/a5135e4b029ce86ad63a13593d21d9741e0299f9)
57
+ - calculate stats for compare [`70c8608`](https://github.com/Chrilleweb/dotenv-diff/commit/70c8608467f911c536f4d33864727bea2d8fae4a)
58
+ - updated tests [`6b0d0a2`](https://github.com/Chrilleweb/dotenv-diff/commit/6b0d0a226135b9a2884076f588eb0a8372a6e3b4)
59
+
60
+ #### [v2.4.11](https://github.com/Chrilleweb/dotenv-diff/compare/v2.4.10...v2.4.11)
61
+
62
+ > 20 January 2026
63
+
64
+ - v2.4.11 [`#192`](https://github.com/Chrilleweb/dotenv-diff/pull/192)
65
+ - sveltekit rules update [`#191`](https://github.com/Chrilleweb/dotenv-diff/pull/191)
66
+ - refactor of compareMany [`#190`](https://github.com/Chrilleweb/dotenv-diff/pull/190)
67
+ - scanJsonOutput tests coverage [`#189`](https://github.com/Chrilleweb/dotenv-diff/pull/189)
68
+ - changed image on clean output [`#188`](https://github.com/Chrilleweb/dotenv-diff/pull/188)
69
+ - secretDetectors unit tests [`bc73926`](https://github.com/Chrilleweb/dotenv-diff/commit/bc73926ee3d9ba574b9938daaf7f9af995bb8215)
70
+ - sveltekit rules opdate [`ef2f590`](https://github.com/Chrilleweb/dotenv-diff/commit/ef2f5906eeeaeda90ed79e40e102b8ba4659820c)
71
+ - sveltekit rules improved [`9db94dd`](https://github.com/Chrilleweb/dotenv-diff/commit/9db94dd7ee1bd1c8ea5ffb52583dc9e65bff8e7f)
72
+
73
+ #### [v2.4.10](https://github.com/Chrilleweb/dotenv-diff/compare/v2.4.9...v2.4.10)
9
74
 
10
- -
75
+ > 19 January 2026
11
76
 
12
- ### Changed
77
+ - Updated dependencies + v2.4.10 [`#187`](https://github.com/Chrilleweb/dotenv-diff/pull/187)
78
+ - Fixed prompt bug [`#186`](https://github.com/Chrilleweb/dotenv-diff/pull/186)
79
+ - Compare tests and json fix [`#185`](https://github.com/Chrilleweb/dotenv-diff/pull/185)
80
+ - envPairing tests and rename [`#183`](https://github.com/Chrilleweb/dotenv-diff/pull/183)
81
+ - envDiscovery tests and moved to service folder [`#182`](https://github.com/Chrilleweb/dotenv-diff/pull/182)
82
+ - detectEnvExp [`#181`](https://github.com/Chrilleweb/dotenv-diff/pull/181)
83
+ - compareScan unit tests [`#180`](https://github.com/Chrilleweb/dotenv-diff/pull/180)
84
+ - scanCodebase tests + optinal files [`#179`](https://github.com/Chrilleweb/dotenv-diff/pull/179)
85
+ - frameworkValidator 100% test coverage [`#178`](https://github.com/Chrilleweb/dotenv-diff/pull/178)
86
+ - frameworkDetector unit tests [`#177`](https://github.com/Chrilleweb/dotenv-diff/pull/177)
87
+ - Secret detector unit tests [`#176`](https://github.com/Chrilleweb/dotenv-diff/pull/176)
88
+ - code of conduct [`#174`](https://github.com/Chrilleweb/dotenv-diff/pull/174)
89
+ - added test for scanFile + fixed regex for .env matches [`#173`](https://github.com/Chrilleweb/dotenv-diff/pull/173)
90
+ - Test coverage [`#172`](https://github.com/Chrilleweb/dotenv-diff/pull/172)
91
+ - compare unit tests [`4631d29`](https://github.com/Chrilleweb/dotenv-diff/commit/4631d29c368151ba6e50d18f4e2f05a27a3fd772)
92
+ - filwalker test coverage [`9a2a20d`](https://github.com/Chrilleweb/dotenv-diff/commit/9a2a20d4a5f6f48215ec703fa903a77888f30bce)
93
+ - updated dependencies + v2.4.10 [`251ebad`](https://github.com/Chrilleweb/dotenv-diff/commit/251ebad56acc34cecf3a5b1eb2472c1b930c8ddb)
94
+
95
+ #### [v2.4.9](https://github.com/Chrilleweb/dotenv-diff/compare/v2.4.8...v2.4.9)
96
+
97
+ > 13 January 2026
13
98
 
14
- -
99
+ - fixed repo url in package json [`#171`](https://github.com/Chrilleweb/dotenv-diff/pull/171)
100
+ - fixed sveltekit bug [`#170`](https://github.com/Chrilleweb/dotenv-diff/pull/170)
101
+ - updated dev depen [`12fc9b4`](https://github.com/Chrilleweb/dotenv-diff/commit/12fc9b4818fe66ca97f6bdb1a58d7a6151095162)
15
102
 
16
- ### Fixed
103
+ #### [v2.4.8](https://github.com/Chrilleweb/dotenv-diff/compare/v2.4.7...v2.4.8)
104
+
105
+ > 13 January 2026
106
+
107
+ - Fixed test [`#169`](https://github.com/Chrilleweb/dotenv-diff/pull/169)
108
+ - Fixed Sveltekit rules [`#168`](https://github.com/Chrilleweb/dotenv-diff/pull/168)
109
+ - Renamed function [`#166`](https://github.com/Chrilleweb/dotenv-diff/pull/166)
110
+ - moved framework core files to framework folder [`#165`](https://github.com/Chrilleweb/dotenv-diff/pull/165)
111
+ - test coverage [`3bd5312`](https://github.com/Chrilleweb/dotenv-diff/commit/3bd53126617e9d58b08e1cc79412f3450199b79d)
112
+ - updated sveltekit rules [`3db16fe`](https://github.com/Chrilleweb/dotenv-diff/commit/3db16fee1a05fc1f6dcbc3cbf4152e5cfbd22c36)
113
+ - parseEnv error handling [`14dc4f7`](https://github.com/Chrilleweb/dotenv-diff/commit/14dc4f7daa65c18945fc1c92a4905d63c802cba8)
114
+
115
+ #### [v2.4.7](https://github.com/Chrilleweb/dotenv-diff/compare/v2.4.6...v2.4.7)
116
+
117
+ > 11 January 2026
118
+
119
+ - v2.4.7 [`#164`](https://github.com/Chrilleweb/dotenv-diff/pull/164)
120
+ - Updated README [`#163`](https://github.com/Chrilleweb/dotenv-diff/pull/163)
121
+ - Added Progressbar for scan mode [`#162`](https://github.com/Chrilleweb/dotenv-diff/pull/162)
122
+ - Moved constants to constants file [`#161`](https://github.com/Chrilleweb/dotenv-diff/pull/161)
123
+ - exitresult + type + exit decision [`#160`](https://github.com/Chrilleweb/dotenv-diff/pull/160)
124
+ - interfaces, types and documentation + constants [`#159`](https://github.com/Chrilleweb/dotenv-diff/pull/159)
125
+ - Fixed path normalization issue [`#158`](https://github.com/Chrilleweb/dotenv-diff/pull/158)
126
+ - Added PR template [`#156`](https://github.com/Chrilleweb/dotenv-diff/pull/156)
127
+ - moved scanjson output out of types [`e0d80c0`](https://github.com/Chrilleweb/dotenv-diff/commit/e0d80c09c1d6d8d3a62a1e606cad4bf5ae22bd1b)
128
+ - Moved types arround for better readability [`e9d6424`](https://github.com/Chrilleweb/dotenv-diff/commit/e9d6424477a702798182efee46f7634996310471)
129
+ - framework rules cross-platform consistency. [`4939788`](https://github.com/Chrilleweb/dotenv-diff/commit/4939788e120fb17fcb0d807ade599bf9f7af88ad)
130
+
131
+ #### [v2.4.6](https://github.com/Chrilleweb/dotenv-diff/compare/v2.4.5...v2.4.6)
132
+
133
+ > 6 January 2026
134
+
135
+ - added BOM hadnling [`#155`](https://github.com/Chrilleweb/dotenv-diff/pull/155)
136
+ - removed unused await + added comment for documentation [`#153`](https://github.com/Chrilleweb/dotenv-diff/pull/153)
137
+ - bump(deps-dev): bump the dev-dependencies group with 2 updates [`#154`](https://github.com/Chrilleweb/dotenv-diff/pull/154)
138
+ - scan output to json modified [`#152`](https://github.com/Chrilleweb/dotenv-diff/pull/152)
139
+ - scanFile [`#151`](https://github.com/Chrilleweb/dotenv-diff/pull/151)
140
+ - Maintiance code [`#150`](https://github.com/Chrilleweb/dotenv-diff/pull/150)
141
+ - refactor [`#149`](https://github.com/Chrilleweb/dotenv-diff/pull/149)
142
+ - README update [`#148`](https://github.com/Chrilleweb/dotenv-diff/pull/148)
143
+ - updated vitest timeout + Set array + maintaince [`c117cb2`](https://github.com/Chrilleweb/dotenv-diff/commit/c117cb27a1df7736a97e40bdab4994fd7c833338)
144
+ - updated readme [`2f8abb8`](https://github.com/Chrilleweb/dotenv-diff/commit/2f8abb84084d129414456e2cf47f6a8297625fcd)
145
+ - Discovery type into types file [`32ff023`](https://github.com/Chrilleweb/dotenv-diff/commit/32ff02364e54e8b63e9fece82c2bd955eb68ef89)
146
+
147
+ #### [v2.4.5](https://github.com/Chrilleweb/dotenv-diff/compare/v2.4.4...v2.4.5)
148
+
149
+ > 29 December 2025
150
+
151
+ - bump(deps-dev): bump the dev-dependencies group with 2 updates [`#146`](https://github.com/Chrilleweb/dotenv-diff/pull/146)
152
+ - v2.4.5 [`#147`](https://github.com/Chrilleweb/dotenv-diff/pull/147)
153
+ - Update framework rules. [`#145`](https://github.com/Chrilleweb/dotenv-diff/pull/145)
154
+ - Changed UI for framework warnings [`#144`](https://github.com/Chrilleweb/dotenv-diff/pull/144)
155
+ - updated next js rules reason text [`ce91701`](https://github.com/Chrilleweb/dotenv-diff/commit/ce9170122a59779d5811cd0f4f463a52fb258e9e)
156
+ - updated sveltekit framework warnings [`ffaa28b`](https://github.com/Chrilleweb/dotenv-diff/commit/ffaa28bcbcf8fa3e910baa3d5eb20abfd757314b)
157
+ - updated changelog [`0af3bce`](https://github.com/Chrilleweb/dotenv-diff/commit/0af3bced6f5783b73bb9139efe313b9c91a0262b)
158
+
159
+ #### [v2.4.4](https://github.com/Chrilleweb/dotenv-diff/compare/v2.4.3...v2.4.4)
160
+
161
+ > 27 December 2025
162
+
163
+ - Fixed bug in next js framework rules [`#143`](https://github.com/Chrilleweb/dotenv-diff/pull/143)
164
+ - fixed nextjs warnings bug [`53df709`](https://github.com/Chrilleweb/dotenv-diff/commit/53df709714f99359061bb9b99a02e30e7c0c3c62)
165
+
166
+ #### [v2.4.3](https://github.com/Chrilleweb/dotenv-diff/compare/v2.4.1...v2.4.3)
167
+
168
+ > 27 December 2025
169
+
170
+ - removed t3-env integration [`#142`](https://github.com/Chrilleweb/dotenv-diff/pull/142)
171
+ - fixed t3env bugs [`#141`](https://github.com/Chrilleweb/dotenv-diff/pull/141)
17
172
 
18
- -
173
+ #### [v2.4.1](https://github.com/Chrilleweb/dotenv-diff/compare/v2.4.0...v2.4.1)
19
174
 
20
- ## [2.4.11] - 2026-01-20
175
+ > 27 December 2025
176
+
177
+ - v2.4.1 [`#140`](https://github.com/Chrilleweb/dotenv-diff/pull/140)
178
+ - T3-env bug fix på false positive in secret detection [`#139`](https://github.com/Chrilleweb/dotenv-diff/pull/139)
179
+ - Scan stats [`#138`](https://github.com/Chrilleweb/dotenv-diff/pull/138)
180
+ - fixed t3env mutible bug + secret detection false potitive warning [`01f0c13`](https://github.com/Chrilleweb/dotenv-diff/commit/01f0c1313b8449d33e6f91ddfd738f614df5856d)
181
+ - changed scan stats name [`c821d85`](https://github.com/Chrilleweb/dotenv-diff/commit/c821d8564bfef9c6826c7d00a357022b507cc745)
21
182
 
22
- ### Added
183
+ #### [v2.4.0](https://github.com/Chrilleweb/dotenv-diff/compare/v2.3.12...v2.4.0)
23
184
 
24
- - SvelteKit framework rule (PUBLIC_ env vars cant be accessed through $env/dynamic/private).
185
+ > 27 December 2025
25
186
 
26
- ### Fixed
187
+ - Example warnings to json [`#137`](https://github.com/Chrilleweb/dotenv-diff/pull/137)
188
+ - fixed bug where it would give double warnings on framework specific w… [`#136`](https://github.com/Chrilleweb/dotenv-diff/pull/136)
189
+ - v2.4.0 [`#135`](https://github.com/Chrilleweb/dotenv-diff/pull/135)
190
+ - Fixed compare mode value mismatch count [`#134`](https://github.com/Chrilleweb/dotenv-diff/pull/134)
191
+ - fixed CLI UI bug [`#133`](https://github.com/Chrilleweb/dotenv-diff/pull/133)
192
+ - nextjs and t3env rules fixed [`3678e4d`](https://github.com/Chrilleweb/dotenv-diff/commit/3678e4d83ab97c25ac4bc9e44dfdaad9e14196a6)
193
+ - fixed bug where it would give double warnings on framework specific warnings [`21c5d73`](https://github.com/Chrilleweb/dotenv-diff/commit/21c5d7367de064d4a2ff1c7f3d777ea2dd142db9)
194
+ - also added test for sveltekit for double warnings [`4d311ff`](https://github.com/Chrilleweb/dotenv-diff/commit/4d311ff28763b056dcfc671b1ebc43d668d9d389)
27
195
 
28
- - Fixed sveltekit framework rules - $env imports were not being detected correctly in some edge cases.
196
+ #### [v2.3.12](https://github.com/Chrilleweb/dotenv-diff/compare/v2.3.11...v2.3.12)
29
197
 
30
- ## [2.4.10] - 2026-01-19
198
+ > 18 December 2025
31
199
 
32
- ### Changed
200
+ - v2.3.12 [`#131`](https://github.com/Chrilleweb/dotenv-diff/pull/131)
201
+ - bump(deps-dev): bump @types/node from 24.10.4 to 25.0.2 in the dev-dependencies group across 1 directory [`#119`](https://github.com/Chrilleweb/dotenv-diff/pull/119)
202
+ - Updated README [`#130`](https://github.com/Chrilleweb/dotenv-diff/pull/130)
203
+ - Changelog + Fixed false positive secret detection [`#129`](https://github.com/Chrilleweb/dotenv-diff/pull/129)
204
+ - Removed used variables output from scan usage to reduce noise. [`#128`](https://github.com/Chrilleweb/dotenv-diff/pull/128)
205
+ - Added warnings to scan stats. [`#126`](https://github.com/Chrilleweb/dotenv-diff/pull/126)
206
+ - Shortened config file path in CLI output to show only the filename. [`#127`](https://github.com/Chrilleweb/dotenv-diff/pull/127)
207
+ - Moved healthscore down on output [`#125`](https://github.com/Chrilleweb/dotenv-diff/pull/125)
208
+ - docs: shorten resolveFromCwd JSDoc [`#123`](https://github.com/Chrilleweb/dotenv-diff/pull/123)
209
+ - Updated dependencies [`#118`](https://github.com/Chrilleweb/dotenv-diff/pull/118)
210
+ - Format code for tests --format flag [`#115`](https://github.com/Chrilleweb/dotenv-diff/pull/115)
211
+ - small fix for runScanMode function [`#111`](https://github.com/Chrilleweb/dotenv-diff/pull/111)
212
+ - test(sveltekit): allow private env vars in +page.server.ts [`#112`](https://github.com/Chrilleweb/dotenv-diff/pull/112)
213
+ - docs: improve README wording and clarity [`#109`](https://github.com/Chrilleweb/dotenv-diff/pull/109)
214
+ - added contribution.md [`#106`](https://github.com/Chrilleweb/dotenv-diff/pull/106)
215
+ - Codebase + readme update + security.md [`#104`](https://github.com/Chrilleweb/dotenv-diff/pull/104)
216
+ - code maintaince [`#102`](https://github.com/Chrilleweb/dotenv-diff/pull/102)
217
+ - format code for tests --format flag [`48a9b55`](https://github.com/Chrilleweb/dotenv-diff/commit/48a9b55b9b063649dc3f2693bfd53d47c1643567)
218
+ - Fixed false positive secret detection [`0591e7e`](https://github.com/Chrilleweb/dotenv-diff/commit/0591e7ef8584380bd0cc501778fc5c047c244758)
219
+ - bump(deps-dev): bump @types/node [`09abdb8`](https://github.com/Chrilleweb/dotenv-diff/commit/09abdb8857b818a2c7c8641a0e65976ffe0bfcf8)
33
220
 
34
- - Changed total variables to total variable references in scan statistics output.
221
+ #### [v2.3.11](https://github.com/Chrilleweb/dotenv-diff/compare/v2.3.10...v2.3.11)
35
222
 
36
- ### Fixed
223
+ > 13 December 2025
37
224
 
38
- - Fixed compare mode json output missing stats
39
- - Fixed compare mode issue where it would warn about .env.example not being gitignored in edgde cases.
40
- - Fixed create example file prompt bug.
225
+ - Removed low severity secrets from codebase scanner results, because i… [`#101`](https://github.com/Chrilleweb/dotenv-diff/pull/101)
226
+ - Removed low severity secrets from codebase scanner results, because it made too much noise. [`8ccbe16`](https://github.com/Chrilleweb/dotenv-diff/commit/8ccbe16a1942065a6b187fe48e0c14426aa7e312)
41
227
 
42
- ## [2.4.9] - 2026-01-13
228
+ #### [v2.3.10](https://github.com/Chrilleweb/dotenv-diff/compare/v2.3.9...v2.3.10)
43
229
 
44
- ### Fixed
230
+ > 11 December 2025
45
231
 
46
- - Fixed sveltekit framework bug where process.env usage in +server.ts files were given a false warning.
47
-
48
- ## [2.4.8] - 2026-01-13
49
-
50
- ### Added
51
-
52
- - Added duplicated warnings to decrease health score.
53
-
54
- ### Fixed
55
-
56
- - Fixed rules for sveltekit framework to correctly identify environment variable usage in $env/static/private and $env/dynamic/private imports.
57
- - Fixed secret detection to ignore environment variable usage in HTML tag content.
58
- - Fixed duplicate warnings on nextjs framework rules and logged env vars in console warnings.
59
- - Fixed nextjs framework rules to follow the documentation more closely.
60
-
61
- ## [2.4.7] - 2026-01-11
62
-
63
- ### Added
64
-
65
- - Added progress bar to codebase scanner.
66
-
67
- ### Fixed
68
-
69
- - Fixed path normalization issue where file paths were not consistently displayed across different operating systems.
70
-
71
- ## [2.4.6] - 2026-01-06
72
-
73
- ### Fixed
74
-
75
- - Modified JSON output for scan usage.
76
-
77
- ## [2.4.5] - 2025-12-29
78
-
79
- ### Changed
80
-
81
- - Changed UI for framework warnings to include framework name + better formatting.
82
- - Updated nextjs framework rules.
83
- - Updated sveltekit framework rules.
84
-
85
- ## [2.4.4] - 2025-12-27
86
-
87
- ### Fixed
88
-
89
- - Fixed bug in next js framework rules
90
-
91
- ## [2.4.3] - 2025-12-27
92
-
93
- ### Changed
94
-
95
- - Removed T3-env specific warnings and related code from the codebase scanner.
96
-
97
- ## [2.4.2] - 2025-12-27
98
-
99
- ### Fixed
100
-
101
- - Fixed bug where t3-env schema was not loaded correctly in some edge cases.
102
- - Fixed duplicate t3-env warnings being shown for the same variable.
103
-
104
- ## [2.4.1] - 2025-12-26
105
-
106
- ### Changed
107
-
108
- - Added Example warings to JSON output of scan usage.
109
- - Changed scan statistics name from "Total usages found" to "Total variables".
110
-
111
- ### Fixed
112
-
113
- - Fixed nextjs framework rules bug where multiple warnings could be generated for the same usage.
114
- - Fixed t3-env framework rules bug where multiple warnings could be generated for the same usage.
115
- - Fixed false positive secret detection for certain harmless attribute keys in codebase scanner.
116
-
117
- ## [2.4.0] - 2025-12-26
118
-
119
- ### Changed
120
-
121
- - Added spacing before missing example file message in scan usage output.
122
- - Changed path display for print missing example file message to show only filename instead of full path.
123
-
124
- ### Fixed
125
-
126
- - Fixed compare mode value mismatch count not showing in stats output if --check-values flag isn't used.
127
- - Fixed t3-env integration not working as expected in some edge cases.
128
- - Fixed nextjs framework validator not working as expected in some edge cases.
129
-
130
- ## [2.3.12] - 2025-12-18
131
-
132
- ### Added
133
-
134
- - Added warnings count to scan usage stats.
135
-
136
- ### Changed
137
-
138
- - Updated dependencies to latest versions.
139
- - Moved `healthScore` further down on the console output for better visibility of issues.
140
- - Removed used variables output from scan usage to reduce noise.
141
- - Removed header output from scan usage to reduce noise.
142
- - Shortened config file path in CLI output to show only the filename.
143
- - Updated README documentation for better clarity.
144
-
145
- ### Fixed
146
-
147
- - Fixed false positive secret detection for certain harmless attribute keys in codebase scanner.
148
- - Fixed print fix bug
149
-
150
- ## [2.3.11] - 2025-12-13
151
-
152
- ### Changed
153
-
154
- - Removed low severity secrets from codebase scanner results, because it made too much noise.
155
-
156
- ## [2.3.10] - 2025-12-11
157
-
158
- ### Added
159
-
160
- - More jsDocs for better code documentation.
161
- - t3-env integration to validate environment variable usage against T3 stack schema.
162
-
163
- ### Fixed
164
-
165
- - Removed unused code for old --no-compare option.
166
-
167
- ## [2.3.9] - 2025-12-09
168
-
169
- ### Added
170
-
171
- - Added expiration date warnings for environment variables in codebase scanner.
172
- - Added inconsistent naming warnings for environment variables in codebase scanner.
173
-
174
- ### Changed
175
-
176
- - Changed health score calculation weights for better accuracy.
177
- - Removed CSP detection from codebase scanner, as it was causing false positives in some cases for backend frameworks.
178
-
179
- ## [2.3.8] - 2025-12-08
180
-
181
- ### Added
182
-
183
- - Added variables not using uppercase letters warning to codebase scanner.
184
- - Added health score feature to codebase scanner.
185
-
186
- ### Changed
187
-
188
- - Removed --no-compare option from CLI and config file.
189
- - Updated dependencies to latest versions.
190
-
191
- ### Fixed
192
-
193
- - Fixed issue where show-stats and show-unused options were not working as expected in config file.
194
-
195
- ## [2.3.7] - 2025-12-03
196
-
197
- ### Added
198
-
199
- - Added warning for environment variables logged to console in codebase scanner.
200
-
201
- ### Changed
202
-
203
- - Updated dependencies to latest versions.
204
-
205
- ### Fixed
206
-
207
- - Updated jsDocs for better code documentation.
208
- - Updated some functions for better type safety.
209
-
210
- ## [2.3.6] - 2025-12-02
211
-
212
- ### Added
213
-
214
- - Added strict mode handling for framework specific warnings.
215
- - Added Next.js specific warnings to framework validator.
216
-
217
- ### Fixed
218
-
219
- - Nameing convention fix in frameworkValidator.ts
220
-
221
- ## [2.3.5] - 2025-12-01
222
-
223
- ### Added
224
-
225
- - Added more sveltekit specific warnings to codebase scanner.
226
- - Added warning for potential secrets in .env.example file.
227
-
228
- ### Fixed
229
-
230
- - Duration refactored for better code maintainability.
231
-
232
- ## [2.3.4] - 2025-11-05
233
-
234
- ### Fixed
235
-
236
- - Fixed issue where CSP detection was not working as expected in some file types.
237
-
238
- ## [2.3.3] - 2025-11-30
239
-
240
- ### Added
241
-
242
- - Added Content-Security-Policy (CSP) detection to codebase scanner.
243
- - Warns if no CSP is found in HTML/JS/TS files.
244
-
245
- ### Changed
246
-
247
- - No breaking changes.
248
-
249
- ## [2.3.2] - 2025-11-01
250
-
251
- ### Added
252
-
253
- - Added duration output to scan statistics.
254
- - Severity levels for secret findings: high, medium, low.
255
-
256
- ### Changed
257
-
258
- - Updated dependencies to latest versions.
259
- - Improved README documentation for clarity.
260
- - No breaking changes.
261
-
262
- ## [2.3.1] - 2025-10-08
263
-
264
- ### Fixed
265
-
266
- - Fixed dotenv-diff.config.json not found in monorepo root when running from apps.
267
-
268
- ## [2.3.0] - 2025-10-07
269
-
270
- ### Fixed
271
-
272
- - Fixed issue where .env.example would be ignored by git when using --fix flag.
273
-
274
- ### Added
275
-
276
- - HTML comments to ignore secret detection in HTML lines (e.g. `<!-- dotenv-diff-ignore -->`).
277
- - Also ignore html sections with `<!-- dotenv-diff-ignore-start -->` and `<!-- dotenv-diff-ignore-end -->`.
278
- - Added option to have a dotenv-diff.config.json file for configuration.
279
- - ignoreUrls option to ignore specific URLs in secret detection. (e.g. `https://nomistake.com`).
280
- - Added `--init` flag to create a sample config file.
281
- - --no-compare flag to disable comparison mode in scan usage. and noCompare option in config file.
282
-
283
- ## [2.2.8] - 2025-09-30
284
-
285
- ### Added
286
-
287
- - Fix .env is not ignored by git when using --fix flag.
288
-
289
- ### Changed
290
-
291
- - No breaking changes.
292
-
293
- ### Fixed
294
-
295
- - Refactored codebase for better maintainability.
296
-
297
- ## [2.2.7] - 2025-09-28
298
-
299
- ### Added
300
-
301
- - Added warning on .env not ignored by .gitignore on default.
302
- - added `dotenv-diff-ignore` comment to ignore lines from secret detection.
303
-
304
- ### Fixed
305
-
306
- - Fixed `--strict` error output to console when no warnings are found.
307
-
308
- ### Changed
309
-
310
- - No breaking changes.
311
- - Updated dependencies to latest versions.
312
-
313
- ## [2.2.6] - 2025-09-25
314
-
315
- ### Added
316
-
317
- - Added `placeholder`, `127.0.0.1`, and `example` to `looksHarmless` secret detection rule.
318
- - Added `HTTP URL detected` message to potential secrets output.
319
-
320
- ### Fixed
321
-
322
- - Removed `All used environment variables are defined in {.env}` when there are no used variables found.
323
-
324
- ### Changed
325
-
326
- - No breaking changes.
327
-
328
- ## [2.2.5] - 2025-09-18
329
-
330
- ### Added
331
-
332
- - Updated README with `--strict` flag documentation.
333
-
334
- ### Fixed
335
-
336
- - Fixed false positives for HTTPS URLs in SVG files and SVG namespace URLs.
337
-
338
- ### Changed
339
-
340
- - No breaking changes.
341
-
342
- ## [2.2.4] - 2025-09-13
343
-
344
- ### Fixed
345
-
346
- - Fixed found variable count did not show when there were missing variables in .env
347
- - Will now not says "Found 2 unique environment variables in use" if there are found in commented out code.
348
- - Fixed bug where it would say "no unused variables" if there where no found variables at all.
349
-
350
- ### Changed
351
-
352
- - No breaking changes.
353
-
354
- ## [2.2.3] - 2025-09-08
355
-
356
- ### Added
357
-
358
- - Warning for HTTPS URLs detected in codebase.
359
- - Added duplicate key detection to codebase scanner.
360
- - added `--strict` flag to enable strict mode (treat warnings as errors).
361
- - duplicate key detection for `.env.example` files.
362
-
363
- ### Fixed
364
-
365
- - Fixed issue with false warnings on secrets in certain edge cases.
366
- - Updated README
367
-
368
- ### Changed
369
-
370
- - No breaking changes.
371
- - `--compare` feature coloring improved for better readability.
372
- - added `duplicate` warnings to scan results.
373
-
374
- ## [2.2.2] - 2025-09-07
375
-
376
- ### Fixed
377
-
378
- - Fixed issue where it would give a false warning on secrets with process.env
379
- - Code cleanup.
380
- - exclude `.svelte-kit` from codebase scan by default.
381
- - Updated README
382
-
383
- ### Changed
384
-
385
- - No breaking changes.
386
-
387
- ## [2.2.1] - 2025-09-06
388
-
389
- ### Changed
390
-
391
- - tsconfig updates for improved type checking.
392
- - Updated codebase for new tsconfig rules
393
- - No breaking changes.
394
-
395
- ### Added
396
-
397
- - Improved jsDocs for better code documentation.
398
-
399
- ## [2.2.0] - 2025-08-30
400
-
401
- ### Added
402
-
403
- - `--compare` flag to enable comparison mode.
404
- - `dotenv-diff` will now detect potential secrets in your codebase.
405
-
406
- ### Changed
407
-
408
- - Default behavior is now **scan-usage** (you no longer need `--scan-usage`), but you can still use it for clarity.
409
- - `--compare` flag is now required for all comparison operations.
410
-
411
- ## [2.1.7] - 2025-08-28
412
-
413
- ### Added
414
-
415
- - gif to README file.
416
-
417
- ### Changed
418
-
419
- - No breaking changes. Existing functionality remains intact.
420
-
421
- ## [2.1.6] - 2025-08-26
422
-
423
- ### fixed
424
-
425
- - Fixed issue where prompts were disabled when using `--env` and `--example` flags.
426
-
427
- ## Changed
428
-
429
- - No breaking changes. Existing functionality remains intact.
430
-
431
- ## [2.1.5] - 2025-08-25
432
-
433
- ### Added
434
-
435
- - Added `--no-color` option to disable colored output.
436
-
437
- ### Changed
438
-
439
- - No breaking changes. Existing functionality remains intact.
440
-
441
- ## [2.1.4] - 2025-08-19
442
-
443
- ### Added
444
-
445
- - the `--fix` flag to automatically fix common issues:
446
- - Remove duplicate keys (keeping the last occurrence).
447
- - Add missing keys from the example file with empty values.
448
-
449
- ### Changed
450
-
451
- - No breaking changes. Existing functionality remains intact.
452
-
453
- ## [2.1.3] - 2025-08-19
454
-
455
- ### Added
456
-
457
- - Added `.sveltekit` and `_actions` to default exclude patterns in codebase scanner.
458
-
459
- ### Changed
460
-
461
- - No breaking changes. Existing functionality remains intact.
462
-
463
- ### Fixed
464
-
465
- - Fixed issue where `--include-files` and `--exclude-files` were not properly documented in README.
466
-
467
- ## [2.1.2] - 2025-08-16
468
-
469
- ### Changed
470
-
471
- - Updated README with Turborepo usage example.
472
-
473
- ## [2.1.1] - 2025-08-16
474
-
475
- ### Added
476
-
477
- - `--files` option to **completely override** the default file patterns.
478
- Useful for including files that are normally excluded (e.g. `*.test.js`).
479
-
480
- ### Changed
481
-
482
- - Clarified behavior of `--include-files`: now explicitly extends the default patterns instead of replacing them.
483
- - Updated README with usage examples for `--files`, `--include-files`, and `--exclude-files`.
484
-
485
- ## [2.1.0] - 2025-08-15
486
-
487
- ### Added
488
-
489
- - `--ci` option for non-interactive mode in CI environments.
490
-
491
- ### Changed
492
-
493
- - No breaking changes. Existing functionality remains intact.
494
-
495
- ## [2.0.0] - 2025-08-14
496
-
497
- ### Added
498
-
499
- - `--scan-usage` option to scan codebase for environment variable usage.
500
- - `--include-files` and `--exclude-files` options to specify which files to include or exclude from the scan.
501
- - `--show-unused` option to display variables defined in `.env` but not used in code.
502
- - `--show-stats` option to display scan statistics.
503
-
504
- ### Changed
505
-
506
- - No breaking changes. Existing functionality remains intact.
507
-
508
- ## [1.6.5] - 2025-08-13
509
-
510
- ### Added
511
-
512
- - `--only` flag to restrict output to specific categories (e.g., `missing`, `extra`, `empty`, `mismatches`, `duplicates`, `gitignore`).
513
-
514
- ## [1.6.4] - 2025-08-12
515
-
516
- ### Added
517
-
518
- - `--ignore` and `--ignore-regex` options to specify files or directories to ignore during comparison.
519
-
520
- ## [1.6.3] - 2025-08-11
521
-
522
- ### Added
523
-
524
- - `--json` option to output results in JSON format. (Non-breaking)
525
-
526
- ## [1.6.2] - 2025-08-10
527
-
528
- ### Added
529
-
530
- - Duplicate key detection for `.env*` files.
531
- - Prints warnings listing duplicate keys (last occurrence wins).
532
- - Suppress via `--allow-duplicates`.
533
-
534
- ### Changed
535
-
536
- - No breaking changes. Exit codes and diff behavior unchanged.
537
-
538
- ## [1.6.1] - 2025-08-09
539
-
540
- ### Build
541
-
542
- - Updated TypeScript configuration to include `bin` directory.
543
- - Switched CLI path to `bin/dotenv-diff.js` for consistency.
544
- - Refactored folder structure for better organization.
545
-
546
- ## [1.6.0] - 2025-08-08
547
-
548
- ### Added
549
-
550
- - `--env` and `--example` for direct file comparison; autoscan overridden when both are provided.
551
-
552
- ## [1.5.0] - 2025-08-07
553
-
554
- ### Added
555
-
556
- - Non-interactive modes: `--ci` and `--yes`.
232
+ - fix spelling mistake [`#100`](https://github.com/Chrilleweb/dotenv-diff/pull/100)
233
+ - t3-env integration [`#99`](https://github.com/Chrilleweb/dotenv-diff/pull/99)
234
+ - small refactor for old noCompare option [`484de37`](https://github.com/Chrilleweb/dotenv-diff/commit/484de37f3e8c18835e2aee3190a569f8d5de38b1)
235
+ - format [`f834df6`](https://github.com/Chrilleweb/dotenv-diff/commit/f834df67edea193812aabeb2343f15f48e7731c5)
236
+ - detect also with pacakge.json [`bc06522`](https://github.com/Chrilleweb/dotenv-diff/commit/bc0652207e0fe4d6b1d5c35e838a5b4b81278ee1)
237
+
238
+ #### [v2.3.9](https://github.com/Chrilleweb/dotenv-diff/compare/v2.3.8...v2.3.9)
239
+
240
+ > 9 December 2025
241
+
242
+ - v2.3.9 [`#98`](https://github.com/Chrilleweb/dotenv-diff/pull/98)
243
+ - Added dotenv-diff to ci + more tests [`#97`](https://github.com/Chrilleweb/dotenv-diff/pull/97)
244
+ - added CHANGELOG.md to package.json files [`#96`](https://github.com/Chrilleweb/dotenv-diff/pull/96)
245
+ - added inconsistent naming warning for env codebase scanner [`f5acae0`](https://github.com/Chrilleweb/dotenv-diff/commit/f5acae000c80c5e33765e090ac944c9171af857b)
246
+ - expiration date warnings for .env files [`7a3727e`](https://github.com/Chrilleweb/dotenv-diff/commit/7a3727e237e0dd41ce36944145b8e160f3bc937f)
247
+ - removed csp because of backend frameworks [`592b8a2`](https://github.com/Chrilleweb/dotenv-diff/commit/592b8a268c1c6f609b7dc55c6f98e5d268e46abf)
248
+
249
+ #### [v2.3.8](https://github.com/Chrilleweb/dotenv-diff/compare/v2.3.7...v2.3.8)
250
+
251
+ > 8 December 2025
252
+
253
+ - updated dependencies [`#95`](https://github.com/Chrilleweb/dotenv-diff/pull/95)
254
+ - healthscore 2.3.8 [`#94`](https://github.com/Chrilleweb/dotenv-diff/pull/94)
255
+ - caps warning [`#93`](https://github.com/Chrilleweb/dotenv-diff/pull/93)
256
+ - warning on env var that are not uppercase + config fix [`41278d0`](https://github.com/Chrilleweb/dotenv-diff/commit/41278d0a8d6b362e112e72520eaa2b6999eefee2)
257
+ - new ui for potential secret detected [`68f1a9a`](https://github.com/Chrilleweb/dotenv-diff/commit/68f1a9a4a1089ee90cff671bffd155d62003d3cb)
258
+ - changed ui for missing keys [`23f4a15`](https://github.com/Chrilleweb/dotenv-diff/commit/23f4a1520970beba8274a5a99c04855ab87da554)
259
+
260
+ #### [v2.3.7](https://github.com/Chrilleweb/dotenv-diff/compare/v2.3.6...v2.3.7)
261
+
262
+ > 4 December 2025
263
+
264
+ - v2.3.7 [`#92`](https://github.com/Chrilleweb/dotenv-diff/pull/92)
265
+ - format code + better type safety [`#91`](https://github.com/Chrilleweb/dotenv-diff/pull/91)
266
+ - updated dependencies [`01b1097`](https://github.com/Chrilleweb/dotenv-diff/commit/01b1097b0425905a575dd692476b581f33900611)
267
+ - console log warnings [`55227ba`](https://github.com/Chrilleweb/dotenv-diff/commit/55227ba8dc58e2981593ddfdaaec88bcabc957c4)
268
+ - updated dependencies [`938298c`](https://github.com/Chrilleweb/dotenv-diff/commit/938298c30b2418675d9f5c6884d59643d9a3040a)
269
+
270
+ #### [v2.3.6](https://github.com/Chrilleweb/dotenv-diff/compare/v2.3.5...v2.3.6)
271
+
272
+ > 2 December 2025
273
+
274
+ - modifed changelog [`#90`](https://github.com/Chrilleweb/dotenv-diff/pull/90)
275
+ - Framework for sveltekit and next.js [`#89`](https://github.com/Chrilleweb/dotenv-diff/pull/89)
276
+ - framework for sveltekit and angular [`db202a3`](https://github.com/Chrilleweb/dotenv-diff/commit/db202a315fe4c9c9cd125685a9e6aaa3af99634c)
277
+ - switched to next insted of angular [`15f6fff`](https://github.com/Chrilleweb/dotenv-diff/commit/15f6fffd914f0b8a3836093c750ae10a1aa9a20a)
278
+ - fixed strixt mode framework validator [`c2a0b83`](https://github.com/Chrilleweb/dotenv-diff/commit/c2a0b837e9fbbeb9b7620231e91eea359ed85dd1)
279
+
280
+ #### [v2.3.5](https://github.com/Chrilleweb/dotenv-diff/compare/v2.3.4...v2.3.5)
281
+
282
+ > 1 December 2025
283
+
284
+ - bump(deps-dev): bump the dev-dependencies group with 4 updates [`#87`](https://github.com/Chrilleweb/dotenv-diff/pull/87)
285
+ - Cmn/dev [`#88`](https://github.com/Chrilleweb/dotenv-diff/pull/88)
286
+ - warning on potential secrets in .env.example file [`8ccf9fa`](https://github.com/Chrilleweb/dotenv-diff/commit/8ccf9fa04b6c68e5ea677fc8d0d55760384026c2)
287
+ - sveltekit warnings [`3fa3d57`](https://github.com/Chrilleweb/dotenv-diff/commit/3fa3d5722f67608dda59b259ca28b25239d00944)
288
+ - more sveltekit rules [`40d7cda`](https://github.com/Chrilleweb/dotenv-diff/commit/40d7cda46e208611e7a31d29e560c986e613b60f)
289
+
290
+ #### [v2.3.4](https://github.com/Chrilleweb/dotenv-diff/compare/v2.3.2...v2.3.4)
291
+
292
+ > 30 November 2025
293
+
294
+ - updated version [`#86`](https://github.com/Chrilleweb/dotenv-diff/pull/86)
295
+ - fixed csp [`#85`](https://github.com/Chrilleweb/dotenv-diff/pull/85)
296
+ - csp detector [`#84`](https://github.com/Chrilleweb/dotenv-diff/pull/84)
297
+ - bump(deps): bump actions/checkout from 5 to 6 [`#83`](https://github.com/Chrilleweb/dotenv-diff/pull/83)
298
+ - bump(deps-dev): bump the dev-dependencies group across 1 directory with 5 updates [`#82`](https://github.com/Chrilleweb/dotenv-diff/pull/82)
299
+ - updated version to 2.3.3 [`90d5afb`](https://github.com/Chrilleweb/dotenv-diff/commit/90d5afba613b5357638eb81ef02e434c7871df9b)
300
+
301
+ #### [v2.3.2](https://github.com/Chrilleweb/dotenv-diff/compare/v2.3.1...v2.3.2)
302
+
303
+ > 6 November 2025
304
+
305
+ - bump(deps-dev): bump the dev-dependencies group with 3 updates [`#80`](https://github.com/Chrilleweb/dotenv-diff/pull/80)
306
+ - added duration + serverity levels [`#79`](https://github.com/Chrilleweb/dotenv-diff/pull/79)
307
+ - bump(deps): bump commander from 14.0.1 to 14.0.2 in the production-dependencies group [`#78`](https://github.com/Chrilleweb/dotenv-diff/pull/78)
308
+ - bump(deps-dev): bump the dev-dependencies group with 4 updates [`#77`](https://github.com/Chrilleweb/dotenv-diff/pull/77)
309
+ - bump(deps-dev): bump the dev-dependencies group with 4 updates [`#76`](https://github.com/Chrilleweb/dotenv-diff/pull/76)
310
+ - bump(deps): bump actions/setup-node from 5 to 6 [`#75`](https://github.com/Chrilleweb/dotenv-diff/pull/75)
311
+ - severity for secrets findings: high, medium, low. [`74dfc86`](https://github.com/Chrilleweb/dotenv-diff/commit/74dfc86d5384ebdca6c229769a85855ac334e4ba)
312
+ - added duration [`3b45599`](https://github.com/Chrilleweb/dotenv-diff/commit/3b45599c1c2db1385b5f62b1c017a547410bee4c)
313
+ - bump(deps): bump commander in the production-dependencies group [`b6a53eb`](https://github.com/Chrilleweb/dotenv-diff/commit/b6a53ebc92aa30394e66f08519ff5802d36a1068)
314
+
315
+ #### v2.3.1
316
+
317
+ > 16 October 2025
318
+
319
+ - bump(deps-dev): bump the dev-dependencies group with 3 updates [`#74`](https://github.com/Chrilleweb/dotenv-diff/pull/74)
320
+ - fixed issue where config not found in monorepo [`#73`](https://github.com/Chrilleweb/dotenv-diff/pull/73)
321
+ - bump(deps-dev): bump the dev-dependencies group with 5 updates [`#72`](https://github.com/Chrilleweb/dotenv-diff/pull/72)
322
+ - small fixes [`#71`](https://github.com/Chrilleweb/dotenv-diff/pull/71)
323
+ - moved to shared folder [`#70`](https://github.com/Chrilleweb/dotenv-diff/pull/70)
324
+ - hook timeout increased [`#69`](https://github.com/Chrilleweb/dotenv-diff/pull/69)
325
+ - fix flag for .env not ignored .gitignore [`#68`](https://github.com/Chrilleweb/dotenv-diff/pull/68)
326
+ - refactor code [`#67`](https://github.com/Chrilleweb/dotenv-diff/pull/67)
327
+ - dotenv-diff-ignore [`#66`](https://github.com/Chrilleweb/dotenv-diff/pull/66)
328
+ - added warning on .env missing on gitignore [`#65`](https://github.com/Chrilleweb/dotenv-diff/pull/65)
329
+ - bump(deps): bump actions/setup-node from 4 to 5 [`#54`](https://github.com/Chrilleweb/dotenv-diff/pull/54)
330
+ - bump(deps): bump pnpm/action-setup from 2 to 4 [`#53`](https://github.com/Chrilleweb/dotenv-diff/pull/53)
331
+ - fixed --strict output [`#64`](https://github.com/Chrilleweb/dotenv-diff/pull/64)
332
+ - bump(deps-dev): bump the dev-dependencies group with 3 updates [`#63`](https://github.com/Chrilleweb/dotenv-diff/pull/63)
333
+ - bump(deps): bump the production-dependencies group with 2 updates [`#62`](https://github.com/Chrilleweb/dotenv-diff/pull/62)
334
+ - dependabot update [`#61`](https://github.com/Chrilleweb/dotenv-diff/pull/61)
335
+ - bump(deps): bump actions/checkout from 4 to 5 [`#55`](https://github.com/Chrilleweb/dotenv-diff/pull/55)
336
+ - bump(deps-dev): bump eslint from 9.32.0 to 9.36.0 [`#58`](https://github.com/Chrilleweb/dotenv-diff/pull/58)
337
+ - dependabot [`#52`](https://github.com/Chrilleweb/dotenv-diff/pull/52)
338
+ - Cmn/dev [`#51`](https://github.com/Chrilleweb/dotenv-diff/pull/51)
339
+ - Refactor [`#50`](https://github.com/Chrilleweb/dotenv-diff/pull/50)
340
+ - Cmn/dev [`#49`](https://github.com/Chrilleweb/dotenv-diff/pull/49)
341
+ - Cmn/dev [`#48`](https://github.com/Chrilleweb/dotenv-diff/pull/48)
342
+ - Cmn/dev [`#47`](https://github.com/Chrilleweb/dotenv-diff/pull/47)
343
+ - fixed .svelte-kit + false warning [`#46`](https://github.com/Chrilleweb/dotenv-diff/pull/46)
344
+ - updated tsconfig [`#45`](https://github.com/Chrilleweb/dotenv-diff/pull/45)
345
+ - default behavior is now scan usage [`#44`](https://github.com/Chrilleweb/dotenv-diff/pull/44)
346
+ - updated readme with gif [`#39`](https://github.com/Chrilleweb/dotenv-diff/pull/39)
347
+ - fixed --env and --example to create file if not exist [`#38`](https://github.com/Chrilleweb/dotenv-diff/pull/38)
348
+ - added --no-color flag [`#36`](https://github.com/Chrilleweb/dotenv-diff/pull/36)
349
+ - --fix flag [`#34`](https://github.com/Chrilleweb/dotenv-diff/pull/34)
350
+ - Small fixes - version 2.1.3 [`#33`](https://github.com/Chrilleweb/dotenv-diff/pull/33)
351
+ - readme update [`#32`](https://github.com/Chrilleweb/dotenv-diff/pull/32)
352
+ - --files and changed --include-files behavior [`#31`](https://github.com/Chrilleweb/dotenv-diff/pull/31)
353
+ - --ci flag [`#30`](https://github.com/Chrilleweb/dotenv-diff/pull/30)
354
+ - Version 2 scan usage [`#26`](https://github.com/Chrilleweb/dotenv-diff/pull/26)
355
+ - -- only flag [`#25`](https://github.com/Chrilleweb/dotenv-diff/pull/25)
356
+ - Cmn/dev [`#24`](https://github.com/Chrilleweb/dotenv-diff/pull/24)
357
+ - feat: allow ignoring env keys [`#23`](https://github.com/Chrilleweb/dotenv-diff/pull/23)
358
+ - test: reorganize and expand test suite [`#22`](https://github.com/Chrilleweb/dotenv-diff/pull/22)
359
+ - json flag [`#20`](https://github.com/Chrilleweb/dotenv-diff/pull/20)
360
+ - Cmn/dev [`#19`](https://github.com/Chrilleweb/dotenv-diff/pull/19)
361
+ - feat: warn on duplicate env keys [`#18`](https://github.com/Chrilleweb/dotenv-diff/pull/18)
362
+ - Refactor: reorganize CLI entry [`#17`](https://github.com/Chrilleweb/dotenv-diff/pull/17)
363
+ - feat: add env/example flags for targeted comparisons [`#16`](https://github.com/Chrilleweb/dotenv-diff/pull/16)
364
+ - CI-mode (--ci / --yes) [`#15`](https://github.com/Chrilleweb/dotenv-diff/pull/15)
365
+ - Add CI and yes non-interactive modes to dotenv-diff CLI [`#14`](https://github.com/Chrilleweb/dotenv-diff/pull/14)
366
+ - added issue 8 feature [`#10`](https://github.com/Chrilleweb/dotenv-diff/pull/10)
367
+ - check gitIgnore feature [`#9`](https://github.com/Chrilleweb/dotenv-diff/pull/9)
368
+ - eslint + new feature [`#6`](https://github.com/Chrilleweb/dotenv-diff/pull/6)
369
+ - initial commit [`e827a13`](https://github.com/Chrilleweb/dotenv-diff/commit/e827a136c13eaae64c744b9db0b3f2dcacf009a4)
370
+ - scan-usage [`e947336`](https://github.com/Chrilleweb/dotenv-diff/commit/e947336e28f1b5856ad63df41a256c9025c6b3c9)
371
+ - src + chalk [`1f867d7`](https://github.com/Chrilleweb/dotenv-diff/commit/1f867d7f750d1bcab217d7acf139cf36304d3955)