Skip to content

Commit ac1ae1c

Browse files
authored
Merge pull request #2663 from cloudflare/release-please--branches--main--changes--next
release: 4.3.1
2 parents d6670b6 + 1a32133 commit ac1ae1c

File tree

14 files changed

+848
-5
lines changed

14 files changed

+848
-5
lines changed

.release-please-manifest.json

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

.stats.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
configured_endpoints: 1749
1+
configured_endpoints: 1752
22
openapi_spec_url: https://storage.googleapis.com/stainless-sdk-openapi-specs/cloudflare%2Fcloudflare-b15b44e0efd207de48e7e74e742b0b4b190c74f12a941a1a0ef59a51656a5224.yml
33
openapi_spec_hash: 83243c9ee06f88d0fa91e9b185d8a42e
4-
config_hash: d0ab46f06dbe6f6e33d86a3ede15ac44
4+
config_hash: 8601d43fd5ccaf9e3d08f26748a5a63a

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 4.3.1 (2025-06-16)
4+
5+
Full Changelog: [v4.3.0...v4.3.1](https://github.com/cloudflare/cloudflare-python/compare/v4.3.0...v4.3.1)
6+
7+
### Bug Fixes
8+
9+
* **api:** Update zone subscription paths ([8917497](https://github.com/cloudflare/cloudflare-python/commit/8917497520e4a1fcc97681685175ab4107e3041c))
10+
11+
12+
### Chores
13+
14+
* **internal:** update conftest.py ([c8ae1c4](https://github.com/cloudflare/cloudflare-python/commit/c8ae1c4a73cc8d5804dfcfb059b102eb2443ca86))
15+
316
## 4.3.0 (2025-06-16)
417

518
Full Changelog: [v4.2.0...v4.3.0](https://github.com/cloudflare/cloudflare-python/compare/v4.2.0...v4.3.0)

api.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -427,6 +427,14 @@ Methods:
427427
- <code title="patch /zones/{zone_id}/hold">client.zones.holds.<a href="./src/cloudflare/resources/zones/holds.py">edit</a>(\*, zone_id, \*\*<a href="src/cloudflare/types/zones/hold_edit_params.py">params</a>) -> <a href="./src/cloudflare/types/zones/zone_hold.py">ZoneHold</a></code>
428428
- <code title="get /zones/{zone_id}/hold">client.zones.holds.<a href="./src/cloudflare/resources/zones/holds.py">get</a>(\*, zone_id) -> <a href="./src/cloudflare/types/zones/zone_hold.py">ZoneHold</a></code>
429429

430+
## Subscriptions
431+
432+
Methods:
433+
434+
- <code title="post /zones/{zone_id}/subscription">client.zones.subscriptions.<a href="./src/cloudflare/resources/zones/subscriptions.py">create</a>(\*, zone_id, \*\*<a href="src/cloudflare/types/zones/subscription_create_params.py">params</a>) -> <a href="./src/cloudflare/types/shared/subscription.py">Subscription</a></code>
435+
- <code title="put /zones/{zone_id}/subscription">client.zones.subscriptions.<a href="./src/cloudflare/resources/zones/subscriptions.py">update</a>(\*, zone_id, \*\*<a href="src/cloudflare/types/zones/subscription_update_params.py">params</a>) -> <a href="./src/cloudflare/types/shared/subscription.py">Subscription</a></code>
436+
- <code title="get /zones/{zone_id}/subscription">client.zones.subscriptions.<a href="./src/cloudflare/resources/zones/subscriptions.py">get</a>(\*, zone_id) -> <a href="./src/cloudflare/types/shared/subscription.py">Subscription</a></code>
437+
430438
## Plans
431439

432440
Types:

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "cloudflare"
3-
version = "4.3.0"
3+
version = "4.3.1"
44
description = "The official Python library for the cloudflare API"
55
dynamic = ["readme"]
66
license = "Apache-2.0"

src/cloudflare/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
22

33
__title__ = "cloudflare"
4-
__version__ = "4.3.0" # x-release-please-version
4+
__version__ = "4.3.1" # x-release-please-version

src/cloudflare/resources/zones/__init__.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,14 @@
4040
RatePlansResourceWithStreamingResponse,
4141
AsyncRatePlansResourceWithStreamingResponse,
4242
)
43+
from .subscriptions import (
44+
SubscriptionsResource,
45+
AsyncSubscriptionsResource,
46+
SubscriptionsResourceWithRawResponse,
47+
AsyncSubscriptionsResourceWithRawResponse,
48+
SubscriptionsResourceWithStreamingResponse,
49+
AsyncSubscriptionsResourceWithStreamingResponse,
50+
)
4351
from .activation_check import (
4452
ActivationCheckResource,
4553
AsyncActivationCheckResource,
@@ -82,6 +90,12 @@
8290
"AsyncHoldsResourceWithRawResponse",
8391
"HoldsResourceWithStreamingResponse",
8492
"AsyncHoldsResourceWithStreamingResponse",
93+
"SubscriptionsResource",
94+
"AsyncSubscriptionsResource",
95+
"SubscriptionsResourceWithRawResponse",
96+
"AsyncSubscriptionsResourceWithRawResponse",
97+
"SubscriptionsResourceWithStreamingResponse",
98+
"AsyncSubscriptionsResourceWithStreamingResponse",
8599
"PlansResource",
86100
"AsyncPlansResource",
87101
"PlansResourceWithRawResponse",

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy