chore: version packages#3401
Open
github-actions[bot] wants to merge 1 commit into
Open
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 22, 2026 06:01
dc99a2c to
2b47f4f
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 22, 2026 09:28
2b47f4f to
215dea7
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 22, 2026 14:27
215dea7 to
c04aece
Compare
github-actions
Bot
force-pushed
the
changeset-release/main
branch
from
July 22, 2026 14:37
c04aece to
3d0e955
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@objectstack/plugin-audit@16.2.0
Minor Changes
f243727: remove(plugin-audit): drop the kernel's built-in assignment notifications; move the policy to user-space automation (废弃内核内置「分配通知」(writeAssignmentNotifications),改由自动化流程承载 #3403)
Breaking (behavioral).
plugin-auditno longer emits acollab.assignmentnotification when an owner/assignee field changes on a record. Deciding that an
assignment warrants a bell is a business policy, not a platform default — the
kernel version guessed "who is the assignee" from field names (
owner_id,assigned_to,assignee_id,owner,assignee), which misfired on systemrecords like
sys_fileand spammed users with "…assigned to you" noise on fileuploads (上传文件后收到大量「系统文件 xxx 已分配给你」噪音通知 #3402).
What was removed: the
writeAssignmentNotificationswriter, theOWNER_FIELDSheuristic, and the
messages.assignedToYoutranslation key (en / zh-CN / ja-JP /es-ES). Unaffected:
sys_audit_log/sys_activitycapture, and@mentionnotifications (
collab.mention) — those remain platform behavior. Theowner_of:messaging audience andservice-messaging'sDEFAULT_OWNER_FIELDSare a separate, caller-requested mechanism and are unchanged.
FROM → TO migration. If you relied on the automatic bell, configure an
automation flow on the target object (
record-after-update/record-after-createtrigger + a
notifynode). Theconditioncan read the pre-update row viaprevious, andnotify'srecipients/title/actionUrlall interpolaterecord fields. Ready-made example:
showcase_task_assigned_notifyinexamples/app-showcase/src/automation/flows/index.ts:Notes on parity: the flow template renders a single language (the kernel version
localized the title to the recipient's locale); a flow fires on every real change
(the
previouscondition already gates that) and, unless you add an actor guard,also notifies self-assignments — the kernel version suppressed those.
Patch Changes
@objectstack/hono@16.2.0
Patch Changes
@objectstack/account@16.2.0
Patch Changes
@objectstack/setup@16.2.0
Patch Changes
@objectstack/studio@16.2.0
Patch Changes
@objectstack/cli@16.2.0
Patch Changes
@objectstack/client@16.2.0
Patch Changes
@objectstack/client-react@16.2.0
Patch Changes
@objectstack/cloud-connection@16.2.0
Patch Changes
@objectstack/connector-mcp@16.2.0
Patch Changes
@objectstack/connector-openapi@16.2.0
Patch Changes
@objectstack/connector-rest@16.2.0
Patch Changes
@objectstack/connector-slack@16.2.0
Patch Changes
@objectstack/core@16.2.0
Patch Changes
@objectstack/formula@16.2.0
Patch Changes
@objectstack/lint@16.2.0
Patch Changes
@objectstack/mcp@16.2.0
Patch Changes
@objectstack/metadata@16.2.0
Patch Changes
@objectstack/metadata-core@16.2.0
Patch Changes
@objectstack/metadata-fs@16.2.0
Patch Changes
@objectstack/metadata-protocol@16.2.0
Patch Changes
@objectstack/objectql@16.2.0
Patch Changes
54f479a: fix(objectql): accept relative and inline URLs on
urlfieldsThe record-validator's
url-type check required an absolutescheme://URL,so it rejected the root-relative value the platform's own storage service
returns for an uploaded file. The console avatar uploader
(
createObjectStackUploadAdapter) PUTs the image to storage and then writessys_user.image(aField.url) =/api/v1/storage/files/<id>; that failedinvalid_urland — on the better-authupdate-userpath — surfaced as afailed profile save (the "上传用户头像报错" avatar-upload bug).
URL_REnow also accepts root-/protocol-relative refs (/path,//host/path)and the
data:/blob:inline forms, in addition toscheme://…. A barescheme-less string with no leading
/(e.g."notaurl") is still rejected.Verified end-to-end in the running Console: avatar upload → display → replace →
remove all succeed.
@objectstack/observability@16.2.0
Patch Changes
@objectstack/platform-objects@16.2.0
Patch Changes
@objectstack/driver-memory@16.2.0
Patch Changes
@objectstack/driver-mongodb@16.2.0
Patch Changes
@objectstack/driver-sql@16.2.0
Patch Changes
@objectstack/driver-sqlite-wasm@16.2.0
Patch Changes
@objectstack/embedder-openai@16.2.0
Patch Changes
@objectstack/knowledge-memory@16.2.0
Patch Changes
@objectstack/knowledge-ragflow@16.2.0
Patch Changes
@objectstack/plugin-approvals@16.2.0
Patch Changes
@objectstack/plugin-auth@16.2.0
Patch Changes
d0fea33: fix(auth): map ObjectQL
ValidationErrorto a 4xx on the better-auth paths (better-auth update-user validation failure returns raw 500 empty body (should be a 4xx) #3398)A field-level validation failure raised by the ObjectQL record-validator
(e.g. an invalid
imageonPOST /api/v1/auth/update-user) surfaced to theHTTP client as a raw 500 with an empty body. better-auth only maps its own
APIErrors to structured responses; any other error thrown from an adaptermethod propagates to better-call's router as an unhandled fault →
500 {}.Added the auth-path analogue of the REST layer's
mapDataError: the objectqladapter now detects the ObjectQL validation envelope at its boundary (duck-typed
by
code/name, so plugin-auth keeps no hard dependency on@objectstack/objectqland cross-realminstanceofcan't bite) and re-throwsit as
APIError('BAD_REQUEST', …).update-userand friends now answer with a400 { code: 'VALIDATION_FAILED', message, fields }instead of an opaque 500.@objectstack/plugin-dev@16.2.0
Patch Changes
@objectstack/plugin-email@16.2.0
Patch Changes
@objectstack/plugin-hono-server@16.2.0
Patch Changes
@objectstack/plugin-pinyin-search@16.2.0
Patch Changes
@objectstack/plugin-reports@16.2.0
Patch Changes
@objectstack/plugin-security@16.2.0
Patch Changes
@objectstack/plugin-sharing@16.2.0
Patch Changes
@objectstack/plugin-webhooks@16.2.0
Patch Changes
@objectstack/rest@16.2.0
Patch Changes
@objectstack/runtime@16.2.0
Patch Changes
@objectstack/service-analytics@16.2.0
Patch Changes
@objectstack/service-automation@16.2.0
Patch Changes
@objectstack/service-cache@16.2.0
Patch Changes
@objectstack/service-cluster@16.2.0
Patch Changes
@objectstack/service-cluster-redis@16.2.0
Patch Changes
@objectstack/service-datasource@16.2.0
Patch Changes
@objectstack/service-i18n@16.2.0
Patch Changes
@objectstack/service-job@16.2.0
Patch Changes
@objectstack/service-knowledge@16.2.0
Patch Changes
@objectstack/service-messaging@16.2.0
Patch Changes
@objectstack/service-package@16.2.0
Patch Changes
@objectstack/service-queue@16.2.0
Patch Changes
@objectstack/service-realtime@16.2.0
Patch Changes
@objectstack/service-settings@16.2.0
Patch Changes
@objectstack/service-sms@16.2.0
Patch Changes
@objectstack/service-storage@16.2.0
Patch Changes
@objectstack/trigger-api@16.2.0
Patch Changes
@objectstack/trigger-record-change@16.2.0
Patch Changes
@objectstack/trigger-schedule@16.2.0
Patch Changes
@objectstack/types@16.2.0
Patch Changes
@objectstack/verify@16.2.0
Patch Changes
@objectstack/console@16.2.0
create-objectstack@16.2.0
@objectstack/sdui-parser@16.2.0
@objectstack/spec@16.2.0
objectstack-vscode@16.2.0
@objectstack/example-crm@4.0.92
Patch Changes
@objectstack/example-showcase@0.3.14
Patch Changes
@objectstack/example-todo@4.0.92
Patch Changes
@objectstack/example-embed-objectql@0.0.32
Patch Changes
@objectstack/dogfood@0.0.40
Patch Changes
@objectstack/downstream-contract@0.0.38
Patch Changes
@objectstack/http-conformance@0.0.6
Patch Changes