fancy-buffer 0.1.2__tar.gz → 0.1.3__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.
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/CHANGELOG.md +6 -0
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/PKG-INFO +1 -1
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/pyproject.toml +1 -1
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/src/fancy_buffer/__init__.py +1 -1
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/.gitignore +0 -0
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/LICENSE +0 -0
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/README.md +0 -0
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/src/fancy_buffer/_fake.py +0 -0
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/src/fancy_buffer/_runtime.py +0 -0
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/src/fancy_buffer/actions/__init__.py +0 -0
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/src/fancy_buffer/actions/post_create.py +0 -0
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/src/fancy_buffer/faker.py +0 -0
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/src/fancy_buffer/py.typed +0 -0
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/src/fancy_buffer/service.py +0 -0
- {fancy_buffer-0.1.2 → fancy_buffer-0.1.3}/tests/test_faker.py +0 -0
|
@@ -4,6 +4,12 @@ All notable changes to `@particle-academy/buffer-ui`,
|
|
|
4
4
|
`@particle-academy/buffer-js`, `particle-academy/buffer-php` and
|
|
5
5
|
`fancy-buffer`.
|
|
6
6
|
|
|
7
|
+
## [0.1.3] — 2026-09-12
|
|
8
|
+
|
|
9
|
+
### Changed
|
|
10
|
+
|
|
11
|
+
- **Requires `fancy-connector-core` ≥ 0.4.0** — `particle-academy/fancy-connector-core` for php, `@particle-academy/fancy-connector-core` for js. The flow executors now pass a provider's declared `idempotencyMaxLength` through to the core's key derivation, and a named argument an older core does not accept is a fatal rather than a no-op, so the floor moves with it. This connector declares no limit and passes nothing, so nothing else changes for it; the bump is the floor alone.
|
|
12
|
+
|
|
7
13
|
## [0.1.2] — 2026-09-11
|
|
8
14
|
|
|
9
15
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: fancy-buffer
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.3
|
|
4
4
|
Summary: Buffer for Python — the service descriptor, its faker, its webhook verification, and one function per operation. Plain HTTP; no vendor SDK.
|
|
5
5
|
Project-URL: Homepage, https://github.com/Fancy-Friends/buffer
|
|
6
6
|
Project-URL: Issues, https://github.com/Fancy-Friends/buffer/issues
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "fancy-buffer"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.3"
|
|
8
8
|
description = "Buffer for Python — the service descriptor, its faker, its webhook verification, and one function per operation. Plain HTTP; no vendor SDK."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
# 3.11 matches fancy-flow-py's floor: 3.10 reaches end of life on 2026-10-31,
|
|
@@ -21,7 +21,7 @@ from .actions.post_create import post_create
|
|
|
21
21
|
from .faker import respond
|
|
22
22
|
from .service import BASE_URLS, CONNECTOR_API_VERSION, REQUIRES, SANDBOX, SERVICE, TITLE, descriptor
|
|
23
23
|
|
|
24
|
-
__version__ = "0.1.
|
|
24
|
+
__version__ = "0.1.3"
|
|
25
25
|
|
|
26
26
|
__all__ = [
|
|
27
27
|
"BASE_URLS",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|