From 2d3a7966eeba45f19432d365ef9c74263d152fd8 Mon Sep 17 00:00:00 2001 From: Yong Tang Date: Thu, 9 Jul 2026 16:23:48 -0700 Subject: [PATCH] Version Packages --- .changeset/odd-suns-enjoy.md | 2 ++ .changeset/resolve-document-application.md | 26 ------------------- packages/app/CHANGELOG.md | 9 +++++++ packages/app/package.json | 2 +- packages/state/core/CHANGELOG.md | 24 +++++++++++++++++ packages/state/core/package.json | 2 +- packages/state/demo/CHANGELOG.md | 29 +++++++++++++++++++++ packages/state/demo/package.json | 2 +- packages/state/foundry-event/CHANGELOG.md | 29 +++++++++++++++++++++ packages/state/foundry-event/package.json | 2 +- packages/state/foundry/CHANGELOG.md | 30 ++++++++++++++++++++++ packages/state/foundry/package.json | 2 +- packages/state/react/CHANGELOG.md | 7 +++++ packages/state/react/package.json | 2 +- 14 files changed, 136 insertions(+), 32 deletions(-) create mode 100644 .changeset/odd-suns-enjoy.md delete mode 100644 .changeset/resolve-document-application.md diff --git a/.changeset/odd-suns-enjoy.md b/.changeset/odd-suns-enjoy.md new file mode 100644 index 00000000..a845151c --- /dev/null +++ b/.changeset/odd-suns-enjoy.md @@ -0,0 +1,2 @@ +--- +--- diff --git a/.changeset/resolve-document-application.md b/.changeset/resolve-document-application.md deleted file mode 100644 index 030d86dd..00000000 --- a/.changeset/resolve-document-application.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -"@palantir/pack.state.core": minor -"@palantir/pack.state.foundry": minor -"@palantir/pack.state.foundry-event": minor -"@palantir/pack.state.demo": minor ---- - -Bump `@osdk/foundry.pack` to `^2.68.0`, surface `owningApplicationId` on document types, and add document-to-application resolution. - -The SDK adds `owningApplicationId` to the wire `DocumentType`, populated from the type's -metadata. `DocumentType` (state.core) now carries `owningApplicationId?: string` and -`FoundryDocumentService` maps it through, so it rides along on every -`loadDocumentTypeByName` / `getDocumentType` call. - -Adds `resolveDocumentApplication(docRef)` to `DocumentService` (and `app.state`), backed by -the new `GET /v2/pack/documents/{documentId}/resolveApplication` endpoint. Given a document, -it resolves the owning application id from the document's type metadata, returning `undefined` -when none is configured. Unsupported on the in-memory and demo services. - -`createDocumentEditDescription` no longer sends the deprecated `eventData.version` or top-level -`eventType` fields (both are now optional in the SDK/API and superseded by `eventData.schemaVersion` -and `eventData.eventType`). - -`searchDocuments` accepts an optional `ontologyRid` in its options, forwarded to the search -request to scope results to a specific ontology. Not defaulted — omitted when unset, in which -case the document type name is searched across all ontologies. diff --git a/packages/app/CHANGELOG.md b/packages/app/CHANGELOG.md index b3a13695..c9befc1e 100644 --- a/packages/app/CHANGELOG.md +++ b/packages/app/CHANGELOG.md @@ -1,5 +1,14 @@ # @palantir/pack.app +## 0.20.0 + +### Patch Changes + +- Updated dependencies [9d0c61a] + - @palantir/pack.state.core@0.19.0 + - @palantir/pack.state.foundry@0.22.0 + - @palantir/pack.state.demo@0.17.0 + ## 0.19.0 ### Patch Changes diff --git a/packages/app/package.json b/packages/app/package.json index 880c7dd6..81eca2be 100644 --- a/packages/app/package.json +++ b/packages/app/package.json @@ -1,6 +1,6 @@ { "name": "@palantir/pack.app", - "version": "0.19.0", + "version": "0.20.0", "description": "PACK main package", "author": "", "license": "Apache-2.0", diff --git a/packages/state/core/CHANGELOG.md b/packages/state/core/CHANGELOG.md index 1bc8b9e8..8328c7d0 100644 --- a/packages/state/core/CHANGELOG.md +++ b/packages/state/core/CHANGELOG.md @@ -1,5 +1,29 @@ # @palantir/pack.state.core +## 0.19.0 + +### Minor Changes + +- 9d0c61a: Bump `@osdk/foundry.pack` to `^2.68.0`, surface `owningApplicationId` on document types, and add document-to-application resolution. + + The SDK adds `owningApplicationId` to the wire `DocumentType`, populated from the type's + metadata. `DocumentType` (state.core) now carries `owningApplicationId?: string` and + `FoundryDocumentService` maps it through, so it rides along on every + `loadDocumentTypeByName` / `getDocumentType` call. + + Adds `resolveDocumentApplication(docRef)` to `DocumentService` (and `app.state`), backed by + the new `GET /v2/pack/documents/{documentId}/resolveApplication` endpoint. Given a document, + it resolves the owning application id from the document's type metadata, returning `undefined` + when none is configured. Unsupported on the in-memory and demo services. + + `createDocumentEditDescription` no longer sends the deprecated `eventData.version` or top-level + `eventType` fields (both are now optional in the SDK/API and superseded by `eventData.schemaVersion` + and `eventData.eventType`). + + `searchDocuments` accepts an optional `ontologyRid` in its options, forwarded to the search + request to scope results to a specific ontology. Not defaulted — omitted when unset, in which + case the document type name is searched across all ontologies. + ## 0.18.0 ### Minor Changes diff --git a/packages/state/core/package.json b/packages/state/core/package.json index 608f72a7..e1559810 100644 --- a/packages/state/core/package.json +++ b/packages/state/core/package.json @@ -1,6 +1,6 @@ { "name": "@palantir/pack.state.core", - "version": "0.18.0", + "version": "0.19.0", "description": "PACK State logic and utilities", "license": "Apache-2.0", "repository": { diff --git a/packages/state/demo/CHANGELOG.md b/packages/state/demo/CHANGELOG.md index a8bb3def..e1f81a21 100644 --- a/packages/state/demo/CHANGELOG.md +++ b/packages/state/demo/CHANGELOG.md @@ -1,5 +1,34 @@ # @palantir/pack.state.demo +## 0.17.0 + +### Minor Changes + +- 9d0c61a: Bump `@osdk/foundry.pack` to `^2.68.0`, surface `owningApplicationId` on document types, and add document-to-application resolution. + + The SDK adds `owningApplicationId` to the wire `DocumentType`, populated from the type's + metadata. `DocumentType` (state.core) now carries `owningApplicationId?: string` and + `FoundryDocumentService` maps it through, so it rides along on every + `loadDocumentTypeByName` / `getDocumentType` call. + + Adds `resolveDocumentApplication(docRef)` to `DocumentService` (and `app.state`), backed by + the new `GET /v2/pack/documents/{documentId}/resolveApplication` endpoint. Given a document, + it resolves the owning application id from the document's type metadata, returning `undefined` + when none is configured. Unsupported on the in-memory and demo services. + + `createDocumentEditDescription` no longer sends the deprecated `eventData.version` or top-level + `eventType` fields (both are now optional in the SDK/API and superseded by `eventData.schemaVersion` + and `eventData.eventType`). + + `searchDocuments` accepts an optional `ontologyRid` in its options, forwarded to the search + request to scope results to a specific ontology. Not defaulted — omitted when unset, in which + case the document type name is searched across all ontologies. + +### Patch Changes + +- Updated dependencies [9d0c61a] + - @palantir/pack.state.core@0.19.0 + ## 0.16.0 ### Minor Changes diff --git a/packages/state/demo/package.json b/packages/state/demo/package.json index 48d03294..6b53baf6 100644 --- a/packages/state/demo/package.json +++ b/packages/state/demo/package.json @@ -1,6 +1,6 @@ { "name": "@palantir/pack.state.demo", - "version": "0.16.0", + "version": "0.17.0", "license": "Apache-2.0", "repository": { "type": "git", diff --git a/packages/state/foundry-event/CHANGELOG.md b/packages/state/foundry-event/CHANGELOG.md index f55e4ec9..8fe114f4 100644 --- a/packages/state/foundry-event/CHANGELOG.md +++ b/packages/state/foundry-event/CHANGELOG.md @@ -1,5 +1,34 @@ # @palantir/pack.state.foundry-event +## 0.21.0 + +### Minor Changes + +- 9d0c61a: Bump `@osdk/foundry.pack` to `^2.68.0`, surface `owningApplicationId` on document types, and add document-to-application resolution. + + The SDK adds `owningApplicationId` to the wire `DocumentType`, populated from the type's + metadata. `DocumentType` (state.core) now carries `owningApplicationId?: string` and + `FoundryDocumentService` maps it through, so it rides along on every + `loadDocumentTypeByName` / `getDocumentType` call. + + Adds `resolveDocumentApplication(docRef)` to `DocumentService` (and `app.state`), backed by + the new `GET /v2/pack/documents/{documentId}/resolveApplication` endpoint. Given a document, + it resolves the owning application id from the document's type metadata, returning `undefined` + when none is configured. Unsupported on the in-memory and demo services. + + `createDocumentEditDescription` no longer sends the deprecated `eventData.version` or top-level + `eventType` fields (both are now optional in the SDK/API and superseded by `eventData.schemaVersion` + and `eventData.eventType`). + + `searchDocuments` accepts an optional `ontologyRid` in its options, forwarded to the search + request to scope results to a specific ontology. Not defaulted — omitted when unset, in which + case the document type name is searched across all ontologies. + +### Patch Changes + +- Updated dependencies [9d0c61a] + - @palantir/pack.state.core@0.19.0 + ## 0.20.0 ### Minor Changes diff --git a/packages/state/foundry-event/package.json b/packages/state/foundry-event/package.json index 4919101f..8c05b73d 100644 --- a/packages/state/foundry-event/package.json +++ b/packages/state/foundry-event/package.json @@ -1,6 +1,6 @@ { "name": "@palantir/pack.state.foundry-event", - "version": "0.20.0", + "version": "0.21.0", "description": "PACK event service for real-time document synchronization", "license": "Apache-2.0", "repository": { diff --git a/packages/state/foundry/CHANGELOG.md b/packages/state/foundry/CHANGELOG.md index da7cd862..c871c4c9 100644 --- a/packages/state/foundry/CHANGELOG.md +++ b/packages/state/foundry/CHANGELOG.md @@ -1,5 +1,35 @@ # @palantir/pack.state.foundry +## 0.22.0 + +### Minor Changes + +- 9d0c61a: Bump `@osdk/foundry.pack` to `^2.68.0`, surface `owningApplicationId` on document types, and add document-to-application resolution. + + The SDK adds `owningApplicationId` to the wire `DocumentType`, populated from the type's + metadata. `DocumentType` (state.core) now carries `owningApplicationId?: string` and + `FoundryDocumentService` maps it through, so it rides along on every + `loadDocumentTypeByName` / `getDocumentType` call. + + Adds `resolveDocumentApplication(docRef)` to `DocumentService` (and `app.state`), backed by + the new `GET /v2/pack/documents/{documentId}/resolveApplication` endpoint. Given a document, + it resolves the owning application id from the document's type metadata, returning `undefined` + when none is configured. Unsupported on the in-memory and demo services. + + `createDocumentEditDescription` no longer sends the deprecated `eventData.version` or top-level + `eventType` fields (both are now optional in the SDK/API and superseded by `eventData.schemaVersion` + and `eventData.eventType`). + + `searchDocuments` accepts an optional `ontologyRid` in its options, forwarded to the search + request to scope results to a specific ontology. Not defaulted — omitted when unset, in which + case the document type name is searched across all ontologies. + +### Patch Changes + +- Updated dependencies [9d0c61a] + - @palantir/pack.state.core@0.19.0 + - @palantir/pack.state.foundry-event@0.21.0 + ## 0.21.0 ### Minor Changes diff --git a/packages/state/foundry/package.json b/packages/state/foundry/package.json index aaa67097..3b319a64 100644 --- a/packages/state/foundry/package.json +++ b/packages/state/foundry/package.json @@ -1,6 +1,6 @@ { "name": "@palantir/pack.state.foundry", - "version": "0.21.0", + "version": "0.22.0", "description": "PACK State service that integrates with Palantir Foundry platform APIs.", "license": "Apache-2.0", "repository": { diff --git a/packages/state/react/CHANGELOG.md b/packages/state/react/CHANGELOG.md index 29016410..f8013c65 100644 --- a/packages/state/react/CHANGELOG.md +++ b/packages/state/react/CHANGELOG.md @@ -1,5 +1,12 @@ # @palantir/pack.state.react +## 0.20.0 + +### Patch Changes + +- Updated dependencies [9d0c61a] + - @palantir/pack.state.core@0.19.0 + ## 0.19.0 ### Minor Changes diff --git a/packages/state/react/package.json b/packages/state/react/package.json index bc9dea43..c36ffd3a 100644 --- a/packages/state/react/package.json +++ b/packages/state/react/package.json @@ -1,6 +1,6 @@ { "name": "@palantir/pack.state.react", - "version": "0.19.0", + "version": "0.20.0", "description": "PACK State logic and utilities", "license": "Apache-2.0", "repository": {