fix(deps): Update Locked Dependencies#8
Merged
Merged
Conversation
## Summary
Syncs `uv.lock` with the current project state. Two changes:
- **Version reference** bumped `0.3.0` → `1.0.0` so the lockfile matches the released package version (`pyproject.toml` is already `1.0.0`).
- **`exceptiongroup` dependency** now resolves `typing-extensions` unconditionally (dropping the `python_full_version < '3.13'` marker), tracking an upstream metadata change.
These are dev-dependency / lockfile resolution changes — the package itself ships **zero runtime dependencies**. No source, test, or behavior changes.
This remakes the earlier `update deps` PR with a Conventional Commit title so Release Please cuts a **1.0.1** patch on merge.
## Validation
- `uv run pytest` — green
- `PR Title / validate` — conforms to the title policy
## Components touched
```mermaid
graph TD
A[uv.lock] -->|version ref 0.3.0 -> 1.0.0| B[matches pyproject 1.0.0]
A -->|exceptiongroup marker dropped| C[typing-extensions resolved unconditionally]
classDef touched fill:#fde68a,stroke:#b45309,color:#000;
class A touched;
```
🤖 Generated with [Claude Code](https://claude.com/claude-code)
🧠 Steered & Validated by [Hiren Hiranandani](https://github.com/bigH)
Merged
bigH
pushed a commit
that referenced
this pull request
Jun 27, 2026
🤖 I have created a release *beep* *boop* --- ## [1.0.1](v1.0.0...v1.0.1) (2026-06-27) ### Bug Fixes * **deps:** Update Locked Dependencies ([#8](#8)) ([4fd67b7](4fd67b7)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Syncs
uv.lockwith the current project state. Two changes:0.3.0→1.0.0so the lockfile matches the released package version (pyproject.tomlis already1.0.0).exceptiongroupdependency now resolvestyping-extensionsunconditionally (dropping thepython_full_version < '3.13'marker), tracking an upstream metadata change.These are dev-dependency / lockfile resolution changes — the package itself ships zero runtime dependencies. No source, test, or behavior changes.
This remakes the earlier
update depsPR with a Conventional Commit title so Release Please cuts a 1.0.1 patch on merge.Validation
uv run pytest— greenPR Title / validate— conforms to the title policyComponents touched
graph TD A[uv.lock] -->|version ref 0.3.0 -> 1.0.0| B[matches pyproject 1.0.0] A -->|exceptiongroup marker dropped| C[typing-extensions resolved unconditionally] classDef touched fill:#fde68a,stroke:#b45309,color:#000; class A touched;🤖 Generated with Claude Code
🧠 Steered & Validated by Hiren Hiranandani