Skip to content

Bump dotenv from 16.6.1 to 17.3.1#56

Merged
rtibbles merged 1 commit intomainfrom
dependabot/npm_and_yarn/dotenv-17.3.1
Mar 6, 2026
Merged

Bump dotenv from 16.6.1 to 17.3.1#56
rtibbles merged 1 commit intomainfrom
dependabot/npm_and_yarn/dotenv-17.3.1

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 5, 2026

⚠️ Dependabot is rebasing this PR ⚠️

Rebasing might not happen immediately, so don't worry if this takes some time.

Note: if you make any changes to this PR yourself, they will take precedence over the rebase.


Bumps dotenv from 16.6.1 to 17.3.1.

Changelog

Sourced from dotenv's changelog.

17.3.1 (2026-02-12)

Changed

  • Fix as2 example command in README and update spanish README

17.3.0 (2026-02-12)

Added

  • Add a new README section on dotenv’s approach to the agentic future.

Changed

  • Rewrite README to get humans started more quickly with less noise while simultaneously making more accessible for llms and agents to go deeper into details.

17.2.4 (2026-02-05)

Changed

  • Make DotenvPopulateInput accept NodeJS.ProcessEnv type (#915)
  • Give back to dotenv by checking out my newest project vestauth. It is auth for agents. Thank you for using my software.

17.2.3 (2025-09-29)

Changed

  • Fixed typescript error definition (#912)

17.2.2 (2025-09-02)

Added

  • 🙏 A big thank you to new sponsor Tuple.app - the premier screen sharing app for developers on macOS and Windows. Go check them out. It's wonderful and generous of them to give back to open source by sponsoring dotenv. Give them some love back.

17.2.1 (2025-07-24)

Changed

  • Fix clickable tip links by removing parentheses (#897)

17.2.0 (2025-07-09)

Added

  • Optionally specify DOTENV_CONFIG_QUIET=true in your environment or .env file 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
</tr></table> 

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Mar 5, 2026
@rtibbles rtibbles requested a review from rtibblesbot March 6, 2026 02:16
Copy link
Contributor

@rtibblesbot rtibblesbot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dependency Update Review

Package: dotenv 16.6.1 → 17.3.1
Semver risk: Major
Dependency type: production (per package.json)
CI status: Passing

Changelog Analysis

Sources consulted:

Breaking changes (v17.0.0):

  • quiet option now defaults to falsedotenv.config() produces informational log output by default. Previous behavior was silent.

Other notable changes (v17.1.0–v17.3.1):

  • v17.2.0: Added DOTENV_CONFIG_QUIET=true env var option
  • v17.2.3–v17.2.4: TypeScript type fixes
  • v17.3.0–v17.3.1: README rewrites only

Security fixes: None
Deprecations: None
New peer dependencies: None

Compatibility Assessment

  • Project uses affected APIs: No — no file in this repository imports or requires dotenv. Scripts access process.env directly (populated by GitHub Actions).
  • Peer dependency changes: No
  • Code changes required: No
  • Prior failed attempts: No

Note: dotenv is listed under dependencies but appears unused. This is worth a separate cleanup but doesn't block this update.

Recommendation

APPROVE — the only breaking change (quiet default) has no impact since no code imports dotenv. CI passes.


@rtibblesbot's comments are generated by an LLM, and should be evaluated accordingly

How was this generated?

Reviewed the pull request diff checking for:

  • Correctness: bugs, edge cases, undocumented behavior, resource leaks, hardcoded values
  • Design: unnecessary complexity, naming, readability, comment accuracy, redundant state
  • Architecture: duplicated concerns, minimal interfaces, composition over inheritance
  • Testing: behavior-based assertions, mocks only at hard boundaries, accurate coverage
  • Completeness: missing dependencies, unupdated usages, i18n, accessibility, security
  • Principles: DRY (same reason to change), SRP, Rule of Three (no premature abstraction)
  • Checked CI status and linked issue acceptance criteria
  • For UI changes: inspected screenshots for layout, visual completeness, and consistency

"dependencies": {
"axios": "^1.7.5",
"dotenv": "^16.4.5",
"dotenv": "^17.3.1",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

suggestion: dotenv is listed as a production dependency, but no file in this repository imports or requires it. Scripts read process.env directly (populated by GitHub Actions). Consider removing dotenv from dependencies entirely in a follow-up — it would eliminate this class of dependency update.

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dotenv-17.3.1 branch from 771675b to ee500ff Compare March 6, 2026 02:46
Bumps [dotenv](https://github.com/motdotla/dotenv) from 16.6.1 to 17.3.1.
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.6.1...v17.3.1)

---
updated-dependencies:
- dependency-name: dotenv
  dependency-version: 17.3.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/dotenv-17.3.1 branch from ee500ff to 76f651c Compare March 6, 2026 02:47
Copy link
Member

@rtibbles rtibbles left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is only used for local development. No concerns from changelog.

@rtibbles rtibbles merged commit dbba154 into main Mar 6, 2026
2 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dotenv-17.3.1 branch March 6, 2026 02:54
Copy link
Contributor

@rtibblesbot rtibblesbot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Dependency update looks good. CI passing.

Delta from prior review:

  • ACKNOWLEDGED: dotenv listed as production dependency but possibly only used locally — maintainer confirmed no concerns.

1 prior finding(s) resolved or acknowledged.


@rtibblesbot's comments are generated by an LLM, and should be evaluated accordingly

How was this generated?

Compared the current PR state against findings from a prior review:

  • Retrieved prior bot reviews deterministically via the GitHub API
  • Classified each prior finding as RESOLVED, UNADDRESSED, ACKNOWLEDGED, or CONTESTED
  • Only raised NEW findings for newly introduced code
  • Reviewed the pull request diff checking for correctness, design, architecture, testing, completeness, and adherence to DRY/SRP principles
  • Checked CI status and linked issue acceptance criteria

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants