@dotenvx/dotenvx 1.38.4 β†’ 1.38.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,7 +2,13 @@
2
2
 
3
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
4
 
5
- [Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.38.4...main)
5
+ [Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.38.5...main)
6
+
7
+ ## [1.38.5](https://github.com/dotenvx/dotenvx/compare/v1.38.4...v1.38.5)
8
+
9
+ ### Added
10
+
11
+ * 🐞 Add `config.d.ts` file to fix type error when loading `dotenvx/dotenvx/config` with dynamic import ([#547](https://github.com/dotenvx/dotenvx/pull/547))
6
12
 
7
13
  ## [1.38.4](https://github.com/dotenvx/dotenvx/compare/v1.38.3...v1.38.4)
8
14
 
package/README.md CHANGED
@@ -741,6 +741,10 @@ More examples
741
741
  > Become a `dotenvx` power user.
742
742
  >
743
743
 
744
+ ### CLI πŸ“Ÿ
745
+
746
+ Advanced CLI commands.
747
+
744
748
  * <details><summary>`run` - Variable Expansion</summary><br>
745
749
 
746
750
  Reference and expand variables already on your machine for use in your .env file.
@@ -1875,6 +1879,8 @@ More examples
1875
1879
 
1876
1880
  ### Extensions πŸ”Œ
1877
1881
 
1882
+ CLI extensions.
1883
+
1878
1884
  * <details><summary>`ext genexample`</summary><br>
1879
1885
 
1880
1886
  In one command, generate a `.env.example` file from your current `.env` file contents.
@@ -2006,7 +2012,9 @@ More examples
2006
2012
 
2007
2013
  </details>
2008
2014
 
2009
- ### config() πŸ“¦
2015
+ ### Library πŸ“¦
2016
+
2017
+ Use dotenvx directly in code.
2010
2018
 
2011
2019
  * <details><summary>`config()`</summary><br>
2012
2020
 
@@ -2228,6 +2236,16 @@ More examples
2228
2236
 
2229
2237
  </details>
2230
2238
 
2239
+ ## Whitepaper
2240
+
2241
+ > **Dotenvx: Reducing Secrets Risk with Cryptographic Separation**
2242
+ >
2243
+ > Abstract. An ideal secrets solution would not only centralize secrets but also contain the fallout of a breach. While secrets managers offer centralized storage and distribution, their design creates a large blast radius, risking exposure of thousands or even millions of secrets. We propose a solution that reduces the blast radius by splitting secrets management into two distinct components: an encrypted secrets file and a separate decryption key.
2244
+ >
2245
+ > ...
2246
+ >
2247
+ > [Read the whitepaper](https://dotenvx.com/dotenvx.pdf)
2248
+
2231
2249
  &nbsp;
2232
2250
 
2233
2251
  ## Guides
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.38.4",
2
+ "version": "1.38.5",
3
3
  "name": "@dotenvx/dotenvx",
4
4
  "description": "a better dotenv–from the creator of `dotenv`",
5
5
  "author": "@motdotla",
@@ -0,0 +1 @@
1
+ export {};