From 614ac4dc9c5991a19745ae252f03d8f4e07a9ec6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 4 Aug 2026 01:09:48 +0000 Subject: [PATCH] chore: version packages --- .changeset/defer-until-thread.md | 5 ----- .changeset/gemini-25-flash-withdrawn.md | 11 ----------- .changeset/gemini-3-model-refresh.md | 16 ---------------- .changeset/new-note-unread-default.md | 10 ---------- .changeset/no-reply-sender.md | 9 --------- .changeset/remove-note-cta.md | 10 ---------- libs/google-contacts/CHANGELOG.md | 7 +++++++ libs/google-contacts/package.json | 2 +- twister/CHANGELOG.md | 20 ++++++++++++++++++++ twister/package.json | 2 +- 10 files changed, 29 insertions(+), 63 deletions(-) delete mode 100644 .changeset/defer-until-thread.md delete mode 100644 .changeset/gemini-25-flash-withdrawn.md delete mode 100644 .changeset/gemini-3-model-refresh.md delete mode 100644 .changeset/new-note-unread-default.md delete mode 100644 .changeset/no-reply-sender.md delete mode 100644 .changeset/remove-note-cta.md diff --git a/.changeset/defer-until-thread.md b/.changeset/defer-until-thread.md deleted file mode 100644 index 84944405..00000000 --- a/.changeset/defer-until-thread.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@plotday/twister": minor ---- - -Added: `NewNote.deferUntilThread` holds a note addressed by `{ source }` until a thread with that source exists, instead of returning `null` when it has not synced yet. diff --git a/.changeset/gemini-25-flash-withdrawn.md b/.changeset/gemini-25-flash-withdrawn.md deleted file mode 100644 index 5cdf40f3..00000000 --- a/.changeset/gemini-25-flash-withdrawn.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@plotday/twister": patch ---- - -Changed: `AIModel.GEMINI_25_FLASH` is documented as withdrawn rather than -merely superseded, matching the other 2.x members. - -Gemini availability is scoped to the calling project: this model still answers -for some long-lived keys while returning "no longer available to new users" for -others, so a model resolving for you is not evidence that it resolves for -everyone. It is remapped to a current model like the rest of the generation. diff --git a/.changeset/gemini-3-model-refresh.md b/.changeset/gemini-3-model-refresh.md deleted file mode 100644 index f3b2af7d..00000000 --- a/.changeset/gemini-3-model-refresh.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -"@plotday/twister": minor ---- - -Added: `AIModel.GEMINI_31_PRO`, `AIModel.GEMINI_35_FLASH`, and -`AIModel.GEMINI_35_FLASH_LITE` for the current generation of Gemini models. - -Deprecated: the `GEMINI_25_*` and `GEMINI_20_*` members. Google has withdrawn -most of that generation, so a `hint` naming one of them previously failed the -whole `ai.prompt()` call. The members still exist and still compile, and a hint -naming a withdrawn model is now served by its current equivalent instead of -erroring — but new code should name a 3.x member. - -The speed/cost tiers that `ai.prompt()` resolves without a hint have also moved -onto current models, so `{ speed: "capable", cost: "high" }` and the other tiers -that previously mapped to withdrawn Gemini models work again. diff --git a/.changeset/new-note-unread-default.md b/.changeset/new-note-unread-default.md deleted file mode 100644 index 65055b91..00000000 --- a/.changeset/new-note-unread-default.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@plotday/twister": patch ---- - -Fixed: corrected the documented default for `NewNote.unread`. - -Omitting the flag was described as "leave read state alone". It is not — attaching -a note marks its thread unread for every recipient except the note's author, and -there is no outcome that leaves read state untouched. A note that should not raise -unread must pass an explicit `false`. diff --git a/.changeset/no-reply-sender.md b/.changeset/no-reply-sender.md deleted file mode 100644 index 50906027..00000000 --- a/.changeset/no-reply-sender.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"@plotday/twister": minor ---- - -Added: `isNoReplySender` to the signals entry point. - -Identifies an address whose local part marks it as an automated or no-reply -sender. Connectors extracting mail signals can use it without depending on a -separate package. diff --git a/.changeset/remove-note-cta.md b/.changeset/remove-note-cta.md deleted file mode 100644 index e65fa659..00000000 --- a/.changeset/remove-note-cta.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -"@plotday/twister": minor ---- - -Removed: `cta` from the note type. - -The ephemeral one-time-code prompt this field fed has been retired, and the -value is no longer stored. Connectors that set it should remove the assignment; -the field is ignored in the meantime. One-time-code and confirmation mail is -still identified during classification — that detection is unchanged. diff --git a/libs/google-contacts/CHANGELOG.md b/libs/google-contacts/CHANGELOG.md index de6faa4a..beb7cdcf 100644 --- a/libs/google-contacts/CHANGELOG.md +++ b/libs/google-contacts/CHANGELOG.md @@ -1,5 +1,12 @@ # @plotday/tool-google-contacts +## 0.6.15 + +### Changed + +- Updated dependencies: +- @plotday/twister@0.92.0 + ## 0.6.14 ### Changed diff --git a/libs/google-contacts/package.json b/libs/google-contacts/package.json index 51cc8932..7834012e 100644 --- a/libs/google-contacts/package.json +++ b/libs/google-contacts/package.json @@ -2,7 +2,7 @@ "name": "@plotday/google-contacts", "author": "Plot (https://plot.day)", "license": "MIT", - "version": "0.6.14", + "version": "0.6.15", "type": "module", "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/twister/CHANGELOG.md b/twister/CHANGELOG.md index 49eb1035..aba0fb17 100644 --- a/twister/CHANGELOG.md +++ b/twister/CHANGELOG.md @@ -1,5 +1,25 @@ # @plotday/twister +## 0.92.0 + +### Added + +- `NewNote.deferUntilThread` holds a note addressed by `{ source }` until a thread with that source exists, instead of returning `null` when it has not synced yet. ([#361](https://github.com/plotday/plot/pull/361) [`0bbce19`](https://github.com/plotday/plot/commit/0bbce19c240467376a7c5622425a0333ca5dc30d)) +- `AIModel.GEMINI_31_PRO`, `AIModel.GEMINI_35_FLASH`, and +- `isNoReplySender` to the signals entry point. + +### Changed + +- `AIModel.GEMINI_25_FLASH` is documented as withdrawn rather than + +### Removed + +- `cta` from the note type. + +### Fixed + +- corrected the documented default for `NewNote.unread`. + ## 0.91.0 ### Added diff --git a/twister/package.json b/twister/package.json index 64db0ba2..1812792d 100644 --- a/twister/package.json +++ b/twister/package.json @@ -1,6 +1,6 @@ { "name": "@plotday/twister", - "version": "0.91.0", + "version": "0.92.0", "description": "Plot Twist Creator - Build intelligent extensions that integrate and automate", "packageManager": "pnpm@10.18.3", "type": "module",