-
Notifications
You must be signed in to change notification settings - Fork 2
fix(deps): update dependency dotenv to v16.6.1 #154
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
SupportNeed help? Join our Discord community for assistance with any issues or questions. Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PR Summary
Updates dotenv from 16.5.0 to 16.6.0 in packages/config
, introducing new default logging behavior that displays env file loading information.
- New default log message
[dotenv@16.6.0] injecting env (1) from .env
will now appear when loading environment variables - Can be suppressed using
{ quiet: true }
option if needed - This change aligns the package more closely with dotenvx, their newer solution
1 file reviewed, no comments
Edit PR Review Bot Settings | Greptile
a20a002
to
3f0a485
Compare
Is this still relevant? If so, what is blocking it? Is there anything you can do to help move it forward? This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. |
This PR contains the following updates:
16.5.0
->16.6.1
Release Notes
motdotla/dotenv (dotenv)
v16.6.1
Compare Source
Changed
quiet
to true – hiding the runtime log message (#874)config({ quiet: true })
to suppress.require('dotenv').config()
forrequire('@​dotenvx/dotenvx').config()
.v16.6.0
Compare Source
Added
[dotenv@16.6.0] injecting env (1) from .env
(#870){ quiet: true }
to suppressv16.5.0
Compare Source
Added
Changed
_log
method. Use_debug
#862