mirror of
https://github.com/python-telegram-bot/python-telegram-bot.git
synced 2026-06-19 15:45:13 +00:00
Compare commits
101 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 7dc44df21d | |||
| 2da606801a | |||
| 432a67efdd | |||
| 327f469cb4 | |||
| f9352c4d3e | |||
| 92eeee6266 | |||
| 85119416c0 | |||
| c804f693cc | |||
| 20f457c949 | |||
| 3a1c494f22 | |||
| fb4f768113 | |||
| 0cb090e97e | |||
| 69bba41117 | |||
| 47df86ac4b | |||
| ed61a6328b | |||
| 457bdf396f | |||
| cf0f2170aa | |||
| 72ac20cf6a | |||
| a51c027503 | |||
| 38f1d4b94e | |||
| 6d17e3a258 | |||
| 89ec34f636 | |||
| f55f4f5515 | |||
| 50b4a2c6e0 | |||
| e6f7ac635a | |||
| 98d9908937 | |||
| 1fd084cb9c | |||
| 468f169be6 | |||
| fa3d2c93d2 | |||
| c85dfe7581 | |||
| 2d1408718b | |||
| 7cc359e150 | |||
| dfbb8e16f2 | |||
| 3d8bf32c37 | |||
| 2182708ba9 | |||
| 35a0bf5e1c | |||
| fdfb41affd | |||
| f15833c2b5 | |||
| 75a9c6f247 | |||
| 0c15f88eb2 | |||
| a05fc1d148 | |||
| 1de4bab320 | |||
| b470e92332 | |||
| af722ce530 | |||
| be6f00aac6 | |||
| f8616865c0 | |||
| ed98dac082 | |||
| 48794658c6 | |||
| 3329e2b296 | |||
| 78f36dd744 | |||
| 3e6452e8a3 | |||
| dd24b84dc2 | |||
| 9c73d3d850 | |||
| e6bff2c734 | |||
| 42cf692135 | |||
| a00e9dd5d8 | |||
| 28bce03f95 | |||
| a8b7c0eef0 | |||
| 51e9ba0e19 | |||
| 5c1cd39281 | |||
| f8707c753b | |||
| f6a0a63c2d | |||
| 68c1c856db | |||
| fd2d35f2e0 | |||
| 082763e981 | |||
| 3cfc97ceee | |||
| 995cf8f3cc | |||
| 6fe76e4820 | |||
| 0015fcdf9d | |||
| 54f80cb54f | |||
| 4bc2f1f60b | |||
| 4f7f1ba21b | |||
| 9c0efaf2f6 | |||
| 8434c0aaea | |||
| 96138510ca | |||
| 6e951a9fd3 | |||
| 1f5cfc8f9b | |||
| 066ba5bb32 | |||
| 0375b7d701 | |||
| 67db3df426 | |||
| 152269cdcd | |||
| 8043bf265d | |||
| 14f8e89cef | |||
| 0f7d9ec5da | |||
| 047844f9af | |||
| caceaf71b8 | |||
| cfa9230f15 | |||
| b37ba3a44e | |||
| 1116de4ebd | |||
| 437c4d7bfb | |||
| 630db8f0ef | |||
| 008fcdea5f | |||
| 7aa1356089 | |||
| ecfb4583d6 | |||
| f56371fae3 | |||
| 9f3c5e4f2b | |||
| 489561d531 | |||
| 568e63933c | |||
| f8f12e7bd4 | |||
| 94afda2b69 | |||
| a81fc86792 |
+28
-21
@@ -8,7 +8,7 @@
|
||||
],
|
||||
|
||||
// Add pull request labels:
|
||||
"labels": ["dependencies"],
|
||||
"labels": ["⚙️ ci-cd"],
|
||||
|
||||
// Bump even patch versions:
|
||||
"bumpVersion": "patch",
|
||||
@@ -19,24 +19,12 @@
|
||||
// Update the lock files:
|
||||
"lockFileMaintenance": {
|
||||
"enabled": true,
|
||||
"schedule": ["* * * * 1,4"] // Run sometime on Monday and Thursday
|
||||
"schedule": ["* 0-3 1 * *"], // https://docs.renovatebot.com/presets-schedule/#schedulemonthly
|
||||
"automerge": true
|
||||
},
|
||||
|
||||
// Bump the versions even in other files:
|
||||
"bumpVersions": [
|
||||
{
|
||||
"name": "Update dependency versions in README.rst",
|
||||
"filePatterns": ["README.rst"],
|
||||
"matchStrings": [
|
||||
"cryptography>=(?<version>\\d+\\.\\d+\\.\\d+)",
|
||||
"aiolimiter~=(?<version>\\d+\\.\\d+\\.\\d+)",
|
||||
"tornado~=(?<version>\\d+\\.\\d+)",
|
||||
"cachetools>=(?<version>\\d+\\.\\d+\\.\\d+)", // Lower bound only
|
||||
"APScheduler>=(?<version>\\d+\\.\\d+\\.\\d+)" // Lower bound only
|
||||
],
|
||||
"bumpType": "minor"
|
||||
}
|
||||
],
|
||||
// Enable automerge globally:
|
||||
"automerge": true,
|
||||
|
||||
// Group package updates together:
|
||||
"packageRules": [
|
||||
@@ -62,10 +50,29 @@
|
||||
"matchPackageNames": ["chango", "Bibo-Joshi/chango"],
|
||||
"groupName": "Chango"
|
||||
},
|
||||
// Automerge PR's for minor/patch/pin/digest (except major) updates:
|
||||
|
||||
// Don't automerge major updates for project dependencies:
|
||||
{
|
||||
"matchUpdateTypes": ["minor", "patch", "pin", "digest"],
|
||||
"automerge": true
|
||||
"matchUpdateTypes": ["major"],
|
||||
"matchDepTypes": ["project.dependencies", "project.optional-dependencies"],
|
||||
"automerge": false
|
||||
},
|
||||
|
||||
// Apply the "dependencies" label to all updates of optional/required dependencies:
|
||||
{
|
||||
"matchDepTypes": ["project.optional-dependencies", "project.dependencies"],
|
||||
"labels": ["⚙️ dependencies"]
|
||||
},
|
||||
|
||||
// Workflow and dev-dependencies update once a month
|
||||
// https://docs.renovatebot.com/presets-schedule/#schedulemonthly
|
||||
{
|
||||
"matchFileNames": [".github/workflows/**"],
|
||||
"schedule": ["* 0-3 1 * *"]
|
||||
},
|
||||
{
|
||||
"matchDepTypes": ["dependency-groups"],
|
||||
"schedule": ["* 0-3 1 * *"]
|
||||
}
|
||||
],
|
||||
|
||||
@@ -76,6 +83,6 @@
|
||||
"ignoreDeps": ["pytest-asyncio"],
|
||||
|
||||
// schedule to allow PR's from Renovate:
|
||||
"schedule": ["* * * * 0,6"] // Every weekend
|
||||
"schedule": ["* * * * 0"] // Every Sunday
|
||||
|
||||
}
|
||||
|
||||
@@ -20,7 +20,7 @@ jobs:
|
||||
IS_RELEASE_PR: ${{ steps.check_title.outputs.IS_RELEASE_PR }}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
# needed for commit and push step at the end
|
||||
persist-credentials: true
|
||||
@@ -36,8 +36,11 @@ jobs:
|
||||
fi
|
||||
|
||||
# Create the new fragment
|
||||
- uses: Bibo-Joshi/chango@9d6bd9d7612eca5fab2c5161687011be59baaf19 # 0.4.0
|
||||
- uses: Bibo-Joshi/chango@bc58df46ef3ba8f15b8d744929998b7ae8a222d4 # 0.6.1
|
||||
with:
|
||||
# passing this custom token has two purposes
|
||||
# 1. it allows us to fetch info about issue types
|
||||
# 2. it ensures that the push will also re-trigger workflows
|
||||
github-token: ${{ secrets.CHANGO_PAT }}
|
||||
query-issue-types: true
|
||||
commit-and-push: ${{ steps.check_title.outputs.COMMIT_AND_PUSH }}
|
||||
@@ -45,7 +48,7 @@ jobs:
|
||||
# Run `chango release` if applicable - needs some additional setup.
|
||||
- name: Set up Python
|
||||
if: steps.check_title.outputs.IS_RELEASE_PR == 'true'
|
||||
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
||||
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
with:
|
||||
python-version: "3.x"
|
||||
|
||||
@@ -60,7 +63,7 @@ jobs:
|
||||
|
||||
- name: Commit & Push
|
||||
if: steps.check_title.outputs.IS_RELEASE_PR == 'true'
|
||||
uses: stefanzweifel/git-auto-commit-action@778341af668090896ca464160c2def5d1d1a3eb0 # v6.0.1
|
||||
uses: stefanzweifel/git-auto-commit-action@28e16e81777b558cc906c8750092100bbb34c5e3 # v7.0.0
|
||||
with:
|
||||
commit_message: "Do chango Release"
|
||||
repository: ./target-repo
|
||||
|
||||
@@ -26,15 +26,15 @@ jobs:
|
||||
# If you do not check out your code, Copilot will do this for you.
|
||||
steps:
|
||||
- name: Checkout code
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
|
||||
- name: Install uv
|
||||
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6
|
||||
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
|
||||
with:
|
||||
# Install a specific version of uv.
|
||||
version: "0.8.3"
|
||||
version: "0.9.13"
|
||||
# Install 3.13:
|
||||
python-version: 3.13
|
||||
|
||||
|
||||
@@ -24,11 +24,11 @@ jobs:
|
||||
os: [ubuntu-latest]
|
||||
fail-fast: False
|
||||
steps:
|
||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
||||
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
cache: 'pip'
|
||||
|
||||
@@ -19,11 +19,11 @@ jobs:
|
||||
os: [ubuntu-latest]
|
||||
fail-fast: False
|
||||
steps:
|
||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
||||
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Install dependencies
|
||||
@@ -35,7 +35,7 @@ jobs:
|
||||
- name: Upload linkcheck output
|
||||
# Run also if the previous steps failed
|
||||
if: always()
|
||||
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
||||
with:
|
||||
name: linkcheck-output
|
||||
path: docs/build/html/output.*
|
||||
|
||||
@@ -17,17 +17,17 @@ jobs:
|
||||
security-events: write
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Install the latest version of uv
|
||||
uses: astral-sh/setup-uv@557e51de59eb14aaaba2ed9621916900a91d50c6 # v6.6.1
|
||||
uses: astral-sh/setup-uv@1e862dfacbd1d6d858c55d9b792c756523627244 # v7.1.4
|
||||
- name: Run zizmor
|
||||
run: uvx zizmor --persona=pedantic --format sarif . > results.sarif
|
||||
env:
|
||||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Upload SARIF file
|
||||
uses: github/codeql-action/upload-sarif@2d92b76c45b91eb80fc44c74ce3fce0ee94e8f9d # v3.30.0
|
||||
uses: github/codeql-action/upload-sarif@fdbfb4d2750291e159f0156def62b853c2798ca2 # v4.31.5
|
||||
with:
|
||||
sarif_file: results.sarif
|
||||
category: zizmor
|
||||
|
||||
@@ -17,11 +17,11 @@ jobs:
|
||||
actions: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
||||
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
with:
|
||||
python-version: "3.x"
|
||||
- name: Install pypa/build
|
||||
@@ -30,7 +30,7 @@ jobs:
|
||||
- name: Build a binary wheel and a source tarball
|
||||
run: python3 -m build
|
||||
- name: Store the distribution packages
|
||||
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
||||
with:
|
||||
name: python-package-distributions
|
||||
path: dist/
|
||||
@@ -55,12 +55,12 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Download all the dists
|
||||
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
|
||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
|
||||
with:
|
||||
name: python-package-distributions
|
||||
path: dist/
|
||||
- name: Publish to PyPI
|
||||
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
|
||||
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
|
||||
|
||||
compute-signatures:
|
||||
name: Compute SHA1 Sums and Sign with Sigstore
|
||||
@@ -74,7 +74,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Download all the dists
|
||||
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
|
||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
|
||||
with:
|
||||
name: python-package-distributions
|
||||
path: dist/
|
||||
@@ -86,13 +86,13 @@ jobs:
|
||||
sha1sum $file > $file.sha1
|
||||
done
|
||||
- name: Sign the dists with Sigstore
|
||||
uses: sigstore/gh-action-sigstore-python@f7ad0af51a5648d09a20d00370f0a91c3bdf8f84 # v3.0.1
|
||||
uses: sigstore/gh-action-sigstore-python@f832326173235dcb00dd5d92cd3f353de3188e6c # v3.1.0
|
||||
with:
|
||||
inputs: >-
|
||||
./dist/*.tar.gz
|
||||
./dist/*.whl
|
||||
- name: Store the distribution packages and signatures
|
||||
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
||||
with:
|
||||
name: python-package-distributions-and-signatures
|
||||
path: dist/
|
||||
@@ -110,11 +110,11 @@ jobs:
|
||||
actions: read # for downloading artifacts
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Download all the dists
|
||||
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
|
||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
|
||||
with:
|
||||
name: python-package-distributions-and-signatures
|
||||
path: dist/
|
||||
@@ -155,7 +155,7 @@ jobs:
|
||||
permissions: {}
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Publish to Telegram Channel
|
||||
|
||||
@@ -17,11 +17,11 @@ jobs:
|
||||
actions: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
||||
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
with:
|
||||
python-version: "3.x"
|
||||
- name: Install pypa/build
|
||||
@@ -30,7 +30,7 @@ jobs:
|
||||
- name: Build a binary wheel and a source tarball
|
||||
run: python3 -m build
|
||||
- name: Store the distribution packages
|
||||
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
||||
with:
|
||||
name: python-package-distributions
|
||||
path: dist/
|
||||
@@ -55,12 +55,12 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Download all the dists
|
||||
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
|
||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
|
||||
with:
|
||||
name: python-package-distributions
|
||||
path: dist/
|
||||
- name: Publish to Test PyPI
|
||||
uses: pypa/gh-action-pypi-publish@76f52bc884231f62b9a034ebfe128415bbaabdfc # v1.12.4
|
||||
uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0
|
||||
with:
|
||||
repository-url: https://test.pypi.org/legacy/
|
||||
|
||||
@@ -76,7 +76,7 @@ jobs:
|
||||
|
||||
steps:
|
||||
- name: Download all the dists
|
||||
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
|
||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
|
||||
with:
|
||||
name: python-package-distributions
|
||||
path: dist/
|
||||
@@ -88,13 +88,13 @@ jobs:
|
||||
sha1sum $file > $file.sha1
|
||||
done
|
||||
- name: Sign the dists with Sigstore
|
||||
uses: sigstore/gh-action-sigstore-python@f7ad0af51a5648d09a20d00370f0a91c3bdf8f84 # v3.0.1
|
||||
uses: sigstore/gh-action-sigstore-python@f832326173235dcb00dd5d92cd3f353de3188e6c # v3.1.0
|
||||
with:
|
||||
inputs: >-
|
||||
./dist/*.tar.gz
|
||||
./dist/*.whl
|
||||
- name: Store the distribution packages and signatures
|
||||
uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2
|
||||
uses: actions/upload-artifact@330a01c490aca151604b8cf639adc76d48f6c5d4 # v5.0.0
|
||||
with:
|
||||
name: python-package-distributions-and-signatures
|
||||
path: dist/
|
||||
@@ -112,11 +112,11 @@ jobs:
|
||||
actions: read # for downloading artifacts
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Download all the dists
|
||||
uses: actions/download-artifact@634f93cb2916e3fdff6788551b99b062d0335ce0 # v5.0.0
|
||||
uses: actions/download-artifact@018cc2cf5baa6db3ef3c5f8a56943fffe632ef53 # v6.0.0
|
||||
with:
|
||||
name: python-package-distributions-and-signatures
|
||||
path: dist/
|
||||
|
||||
@@ -12,13 +12,13 @@ jobs:
|
||||
# For adding labels and closing
|
||||
issues: write
|
||||
steps:
|
||||
- uses: actions/stale@5bef64f19d7facfb25b37b414482c7164d639639 # v9.1.0
|
||||
- uses: actions/stale@997185467fa4f803885201cee163a9f38240193d # v10.1.1
|
||||
with:
|
||||
# PRs never get stale
|
||||
days-before-stale: 3
|
||||
days-before-close: 2
|
||||
days-before-pr-stale: -1
|
||||
stale-issue-label: '📋 stale'
|
||||
only-labels: 'question'
|
||||
only-issue-types: '❔ question'
|
||||
stale-issue-message: ''
|
||||
close-issue-message: 'This issue has been automatically closed due to inactivity. Feel free to comment in order to reopen or ask again in our Telegram support group at https://t.me/pythontelegrambotgroup.'
|
||||
|
||||
@@ -23,11 +23,11 @@ jobs:
|
||||
os: [ubuntu-latest]
|
||||
fail-fast: False
|
||||
steps:
|
||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
||||
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
- name: Install dependencies
|
||||
|
||||
@@ -18,15 +18,18 @@ jobs:
|
||||
runs-on: ${{matrix.os}}
|
||||
strategy:
|
||||
matrix:
|
||||
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14.0-beta.3']
|
||||
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
|
||||
os: [ubuntu-latest, windows-latest, macos-latest]
|
||||
include:
|
||||
- python-version: '3.14t'
|
||||
os: ubuntu-latest
|
||||
fail-fast: False
|
||||
steps:
|
||||
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
||||
- uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v5.0.1
|
||||
with:
|
||||
persist-credentials: false
|
||||
- name: Set up Python ${{ matrix.python-version }}
|
||||
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5.6.0
|
||||
uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0
|
||||
with:
|
||||
python-version: ${{ matrix.python-version }}
|
||||
cache: 'pip'
|
||||
@@ -83,7 +86,7 @@ jobs:
|
||||
.test_report_optionals_junit.xml
|
||||
|
||||
- name: Submit coverage
|
||||
uses: codecov/codecov-action@fdcc8476540edceab3de004e990f80d881c6cc00 # v5.5.0
|
||||
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
|
||||
with:
|
||||
env_vars: OS,PYTHON
|
||||
name: ${{ matrix.os }}-${{ matrix.python-version }}
|
||||
|
||||
@@ -8,7 +8,7 @@ ci:
|
||||
|
||||
repos:
|
||||
- repo: https://github.com/astral-sh/ruff-pre-commit
|
||||
rev: 'v0.12.7'
|
||||
rev: 'v0.14.13'
|
||||
hooks:
|
||||
# Run the linter:
|
||||
- id: ruff-check
|
||||
@@ -17,7 +17,7 @@ repos:
|
||||
- id: ruff-format
|
||||
name: ruff format
|
||||
- repo: https://github.com/PyCQA/pylint
|
||||
rev: v3.3.7
|
||||
rev: v4.0.4
|
||||
hooks:
|
||||
- id: pylint
|
||||
files: ^(?!(tests|docs)).*\.py$
|
||||
@@ -25,12 +25,12 @@ repos:
|
||||
additional_dependencies:
|
||||
- httpx~=0.27
|
||||
- tornado~=6.4
|
||||
- APScheduler~=3.10.4
|
||||
- cachetools>=5.3.3,<5.5.0
|
||||
- APScheduler>=3.10.4,<3.12.0
|
||||
- cachetools>=5.3.3,<6.3.0
|
||||
- aiolimiter~=1.1,<1.3
|
||||
- . # this basically does `pip install -e .`
|
||||
- repo: https://github.com/pre-commit/mirrors-mypy
|
||||
rev: v1.16.1
|
||||
rev: v1.19.1
|
||||
hooks:
|
||||
- id: mypy
|
||||
name: mypy-ptb
|
||||
@@ -42,8 +42,8 @@ repos:
|
||||
- types-cachetools
|
||||
- httpx~=0.27
|
||||
- tornado~=6.4
|
||||
- APScheduler~=3.10.4
|
||||
- cachetools>=5.3.3,<5.5.0
|
||||
- APScheduler>=3.10.4,<3.12.0
|
||||
- cachetools>=5.3.3,<6.3.0
|
||||
- aiolimiter~=1.1,<1.3
|
||||
- . # this basically does `pip install -e .`
|
||||
- id: mypy
|
||||
@@ -55,6 +55,6 @@ repos:
|
||||
- --follow-imports=silent
|
||||
additional_dependencies:
|
||||
- tornado~=6.4
|
||||
- APScheduler~=3.10.4
|
||||
- cachetools>=5.3.3,<5.5.0
|
||||
- APScheduler>=3.10.4,<3.12.0
|
||||
- cachetools>=5.3.3,<6.3.0
|
||||
- . # this basically does `pip install -e .`
|
||||
|
||||
+9
-3
@@ -11,7 +11,7 @@
|
||||
:target: https://pypi.org/project/python-telegram-bot/
|
||||
:alt: Supported Python versions
|
||||
|
||||
.. image:: https://img.shields.io/badge/Bot%20API-9.2-blue?logo=telegram
|
||||
.. image:: https://img.shields.io/badge/Bot%20API-9.3-blue?logo=telegram
|
||||
:target: https://core.telegram.org/bots/api-changelog
|
||||
:alt: Supported Bot API version
|
||||
|
||||
@@ -70,7 +70,7 @@ Introduction
|
||||
|
||||
This library provides a pure Python, asynchronous interface for the
|
||||
`Telegram Bot API <https://core.telegram.org/bots/api>`_.
|
||||
It's compatible with Python versions **3.9+**.
|
||||
It's compatible with Python versions **3.10+**.
|
||||
|
||||
In addition to the pure API implementation, this library features several convenience methods and shortcuts as well as a number of high-level classes to
|
||||
make the development of bots easy and straightforward. These classes are contained in the
|
||||
@@ -81,7 +81,7 @@ After installing_ the library, be sure to check out the section on `working with
|
||||
Telegram API support
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
All types and methods of the Telegram Bot API **9.2** are natively supported by this library.
|
||||
All types and methods of the Telegram Bot API **9.3** are natively supported by this library.
|
||||
In addition, Bot API functionality not yet natively included can still be used as described `in our wiki <https://github.com/python-telegram-bot/python-telegram-bot/wiki/Bot-API-Forward-Compatibility>`_.
|
||||
|
||||
Notable Features
|
||||
@@ -215,6 +215,12 @@ Noteworthy parts of ``python-telegram-bots`` API that are likely to cause issues
|
||||
* ``telegram.ext.BasePersistence``
|
||||
* all classes in the ``telegram.ext.filters`` module that allow to add/remove allowed users/chats at runtime
|
||||
|
||||
Free threading
|
||||
~~~~~~~~~~~~~~
|
||||
|
||||
While ``python-telegram-bot`` is tested to work with Python 3.14 free threading, we do not guarantee that
|
||||
PTB is thread-safe for all use cases. Please see issue `#4873 <https://github.com/python-telegram-bot/python-telegram-bot/issues/4873>`_ for more information.
|
||||
|
||||
Contributing
|
||||
------------
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ bugfixes = """
|
||||
Fixed a bug where calling ``Application.remove/add_handler`` during update handling can cause a ``RuntimeError`` in ``Application.process_update``.
|
||||
|
||||
.. hint::
|
||||
Calling ``Application.add/remove_handler`` now has no influence on calls to :meth:`process_update` that are
|
||||
Calling ``Application.add/remove_handler`` now has no influence on calls to ``process_update`` that are
|
||||
already in progress. The same holds for ``Application.add/remove_error_handler`` and ``Application.process_error``, respectively.
|
||||
|
||||
.. warning::
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
internal = "Use Renovate to Keep Dependencies Up-To-Date"
|
||||
[[pull_requests]]
|
||||
uid = "4887"
|
||||
author_uid = "renovate[bot]"
|
||||
author_uid = "renovatebot"
|
||||
closes_threads = []
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
dependencies = "Update cachetools requirement from <6.2.0,>=5.3.3 to >=5.3.3,<6.3.0"
|
||||
[[pull_requests]]
|
||||
uid = "4923"
|
||||
author_uid = "dependabot[bot]"
|
||||
author_uid = "dependabot"
|
||||
closes_threads = []
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
features = """
|
||||
Add convenience methods for ``BusinessOpeningHours``:
|
||||
|
||||
* ``get_opening_hours_for_day``: returns the opening hours applicable for a specific date
|
||||
* ``is_open``: indicates whether the business is open at the specified date and time.
|
||||
"""
|
||||
[[pull_requests]]
|
||||
uid = "4861"
|
||||
author_uid = "Aweryc"
|
||||
closes_threads = ["4194"]
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Lock file maintenance"
|
||||
[[pull_requests]]
|
||||
uid = "4938"
|
||||
author_uid = "renovatebot"
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update astral-sh/setup-uv digest to b75a909"
|
||||
[[pull_requests]]
|
||||
uid = "4943"
|
||||
author_uid = "renovatebot"
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update codecov/codecov-action action to v5.5.1"
|
||||
[[pull_requests]]
|
||||
uid = "4944"
|
||||
author_uid = "renovatebot"
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency astral-sh/uv to v0.8.17"
|
||||
[[pull_requests]]
|
||||
uid = "4945"
|
||||
author_uid = "renovatebot"
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update github/codeql-action action to v3.30.3"
|
||||
[[pull_requests]]
|
||||
uid = "4946"
|
||||
author_uid = "renovatebot"
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Pylint to v3.3.8"
|
||||
[[pull_requests]]
|
||||
uid = "4947"
|
||||
author_uid = "renovatebot"
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Chango to v0.5.0"
|
||||
[[pull_requests]]
|
||||
uid = "4948"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Mypy to v1.18.1"
|
||||
[[pull_requests]]
|
||||
uid = "4949"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Align pre-commit hook APScheduler to with ``pyproject.toml``"
|
||||
[[pull_requests]]
|
||||
uid = "4950"
|
||||
author_uids = ["renovatebot", "Bibo-Joshi"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Align pre-commit hook cachetools to with ``pyproject.toml``"
|
||||
[[pull_requests]]
|
||||
uid = "4951"
|
||||
author_uids = ["renovatebot", "Bibo-Joshi"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update pypa/gh-action-pypi-publish action to v1.13.0"
|
||||
[[pull_requests]]
|
||||
uid = "4952"
|
||||
author_uid = "renovatebot"
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Renovate: No README updates, label behaviour change, automerge lockfiles"
|
||||
[[pull_requests]]
|
||||
uid = "4953"
|
||||
author_uid = "harshil21"
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Lock file maintenance"
|
||||
[[pull_requests]]
|
||||
uid = "4954"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Lock file maintenance"
|
||||
[[pull_requests]]
|
||||
uid = "4955"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update astral-sh/setup-uv digest to 208b0c0"
|
||||
[[pull_requests]]
|
||||
uid = "4958"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency astral-sh/uv to v0.8.19"
|
||||
[[pull_requests]]
|
||||
uid = "4959"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Mypy to v1.18.2"
|
||||
[[pull_requests]]
|
||||
uid = "4960"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update astral-sh/setup-uv action to v6.7.0"
|
||||
[[pull_requests]]
|
||||
uid = "4961"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Ruff to v0.13.1"
|
||||
[[pull_requests]]
|
||||
uid = "4962"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update actions/stale action to v10"
|
||||
[[pull_requests]]
|
||||
uid = "4964"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Properly Pin Dependency to ``astral/setup-uv`` in Copilot Setup Steps"
|
||||
[[pull_requests]]
|
||||
uid = "4965"
|
||||
author_uids = ["Bibo-Joshi"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Lock file maintenance"
|
||||
[[pull_requests]]
|
||||
uid = "4967"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Tune Renovate Configuration"
|
||||
[[pull_requests]]
|
||||
uid = "4968"
|
||||
author_uids = ["harshil21"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,10 @@
|
||||
breaking = """Move param ``ReplyParameters.checklist_task_id`` to last position.
|
||||
|
||||
.. hint::
|
||||
This change addresses a breaking change accidentally introduced in version 22.4 where the introduction of the new parameter was not done in a backward compatible way.
|
||||
Existing code using keyword arguments is unaffected. Only code using positional arguments (and based on version 22.4) may need updates.
|
||||
"""
|
||||
[[pull_requests]]
|
||||
uid = "4972"
|
||||
author_uids = ["aelkheir"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
bugfixes = "Fix Handling of Infinite Bootstrap Retries in ``Application.run_*`` and ``Updater.start_*``"
|
||||
[[pull_requests]]
|
||||
uid = "4973"
|
||||
author_uids = ["Bibo-Joshi"]
|
||||
closes_threads = ["4966"]
|
||||
@@ -0,0 +1,4 @@
|
||||
documentation = "Documentation Improvemennts"
|
||||
[[pull_requests]]
|
||||
uid = "4974"
|
||||
author_uids = ["Bibo-Joshi"]
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency astral-sh/uv to v0.8.22"
|
||||
[[pull_requests]]
|
||||
uid = "4975"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update github/codeql-action action to v3.30.5"
|
||||
[[pull_requests]]
|
||||
uid = "4976"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Ruff to v0.13.2"
|
||||
[[pull_requests]]
|
||||
uid = "4977"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency furo to v2025.9.25"
|
||||
[[pull_requests]]
|
||||
uid = "4978"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
other = "Bump Version to v22.5"
|
||||
[[pull_requests]]
|
||||
uid = "4979"
|
||||
author_uids = ["Bibo-Joshi"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
other = "Remove Support for Python 3.9"
|
||||
[[pull_requests]]
|
||||
uid = "4827"
|
||||
author_uid = "harshil21"
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Lock file maintenance"
|
||||
[[pull_requests]]
|
||||
uid = "4980"
|
||||
author_uid = "renovatebot"
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update github/codeql-action action to v3.30.6"
|
||||
[[pull_requests]]
|
||||
uid = "4984"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Ruff to v0.13.3"
|
||||
[[pull_requests]]
|
||||
uid = "4985"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update actions/stale action to v10.1.0"
|
||||
[[pull_requests]]
|
||||
uid = "4986"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update astral-sh/setup-uv action to v6.8.0"
|
||||
[[pull_requests]]
|
||||
uid = "4987"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
documentation = "Documentation Improvements. Among others, fix dead links."
|
||||
|
||||
[[pull_requests]]
|
||||
uid = "4988"
|
||||
author_uids = ["Bibo-Joshi"]
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency astral-sh/uv to v0.8.23"
|
||||
[[pull_requests]]
|
||||
uid = "4989"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update configuration of actions/stale to use issue types instead of labels"
|
||||
|
||||
[[pull_requests]]
|
||||
uid = "4990"
|
||||
author_uids = ["Bibo-Joshi"]
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update github/codeql-action action to v3.30.8"
|
||||
[[pull_requests]]
|
||||
uid = "4994"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Pylint to v3.3.9"
|
||||
[[pull_requests]]
|
||||
uid = "4995"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency astral-sh/uv to v0.9.2"
|
||||
[[pull_requests]]
|
||||
uid = "4996"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Ruff to v0.14.0"
|
||||
[[pull_requests]]
|
||||
uid = "4997"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update astral-sh/setup-uv action to v7"
|
||||
[[pull_requests]]
|
||||
uid = "4998"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update github/codeql-action action to v4"
|
||||
[[pull_requests]]
|
||||
uid = "4999"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Pylint to v4 (major)"
|
||||
[[pull_requests]]
|
||||
uid = "5000"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update stefanzweifel/git-auto-commit-action action to v7"
|
||||
[[pull_requests]]
|
||||
uid = "5001"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update astral-sh/setup-uv action to v7.1.0"
|
||||
[[pull_requests]]
|
||||
uid = "5002"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Use Python 3.14 Final in the Test Suite"
|
||||
[[pull_requests]]
|
||||
uid = "5004"
|
||||
author_uids = ["harshil21"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Add Freethreaded Python 3.14 to the Test Suite"
|
||||
[[pull_requests]]
|
||||
uid = "5006"
|
||||
author_uids = ["harshil21"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Make ``chango`` Commit Re-Trigger Workflows"
|
||||
[[pull_requests]]
|
||||
uid = "5007"
|
||||
author_uids = ["Bibo-Joshi"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,4 @@
|
||||
internal = "Temporarily disable ``actions/stale`` due to a bug with ``only-issue-types``."
|
||||
[[pull_requests]]
|
||||
uid = "5008"
|
||||
author_uids = ["Bibo-Joshi"]
|
||||
@@ -0,0 +1,4 @@
|
||||
internal = "Re-Enable ``actions/stale`` Workflow"
|
||||
[[pull_requests]]
|
||||
uid = "5009"
|
||||
author_uids = ["Bibo-Joshi"]
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency astral-sh/uv to v0.9.3"
|
||||
[[pull_requests]]
|
||||
uid = "5011"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update github/codeql-action action to v4.30.9"
|
||||
[[pull_requests]]
|
||||
uid = "5012"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Ruff to v0.14.1"
|
||||
[[pull_requests]]
|
||||
uid = "5013"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency chango to ~=0.6.0"
|
||||
[[pull_requests]]
|
||||
uid = "5014"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency astral-sh/uv to v0.9.4"
|
||||
[[pull_requests]]
|
||||
uid = "5015"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update astral-sh/setup-uv action to v7.1.1"
|
||||
[[pull_requests]]
|
||||
uid = "5016"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency astral-sh/uv to v0.9.5"
|
||||
[[pull_requests]]
|
||||
uid = "5022"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Pylint to v4.0.2"
|
||||
[[pull_requests]]
|
||||
uid = "5023"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Ruff to v0.14.2"
|
||||
[[pull_requests]]
|
||||
uid = "5024"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update github/codeql-action action to v4.31.0"
|
||||
[[pull_requests]]
|
||||
uid = "5025"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update sigstore/gh-action-sigstore-python action to v3.1.0"
|
||||
[[pull_requests]]
|
||||
uid = "5026"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update GitHub Artifact Actions (major)"
|
||||
[[pull_requests]]
|
||||
uid = "5027"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update astral-sh/setup-uv action to v7.1.2"
|
||||
[[pull_requests]]
|
||||
uid = "5029"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
bugfixes = "Fix a Bug in Initialization Logic of ``Bot``"
|
||||
[[pull_requests]]
|
||||
uid = "5030"
|
||||
author_uids = ["codomposer"]
|
||||
closes_threads = ["5021"]
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency astral-sh/uv to v0.9.7"
|
||||
[[pull_requests]]
|
||||
uid = "5032"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update github/codeql-action action to v4.31.2"
|
||||
[[pull_requests]]
|
||||
uid = "5033"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Ruff to v0.14.3"
|
||||
[[pull_requests]]
|
||||
uid = "5034"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Lock file maintenance"
|
||||
[[pull_requests]]
|
||||
uid = "5035"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency astral-sh/uv to v0.9.8"
|
||||
[[pull_requests]]
|
||||
uid = "5040"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Ruff to v0.14.4"
|
||||
[[pull_requests]]
|
||||
uid = "5041"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update dependency pytest to v9"
|
||||
[[pull_requests]]
|
||||
uid = "5042"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,4 @@
|
||||
internal = "Reduce Frequence of Renovate Updates for Development Dependencies"
|
||||
[[pull_requests]]
|
||||
uid = "5044"
|
||||
author_uids = ["Bibo-Joshi"]
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Pylint to v4.0.3"
|
||||
[[pull_requests]]
|
||||
uid = "5048"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Ruff to v0.14.5"
|
||||
[[pull_requests]]
|
||||
uid = "5049"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,4 @@
|
||||
internal = "Stabilize some unit tests"
|
||||
[[pull_requests]]
|
||||
uid = "5050"
|
||||
author_uids = ["Bibo-Joshi"]
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Ruff to v0.14.6"
|
||||
[[pull_requests]]
|
||||
uid = "5055"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Ruff to v0.14.7"
|
||||
[[pull_requests]]
|
||||
uid = "5056"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update Pylint to v4.0.4"
|
||||
[[pull_requests]]
|
||||
uid = "5057"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
@@ -0,0 +1,5 @@
|
||||
internal = "Update actions/checkout action to v5.0.1"
|
||||
[[pull_requests]]
|
||||
uid = "5058"
|
||||
author_uids = ["renovatebot"]
|
||||
closes_threads = []
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user