fancy-google-docs 0.3.0__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.
@@ -8,6 +8,55 @@ 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
+
35
+ ## [0.3.1] — 2026-08-24
36
+
37
+ ### Fixed
38
+
39
+ - **`@particle-academy/google-docs-js` now accepts a RANGE of `@particle-academy/google-docs-ui`, not one exact version.**
40
+
41
+ It peer-depended on `@particle-academy/google-docs-ui` at exactly the release it shipped with. That is the
42
+ strict form of the thing the kit's own rule forbids — a first-party sibling gets
43
+ a range — and the same block applied the rule correctly to its other two
44
+ dependencies. It was this one pair that slipped.
45
+
46
+ What it cost: ship `@particle-academy/google-docs-ui` with a fixed help string and every consumer on the
47
+ previous `@particle-academy/google-docs-js` had an **unmet peer**, which npm 7+ errors on. A documentation
48
+ patch could not be delivered without a matching runtime release, and a routine
49
+ `npm update` that moved the ui package alone broke the install.
50
+
51
+ The coupling is real and is not being loosened away. The ui package emits the
52
+ config schema and the js package implements against it, so a ui that adds a
53
+ field to a js that ignores it is silently wrong. But a PATCH is non-additive by
54
+ definition and a MINOR is where a field can appear — so `>=0.3.1 <0.4.0` is the
55
+ coupling that actually exists rather than the strictest one expressible.
56
+
57
+ Nothing else changed. `particle-academy/google-docs-php` and `fancy-google-docs` are unaffected; neither has an
58
+ equivalent edge.
59
+
11
60
  ## [0.3.0] — 2026-08-24
12
61
 
13
62
  ### Added
@@ -93,3 +142,4 @@ create a second document and the action is honestly `unsafe-to-replay`.
93
142
  [0.1.0]: https://github.com/Fancy-Friends/google-docs/releases/tag/v0.1.0
94
143
  [0.2.0]: https://github.com/Fancy-Friends/google-docs/releases/tag/v0.2.0
95
144
  [0.3.0]: https://github.com/Fancy-Friends/google-docs/releases/tag/v0.3.0
145
+ [0.3.1]: https://github.com/Fancy-Friends/google-docs/releases/tag/v0.3.1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: fancy-google-docs
3
- Version: 0.3.0
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.0"
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.0"
24
+ __version__ = "0.3.2"
25
25
 
26
26
  __all__ = [
27
27
  "BASE_URLS",