release: v3.3.3 (#2494)

This commit is contained in:
Logan Yang 2026-05-20 18:27:22 -07:00 committed by GitHub
parent 05a0d03fd9
commit bd8829f538
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 32 additions and 5 deletions

View file

@ -1,5 +1,31 @@
# Release Notes # Release Notes
# Copilot for Obsidian - Release v3.3.3 🛠️
This patch brings a fresh Gemini model, squashes a nasty Copilot Plus freeze, and makes it much easier to verify your dev build is actually loaded in Obsidian. Thanks to @logancyang and @zeroliu for the quick turnaround!
- 💡 **Gemini 3.5 Flash is now a built-in model** — Google's latest generally-available Gemini model (`gemini-3.5-flash`) is now available out of the box, enabled by default with Vision and Reasoning support. It replaces the old `gemini-3-flash-preview` entry. Your existing default model (`google/gemini-2.5-flash` on OpenRouter) is unchanged — this is an additional option. (@logancyang)
- 🛠️ **Copilot Plus no longer freezes when you apply your license key** — Applying a Plus license key was causing Obsidian to freeze indefinitely. The root cause was a chain-rebuild loop: multiple concurrent initializations were each capturing the chain type, then writing it back after awaiting the model switch, bouncing the state between `LLM_CHAIN` and `COPILOT_PLUS_CHAIN` and triggering endless rebuilds. This is now fixed — applying your key fires a single clean rebuild and the UI stays responsive. (@zeroliu)
- 🔧 **New `npm run test:vault` command for developers** — A single command now builds the plugin and hot-reloads it directly into your test vault via the Obsidian CLI. It also stamps the loaded build's name with the current git branch and timestamp, so you can glance at Obsidian's Community plugins list to confirm you're running the build you think you are. (@zeroliu)
More details in the changelog:
### Improvements
- #2477 Add npm run test:vault for fast worktree-to-vault plugin reload @zeroliu
- #2492 feat(models): add GA gemini-3.5-flash builtin @logancyang
### Bug Fixes
- #2478 fix(chain): stop writing chainType back inside setChain (apply-Plus freeze) @zeroliu
## Troubleshoot
- If models are missing, navigate to Copilot settings -> Models tab and click "Refresh Built-in Models".
- Please report any issue you see in the member channel!
---
# Copilot for Obsidian - Release v3.3.2 🛠️ # Copilot for Obsidian - Release v3.3.2 🛠️
This patch is all about stability and speed. **Claude Opus 4.7+ now works correctly with adaptive thinking** on both direct Anthropic and AWS Bedrock, project-mode file ingestion is fixed, Quick Ask no longer crashes on `@`-mention, and the plugin is 75 KB lighter thanks to a clean dependency deduplication. Kudos to @logancyang and @zeroliu for the focused clean-up! This patch is all about stability and speed. **Claude Opus 4.7+ now works correctly with adaptive thinking** on both direct Anthropic and AWS Bedrock, project-mode file ingestion is fixed, Quick Ask no longer crashes on `@`-mention, and the plugin is 75 KB lighter thanks to a clean dependency deduplication. Kudos to @logancyang and @zeroliu for the focused clean-up!

View file

@ -1,7 +1,7 @@
{ {
"id": "copilot", "id": "copilot",
"name": "Copilot", "name": "Copilot",
"version": "3.3.2", "version": "3.3.3",
"minAppVersion": "1.11.4", "minAppVersion": "1.11.4",
"isDesktopOnly": false, "isDesktopOnly": false,
"description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.", "description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "obsidian-copilot", "name": "obsidian-copilot",
"version": "3.3.2", "version": "3.3.3",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "obsidian-copilot", "name": "obsidian-copilot",
"version": "3.3.2", "version": "3.3.3",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"dependencies": { "dependencies": {
"@dnd-kit/core": "^6.3.1", "@dnd-kit/core": "^6.3.1",

View file

@ -1,6 +1,6 @@
{ {
"name": "obsidian-copilot", "name": "obsidian-copilot",
"version": "3.3.2", "version": "3.3.3",
"description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.", "description": "Your AI Copilot: Chat with Your Second Brain, Learn Faster, Work Smarter.",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {

View file

@ -112,5 +112,6 @@
"3.2.9-beta.0": "1.7.2", "3.2.9-beta.0": "1.7.2",
"3.3.0": "1.7.2", "3.3.0": "1.7.2",
"3.3.1": "1.11.4", "3.3.1": "1.11.4",
"3.3.2": "1.11.4" "3.3.2": "1.11.4",
"3.3.3": "1.11.4"
} }