fancy-google-docs 0.3.1__tar.gz → 0.3.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_google_docs-0.3.1 → fancy_google_docs-0.3.2}/CHANGELOG.md +24 -0
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/PKG-INFO +1 -1
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/pyproject.toml +1 -1
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/src/fancy_google_docs/__init__.py +1 -1
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/.gitignore +0 -0
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/LICENSE +0 -0
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/README.md +0 -0
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/src/fancy_google_docs/_fake.py +0 -0
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/src/fancy_google_docs/_runtime.py +0 -0
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/src/fancy_google_docs/actions/__init__.py +0 -0
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/src/fancy_google_docs/actions/document_create.py +0 -0
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/src/fancy_google_docs/faker.py +0 -0
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/src/fancy_google_docs/py.typed +0 -0
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/src/fancy_google_docs/service.py +0 -0
- {fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/tests/test_faker.py +0 -0
|
@@ -8,6 +8,30 @@ 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.2] — 2026-09-06
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
|
|
15
|
+
- **Published through npm Trusted Publishing, so these packages now carry PROVENANCE.**
|
|
16
|
+
|
|
17
|
+
Every earlier release went out under a scope-wide npm token. This one is
|
|
18
|
+
published by an OIDC exchange from the release workflow itself, and npm records
|
|
19
|
+
which workflow in which repository built it.
|
|
20
|
+
`npm view @particle-academy/google-docs-ui@0.3.2` shows the attestation; releases before
|
|
21
|
+
this one have none.
|
|
22
|
+
|
|
23
|
+
What it buys a consumer: the tarball on the registry can be tied to a public
|
|
24
|
+
commit and a public workflow run, rather than to whoever held a token. What it
|
|
25
|
+
does not buy: nothing about the code changed, and the runtime behaviour of all
|
|
26
|
+
four packages is identical to 0.3.1.
|
|
27
|
+
|
|
28
|
+
- **`repository.directory` in the npm packages.**
|
|
29
|
+
|
|
30
|
+
`@particle-academy/google-docs-ui` and `@particle-academy/google-docs-js` live at
|
|
31
|
+
`packages/ui` and `packages/js` inside the provider repo. npm's `repository`
|
|
32
|
+
field now says so, which makes the "Repository" link on each package page point
|
|
33
|
+
at the package rather than at the repository root.
|
|
34
|
+
|
|
11
35
|
## [0.3.1] — 2026-08-24
|
|
12
36
|
|
|
13
37
|
### Fixed
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: fancy-google-docs
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.2
|
|
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.2"
|
|
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.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
|
{fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/src/fancy_google_docs/actions/__init__.py
RENAMED
|
File without changes
|
{fancy_google_docs-0.3.1 → fancy_google_docs-0.3.2}/src/fancy_google_docs/actions/document_create.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|