Skip to content

Commit 5cb63bc

Browse files
authored
Merge pull request #362 from cloudflare/release-please--branches--main--changes--next
release: 3.0.0-beta.9
2 parents 65c9b79 + 9418b4d commit 5cb63bc

File tree

1,062 files changed

+12776
-24301
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,062 files changed

+12776
-24301
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,26 @@ jobs:
3939
- name: Ensure importable
4040
run: |
4141
rye run python -c 'import cloudflare'
42+
test:
43+
name: test
44+
runs-on: ubuntu-latest
45+
46+
steps:
47+
- uses: actions/checkout@v4
48+
49+
- name: Install Rye
50+
run: |
51+
curl -sSf https://rye-up.com/get | bash
52+
echo "$HOME/.rye/shims" >> $GITHUB_PATH
53+
env:
54+
RYE_VERSION: 0.24.0
55+
RYE_INSTALL_OPTION: '--yes'
56+
57+
- name: Bootstrap
58+
run: ./scripts/bootstrap
4259

60+
- name: Run tests
61+
run: ./scripts/test
4362
examples:
4463
name: examples
4564
runs-on: ubuntu-latest

.github/workflows/publish-pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515

1616
steps:
17-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
1818

1919
- name: Install Rye
2020
run: |

.github/workflows/release-doctor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
if: github.repository == 'cloudflare/cloudflare-python' && (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || startsWith(github.head_ref, 'release-please') || github.head_ref == 'next')
1111

1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: Check release environment
1616
run: |

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ dist
1212
.env
1313
.envrc
1414
codegen.log
15+
Brewfile.lock.json

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.0.0-beta.8"
2+
".": "3.0.0-beta.9"
33
}

.stats.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
configured_endpoints: 1266
1+
configured_endpoints: 1274
2+
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-07ec76fab00de3d6227209faf0af1ed586cde9e2f243c13d3db555da20f13d99.yml

Brewfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
brew "rye"
2+

CHANGELOG.md

Lines changed: 130 additions & 0 deletions
Large diffs are not rendered by default.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ client = Cloudflare(
232232
)
233233

234234
# Override per-request:
235-
client.with_options(timeout=5 * 1000).zones.edit(
235+
client.with_options(timeout=5.0).zones.edit(
236236
zone_id="023e105f4ecef8ad9ca31a8372d0c353",
237237
)
238238
```
@@ -312,7 +312,7 @@ The context manager is required so that the response will reliably be closed.
312312

313313
### Making custom/undocumented requests
314314

315-
This library is typed for convenient access the documented API.
315+
This library is typed for convenient access to the documented API.
316316

317317
If you need to access undocumented endpoints, params, or response properties, the library can still be used.
318318

api.md

Lines changed: 289 additions & 226 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)