fancy-buffer 0.1.1__tar.gz → 0.1.2__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.1 → fancy_buffer-0.1.2}/CHANGELOG.md +14 -0
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/PKG-INFO +1 -1
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/pyproject.toml +1 -1
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/src/fancy_buffer/__init__.py +1 -1
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/.gitignore +0 -0
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/LICENSE +0 -0
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/README.md +0 -0
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/src/fancy_buffer/_fake.py +0 -0
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/src/fancy_buffer/_runtime.py +0 -0
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/src/fancy_buffer/actions/__init__.py +0 -0
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/src/fancy_buffer/actions/post_create.py +0 -0
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/src/fancy_buffer/faker.py +0 -0
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/src/fancy_buffer/py.typed +0 -0
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/src/fancy_buffer/service.py +0 -0
- {fancy_buffer-0.1.1 → fancy_buffer-0.1.2}/tests/test_faker.py +0 -0
|
@@ -4,6 +4,20 @@ 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.2] — 2026-09-11
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- **`fancy-flow-php` executors for every node.** `src/Flow/` carries one `#[FlowNode]` class per action and trigger, and `BufferFlow::EXECUTORS` lists them.
|
|
12
|
+
|
|
13
|
+
A Laravel host running fancy-flow-php could show this connector's nodes in its editor and could not run them: `particle-academy/buffer-php` shipped the request builders and no executor. Each one is the PHP twin of the executor in `@particle-academy/buffer-js` — the same kind, the same request, the same value on `out` — and an unsafe-to-replay action derives its idempotency key from the run and the node, so a retried durable run sends the key it sent the first time.
|
|
14
|
+
|
|
15
|
+
Register them by adding `vendor/particle-academy/buffer-php/packages/php/src/Flow` to `config('fancy-flow.discover')`. `particle-academy/fancy-flow-php` is SUGGESTED, not required, and conflicts outside `>=0.51.0 <2.0`, the range the executors were tested under. Nothing outside `Flow\` needs it.
|
|
16
|
+
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- **Fake mode through `ConnectorClient` threw.** `Buffer::descriptor()` handed the connector core its faker as `BufferFaker::respond(...)`, which takes `($operation, $request)`; the core calls a faker `($operation, $config, $fake, $input)`. So `$config` arrived as `$request` and every fake call died on "Call to a member function … on null". The descriptor now translates between the two. Calling `BufferFaker::respond()` directly — what this package's own tests do, which is why they never saw it — is unchanged.
|
|
20
|
+
|
|
7
21
|
## [0.1.1] — 2026-09-06
|
|
8
22
|
|
|
9
23
|
### Changed
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: fancy-buffer
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
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.2"
|
|
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.2"
|
|
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
|