Skip to content

chore(deps-dev): bump dotenv from 16.6.1 to 17.4.2 - #737

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dotenv-17.4.2
Open

chore(deps-dev): bump dotenv from 16.6.1 to 17.4.2#737
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/dotenv-17.4.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 18, 2026

Copy link
Copy Markdown
Contributor

Bumps dotenv from 16.6.1 to 17.4.2.

Changelog

Sourced from dotenv's changelog.

17.4.2 (2026-04-12)

Changed

  • Improved skill files - tightened up details (#1009)

17.4.1 (2026-04-05)

Changed

  • Change text injecting to injected (#1005)

17.4.0 (2026-04-01)

Added

  • Add skills/ folder with focused agent skills: skills/dotenv/SKILL.md (core usage) and skills/dotenvx/SKILL.md (encryption, multiple environments, variable expansion) for AI coding agent discovery via the skills.sh ecosystem (npx skills add motdotla/dotenv)

Changed

  • Tighten up logs: ◇ injecting env (14) from .env (#1003)

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)

... (truncated)

Commits

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 18, 2026
Copilot AI lite review requested due to automatic review settings August 18, 2026 21:47
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Aug 18, 2026

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Pull request overview

Note

Copilot could not run the full agentic suite for this review because it was automatically requested on a bot-authored pull request. Request a review from Copilot under Reviewers to retry with the full agentic suite. Improved support for bot-authored pull requests is coming soon.

Updates the example projects’ dev dependencies to use a newer dotenv version consistently across the repo.

Changes:

  • Bumped dotenv devDependency from ^16.4.5/^16.5.0 to ^17.4.2 across multiple examples/*/package.json files.
  • Standardized the dotenv version in examples that previously differed slightly.

Reviewed changes

Copilot reviewed 23 out of 24 changed files in this pull request and generated no comments.

Show a summary per file
File Description
examples/threading/package.json Updates dotenv version used by the threading example.
examples/targeted-messages/package.json Updates dotenv version used by the targeted-messages example.
examples/tab/package.json Updates dotenv version used by the tab example.
examples/suggested-action/package.json Updates dotenv version used by the suggested-action example.
examples/stream/package.json Updates dotenv version used by the stream example.
examples/reactions/package.json Updates dotenv version used by the reactions example.
examples/quoting/package.json Updates dotenv version used by the quoting example.
examples/proactive-messaging/package.json Updates dotenv version used by the proactive-messaging example.
examples/message-extensions/package.json Updates dotenv version used by the message-extensions example.
examples/meetings/package.json Updates dotenv version used by the meetings example.
examples/mcp-server/package.json Updates dotenv version used by the mcp-server example.
examples/m365extensions/package.json Updates dotenv version used by the m365extensions example.
examples/http-adapters/package.json Updates dotenv version used by the http-adapters example.
examples/html-widgets/package.json Updates dotenv version used by the html-widgets example.
examples/graph/package.json Updates dotenv version used by the graph example.
examples/formatted-messaging/package.json Updates dotenv version used by the formatted-messaging example.
examples/echo/package.json Updates dotenv version used by the echo example.
examples/dialogs/package.json Updates dotenv version used by the dialogs example.
examples/cards/package.json Updates dotenv version used by the cards example.
examples/botbuilder/package.json Updates dotenv version used by the botbuilder example.
examples/ai-mcp/package.json Updates dotenv version used by the ai-mcp example.
examples/agent365/package.json Updates dotenv version used by the agent365 example.
examples/a2a/package.json Updates dotenv version used by the a2a example.

💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.

Corina (corinagum) added a commit that referenced this pull request Aug 19, 2026
Review feedback caught a fail-open hole in the ecosystem shortcut. The
skip was expressed as "not in QUARANTINED_ECOSYSTEMS", so *any* slug
other than `npm_and_yarn` reported success -- including an npm PR whose
branch slug ever differs (e.g. `dependabot/npm/...`). A quarantined
package would then sail through with a green check, inverting the
script's fail-safe design.

Two changes:

- Invert the set to NON_NPM_ECOSYSTEMS, an allowlist of ecosystems known
  not to resolve through the CFS feed. Anything unrecognized now runs the
  full check instead of being skipped.
- Evaluate the lockfile diff *before* the ecosystem shortcut. A changed
  package-lock.json is ground truth that npm versions moved, so they are
  gated regardless of what the branch name claims.

Verified against live GitHub/npm data. With slug `dependabot/npm/...` and
a 1-day-old hono@4.13.3, the previous code returned `success` ("not
applicable"); it now returns `pending` with the eligible date. #734
(github_actions) still reports not-applicable and #737 still passes via
the lockfile path.

Also documents that Dependabot's branch slugs differ from the
`package-ecosystem` keys in dependabot.yml (`github-actions` ->
`github_actions`, `npm` -> `npm_and_yarn`), which prompted the review
comments.

Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
Bumps [dotenv](https://github.com/motdotla/dotenv) from 16.6.1 to 17.4.2.
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.6.1...v17.4.2)

---
updated-dependencies:
- dependency-name: dotenv
  dependency-version: 17.4.2
  dependency-type: direct:development
  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.4.2 branch from d4ba3fa to f63e92c Compare August 19, 2026 23:10
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.

1 participant