chore(deps): configure Dependabot and update all dependencies#104
Open
daylighttg wants to merge 13 commits intoWorldObservationLog:v2from
Open
chore(deps): configure Dependabot and update all dependencies#104daylighttg wants to merge 13 commits intoWorldObservationLog:v2from
daylighttg wants to merge 13 commits intoWorldObservationLog:v2from
Conversation
Added configurations for Python, GitHub Actions, and Docker updates.
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 6. - [Release notes](https://github.com/actions/upload-artifact/releases) - [Commits](actions/upload-artifact@v4...v6) --- updated-dependencies: - dependency-name: actions/upload-artifact dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Updates the requirements on [regex](https://github.com/mrabarnett/mrab-regex) to permit the latest version. - [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt) - [Commits](mrabarnett/mrab-regex@2025.9.18...2026.1.15) --- updated-dependencies: - dependency-name: regex dependency-version: 2026.1.15 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Updates the requirements on [hishel](https://github.com/karpetrosyan/hishel) to permit the latest version. - [Release notes](https://github.com/karpetrosyan/hishel/releases) - [Changelog](https://github.com/karpetrosyan/hishel/blob/master/CHANGELOG.md) - [Commits](karpetrosyan/hishel@0.1.5...1.1.9) --- updated-dependencies: - dependency-name: hishel dependency-version: 1.1.9 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
Updates the requirements on [fastapi](https://github.com/fastapi/fastapi) to permit the latest version. - [Release notes](https://github.com/fastapi/fastapi/releases) - [Commits](fastapi/fastapi@0.109.0...0.129.0) --- updated-dependencies: - dependency-name: fastapi dependency-version: 0.129.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
…ns/checkout-6 build(deps): bump actions/checkout from 4 to 6
build(deps-dev): update fastapi requirement from ^0.109.0 to ^0.129.0
build(deps): update hishel requirement from ^0.1.5 to ^1.1.9
build(deps): update regex requirement from ^2025.9.18 to ^2026.1.15
Updates the requirements on [uvicorn](https://github.com/Kludex/uvicorn) to permit the latest version. - [Release notes](https://github.com/Kludex/uvicorn/releases) - [Changelog](https://github.com/Kludex/uvicorn/blob/main/docs/release-notes.md) - [Commits](Kludex/uvicorn@0.27.0...0.41.0) --- updated-dependencies: - dependency-name: uvicorn dependency-version: 0.41.0 dependency-type: direct:development ... Signed-off-by: dependabot[bot] <support@github.com>
…ns/upload-artifact-6 build(deps): bump actions/upload-artifact from 4 to 6
build(deps-dev): update uvicorn requirement from ^0.27.0 to ^0.41.0
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.
This pull request introduces several dependency and configuration updates to improve automation, security, and compatibility. The main changes include adding Dependabot configuration for automated dependency updates, upgrading key dependencies in
pyproject.toml, and updating GitHub Actions workflow steps to use the latest action versions.Automation and Dependency Management:
.github/dependabot.ymlfile to enable automated version updates for Python, GitHub Actions, and Docker dependencies, scheduled weekly.Dependency Upgrades in
pyproject.toml:regexfrom^2025.9.18to^2026.1.15andhishelfrom^0.1.5to^1.1.9for improved compatibility and bug fixes. [1] [2]fastapifrom^0.109.0to^0.129.0anduvicornfrom^0.27.0to^0.41.0in the server dependency group for better performance and security.GitHub Actions Workflow Updates:
actions/checkoutandactions/upload-artifactin.github/workflows/win-build.ymlfrom versionv4tov6to use the latest features and security patches. [1] [2]