Skip to content

Bump python-dotenv from 1.2.1 to 1.2.2 in /examples/snowflake_cortex/dagster_snowflake#158

Open
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/uv/examples/snowflake_cortex/dagster_snowflake/python-dotenv-1.2.2
Open

Bump python-dotenv from 1.2.1 to 1.2.2 in /examples/snowflake_cortex/dagster_snowflake#158
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/uv/examples/snowflake_cortex/dagster_snowflake/python-dotenv-1.2.2

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot Bot commented on behalf of github Apr 21, 2026

Bumps python-dotenv from 1.2.1 to 1.2.2.

Release notes

Sourced from python-dotenv's releases.

v1.2.2

Added

  • Support for Python 3.14, including the free-threaded (3.14t) build. (#)

Changed

  • The dotenv run command now forwards flags directly to the specified command by @​bbc2 in theskumar/python-dotenv#607
  • Improved documentation clarity regarding override behavior and the reference page.
  • Updated PyPy support to version 3.11.
  • Documentation for FIFO file support.
  • Support for Python 3.9.

Fixed

Breaking Changes

  • dotenv.set_key and dotenv.unset_key used to follow symlinks in some situations. This is no longer the case. For that behavior to be restored in all cases, follow_symlinks=True should be used.

  • In the CLI, set and unset used to follow symlinks in some situations. This is no longer the case.

  • dotenv.set_key, dotenv.unset_key and the CLI commands set and unset used to reset the file mode of the modified .env file to 0o600 in some situations. This is no longer the case: The original mode of the file is now preserved. Is the file needed to be created or wasn't a regular file, mode 0o600 is used.

Misc

New Contributors

Full Changelog: theskumar/python-dotenv@v1.2.1...v1.2.2

Changelog

Sourced from python-dotenv's changelog.

[1.2.2] - 2026-03-01

Added

  • Support for Python 3.14, including the free-threaded (3.14t) build. (#588)

Changed

  • The dotenv run command now forwards flags directly to the specified command by [@​bbc2] in #607
  • Improved documentation clarity regarding override behavior and the reference page.
  • Updated PyPy support to version 3.11.
  • Documentation for FIFO file support.
  • Dropped Support for Python 3.9.

Fixed

  • Improved set_key and unset_key behavior when interacting with symlinks by [@​bbc2] in [790c5c0]
  • Corrected the license specifier and added missing Python 3.14 classifiers in package metadata by [@​JYOuyang] in #590

Breaking Changes

  • dotenv.set_key and dotenv.unset_key used to follow symlinks in some situations. This is no longer the case. For that behavior to be restored in all cases, follow_symlinks=True should be used.

  • In the CLI, set and unset used to follow symlinks in some situations. This is no longer the case.

  • dotenv.set_key, dotenv.unset_key and the CLI commands set and unset used to reset the file mode of the modified .env file to 0o600 in some situations. This is no longer the case: The original mode of the file is now preserved. Is the file needed to be created or wasn't a regular file, mode 0o600 is used.

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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Greptile Summary

This PR bumps python-dotenv from 1.2.1 to 1.2.2 and tightens the lower bound in pyproject.toml to >=1.2.2. The uv.lock update is mostly expected, but it also contains an unrelated change: the dagster dependency specifier shifts from ==1.12.10 to >=1.9.0, which does not match any change in pyproject.toml and suggests the lock file was regenerated with a different constraint set.

  • The dagster specifier in uv.lock (>=1.9.0) diverges from pyproject.toml's apparent pin (==1.12.10), which could cause users who run uv sync to resolve a different (potentially newer or older) dagster version than intended.

Confidence Score: 4/5

Safe to merge after verifying the dagster specifier change in uv.lock is intentional or correcting the mismatch.

The python-dotenv bump itself is straightforward, but the lock file contains an unrelated dagster constraint loosening (==1.12.10 → >=1.9.0) that does not correspond to any pyproject.toml change, which is a P1 concern worth addressing before merge.

examples/snowflake_cortex/dagster_snowflake/uv.lock — the dagster specifier divergence needs clarification.

Important Files Changed

Filename Overview
examples/snowflake_cortex/dagster_snowflake/pyproject.toml Bumps python-dotenv lower bound from >=1.0.0 to >=1.2.2 to match the new locked version
examples/snowflake_cortex/dagster_snowflake/uv.lock Updates python-dotenv to 1.2.2, but also unexpectedly loosens the dagster pin from ==1.12.10 to >=1.9.0 and removes several s390x greenlet wheel entries

Fix All in Cursor Fix All in Claude Code

Prompt To Fix All With AI
This is a comment left during a code review.
Path: examples/snowflake_cortex/dagster_snowflake/uv.lock
Line: 789-790

Comment:
**Unexpected dagster specifier change**

The lock file reflects a change from a pinned `dagster==1.12.10` to `dagster>=1.9.0`, but this is not present in `pyproject.toml` and is unrelated to the python-dotenv bump. This means the lock file may have been regenerated with a different resolution state than `pyproject.toml` actually declares. If `pyproject.toml` still pins `dagster==1.12.10`, this divergence could cause unexpected behavior when users run `uv sync` and get a different dagster version than intended.

How can I resolve this? If you propose a fix, please make it concise.

Reviews (1): Last reviewed commit: "Bump python-dotenv in /examples/snowflak..." | Re-trigger Greptile

Greptile also left 1 inline comment on this PR.

Bumps [python-dotenv](https://github.com/theskumar/python-dotenv) from 1.2.1 to 1.2.2.
- [Release notes](https://github.com/theskumar/python-dotenv/releases)
- [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md)
- [Commits](theskumar/python-dotenv@v1.2.1...v1.2.2)

---
updated-dependencies:
- dependency-name: python-dotenv
  dependency-version: 1.2.2
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Apr 21, 2026
Comment on lines 789 to +790
{ name = "cryptography", specifier = ">=41.0.0" },
{ name = "dagster", specifier = "==1.12.10" },
{ name = "dagster", specifier = ">=1.9.0" },
Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P1 Unexpected dagster specifier change

The lock file reflects a change from a pinned dagster==1.12.10 to dagster>=1.9.0, but this is not present in pyproject.toml and is unrelated to the python-dotenv bump. This means the lock file may have been regenerated with a different resolution state than pyproject.toml actually declares. If pyproject.toml still pins dagster==1.12.10, this divergence could cause unexpected behavior when users run uv sync and get a different dagster version than intended.

Prompt To Fix With AI
This is a comment left during a code review.
Path: examples/snowflake_cortex/dagster_snowflake/uv.lock
Line: 789-790

Comment:
**Unexpected dagster specifier change**

The lock file reflects a change from a pinned `dagster==1.12.10` to `dagster>=1.9.0`, but this is not present in `pyproject.toml` and is unrelated to the python-dotenv bump. This means the lock file may have been regenerated with a different resolution state than `pyproject.toml` actually declares. If `pyproject.toml` still pins `dagster==1.12.10`, this divergence could cause unexpected behavior when users run `uv sync` and get a different dagster version than intended.

How can I resolve this? If you propose a fix, please make it concise.

Fix in Cursor Fix in Claude Code

@socket-security
Copy link
Copy Markdown

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Addedpypi/​python-dotenv@​1.2.299100100100100

View full report

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 python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants