fancy-google-docs 0.3.3__tar.gz → 0.3.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.
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/CHANGELOG.md +6 -0
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/PKG-INFO +1 -1
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/pyproject.toml +1 -1
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/src/fancy_google_docs/__init__.py +1 -1
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/.gitignore +0 -0
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/LICENSE +0 -0
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/README.md +0 -0
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/src/fancy_google_docs/_fake.py +0 -0
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/src/fancy_google_docs/_runtime.py +0 -0
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/src/fancy_google_docs/actions/__init__.py +0 -0
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/src/fancy_google_docs/actions/document_create.py +0 -0
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/src/fancy_google_docs/faker.py +0 -0
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/src/fancy_google_docs/py.typed +0 -0
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/src/fancy_google_docs/service.py +0 -0
- {fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/tests/test_faker.py +0 -0
|
@@ -8,6 +8,12 @@ The four packages share one version, because they are generated from one
|
|
|
8
8
|
`provider/` definition and a version that meant something different in each
|
|
9
9
|
would be a version nobody could reason about.
|
|
10
10
|
|
|
11
|
+
## [0.3.4] — 2026-09-12
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- **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.
|
|
16
|
+
|
|
11
17
|
## [0.3.3] — 2026-09-11
|
|
12
18
|
|
|
13
19
|
### Added
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: fancy-google-docs
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
4
4
|
Summary: Google Docs 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/google-docs
|
|
6
6
|
Project-URL: Issues, https://github.com/Fancy-Friends/google-docs/issues
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "fancy-google-docs"
|
|
7
|
-
version = "0.3.
|
|
7
|
+
version = "0.3.4"
|
|
8
8
|
description = "Google Docs 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.document_create import document_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.3.
|
|
24
|
+
__version__ = "0.3.4"
|
|
25
25
|
|
|
26
26
|
__all__ = [
|
|
27
27
|
"BASE_URLS",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/src/fancy_google_docs/actions/__init__.py
RENAMED
|
File without changes
|
{fancy_google_docs-0.3.3 → fancy_google_docs-0.3.4}/src/fancy_google_docs/actions/document_create.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|