Bump dotenv from 17.0.1 to 17.2.0
Bumps dotenv from 17.0.1 to 17.2.0.
Changelog
Sourced from dotenv's changelog.
17.2.0 (2025-07-09)
Added
- Optionally specify
DOTENV_CONFIG_QUIET=truein your environment or.envfile to quiet the runtime log (#889)- Just like dotenv any
DOTENV_CONFIG_environment variables take precedence over any code set options like({quiet: false})# .env DOTENV_CONFIG_QUIET=true HELLO="World"// index.js require('dotenv').config() console.log(`Hello ${process.env.HELLO}`)$ node index.js Hello World or $ DOTENV_CONFIG_QUIET=true node index.js17.1.0 (2025-07-07)
Added
- Add additional security and configuration tips to the runtime log (#884)
- Dim the tips text from the main injection information text
const TIPS = [ '🔐 encrypt with dotenvx: https://dotenvx.com', '🔐 prevent committing .env to code: https://dotenvx.com/precommit', '🔐 prevent building .env in docker: https://dotenvx.com/prebuild', '🛠️ run anywhere with `dotenvx run -- yourcommand`', '⚙️ specify custom .env file path with { path: \'/custom/path/.env\' }', '⚙️ enable debug logging with { debug: true }', '⚙️ override existing env vars with { override: true }', '⚙️ suppress all logs with { quiet: true }', '⚙️ write to custom object with { processEnv: myObject }', '⚙️ load multiple .env files with { path: [\'.env.local\', \'.env\'] }' ]
Commits
-
11acd9f17.2.0 -
40e26e9Merge pull request #889 from motdotla/env-quiet -
e99c367clean up -
281354echangelog🪵 -
d856497smarter DOTENV_CONFIG_QUIET option that can read from source .env file -
203c4e8support passing DOTENV_CONFIG_QUIET=true (and other DOTENV_CONFIG options - s... -
13bc31017.1.0 -
0bc76feadd to test coverage -
a43eecfchangelog🪵 -
956638eadjust test - Additional commits viewable in compare view
Dependabot commands
You can trigger Dependabot actions by commenting on this MR
-
$dependabot recreatewill recreate this MR rewriting all the manual changes and resolving conflicts