@dotenvx/dotenvx 0.44.2 → 0.44.4

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 +690 -0
  2. package/package.json +5 -3
package/CHANGELOG.md ADDED
@@ -0,0 +1,690 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ## [Unreleased](https://github.com/dotenvx/dotenvx/compare/v0.44.4...main)
6
+
7
+ ## 0.44.4
8
+
9
+ ### Changed
10
+
11
+ * Automated deployment of `install.sh` along with sanity checks ([#250](https://github.com/dotenvx/dotenvx/pull/250))
12
+
13
+ ## 0.44.3
14
+
15
+ ### Added
16
+
17
+ * Include `CHANGELOG.md` in npm release
18
+ * Include `install.sh` in package release
19
+
20
+ ## 0.44.2
21
+
22
+ ### Changed
23
+
24
+ * Fix license in `package.json` to match project's license BSD-3.
25
+
26
+ ## 0.44.1
27
+
28
+ ### Changed
29
+
30
+ * Respect decryption of zero length strings - `dotenvx set HELLO '' --encrypt` ([#236](https://github.com/dotenvx/dotenvx/pull/236))
31
+
32
+ ## 0.44.0
33
+
34
+ ### Added
35
+
36
+ * Added `options.debug`, `options.verbose`, `options.quiet`, and `options.logLevel` to `.config()` ([#233](https://github.com/dotenvx/dotenvx/pull/233))
37
+
38
+ ## 0.43.2
39
+
40
+ ### Changed
41
+
42
+ * Patch `replace` when replacing double, single, or backticked quoted at anywhere in the `.env` file. ([#232](https://github.com/dotenvx/dotenvx/pull/232))
43
+
44
+ ## 0.43.1
45
+
46
+ ### Changed
47
+
48
+ * Improved `replace` function regex - to handle more edge case scenarios with replacing KEY/values ([#227](https://github.com/dotenvx/dotenvx/pull/227))
49
+
50
+ ## 0.43.0
51
+
52
+ ### Added
53
+
54
+ * Support `require('@dotenvx/dotenvx').config()` for `DOTENV_PRIVATE_KEY` decryption ([#225](https://github.com/dotenvx/dotenvx/pull/225))
55
+
56
+ ## 0.42.0
57
+
58
+ ### Added
59
+
60
+ * Added `.env.vault deprecated` warning when using `DOTENV_KEY`. Provide instructions to convert to encrypted `.env` files. ([#224](https://github.com/dotenvx/dotenvx/pull/224))
61
+
62
+ ## 0.41.0
63
+
64
+ ### Added
65
+
66
+ * Added `vault convert` command to list convert instructions for converting `.env.vault` to encrypted .env files ([#222](https://github.com/dotenvx/dotenvx/pull/222))
67
+
68
+ ```sh
69
+ To convert your .env.vault file to encrypted .env file(s):
70
+
71
+ 1. Run [dotenvx vault decrypt]
72
+ 2. Run [ls -a .env*]
73
+
74
+ Lastly, convert each .env(.environment) file:
75
+
76
+ 3. Run [dotenvx convert -f .env.production]
77
+
78
+ For example:
79
+
80
+ $ dotenvx convert -f .env
81
+ $ dotenvx convert -f .env.ci
82
+ $ dotenvx convert -f .env.production
83
+
84
+ Afterward:
85
+
86
+ Update production with your new DOTENV_PRIVATE_KEY_PRODUCTION located in .env.keys
87
+
88
+ Learn more at [https://dotenvx.com/docs/quickstart#add-encryption]
89
+ ```
90
+
91
+ ### Changed
92
+
93
+ * Rename `encryptme` to `convert` ([#222](https://github.com/dotenvx/dotenvx/pull/222))
94
+
95
+ ## 0.40.1
96
+
97
+ ### Added
98
+
99
+ * Support encryption replacemnt of multiline values ([#220](https://github.com/dotenvx/dotenvx/pull/220))
100
+
101
+ ## 0.40.0
102
+
103
+ ### Added
104
+
105
+ * Added `dotenvx encryptme` command to convert an entire `.env` file to an encrypted `.env` file. ([#213](https://github.com/dotenvx/dotenvx/pull/213))
106
+
107
+ ### Changed
108
+
109
+ * Made `precommit` smart enough to check if a `.env*` file is encrypted or not. If fully encrypted, then allow `precommit` check to pass ([#211](https://github.com/dotenvx/dotenvx/pull/211))
110
+
111
+ ### Removed
112
+
113
+ * Do not warn of missing files for conventions (too noisy) ([#216](https://github.com/dotenvx/dotenvx/pull/216))
114
+
115
+ ## 0.39.0
116
+
117
+ ### Added
118
+
119
+ * Add `--convention` flag to `get`
120
+
121
+ ### Removed
122
+
123
+ * Removed help messages like 'in production' and 'in ci'. Too specific and could lead to confusion.
124
+
125
+ ## 0.38.0
126
+
127
+ ### Changed
128
+
129
+ * ⚠️ DEPRECATION NOTICE: the following commands are being moved. Please, update any code and muscle memory you have related to these:
130
+ * `dotenvx encrypt` => `dotenvx vault encrypt`
131
+ * `dotenvx decrypt` => `dotenvx vault decrypt`
132
+ * `dotenvx status` => `dotenvx vault status`
133
+ * ⚠️ DEPRECATION NOTICE: the beta `hub` commands are being completely deprecated (they will be fully removed in upcoming 1.0.0 release). We will provide .env.keys tooling at a later time (replacing hub) but in the context of the new `--encrypt` flag functionality below
134
+
135
+ ### Added
136
+
137
+ * Add encryption to your `.env` files with a single command. Pass the `--encrypt` flag. 🎉
138
+
139
+ ```sh
140
+ $ dotenvx set HELLO World --encrypt
141
+ set HELLO with encryption (.env)
142
+ ```
143
+
144
+ ![](https://github.com/dotenvx/dotenvx/assets/3848/21f7a529-7a40-44e4-87d4-a72e1637b702)
145
+
146
+ > A `DOTENV_PUBLIC_KEY` (encryption key) and a `DOTENV_PRIVATE_KEY` (decryption key) is generated using the same public-key cryptography as [Bitcoin](https://en.bitcoin.it/wiki/Secp256k1).
147
+
148
+ Further notes:
149
+
150
+ * `DOTENV_PUBLIC_KEY` lives in the `.env` file. You can safely share this with whomever you wish.
151
+ * `DOTENV_PRIVATE_KEY` lives in your `.env.keys` file. Share this only with those you trust to decrypt your secrets.
152
+ * If using encrypted `.env` files like this it is safe to commmit them to source code. This makes reviewing PRs that contain secrets much easier.
153
+ * Tell your contributors to contribute a secret using the command `dotenvx set HELLO world --encrypt`.
154
+ * Set your `DOTENV_PRIVATE_KEY` on your server to decrypt these values using `dotenvx run -- yourcommand`
155
+ * You can repeat all this per environment by modifying your set command to `dotenvx set HELLO production -f .env.production --encrypt` (for example)
156
+ * In time we will add better tooling for sharing the private keys living in `.env.keys`, but until then safely share with team members you trust.
157
+ * This mechanism should be particularly useful for open source projects that want to permit secrets contributions without handing out the decryption keys. Now anyone can contribute a secret and only you can decrypt it to see what was changed.
158
+ * This solution is brand new, but I intend it to be the future for `.env` files. It has many benefits over `.env.vault` files. We will be sunsetting the `.env.vault` mechanism but its tooling will stay around in `dotenvx` for at least 1 year to come - under `dotenvx vault` parent command.
159
+ * Be patient as we update our documentation to prioritize this improved encryption format for `.env` files.
160
+
161
+ ## 0.37.1
162
+
163
+ * warn when running `dotenvx status` against any untracked (not in .env.vault) files ([#196](https://github.com/dotenvx/dotenvx/pull/196))
164
+
165
+ ## 0.37.0
166
+
167
+ * add `--convention nextjs` flag to `dotenvx run` ([#193](https://github.com/dotenvx/dotenvx/pull/193))
168
+ * improve `status` error message when decrypt fails or no `.env*` files ([#192](https://github.com/dotenvx/dotenvx/pull/192))
169
+
170
+ ## 0.36.1
171
+
172
+ * handle `SIGTERM` ([#191](https://github.com/dotenvx/dotenvx/pull/191))
173
+
174
+ ## 0.36.0
175
+
176
+ * add `dotenvx status` command ([#186](https://github.com/dotenvx/dotenvx/pull/186))
177
+ * add `dotenvx decrypt [directory]` argument option ([#186](https://github.com/dotenvx/dotenvx/pull/186))
178
+ * add `dotenvx decrypt --environment` flag option ([#186](https://github.com/dotenvx/dotenvx/pull/186))
179
+ * normalize windows `\` paths ([#186](https://github.com/dotenvx/dotenvx/pull/186))
180
+
181
+ ## 0.35.1
182
+
183
+ ### Changed
184
+
185
+ * exit code `1` if `get KEY` not found/undefined ([#185](https://github.com/dotenvx/dotenvx/pull/185))
186
+
187
+ ## 0.35.0
188
+
189
+ ### Added
190
+
191
+ * added `set` command, and optionally pass `--env-file` flag(s) to `set` usage: `dotenvx set HELLO World` ([#182](https://github.com/dotenvx/dotenvx/pull/182))
192
+
193
+ ## 0.34.0
194
+
195
+ ### Changed
196
+
197
+ * make `hub push` more forgiving by permitting full filepath like `hub push directory/.env.keys` ([#180](https://github.com/dotenvx/dotenvx/pull/180))
198
+ * add note on generated `.env.example` ([#181](https://github.com/dotenvx/dotenvx/pull/181))
199
+
200
+ ## 0.33.1
201
+
202
+ ### Changed
203
+
204
+ * patch injection around falsy values ([#177](https://github.com/dotenvx/dotenvx/pull/177))
205
+
206
+ ## 0.33.0
207
+
208
+ ### Added
209
+
210
+ * add .env.vault support for `.env.something.something` (useful for Next.js pattern of .env.development.local) ([#174](https://github.com/dotenvx/dotenvx/pull/174))
211
+
212
+ ## 0.32.0
213
+
214
+ ### Changed
215
+
216
+ * quiet exit code 1 message ([#173](https://github.com/dotenvx/dotenvx/pull/173))
217
+
218
+ ## 0.31.1
219
+
220
+ ### Changed
221
+
222
+ * improve error messages ([#171](https://github.com/dotenvx/dotenvx/pull/171))
223
+
224
+ ## 0.31.0
225
+
226
+ ### Added
227
+
228
+ * add `hub logout` command ([#170](https://github.com/dotenvx/dotenvx/pull/170))
229
+
230
+ ## 0.30.2
231
+
232
+ ### Changed
233
+
234
+ * small fixes for windows users related to `hub open` and `hub push` ([#169](https://github.com/dotenvx/dotenvx/pull/169))
235
+
236
+ ## 0.30.1
237
+
238
+ ### Changed
239
+
240
+ * remove windows warnings related to missing `git` or `git origin` ([#166](https://github.com/dotenvx/dotenvx/pull/166) [#167](https://github.com/dotenvx/dotenvx/pull/167))
241
+
242
+ ## 0.30.0
243
+
244
+ ### Added
245
+
246
+ * `dotenvx get --quiet` will display the value no matter what (adds a `blank0` logger level) ([#161](https://github.com/dotenvx/dotenvx/pull/161))
247
+
248
+ ### Changed
249
+
250
+ * refactor `dotenvx get` to use `run` under the hood
251
+
252
+ ## 0.29.2
253
+
254
+ ### Changed
255
+
256
+ * fix broken `hub login` and `hub open` ([#160](https://github.com/dotenvx/dotenvx/pull/160))
257
+
258
+ ## 0.29.1
259
+
260
+ ### Changed
261
+
262
+ * patch situation where `DOTENV_KEY` is present and `--env-file` flag is set. assume to still look for `.env.vault` file as first in line ([#157](https://github.com/dotenvx/dotenvx/pull/157))
263
+
264
+ ## 0.29.0
265
+
266
+ ### Changed
267
+
268
+ * respect order for `--env-vault-file`, `--env-file` and `--env` flags (for example: `dotenvx run --env "HELLO=one" --env-file=.env` will prioritize `--env` flag. Add `--overload` here to prioritize `--env-file` or reverse the order.). you can now mix and match multiple flags in any complex order you wish and dotenvx will respect it. ([#155](https://github.com/dotenvx/dotenvx/pull/155))
269
+
270
+ ## 0.28.0
271
+
272
+ ### Added
273
+
274
+ * add `dotenvx settings` command to list your current settings. in the future we'll provide ways to modify these settings as dotenvx's functionality grows ([#153](https://github.com/dotenvx/dotenvx/pull/153))
275
+
276
+ ## 0.27.2
277
+
278
+ ### Added
279
+
280
+ * add windows postrelease step to check that `dotenvx.exe` is functional immediately after release ([#141](https://github.com/dotenvx/dotenvx/pull/141))
281
+
282
+ ### Changed
283
+
284
+ * replace `package-json` with `undici` ([#146](https://github.com/dotenvx/dotenvx/pull/146))
285
+ * prune redundant packages ([#148](https://github.com/dotenvx/dotenvx/pull/148))
286
+ * return current version if remote version fails ([#149](https://github.com/dotenvx/dotenvx/pull/149))
287
+ * switch to our own update notice mechanism (eliminating multiple deps) ([#151](https://github.com/dotenvx/dotenvx/pull/151))
288
+
289
+ ## 0.27.1
290
+
291
+ ### Added
292
+
293
+ * provide `.zip` download option for windows executable ([#140](https://github.com/dotenvx/dotenvx/pull/140))
294
+
295
+ ### Removed
296
+
297
+ * remove `got` from top level deps ([#139](https://github.com/dotenvx/dotenvx/pull/139))
298
+
299
+ ## 0.27.0
300
+
301
+ ### Changed
302
+
303
+ * move `update-notifier` into `lib/helpers` for more control over `got` lib ([#138](https://github.com/dotenvx/dotenvx/pull/138))
304
+ * move `clipboardy` into `lib/helpers` for more control and to support commonjs going forward (sindre has dropped support and many mature systems still require commonjs for their infra and have need of dotenvx). ([#137](https://github.com/dotenvx/dotenvx/pull/137))
305
+
306
+ ## 0.26.0
307
+
308
+ ### Added
309
+
310
+ * add `hub pull` command to pull a repo's `.env.keys` down. ([#129](https://github.com/dotenvx/dotenvx/pull/129))
311
+
312
+ ## 0.25.1
313
+
314
+ ### Changed
315
+
316
+ * 🐞 patch bug with evaluate commands. do not attempt to evaluate risky preset envs in `process.env`. evaluate only what's set in a `.env*` file ([#125](https://github.com/dotenvx/dotenvx/pull/125))
317
+
318
+ ## 0.25.0
319
+
320
+ ### Added
321
+
322
+ * expand `hub push` with `[directory]` option. use for monorepos. for example: `dotenvx hub push apps/backend` ([#121](https://github.com/dotenvx/dotenvx/pull/121))
323
+
324
+ ## 0.24.0
325
+
326
+ ### Added
327
+
328
+ * add command substitution. for example `DATABASE_URL="postgres://$(whoami)@localhost/my_database"` ([#113](https://github.com/dotenvx/dotenvx/pull/113))
329
+
330
+ ## 0.23.0
331
+
332
+ ### Added
333
+
334
+ * support personal environment variables. anything after the comment `# personal.dotenvx.com` will be considered personal and will not be encrypted to .env.vault ([#110](https://github.com/dotenvx/dotenvx/pull/110))
335
+
336
+ ## 0.22.0
337
+
338
+ ### Added
339
+
340
+ * `require('@dotenvx/dotenvx').config()` expands/interpolates variables. this matches the behavior of `run`. (note that this behavior differs from the original `require('dotenv').config()` ([#107](https://github.com/dotenvx/dotenvx/pull/107))
341
+
342
+ ## 0.21.0
343
+
344
+ ### Added
345
+
346
+ * expose `genexample` function on `lib/main.js` for export convenience ([#102](https://github.com/dotenvx/dotenvx/pull/102))
347
+
348
+ ### Changed
349
+
350
+ * rely on `which` npm module to find system command path for user inputted command(s) ([#105](https://github.com/dotenvx/dotenvx/pull/105))
351
+
352
+ ### Removed
353
+
354
+ * remove `main.inject` function ([#102](https://github.com/dotenvx/dotenvx/pull/102))
355
+
356
+ ## 0.20.2
357
+
358
+ ### Added
359
+
360
+ * added support for `--env` flag on the `.env.vault` decryption portion of `run` ([#101](https://github.com/dotenvx/dotenvx/pull/101))
361
+
362
+ ## 0.20.1
363
+
364
+ ### Changed
365
+
366
+ * use system command path ([#98](https://github.com/dotenvx/dotenvx/pull/98))
367
+
368
+ ## 0.20.0
369
+
370
+ ### Changed
371
+
372
+ * added `--env` flag. for example, `dotenvx --env="HELLO=World" -- yourcommand` ([#94](https://github.com/dotenvx/dotenvx/pull/94))
373
+
374
+ ## 0.19.1
375
+
376
+ ### Changed
377
+
378
+ * patched up the `precommit` command ([#91](https://github.com/dotenvx/dotenvx/pull/91))
379
+
380
+ ## 0.19.0
381
+
382
+ ### Added
383
+
384
+ * added `scan` command to scan for possible leaked secrets in your code ([#90](https://github.com/dotenvx/dotenvx/pull/90))
385
+
386
+ ## 0.18.0
387
+
388
+ ### Added
389
+
390
+ * added `get` command, optionally pass `--env-file` flag(s) to `get`, optionally pass `--overload`, and optionally pass `--pretty-print`. usage: `dotenvx get HELLO` => `World` ([#89](https://github.com/dotenvx/dotenvx/pull/89))
391
+
392
+ ## 0.17.1
393
+
394
+ ### Changed
395
+
396
+ * expose `main.encrypt` and `main.ls` functions
397
+
398
+ ## 0.17.0
399
+
400
+ ### Added
401
+
402
+ * added `[directory]` argument to `encrypt`. for example, in your nx repo from root `dotenvx encrypt apps/backend` will encrypt .env* files in that directory and manage the `.env.keys` and `.env.vault` in that directory as well ([#82](https://github.com/dotenvx/dotenvx/pull/82))
403
+
404
+ ## 0.16.1
405
+
406
+ ### Changed
407
+
408
+ * bumped `dotenv` version to fix `encrypt` bug
409
+
410
+ ## 0.16.0
411
+
412
+ ### Added
413
+
414
+ * added `ls` command to list all your `.env*` files ([#80](https://github.com/dotenvx/dotenvx/pull/80))
415
+ * added `--env-file` option `ls` ([#82](https://github.com/dotenvx/dotenvx/pull/82))
416
+ * optionally specify `--env-vault-file` path to `.env.vault` (defaults to `.env.vault`) ([#73](https://github.com/dotenvx/dotenvx/pull/73))
417
+
418
+ ## 0.15.4
419
+
420
+ ### Changed
421
+
422
+ * 🐞 patch `--overload` flag logic ([#66](https://github.com/dotenvx/dotenvx/pull/66))
423
+
424
+ ## 0.15.3
425
+
426
+ ### Changed
427
+
428
+ * 🐞 fix undici readablestream error ([#65](https://github.com/dotenvx/dotenvx/pull/65))
429
+
430
+ ## 0.15.2
431
+
432
+ ### Changed
433
+
434
+ * switch from axios to undici ([#59](https://github.com/dotenvx/dotenvx/pull/59))
435
+ * bump `dotenv-expand` ([#63](https://github.com/dotenvx/dotenvx/pull/63))
436
+
437
+ ## 0.15.1
438
+
439
+ ### Changed
440
+
441
+ * use improved dotenv expansion ([#62](https://github.com/dotenvx/dotenvx/pull/62))
442
+
443
+ ## 0.15.0
444
+
445
+ ### Added
446
+
447
+ * add expansion ([#60](https://github.com/dotenvx/dotenvx/pull/60))
448
+ * use `dotenvx.com` ([#56](https://github.com/dotenvx/dotenvx/pull/56))
449
+
450
+ ## 0.14.1
451
+
452
+ ### Changed
453
+
454
+ * patch esm issue. use update-notifier ^5.1.0
455
+
456
+ ## 0.14.0
457
+
458
+ ### Added
459
+
460
+ * Added `genexample` command. Generate `.env.example` from your `.env` file. ([#49](https://github.com/dotenvx/dotenvx/pull/49))
461
+ * couple security patches ([#50](https://github.com/dotenvx/dotenvx/pull/50), [#51](https://github.com/dotenvx/dotenvx/pull/51))
462
+
463
+ ## 0.13.0
464
+
465
+ ### Added
466
+
467
+ * Added `decrypt` command. Decrypt `.env.vault` to prospective `.env*` files. `.env.keys` must be present. ([#48](https://github.com/dotenvx/dotenvx/pull/48))
468
+
469
+ ## 0.12.0
470
+
471
+ ### Added
472
+
473
+ * Append to `.gitignore` with `gitignore` command (also `.dockerignore`, `.npmignore`, and `.vercelignore` if existing) ([#47](https://github.com/dotenvx/dotenvx/pull/47))
474
+
475
+ ## 0.11.0
476
+
477
+ ### Removed
478
+
479
+ * no longer append to `*ignore` files automatically. too invasive. will provide as separate cli command ([#45](https://github.com/dotenvx/dotenvx/pull/45))
480
+
481
+ ## 0.10.6
482
+
483
+ ### Changed
484
+
485
+ * Improve error message when decryption fails ([#40](https://github.com/dotenvx/dotenvx/pull/40))
486
+
487
+ ## 0.10.5
488
+
489
+ ### Changed
490
+
491
+ * Rename `predockerbuild` command to `prebuild` ([#36](https://github.com/dotenvx/pull/36))
492
+
493
+ ## 0.10.4
494
+
495
+ ### Added
496
+
497
+ * Add `predockerbuild` command to prevent including `.env` file in your docker builds ([#35](https://github.com/dotenvx/pull/35))
498
+
499
+ ## 0.10.3
500
+
501
+ ### Changed
502
+
503
+ * If dotenvx is missing tell user how to install it from pre-commit ([#34](https://github.com/dotenvx/pull/34))
504
+ * Add help notice for ci (when .env file not present) ([#33](https://github.com/dotenvx/pull/33))
505
+
506
+ ## 0.10.2
507
+
508
+ ### Changed
509
+
510
+ * Improve error message when custom `--env-file` passed ([#32](https://github.com/dotenvx/pull/32))
511
+
512
+ ## 0.10.1
513
+
514
+ ### Changed
515
+
516
+ * Adjust `precommit` verbosity and coloring
517
+ * Add `--install` flag to precommit - installs to `.git/hooks/pre-commit` ([#31](https://github.com/dotenvx/dotenvx/pull/31))
518
+
519
+ ## 0.10.0
520
+
521
+ ### Added
522
+
523
+ * Added `dotenvx precommit` command and instructions for git pre-commit hook ([#30](https://github.com/dotenvx/dotenvx/pull/30))
524
+
525
+ ## 0.9.0
526
+
527
+ ### Changed
528
+
529
+ * Remove `.flaskenv` from appends ([#27](https://github.com/dotenvx/dotenvx/pull/27))
530
+ * Improved error message when .env file is missing ([#28](https://github.com/dotenvx/dotenvx/pull/28))
531
+
532
+ ## 0.8.4
533
+
534
+ ### Changed
535
+
536
+ Load `axios` with a try/catch depending on context 🐞 ([#24](https://github.com/dotenvx/dotenvx/pull/24))
537
+
538
+ ## 0.8.3
539
+
540
+ ### Changed
541
+
542
+ Patched `helpers.guessEnvironment` bug when filepath contained a `.` in the folder name. 🐞 ([#23](https://github.com/dotenvx/dotenvx/pull/23))
543
+
544
+ ## 0.8.2
545
+
546
+ ### Changed
547
+
548
+ Change path to axios in attempt for `pkg` to build correctly.
549
+
550
+ ## 0.8.1
551
+
552
+ ### Added
553
+
554
+ Add axios (missing) to `package-lock.json`
555
+
556
+ ## 0.8.0
557
+
558
+ ### Added
559
+
560
+ Added [hub](https://hub.dotenvx.com) support. 🎉 ([#16](https://github.com/dotenvx/dotenvx/pull/16))
561
+
562
+ ## 0.7.4
563
+
564
+ ### Changed
565
+
566
+ Create binaries with root:root defaults. ([#21](https://github.com/dotenvx/dotenvx/pull/21))
567
+
568
+ ## 0.7.3
569
+
570
+ ### Added
571
+
572
+ Tell user about undefined subprocess with additional `debug` logs ([#19](https://github.com/dotenvx/dotenvx/pull/19))
573
+
574
+ ## 0.7.2
575
+
576
+ ### Added
577
+
578
+ `debug` other signals send to execa process ([#18](https://github.com/dotenvx/dotenvx/pull/18))
579
+
580
+ ## 0.7.1
581
+
582
+ ### Changed
583
+
584
+ Fix missed package.json#version
585
+
586
+ ## 0.7.0
587
+
588
+ ### Added
589
+
590
+ handle `SIGINT` ([#17](https://github.com/dotenvx/dotenvx/pull/17))
591
+
592
+ ## 0.6.13
593
+
594
+ write to `/latest` only for [releases](https://github.com/dotenvx/releases) repo ([#15](https://github.com/dotenvx/dotenvx/pull/15))
595
+
596
+ ## 0.6.12
597
+
598
+ ### Changed
599
+
600
+ do not package README alongside binary. adds noise to a user's machine. keep their machine shiny. ([#14](https://github.com/dotenvx/dotenvx/pull/14))
601
+
602
+ ## 0.6.11
603
+
604
+ ### Added
605
+
606
+ tell user what to do next ([#13](https://github.com/dotenvx/dotenvx/pull/13))
607
+
608
+ ## 0.6.10
609
+
610
+ ### Patched
611
+
612
+ do not log when error code is 0 ([#12](https://github.com/dotenvx/dotenvx/pull/12))
613
+
614
+ ## 0.6.9
615
+
616
+ ### Added
617
+
618
+ tell user when no changes to re-encrypt ([#11](https://github.com/dotenvx/dotenvx/pull/11))
619
+
620
+ ## 0.6.8
621
+
622
+ ### Added
623
+
624
+ added help text when user's command fails. include link to report issue ([#10](https://github.com/dotenvx/dotenvx/pull/10))
625
+
626
+ ## 0.6.7
627
+
628
+ ## Added
629
+
630
+ added next step help message when running `dotenvx run` with no argument ([#9](https://github.com/dotenvx/dotenvx/pull/9))
631
+
632
+
633
+ ## 0.6.6
634
+
635
+ ### Added
636
+
637
+ help includes a command example as well as a full working 'try it out' example ([#8](https://github.com/dotenvx/dotenvx/pull/8))
638
+
639
+ ## 0.6.5
640
+
641
+ ### Changed
642
+
643
+ made the info messaging more succinct ([#7](https://github.com/dotenvx/dotenvx/pull/7))
644
+
645
+ ## 0.6.4
646
+
647
+ ### Added
648
+
649
+ added tagged images to [hub.docker.com/u/dotenv](https://hub.docker.com/r/dotenv/dotenvx/tags)
650
+
651
+ ## 0.6.3
652
+
653
+ ### Changed
654
+
655
+ fixed the `.env.keys` file comment. spacing was off. ([#6](https://github.com/dotenvx/dotenvx/pull/6))
656
+
657
+ ## 0.6.2
658
+
659
+ ### Added
660
+
661
+ added help text to `encrypt`. ([#5](https://github.com/dotenvx/dotenvx/pull/5))
662
+
663
+ ## 0.6.1
664
+
665
+ ### Changed
666
+
667
+ removed the `pad` on the logging level. didn't look good when running in default INFO mode. ([#4](https://github.com/dotenvx/dotenvx/pull/4))
668
+
669
+ ## 0.6.0
670
+
671
+ ### Added
672
+
673
+ prevent committing a `.env*` file to code. append to `.gitignore`, `.dockerignore`, `.vercelignore`, and `.npmignore` 🗂️ ([#3](https://github.com/dotenvx/dotenvx/pull/3))
674
+
675
+ ## 0.5.0
676
+
677
+ ### Added
678
+
679
+ `run` support for `.env.vault` files 🔑 ([#2](https://github.com/dotenvx/dotenvx/pull/2))
680
+
681
+ ## 0.4.0
682
+
683
+ ### Added
684
+
685
+ `encrypt` 🔐 ([#1](https://github.com/dotenvx/dotenvx/pull/1))
686
+
687
+ ## 0.3.9 and prior
688
+
689
+ Please see commit history.
690
+
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.44.2",
2
+ "version": "0.44.4",
3
3
  "name": "@dotenvx/dotenvx",
4
4
  "description": "a better dotenv–from the creator of `dotenv`",
5
5
  "author": "@motdotla",
@@ -11,7 +11,8 @@
11
11
  "repository": "dotenvx/dotenvx",
12
12
  "license": "BSD-3-Clause",
13
13
  "files": [
14
- "src/**/*"
14
+ "src/**/*",
15
+ "CHANGELOG.md"
15
16
  ],
16
17
  "main": "src/lib/main.js",
17
18
  "bin": {
@@ -22,7 +23,8 @@
22
23
  "standard": "standard",
23
24
  "standard:fix": "standard --fix",
24
25
  "test": "tap run --show-full-coverage",
25
- "prerelease": "npm test",
26
+ "testshell": "bash shellspec",
27
+ "prerelease": "npm test && npm run testshell",
26
28
  "release": "standard-version"
27
29
  },
28
30
  "funding": "https://dotenvx.com",