diff --git a/.changeset/bumpy-socks-doubt.md b/.changeset/bumpy-socks-doubt.md deleted file mode 100644 index 0c096bf..0000000 --- a/.changeset/bumpy-socks-doubt.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@open-rpc/docs-react': patch -'@open-rpc/logs-react': patch -'@open-rpc/playground': patch -'@open-rpc/inspector': patch ---- - -This change here reflects new stricter adherence to the OpenRPC spec and allows tooling to accurately support multiple versions diff --git a/.changeset/calm-apples-kiss.md b/.changeset/calm-apples-kiss.md deleted file mode 100644 index a845151..0000000 --- a/.changeset/calm-apples-kiss.md +++ /dev/null @@ -1,2 +0,0 @@ ---- ---- diff --git a/.changeset/chilly-worms-boil.md b/.changeset/chilly-worms-boil.md deleted file mode 100644 index a845151..0000000 --- a/.changeset/chilly-worms-boil.md +++ /dev/null @@ -1,2 +0,0 @@ ---- ---- diff --git a/.changeset/eager-areas-jog.md b/.changeset/eager-areas-jog.md deleted file mode 100644 index a845151..0000000 --- a/.changeset/eager-areas-jog.md +++ /dev/null @@ -1,2 +0,0 @@ ---- ---- diff --git a/.changeset/migrate-to-tool-types.md b/.changeset/migrate-to-tool-types.md deleted file mode 100644 index c67f943..0000000 --- a/.changeset/migrate-to-tool-types.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@open-rpc/docs-react": patch -"@open-rpc/inspector": patch -"@open-rpc/logs-react": patch -"@open-rpc/playground": patch ---- - -chore: replace @open-rpc/meta-schema with internal @open-rpc/tool-types package providing versioned union types (V1_3 | V1_4) from @open-rpc/spec-types. diff --git a/.changeset/mysterious-lion-explain.md b/.changeset/mysterious-lion-explain.md deleted file mode 100644 index 1e5bf5b..0000000 --- a/.changeset/mysterious-lion-explain.md +++ /dev/null @@ -1,4 +0,0 @@ ---- ---- - -docs: update AGENT instructions with changeset requirement diff --git a/.changeset/new-stars-change.md b/.changeset/new-stars-change.md deleted file mode 100644 index 28732b8..0000000 --- a/.changeset/new-stars-change.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@open-rpc/playground': patch ---- - -fix overflow issue on inspector splitter diff --git a/.changeset/node-version-alignment.md b/.changeset/node-version-alignment.md deleted file mode 100644 index aea72d0..0000000 --- a/.changeset/node-version-alignment.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@open-rpc/docs-react": patch -"@open-rpc/inspector": patch -"@open-rpc/json-schema-to-react-tree": patch -"@open-rpc/extensions": patch ---- - -Align minimum Node.js version to 20.11.1 across packages and documentation. diff --git a/.changeset/purple-buckets-wonder.md b/.changeset/purple-buckets-wonder.md deleted file mode 100644 index bd89a06..0000000 --- a/.changeset/purple-buckets-wonder.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"@open-rpc/extensions": patch ---- - -Add the `x-implemented-by` OpenRPC extension to `@open-rpc/extensions`, including -its JSON definition, TypeScript exports, and documentation. diff --git a/.changeset/wicked-meals-lie.md b/.changeset/wicked-meals-lie.md deleted file mode 100644 index 736f917..0000000 --- a/.changeset/wicked-meals-lie.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@open-rpc/docs-react": patch -"@open-rpc/json-schema-to-react-tree": patch ---- -Fix display of union schema types by joining array types with " | " instead of concatenating. diff --git a/CHANGELOG.md b/CHANGELOG.md index 2abafa3..7d83daa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# 1.0.0 (2025-03-04) +# 1.0.0 (2026-02-27) # ๐Ÿš€ Features diff --git a/packages/docs-react/CHANGELOG.md b/packages/docs-react/CHANGELOG.md index fb4fb8a..b9864de 100644 --- a/packages/docs-react/CHANGELOG.md +++ b/packages/docs-react/CHANGELOG.md @@ -1,19 +1,51 @@ +# @open-rpc/docs-react 2.1.2 (2026-02-27) + +## ๐Ÿ› Bug Fixes + +* replace meta-schema with internal union types from spec ([5784475](https://github.com/open-rpc/tools/commit/57844750242dc714cd0b7a62ab6faf1976afbd15)) +* add support for hiding extensions and for merging error groups into errors for documentation ([2ef3dd3](https://github.com/open-rpc/tools/commit/2ef3dd31fd513d86253bc78faebe98aadec1671e)) + +## ๐Ÿ“ Documentation + +* require changesets ([38e1e51](https://github.com/open-rpc/tools/commit/38e1e5112537c1fb0e6364899cdabae3b9ea8f6d)) + +## ๐Ÿงน Chores + +* enforce Node 20.11.1 ([5154cbd](https://github.com/open-rpc/tools/commit/5154cbd37e5f96fe36d446747852f7d85ce2364e)) +* version packages and generate changelog ([07cc7fd](https://github.com/open-rpc/tools/commit/07cc7fd85c3e034cca4973b4a003c6535e6bbb13)) + +## Other Changes + +* fix docs-react union type display ([edf3b8e](https://github.com/open-rpc/tools/commit/edf3b8e8ac1b3e78ac3f52dfa46c9d85ccf33d24)) + # @open-rpc/docs-react 2.1.1 (2025-03-04) +## 2.1.2 + +### Patch Changes + +- a4bb1f5: This change here reflects new stricter adherence to the OpenRPC spec and allows tooling to accurately support multiple versions +- 5784475: chore: replace @open-rpc/meta-schema with internal @open-rpc/tool-types package providing versioned union types (V1_3 | V1_4) from @open-rpc/spec-types. +- 5154cbd: Align minimum Node.js version to 20.11.1 across packages and documentation. +- edf3b8e: Fix display of union schema types by joining array types with " | " instead of concatenating. +- Updated dependencies [5154cbd] +- Updated dependencies [edf3b8e] + - @open-rpc/json-schema-to-react-tree@0.1.2 + # ๐Ÿš€ Features -* add support for extensions in docs react and tests ([adc9195](https://github.com/open-rpc/tools/commit/adc9195bc44801d1afe3ba37aca3ea4033b73f73)) -* add support for supported extension error groups ([7d9a214](https://github.com/open-rpc/tools/commit/7d9a214716f4325275599efed3583a012c8120a3)) +- add support for extensions in docs react and tests ([adc9195](https://github.com/open-rpc/tools/commit/adc9195bc44801d1afe3ba37aca3ea4033b73f73)) +- add support for supported extension error groups ([7d9a214](https://github.com/open-rpc/tools/commit/7d9a214716f4325275599efed3583a012c8120a3)) ## ๐Ÿ› Bug Fixes -* add support for hiding extensions and for merging error groups into errors for documentation ([2ef3dd3](https://github.com/open-rpc/tools/commit/2ef3dd31fd513d86253bc78faebe98aadec1671e)) -* roll back react-json view change ([da1792a](https://github.com/open-rpc/tools/commit/da1792ac02ed5f702c01024dc7f17663fbad2e17)) -* update ux to match more of the old playground ([957afee](https://github.com/open-rpc/tools/commit/957afeebada73c0f893953f62324b41611bd7ae9)) +- add support for hiding extensions and for merging error groups into errors for documentation ([2ef3dd3](https://github.com/open-rpc/tools/commit/2ef3dd31fd513d86253bc78faebe98aadec1671e)) +- roll back react-json view change ([da1792a](https://github.com/open-rpc/tools/commit/da1792ac02ed5f702c01024dc7f17663fbad2e17)) +- update ux to match more of the old playground ([957afee](https://github.com/open-rpc/tools/commit/957afeebada73c0f893953f62324b41611bd7ae9)) ## ๐Ÿงน Chores -* lint ([a0da8b6](https://github.com/open-rpc/tools/commit/a0da8b64a47942f1e2ca9f0037e02d72b70f6205)) +- lint ([a0da8b6](https://github.com/open-rpc/tools/commit/a0da8b64a47942f1e2ca9f0037e02d72b70f6205)) # @open-rpc/docs-react 2.1.0 (2025-03-03) diff --git a/packages/docs-react/package.json b/packages/docs-react/package.json index 2d2db1f..903fd85 100644 --- a/packages/docs-react/package.json +++ b/packages/docs-react/package.json @@ -1,6 +1,6 @@ { "name": "@open-rpc/docs-react", - "version": "2.1.1", + "version": "2.1.2", "description": "", "type": "module", "repository": { @@ -35,7 +35,7 @@ "dependencies": { "@microlink/react-json-view": "1.26.1", "@open-rpc/examples": "^1.6.1", - "@open-rpc/json-schema-to-react-tree": "0.1.1", + "@open-rpc/json-schema-to-react-tree": "0.1.2", "@uiw/react-json-view": "^2.0.0-alpha.30", "hash-color-material": "^1.1.3", "html-url-attributes": "^3.0.1", diff --git a/packages/extensions/CHANGELOG.md b/packages/extensions/CHANGELOG.md index 7dabb56..5d87894 100644 --- a/packages/extensions/CHANGELOG.md +++ b/packages/extensions/CHANGELOG.md @@ -1,8 +1,8 @@ -# @open-rpc/extensions 0.0.2 (2025-03-04) +# @open-rpc/extensions 0.0.3 (2026-02-27) ## ๐Ÿš€ Features -* initial extensions repo ([3a8894e](https://github.com/open-rpc/tools/commit/3a8894e91cfcf139a786da0ff99491f00d726506)) +* **extensions:** add x-implemented-by extension ([6addf87](https://github.com/open-rpc/tools/commit/6addf873e794cdf06c72ff1276bea672d43ba6a5)) ## ๐Ÿ› Bug Fixes @@ -10,8 +10,33 @@ ## ๐Ÿงน Chores +* enforce Node 20.11.1 ([5154cbd](https://github.com/open-rpc/tools/commit/5154cbd37e5f96fe36d446747852f7d85ce2364e)) +* update readme ([10451ea](https://github.com/open-rpc/tools/commit/10451eaccd61eb9b3c37257984ef315819a1d702)) +* version packages and generate changelog ([07cc7fd](https://github.com/open-rpc/tools/commit/07cc7fd85c3e034cca4973b4a003c6535e6bbb13)) * fix type to support data as any type like error object ([9742238](https://github.com/open-rpc/tools/commit/9742238c699adc32839c65f655b1b4d459654e69)) +# @open-rpc/extensions 0.0.2 (2025-03-04) + +## 0.0.3 + +### Patch Changes + +- 5154cbd: Align minimum Node.js version to 20.11.1 across packages and documentation. +- 6addf87: Add the `x-implemented-by` OpenRPC extension to `@open-rpc/extensions`, including + its JSON definition, TypeScript exports, and documentation. + +## ๐Ÿš€ Features + +- initial extensions repo ([3a8894e](https://github.com/open-rpc/tools/commit/3a8894e91cfcf139a786da0ff99491f00d726506)) + +## ๐Ÿ› Bug Fixes + +- extensions specification and add missing readme ([9bbf73d](https://github.com/open-rpc/tools/commit/9bbf73dcd8a87db8876336a1d6676db8a8d94a2f)) + +## ๐Ÿงน Chores + +- fix type to support data as any type like error object ([9742238](https://github.com/open-rpc/tools/commit/9742238c699adc32839c65f655b1b4d459654e69)) + # @open-rpc/extensions 0.0.1 (2025-03-03) ## 0.0.2 diff --git a/packages/extensions/package.json b/packages/extensions/package.json index 2916538..26b5fb4 100644 --- a/packages/extensions/package.json +++ b/packages/extensions/package.json @@ -1,6 +1,6 @@ { "name": "@open-rpc/extensions", - "version": "0.0.2", + "version": "0.0.3", "description": "@OpenRPC - extensions repository", "type": "module", "main": "./dist/index.es.js", diff --git a/packages/inspector/CHANGELOG.md b/packages/inspector/CHANGELOG.md index d281ece..bdbb0a6 100644 --- a/packages/inspector/CHANGELOG.md +++ b/packages/inspector/CHANGELOG.md @@ -1,16 +1,42 @@ -# @open-rpc/inspector 2.0.3 (2025-03-04) +# @open-rpc/inspector 2.0.4 (2026-02-27) -# ๐Ÿ› Bug Fixes +## ๐Ÿ› Bug Fixes +* change add support for schema versioning ([cc7b62c](https://github.com/open-rpc/tools/commit/cc7b62ce25cca1a986ca9a34525fa8fcf9905bfe)) +* replace meta-schema with internal union types from spec ([5784475](https://github.com/open-rpc/tools/commit/57844750242dc714cd0b7a62ab6faf1976afbd15)) * tsconfig to output to dist for inspector ([75bd680](https://github.com/open-rpc/tools/commit/75bd680b503fbdab606133da387ff7ab9a87b233)) * add missing types ([c9288ba](https://github.com/open-rpc/tools/commit/c9288ba814e32076a243c07017f17da926df766a)) -* missing onChange transport event ([b671928](https://github.com/open-rpc/tools/commit/b671928d644d364c54171f02612cb83af663346a)) ## ๐Ÿงน Chores -* version packages and generate changelog ([90adaeb](https://github.com/open-rpc/tools/commit/90adaeb28bbb5a2fb4aca758ce9dc29eca21e16a)) -* rm old and add updated react-json-view ([c6f9aac](https://github.com/open-rpc/tools/commit/c6f9aac69415c38092181f92b6817c7281c67303)) -* fix typo ([914a66e](https://github.com/open-rpc/tools/commit/914a66ee41bac7fcc84742283824e5298a0bedd7)) +* bump schema utils to latest 2.2.0 ([0582e8b](https://github.com/open-rpc/tools/commit/0582e8b23c1c7d1b75523c6b6d114acf4c38d36a)) +* enforce Node 20.11.1 ([5154cbd](https://github.com/open-rpc/tools/commit/5154cbd37e5f96fe36d446747852f7d85ce2364e)) +* version packages and generate changelog ([07cc7fd](https://github.com/open-rpc/tools/commit/07cc7fd85c3e034cca4973b4a003c6535e6bbb13)) + +# @open-rpc/inspector 2.0.3 (2025-03-04) + +## 2.0.4 + +### Patch Changes + +- a4bb1f5: This change here reflects new stricter adherence to the OpenRPC spec and allows tooling to accurately support multiple versions +- 5784475: chore: replace @open-rpc/meta-schema with internal @open-rpc/tool-types package providing versioned union types (V1_3 | V1_4) from @open-rpc/spec-types. +- 5154cbd: Align minimum Node.js version to 20.11.1 across packages and documentation. +- Updated dependencies [a4bb1f5] +- Updated dependencies [5784475] + - @open-rpc/logs-react@2.0.2 + +# ๐Ÿ› Bug Fixes + +- tsconfig to output to dist for inspector ([75bd680](https://github.com/open-rpc/tools/commit/75bd680b503fbdab606133da387ff7ab9a87b233)) +- add missing types ([c9288ba](https://github.com/open-rpc/tools/commit/c9288ba814e32076a243c07017f17da926df766a)) +- missing onChange transport event ([b671928](https://github.com/open-rpc/tools/commit/b671928d644d364c54171f02612cb83af663346a)) + +## ๐Ÿงน Chores + +- version packages and generate changelog ([90adaeb](https://github.com/open-rpc/tools/commit/90adaeb28bbb5a2fb4aca758ce9dc29eca21e16a)) +- rm old and add updated react-json-view ([c6f9aac](https://github.com/open-rpc/tools/commit/c6f9aac69415c38092181f92b6817c7281c67303)) +- fix typo ([914a66e](https://github.com/open-rpc/tools/commit/914a66ee41bac7fcc84742283824e5298a0bedd7)) # @open-rpc/inspector 2.0.2 (2025-03-03) diff --git a/packages/inspector/package.json b/packages/inspector/package.json index e9a2f36..5402b19 100644 --- a/packages/inspector/package.json +++ b/packages/inspector/package.json @@ -1,6 +1,6 @@ { "name": "@open-rpc/inspector", - "version": "2.0.3", + "version": "2.0.4", "description": "OpenRPC Inspector", "type": "module", "module": "./dist/index.es.js", @@ -57,7 +57,7 @@ }, "dependencies": { "@open-rpc/client-js": "^1.6.3", - "@open-rpc/logs-react": "2.0.1", + "@open-rpc/logs-react": "2.0.2", "@open-rpc/tool-types": "*", "@open-rpc/schema-utils-js": "2.2.1", "@rehooks/window-size": "^1.0.2", diff --git a/packages/json-schema-to-react-tree/CHANGELOG.md b/packages/json-schema-to-react-tree/CHANGELOG.md index 5e333ea..c408cd8 100644 --- a/packages/json-schema-to-react-tree/CHANGELOG.md +++ b/packages/json-schema-to-react-tree/CHANGELOG.md @@ -1,12 +1,29 @@ +# @open-rpc/json-schema-to-react-tree 0.1.2 (2026-02-27) + +## ๐Ÿงน Chores + +* enforce Node 20.11.1 ([5154cbd](https://github.com/open-rpc/tools/commit/5154cbd37e5f96fe36d446747852f7d85ce2364e)) + +## Other Changes + +* fix docs-react union type display ([edf3b8e](https://github.com/open-rpc/tools/commit/edf3b8e8ac1b3e78ac3f52dfa46c9d85ccf33d24)) + # @open-rpc/json-schema-to-react-tree 0.1.1 (2025-03-03) +## 0.1.2 + +### Patch Changes + +- 5154cbd: Align minimum Node.js version to 20.11.1 across packages and documentation. +- edf3b8e: Fix display of union schema types by joining array types with " | " instead of concatenating. + # ๐Ÿš€ Features -* major update to use esm, material 6.xx and react 18 ([850046f](https://github.com/open-rpc/tools/commit/850046fa4b226f1fca3d02d83620618102e9a992)) +- major update to use esm, material 6.xx and react 18 ([850046f](https://github.com/open-rpc/tools/commit/850046fa4b226f1fca3d02d83620618102e9a992)) ## ๐Ÿงน Chores -* version packages and generate changelog ([3fb58d0](https://github.com/open-rpc/tools/commit/3fb58d00d4676b4de0cf60c8aefffeb2a77ae883)) +- version packages and generate changelog ([3fb58d0](https://github.com/open-rpc/tools/commit/3fb58d00d4676b4de0cf60c8aefffeb2a77ae883)) # @open-rpc/json-schema-to-react-tree 0.1.0 (2025-02-26) diff --git a/packages/json-schema-to-react-tree/package.json b/packages/json-schema-to-react-tree/package.json index 873ea84..ad00515 100644 --- a/packages/json-schema-to-react-tree/package.json +++ b/packages/json-schema-to-react-tree/package.json @@ -1,6 +1,6 @@ { "name": "@open-rpc/json-schema-to-react-tree", - "version": "0.1.1", + "version": "0.1.2", "homepage": "", "description": "json-schema to react material-ui tree", "type": "module", diff --git a/packages/logs-react/CHANGELOG.md b/packages/logs-react/CHANGELOG.md index 40b3747..4a3e5e1 100644 --- a/packages/logs-react/CHANGELOG.md +++ b/packages/logs-react/CHANGELOG.md @@ -1,20 +1,38 @@ +# @open-rpc/logs-react 2.0.2 (2026-02-27) + +## ๐Ÿ› Bug Fixes + +* change add support for schema versioning ([cc7b62c](https://github.com/open-rpc/tools/commit/cc7b62ce25cca1a986ca9a34525fa8fcf9905bfe)) +* replace meta-schema with internal union types from spec ([5784475](https://github.com/open-rpc/tools/commit/57844750242dc714cd0b7a62ab6faf1976afbd15)) + +## ๐Ÿ“ Documentation + +* require changesets ([38e1e51](https://github.com/open-rpc/tools/commit/38e1e5112537c1fb0e6364899cdabae3b9ea8f6d)) + # @open-rpc/logs-react 2.0.1 (2025-03-03) +## 2.0.2 + +### Patch Changes + +- a4bb1f5: This change here reflects new stricter adherence to the OpenRPC spec and allows tooling to accurately support multiple versions +- 5784475: chore: replace @open-rpc/meta-schema with internal @open-rpc/tool-types package providing versioned union types (V1_3 | V1_4) from @open-rpc/spec-types. + # ๐Ÿš€ Features -* major update to use esm, material 6.xx and react 18 ([850046f](https://github.com/open-rpc/tools/commit/850046fa4b226f1fca3d02d83620618102e9a992)) +- major update to use esm, material 6.xx and react 18 ([850046f](https://github.com/open-rpc/tools/commit/850046fa4b226f1fca3d02d83620618102e9a992)) ## ๐Ÿ› Bug Fixes -* wip build to use esmodules instead ([2ea552c](https://github.com/open-rpc/tools/commit/2ea552c4bbf09d8ddaff44ae2ae7660841db5efb)) -* get build:package working ([b334b05](https://github.com/open-rpc/tools/commit/b334b050fa22564ceb21af136c86180c6b7d5103)) -* **logs-react:** fix eslint errors in cardList and LogChips ([d8b70aa](https://github.com/open-rpc/tools/commit/d8b70aa28c673598dd05633e2f16137299db772c)) +- wip build to use esmodules instead ([2ea552c](https://github.com/open-rpc/tools/commit/2ea552c4bbf09d8ddaff44ae2ae7660841db5efb)) +- get build:package working ([b334b05](https://github.com/open-rpc/tools/commit/b334b050fa22564ceb21af136c86180c6b7d5103)) +- **logs-react:** fix eslint errors in cardList and LogChips ([d8b70aa](https://github.com/open-rpc/tools/commit/d8b70aa28c673598dd05633e2f16137299db772c)) ## ๐Ÿงน Chores -* prettier linting ([bab6d14](https://github.com/open-rpc/tools/commit/bab6d14d83bcf34dedcc2035b8369afdd01246c2)) -* version packages and generate changelog ([3fb58d0](https://github.com/open-rpc/tools/commit/3fb58d00d4676b4de0cf60c8aefffeb2a77ae883)) -* adjust package.json to properly reflect package repos ([91eef52](https://github.com/open-rpc/tools/commit/91eef5201fc431aa11bfd4d5b542fb37a1330278)) +- prettier linting ([bab6d14](https://github.com/open-rpc/tools/commit/bab6d14d83bcf34dedcc2035b8369afdd01246c2)) +- version packages and generate changelog ([3fb58d0](https://github.com/open-rpc/tools/commit/3fb58d00d4676b4de0cf60c8aefffeb2a77ae883)) +- adjust package.json to properly reflect package repos ([91eef52](https://github.com/open-rpc/tools/commit/91eef5201fc431aa11bfd4d5b542fb37a1330278)) # @open-rpc/logs-react 2.0.0 (2025-02-26) diff --git a/packages/logs-react/package.json b/packages/logs-react/package.json index cd3cbc2..f56d16f 100644 --- a/packages/logs-react/package.json +++ b/packages/logs-react/package.json @@ -1,6 +1,6 @@ { "name": "@open-rpc/logs-react", - "version": "2.0.1", + "version": "2.0.2", "description": "", "type": "module", "module": "./dist/index.es.js", diff --git a/packages/playground/CHANGELOG.md b/packages/playground/CHANGELOG.md index 5c43505..4eb30fa 100644 --- a/packages/playground/CHANGELOG.md +++ b/packages/playground/CHANGELOG.md @@ -1,20 +1,50 @@ -# @open-rpc/playground 1.1.7 (2025-03-04) +# @open-rpc/playground 1.1.8 (2026-02-27) -# ๐Ÿ› Bug Fixes +## ๐Ÿ› Bug Fixes +* change add support for schema versioning ([cc7b62c](https://github.com/open-rpc/tools/commit/cc7b62ce25cca1a986ca9a34525fa8fcf9905bfe)) +* replace meta-schema with internal union types from spec ([5784475](https://github.com/open-rpc/tools/commit/57844750242dc714cd0b7a62ab6faf1976afbd15)) +* overflow issue with inspector popout ([f800257](https://github.com/open-rpc/tools/commit/f80025739b966e44dac03ec5d14417c0a0d0a1bf)) * add support for hiding extensions and for merging error groups into errors for documentation ([2ef3dd3](https://github.com/open-rpc/tools/commit/2ef3dd31fd513d86253bc78faebe98aadec1671e)) * this change temporarily points schema resolution to a local copy This change is temporary. Earlier patches did not fully resolve the meta-schema locally and caused recursive schema definition errors. ([a077f12](https://github.com/open-rpc/tools/commit/a077f12c21ec6915062e6630e54beccb3e6feba2)) -* change supports local schema for document change update signal ([9bbf9ce](https://github.com/open-rpc/tools/commit/9bbf9ceeaba107e6d7844c481e76bc337984ed7f)) -* temp. use local JSONSchema definition ([9d66e8a](https://github.com/open-rpc/tools/commit/9d66e8acd73143aa4cb44d9bcbf075d3767ca4a5)) -* caching issue on partially loaded or empty docs ([88c74bd](https://github.com/open-rpc/tools/commit/88c74bd03667a2b14719f13f5c612b1f50c412fc)) -* update themes for json syntax highlighting ([abe9c58](https://github.com/open-rpc/tools/commit/abe9c5866145d88a870b5b39a3eb4c847761a920)) -* relax styling constraints and add more styles to themes to match older playground ([a92f0b2](https://github.com/open-rpc/tools/commit/a92f0b271f26ec4038e7abd66f217e43ce925259)) ## ๐Ÿงน Chores -* version packages and generate changelog ([5906111](https://github.com/open-rpc/tools/commit/5906111dc3c7f4d94084a173d1a7dbb541220afd)) -* add playground readme ([ba19e0e](https://github.com/open-rpc/tools/commit/ba19e0ef8badc6419bbb6150a53f884a70ca261e)) -* prettier linting update ([7fdb37b](https://github.com/open-rpc/tools/commit/7fdb37bd8033ead319dd7f1663687d4ac2722494)) +* rm console.log ([ea74616](https://github.com/open-rpc/tools/commit/ea7461677199932b616c7e5240f2333b50d9c44f)) +* bump schema utils to latest 2.2.0 ([0582e8b](https://github.com/open-rpc/tools/commit/0582e8b23c1c7d1b75523c6b6d114acf4c38d36a)) +* version packages and generate changelog ([07cc7fd](https://github.com/open-rpc/tools/commit/07cc7fd85c3e034cca4973b4a003c6535e6bbb13)) + +# @open-rpc/playground 1.1.7 (2025-03-04) + +## 1.1.8 + +### Patch Changes + +- a4bb1f5: This change here reflects new stricter adherence to the OpenRPC spec and allows tooling to accurately support multiple versions +- 5784475: chore: replace @open-rpc/meta-schema with internal @open-rpc/tool-types package providing versioned union types (V1_3 | V1_4) from @open-rpc/spec-types. +- 56afcab: fix overflow issue on inspector splitter +- Updated dependencies [a4bb1f5] +- Updated dependencies [5784475] +- Updated dependencies [5154cbd] +- Updated dependencies [edf3b8e] + - @open-rpc/docs-react@2.1.2 + - @open-rpc/inspector@2.0.4 + +# ๐Ÿ› Bug Fixes + +- add support for hiding extensions and for merging error groups into errors for documentation ([2ef3dd3](https://github.com/open-rpc/tools/commit/2ef3dd31fd513d86253bc78faebe98aadec1671e)) +- this change temporarily points schema resolution to a local copy This change is temporary. Earlier patches did not fully resolve the meta-schema locally and caused recursive schema definition errors. ([a077f12](https://github.com/open-rpc/tools/commit/a077f12c21ec6915062e6630e54beccb3e6feba2)) +- change supports local schema for document change update signal ([9bbf9ce](https://github.com/open-rpc/tools/commit/9bbf9ceeaba107e6d7844c481e76bc337984ed7f)) +- temp. use local JSONSchema definition ([9d66e8a](https://github.com/open-rpc/tools/commit/9d66e8acd73143aa4cb44d9bcbf075d3767ca4a5)) +- caching issue on partially loaded or empty docs ([88c74bd](https://github.com/open-rpc/tools/commit/88c74bd03667a2b14719f13f5c612b1f50c412fc)) +- update themes for json syntax highlighting ([abe9c58](https://github.com/open-rpc/tools/commit/abe9c5866145d88a870b5b39a3eb4c847761a920)) +- relax styling constraints and add more styles to themes to match older playground ([a92f0b2](https://github.com/open-rpc/tools/commit/a92f0b271f26ec4038e7abd66f217e43ce925259)) + +## ๐Ÿงน Chores + +- version packages and generate changelog ([5906111](https://github.com/open-rpc/tools/commit/5906111dc3c7f4d94084a173d1a7dbb541220afd)) +- add playground readme ([ba19e0e](https://github.com/open-rpc/tools/commit/ba19e0ef8badc6419bbb6150a53f884a70ca261e)) +- prettier linting update ([7fdb37b](https://github.com/open-rpc/tools/commit/7fdb37bd8033ead319dd7f1663687d4ac2722494)) # @open-rpc/playground 1.1.6 (2025-03-03) diff --git a/packages/playground/package.json b/packages/playground/package.json index 1cba531..8a6d6d9 100644 --- a/packages/playground/package.json +++ b/packages/playground/package.json @@ -1,6 +1,6 @@ { "name": "@open-rpc/playground", - "version": "1.1.7", + "version": "1.1.8", "homepage": "https://playground.open-rpc.org/", "bin": { "open-rpc-playground": "./bin/cli.js" @@ -20,9 +20,9 @@ "@mui/icons-material": "6.3.1", "@mui/lab": "6.0.0-beta.22", "@mui/material": "6.3.1", - "@open-rpc/docs-react": "2.1.1", + "@open-rpc/docs-react": "2.1.2", "@open-rpc/examples": "^1.3.3", - "@open-rpc/inspector": "2.0.3", + "@open-rpc/inspector": "2.0.4", "@open-rpc/monaco-editor-react": "0.1.1", "@open-rpc/schema-utils-js": "2.2.1", "@open-rpc/tool-types": "*", diff --git a/packages/tool-types/CHANGELOG.md b/packages/tool-types/CHANGELOG.md new file mode 100644 index 0000000..96d82d6 --- /dev/null +++ b/packages/tool-types/CHANGELOG.md @@ -0,0 +1,7 @@ +# @open-rpc/tool-types 0.0.0 (2026-02-27) + +## ๐Ÿ› Bug Fixes + +* change add support for schema versioning ([cc7b62c](https://github.com/open-rpc/tools/commit/cc7b62ce25cca1a986ca9a34525fa8fcf9905bfe)) +* replace meta-schema with internal union types from spec ([5784475](https://github.com/open-rpc/tools/commit/57844750242dc714cd0b7a62ab6faf1976afbd15)) +