-
Notifications
You must be signed in to change notification settings - Fork 66
release: 4.4.0 #2664
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
release: 4.4.0 #2664
Conversation
8aeeced
to
ad0f8c2
Compare
f919620
to
2f9af7b
Compare
5a562de
to
b84a94e
Compare
ddccb04
to
721188d
Compare
7be1756
to
61aabac
Compare
55c701d
to
0114564
Compare
ebff3a2
to
4c6cda0
Compare
8703730
to
4c6cda0
Compare
16adabb
to
5a71a18
Compare
67fd449
to
6956f9c
Compare
4966542
to
b922a42
Compare
b2fc06e
to
764b4ea
Compare
1db62cc
to
ed26a10
Compare
67a30b8
to
80d9fef
Compare
5da4a41
to
2432b16
Compare
c8c4ac8
to
0ddeaf4
Compare
0b3ec5b
to
d41a1ec
Compare
ab29447
to
430e57e
Compare
ee4729e
to
82e0746
Compare
f0f6593
to
d220489
Compare
3252571
to
c651496
Compare
cdd87bb
to
b1c4cb1
Compare
f47c273
to
2902ef7
Compare
b0d7858
to
a41f917
Compare
fdc33f9
to
ad30a1b
Compare
ce0a173
to
578424f
Compare
791098e
to
96581bc
Compare
1127917
to
1f93055
Compare
runs-on: 'ubuntu-latest' | ||
name: detect-breaking-changes | ||
if: github.repository == 'cloudflare/cloudflare-python' | ||
steps: | ||
- name: Calculate fetch-depth | ||
run: | | ||
echo "FETCH_DEPTH=$(expr ${{ github.event.pull_request.commits }} + 1)" >> $GITHUB_ENV | ||
|
||
- uses: actions/checkout@v4 | ||
with: | ||
# Ensure we can check out the pull request base in the script below. | ||
fetch-depth: ${{ env.FETCH_DEPTH }} | ||
|
||
- name: Install Rye | ||
run: | | ||
curl -sSf https://rye.astral.sh/get | bash | ||
echo "$HOME/.rye/shims" >> $GITHUB_PATH | ||
env: | ||
RYE_VERSION: '0.44.0' | ||
RYE_INSTALL_OPTION: '--yes' | ||
- name: Install dependencies | ||
run: | | ||
rye sync --all-features | ||
|
||
- name: Detect breaking changes | ||
run: ./scripts/detect-breaking-changes ${{ github.event.pull_request.base.sha }} |
Check warning
Code scanning / CodeQL
Workflow does not contain permissions Medium
Show autofix suggestion
Hide autofix suggestion
Copilot Autofix
AI about 19 hours ago
To fix the issue, we will add a permissions
block at the root of the workflow file. This block will define the minimal permissions required for the workflow to function. Based on the tasks in the workflow, it only needs read access to repository contents (contents: read
). No write permissions are necessary.
The permissions
block will be added immediately after the name
field at the top of the file. This ensures that the permissions apply to all jobs in the workflow unless overridden by a job-specific permissions
block.
-
Copy modified lines R2-R3
@@ -1,2 +1,4 @@ | ||
name: CI | ||
permissions: | ||
contents: read | ||
on: |
Automated Release PR
4.4.0 (2025-07-03)
Full Changelog: v4.3.1...v4.4.0
Features
Bug Fixes
Chores
Documentation
This pull request is managed by Stainless's GitHub App.
The semver version number is based on included commit messages. Alternatively, you can manually set the version number in the title of this pull request.
For a better experience, it is recommended to use either rebase-merge or squash-merge when merging this pull request.
🔗 Stainless website
📚 Read the docs
🙋 Reach out for help or questions