@dotenvx/dotenvx
Advanced tools
Comparing version 1.27.0 to 1.28.0
@@ -5,4 +5,10 @@ # Changelog | ||
[Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.27.0...main) | ||
[Unreleased](https://github.com/dotenvx/dotenvx/compare/v1.28.0...main) | ||
## [1.28.0](https://github.com/dotenvx/dotenvx/compare/v1.27.0...v1.28.0) | ||
### Changed | ||
* `.env.keys` file is generated WITHOUT quotes going forward. This is to minimize friction around Docker gotchas to developers - old versions of Docker do not support `--env-file` containing quoted keys/values. ([#480](https://github.com/dotenvx/dotenvx/pull/480)) ([additional note](https://github.com/dotenvx/dotenvx/issues/465#issuecomment-2515279676)) | ||
## [1.27.0](https://github.com/dotenvx/dotenvx/compare/v1.26.2...v1.27.0) | ||
@@ -12,3 +18,3 @@ | ||
* add support for `\t` expansion when double quoted. (e.g. `TAB="hi\tfriend"` becomes `hi friend`) ([#479](https://github.com/dotenvx/dotenvx/pull/479)) | ||
* add support for `\t` expansion when double quoted. (e.g. `TAB="hi\tfriend"` becomes `hi friend`) ([#479](https://github.com/dotenvx/dotenvx/pull/479)) | ||
@@ -15,0 +21,0 @@ ## [1.26.2](https://github.com/dotenvx/dotenvx/compare/v1.26.1...v1.26.2) |
{ | ||
"version": "1.27.0", | ||
"version": "1.28.0", | ||
"name": "@dotenvx/dotenvx", | ||
@@ -4,0 +4,0 @@ "description": "a better dotenv–from the creator of `dotenv`", |
@@ -135,3 +135,3 @@ const fsx = require('./../helpers/fsx') | ||
`# ${filename}`, | ||
`${privateKeyName}="${privateKey}"`, | ||
`${privateKeyName}=${privateKey}`, | ||
'' | ||
@@ -138,0 +138,0 @@ ].join('\n') |
@@ -140,3 +140,3 @@ const fsx = require('./../helpers/fsx') | ||
`# ${filename}`, | ||
`${privateKeyName}="${privateKey}"`, | ||
`${privateKeyName}=${privateKey}`, | ||
'' | ||
@@ -143,0 +143,0 @@ ].join('\n') |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
227311