Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/document-i18n-use-language-constant.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fix-secrets-sse-dedup.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/internationalized-array-use-constant.md

This file was deleted.

6 changes: 6 additions & 0 deletions plugins/@sanity/document-internationalization/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @sanity/document-internationalization

## 5.0.2

### Patch Changes

- [#582](https://github.com/sanity-io/plugins/pull/582) [`d4e3d2b`](https://github.com/sanity-io/plugins/commit/d4e3d2baad5964c6a1f17adba590c7ac301744af) Thanks [@pedrobonamin](https://github.com/pedrobonamin)! - Use `LANGUAGE_FIELD_NAME` constant from `sanity-plugin-internationalized-array` instead of hardcoded `_key` references

## 5.0.1

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sanity/document-internationalization",
"version": "5.0.1",
"version": "5.0.2",
"description": "Create unique translations of a document based on its language, joined by a shared reference document.",
"keywords": [
"sanity",
Expand Down
6 changes: 6 additions & 0 deletions plugins/@sanity/studio-secrets/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @sanity/studio-secrets

## 4.0.1

### Patch Changes

- [#578](https://github.com/sanity-io/plugins/pull/578) [`ba57c53`](https://github.com/sanity-io/plugins/commit/ba57c536beea395d2652677aeb8055615a5c7cba) Thanks [@RitaDias](https://github.com/RitaDias)! - Fixed SSE listener leak in `useSecrets` hook. Previously, every component using `useSecrets` created its own SSE listener connection, causing connections to accumulate over a session (observed: 11 connections where 1 is sufficient). The hook now deduplicates listeners using RxJS `share()` so all components subscribing to the same namespace share a single SSE connection. Also fixes a race condition where a slow initial fetch could overwrite a newer value delivered by the SSE listener.

## 4.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/@sanity/studio-secrets/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sanity/studio-secrets",
"version": "4.0.0",
"version": "4.0.1",
"description": "React hooks and UI for reading and managing secrets in a Sanity Studio. This is a good pattern for keeping configuration secret. Instead of using environment variables which would be bundled with the Studio source (it is an SPA), we store secret information in a separate, access-controlled dataset that is only queried at runtime.",
"keywords": [
"sanity",
Expand Down
6 changes: 6 additions & 0 deletions plugins/sanity-plugin-internationalized-array/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# sanity-plugin-internationalized-array

## 4.0.3

### Patch Changes

- [#582](https://github.com/sanity-io/plugins/pull/582) [`d4e3d2b`](https://github.com/sanity-io/plugins/commit/d4e3d2baad5964c6a1f17adba590c7ac301744af) Thanks [@pedrobonamin](https://github.com/pedrobonamin)! - Refactor internal code to use `LANGUAGE_FIELD_NAME` constant instead of hardcoded `_key` references

## 4.0.2

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sanity-plugin-internationalized-array",
"version": "4.0.2",
"version": "4.0.3",
"description": "Store localized fields in an array to save on attributes",
"keywords": [
"sanity",
Expand Down