workers-runtime-sdk 1.1.3__tar.gz → 1.1.4__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.
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/CHANGELOG.md +9 -0
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/PKG-INFO +1 -1
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/pyproject.toml +1 -1
- workers_runtime_sdk-1.1.4/src/_workers_sdk_entropy_import_context.pth +1 -0
- workers_runtime_sdk-1.1.4/src/_workers_sdk_entropy_import_context_loader.py +13 -0
- workers_runtime_sdk-1.1.3/src/_workers_sdk_entropy_import_context.pth +0 -1
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/.gitignore +0 -0
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/README.md +0 -0
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/src/_cloudflare_compat_flags.pyi +0 -0
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/src/_pyodide_entrypoint_helper.pyi +0 -0
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/src/_workers_sdk_entropy_import_context.py +0 -0
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/src/asgi.py +0 -0
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/src/workers/__init__.py +0 -0
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/src/workers/_workers.py +0 -0
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/src/workers/py.typed +0 -0
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/src/workers/workflows.py +0 -0
- {workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/uv.lock +0 -0
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- version list -->
|
|
4
4
|
|
|
5
|
+
## v1.1.4 (2026-05-06)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Make pth file not warn when run in native Python
|
|
10
|
+
([#100](https://github.com/cloudflare/workers-py/pull/100),
|
|
11
|
+
[`3c60df6`](https://github.com/cloudflare/workers-py/commit/3c60df6fd59c3ab65adeb5216feee3d52345ebb7))
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
## v1.1.3 (2026-05-04)
|
|
6
15
|
|
|
7
16
|
### Bug Fixes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: workers-runtime-sdk
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.4
|
|
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
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
import _workers_sdk_entropy_import_context_loader
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Loader shim for _workers_sdk_entropy_import_context.
|
|
3
|
+
|
|
4
|
+
This module is imported by the .pth file on every Python startup. The entropy
|
|
5
|
+
context patches depend on the `_cloudflare` package, which only exists inside
|
|
6
|
+
the workers runtime. When running outside of the workers runtime, `_cloudflare`
|
|
7
|
+
is not available, so we silently skip loading the patches.
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
import importlib.util
|
|
11
|
+
|
|
12
|
+
if importlib.util.find_spec("_cloudflare") is not None:
|
|
13
|
+
import _workers_sdk_entropy_import_context # noqa: F401
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import _workers_sdk_entropy_import_context
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{workers_runtime_sdk-1.1.3 → workers_runtime_sdk-1.1.4}/src/_workers_sdk_entropy_import_context.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|