workers-runtime-sdk 1.4.3__tar.gz → 1.5.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/CHANGELOG.md +16 -0
  2. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/PKG-INFO +1 -1
  3. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/pyproject.toml +1 -1
  4. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/src/workers/_workers.py +7 -0
  5. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/.gitignore +0 -0
  6. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/AGENTS.md +0 -0
  7. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/README.md +0 -0
  8. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/src/_cloudflare_compat_flags.pyi +0 -0
  9. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/src/_pyodide_entrypoint_helper.pyi +0 -0
  10. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/src/_workers_sdk_entropy_import_context.pth +0 -0
  11. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/src/_workers_sdk_entropy_import_context.py +0 -0
  12. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/src/_workers_sdk_entropy_import_context_loader.py +0 -0
  13. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/src/asgi.py +0 -0
  14. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/src/workers/__init__.py +0 -0
  15. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/src/workers/py.typed +0 -0
  16. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/src/workers/workflows.py +0 -0
  17. {workers_runtime_sdk-1.4.3 → workers_runtime_sdk-1.5.0}/uv.lock +0 -0
@@ -2,6 +2,22 @@
2
2
 
3
3
  <!-- version list -->
4
4
 
5
+ ## v1.5.0 (2026-06-23)
6
+
7
+ ### Features
8
+
9
+ - Apply bindings wrapper to AI bindings ([#130](https://github.com/cloudflare/workers-py/pull/130),
10
+ [`79eeaf9`](https://github.com/cloudflare/workers-py/commit/79eeaf94ab02e4208372a7d3f57ba34248421c93))
11
+
12
+ - Apply bindings wrapper to Images, RateLimit, and Analytics Engine
13
+ ([#130](https://github.com/cloudflare/workers-py/pull/130),
14
+ [`79eeaf9`](https://github.com/cloudflare/workers-py/commit/79eeaf94ab02e4208372a7d3f57ba34248421c93))
15
+
16
+ - Wrap AI, Images, Analytics Engine, Vectorize and RateLimit Bindings to accept native Python
17
+ objects ([#130](https://github.com/cloudflare/workers-py/pull/130),
18
+ [`79eeaf9`](https://github.com/cloudflare/workers-py/commit/79eeaf94ab02e4208372a7d3f57ba34248421c93))
19
+
20
+
5
21
  ## v1.4.3 (2026-06-18)
6
22
 
7
23
  ### Bug Fixes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: workers-runtime-sdk
3
- Version: 1.4.3
3
+ Version: 1.5.0
4
4
  Summary: Python SDK for Cloudflare Workers
5
5
  Project-URL: Homepage, https://github.com/cloudflare/workers-py
6
6
  Project-URL: Bug Tracker, https://github.com/cloudflare/workers-py/issues
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "workers-runtime-sdk"
7
- version = "1.4.3"
7
+ version = "1.5.0"
8
8
  description = "Python SDK for Cloudflare Workers"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.12"
@@ -1313,6 +1313,13 @@ class _EnvWrapper:
1313
1313
  "R2Bucket",
1314
1314
  "D1Database",
1315
1315
  "WorkerQueue",
1316
+ "Ai",
1317
+ "VectorizeIndexImpl",
1318
+ "AnalyticsEngineDataset",
1319
+ "LocalAnalyticsEngineDataset",
1320
+ "ImagesBindingImpl",
1321
+ "HostedImagesBindingImpl",
1322
+ "Ratelimit",
1316
1323
  }
1317
1324
 
1318
1325
  def __init__(self, env: Any):