From e7aed5e86078c91bfee5641607231f672fc7752f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 21 Aug 2024 12:20:18 +0000 Subject: [PATCH] chore: release --- .changeset/flat-glasses-breathe.md | 14 -------------- .changeset/long-seahorses-eat.md | 9 --------- .changeset/tasty-terms-exercise.md | 5 ----- packages/ckan/CHANGELOG.md | 6 ++++++ packages/ckan/package.json | 6 +++--- packages/core/CHANGELOG.md | 14 ++++++++++++++ packages/core/package.json | 2 +- packages/entity-renderer/CHANGELOG.md | 9 +++++++++ packages/entity-renderer/package.json | 8 ++++---- packages/graph-explorer/CHANGELOG.md | 6 ++++++ packages/graph-explorer/package.json | 4 ++-- packages/handler-fetch/CHANGELOG.md | 6 ++++++ packages/handler-fetch/package.json | 4 ++-- packages/i18n/package.json | 2 +- packages/iiif/CHANGELOG.md | 6 ++++++ packages/iiif/package.json | 4 ++-- packages/markdown-content/CHANGELOG.md | 6 ++++++ packages/markdown-content/package.json | 4 ++-- packages/sparql-proxy/CHANGELOG.md | 13 +++++++++++++ packages/sparql-proxy/package.json | 4 ++-- packages/spex/CHANGELOG.md | 6 ++++++ packages/spex/package.json | 4 ++-- packages/trifid/CHANGELOG.md | 15 +++++++++++++++ packages/trifid/package.json | 16 ++++++++-------- packages/yasgui/CHANGELOG.md | 6 ++++++ packages/yasgui/package.json | 4 ++-- 26 files changed, 124 insertions(+), 59 deletions(-) delete mode 100644 .changeset/flat-glasses-breathe.md delete mode 100644 .changeset/long-seahorses-eat.md delete mode 100644 .changeset/tasty-terms-exercise.md diff --git a/.changeset/flat-glasses-breathe.md b/.changeset/flat-glasses-breathe.md deleted file mode 100644 index 6c6d5cdc..00000000 --- a/.changeset/flat-glasses-breathe.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"@zazuko/trifid-markdown-content": patch -"@zazuko/trifid-entity-renderer": patch -"trifid-plugin-graph-explorer": patch -"trifid-handler-fetch": patch -"@zazuko/trifid-plugin-sparql-proxy": patch -"trifid-plugin-yasgui": patch -"@zazuko/trifid-plugin-ckan": patch -"trifid-core": patch -"@zazuko/trifid-plugin-iiif": patch -"trifid-plugin-spex": patch ---- - -Return `reply` in the `routeHandler`, in order to be compatible with the support for compression. diff --git a/.changeset/long-seahorses-eat.md b/.changeset/long-seahorses-eat.md deleted file mode 100644 index cb04c12c..00000000 --- a/.changeset/long-seahorses-eat.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"trifid-core": major ---- - -Support for compression by default. - -This change is considered as a breaking change as the `routeHandler` now needs to return the `reply` object in order to be compatible with the support for compression. This is necessary to allow the server to handle the compression of the response. - -Before migrating, make sure to update your custom plugins and upgrade all plugins to the latest version. diff --git a/.changeset/tasty-terms-exercise.md b/.changeset/tasty-terms-exercise.md deleted file mode 100644 index d818dc2a..00000000 --- a/.changeset/tasty-terms-exercise.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@zazuko/trifid-plugin-sparql-proxy": minor ---- - -Serve a [SPARQL 1.1 Service Description](https://www.w3.org/TR/sparql11-service-description/), proxied from the original server (fixes #461) diff --git a/packages/ckan/CHANGELOG.md b/packages/ckan/CHANGELOG.md index d9e70b02..20f30ee4 100644 --- a/packages/ckan/CHANGELOG.md +++ b/packages/ckan/CHANGELOG.md @@ -1,5 +1,11 @@ # @zazuko/trifid-plugin-ckan +## 4.0.3 + +### Patch Changes + +- 1cafa55: Return `reply` in the `routeHandler`, in order to be compatible with the support for compression. + ## 4.0.2 ### Patch Changes diff --git a/packages/ckan/package.json b/packages/ckan/package.json index 0c7866db..0ead3e42 100644 --- a/packages/ckan/package.json +++ b/packages/ckan/package.json @@ -1,6 +1,6 @@ { "name": "@zazuko/trifid-plugin-ckan", - "version": "4.0.2", + "version": "4.0.3", "description": "Endpoint for opendata.swiss CKAN harvester", "main": "src/index.js", "types": "dist/ckan/src/index.d.ts", @@ -45,8 +45,8 @@ "chai-subset": "^1.6.0", "mocha": "^10.7.3", "rimraf": "^6.0.1", - "trifid-core": "^4.0.6", - "trifid-handler-fetch": "^3.1.0", + "trifid-core": "^5.0.0", + "trifid-handler-fetch": "^3.3.1", "typescript": "^5.5.3", "xml2js": "^0.6.2", "xml2js-xpath": "^0.13.0" diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index d7335f38..253283ef 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,19 @@ # trifid-core +## 5.0.0 + +### Major Changes + +- 1cafa55: Support for compression by default. + + This change is considered as a breaking change as the `routeHandler` now needs to return the `reply` object in order to be compatible with the support for compression. This is necessary to allow the server to handle the compression of the response. + + Before migrating, make sure to update your custom plugins and upgrade all plugins to the latest version. + +### Patch Changes + +- 1cafa55: Return `reply` in the `routeHandler`, in order to be compatible with the support for compression. + ## 4.1.0 ### Minor Changes diff --git a/packages/core/package.json b/packages/core/package.json index ca0d4b64..cfb03c24 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -2,7 +2,7 @@ "name": "trifid-core", "description": "Trifid Core", "type": "module", - "version": "4.1.0", + "version": "5.0.0", "license": "MIT", "homepage": "https://github.com/zazuko/trifid", "repository": { diff --git a/packages/entity-renderer/CHANGELOG.md b/packages/entity-renderer/CHANGELOG.md index ddf95e39..1e1bac22 100644 --- a/packages/entity-renderer/CHANGELOG.md +++ b/packages/entity-renderer/CHANGELOG.md @@ -1,5 +1,14 @@ # @zazuko/trifid-renderer-entity +## 1.2.1 + +### Patch Changes + +- 1cafa55: Return `reply` in the `routeHandler`, in order to be compatible with the support for compression. +- Updated dependencies [1cafa55] +- Updated dependencies [1cafa55] + - trifid-core@5.0.0 + ## 1.2.0 ### Minor Changes diff --git a/packages/entity-renderer/package.json b/packages/entity-renderer/package.json index e91c2797..e21a080e 100644 --- a/packages/entity-renderer/package.json +++ b/packages/entity-renderer/package.json @@ -1,6 +1,6 @@ { "name": "@zazuko/trifid-entity-renderer", - "version": "1.2.0", + "version": "1.2.1", "type": "module", "description": "Renders a RDF entity in Trifid", "main": "index.js", @@ -29,14 +29,14 @@ "lit": "^3.1.4", "mimeparse": "^0.1.4", "p-queue": "^8.0.1", - "trifid-core": "^4.0.6" + "trifid-core": "^5.0.0" }, "devDependencies": { "@rdfjs/types": "^1.1.0", "c8": "^10.1.2", "mocha": "^10.7.3", - "trifid-handler-fetch": "^3.1.0", - "trifid-plugin-yasgui": "^3.1.1" + "trifid-handler-fetch": "^3.3.1", + "trifid-plugin-yasgui": "^3.1.2" }, "files": [ "index.js", diff --git a/packages/graph-explorer/CHANGELOG.md b/packages/graph-explorer/CHANGELOG.md index 353b383e..487b06d2 100644 --- a/packages/graph-explorer/CHANGELOG.md +++ b/packages/graph-explorer/CHANGELOG.md @@ -1,5 +1,11 @@ # trifid-plugin-graph-explorer +## 2.0.3 + +### Patch Changes + +- 1cafa55: Return `reply` in the `routeHandler`, in order to be compatible with the support for compression. + ## 2.0.2 ### Patch Changes diff --git a/packages/graph-explorer/package.json b/packages/graph-explorer/package.json index 4f2822ef..1765ec59 100644 --- a/packages/graph-explorer/package.json +++ b/packages/graph-explorer/package.json @@ -3,7 +3,7 @@ "description": "Trifid Graph Explorer plugin", "type": "module", "main": "index.js", - "version": "2.0.2", + "version": "2.0.3", "license": "MIT", "homepage": "https://github.com/zazuko/trifid", "repository": { @@ -27,7 +27,7 @@ "@types/node": "^22.4.1", "c8": "^10.1.2", "mocha": "^10.7.3", - "trifid-core": "^4.0.0" + "trifid-core": "^5.0.0" }, "publishConfig": { "access": "public", diff --git a/packages/handler-fetch/CHANGELOG.md b/packages/handler-fetch/CHANGELOG.md index 53a53892..31b14a64 100644 --- a/packages/handler-fetch/CHANGELOG.md +++ b/packages/handler-fetch/CHANGELOG.md @@ -1,5 +1,11 @@ # trifid-handler-fetch +## 3.3.1 + +### Patch Changes + +- 1cafa55: Return `reply` in the `routeHandler`, in order to be compatible with the support for compression. + ## 3.3.0 ### Minor Changes diff --git a/packages/handler-fetch/package.json b/packages/handler-fetch/package.json index 3a6e27f3..020b69a6 100644 --- a/packages/handler-fetch/package.json +++ b/packages/handler-fetch/package.json @@ -2,7 +2,7 @@ "name": "trifid-handler-fetch", "description": "Fetch handler for Trifid", "type": "module", - "version": "3.3.0", + "version": "3.3.1", "license": "MIT", "main": "index.js", "types": "dist/index.d.ts", @@ -37,7 +37,7 @@ "c8": "^10.1.2", "mocha": "^10.7.3", "rimraf": "^6.0.1", - "trifid-core": "^4.0.7", + "trifid-core": "^5.0.0", "typescript": "^5.5.3" }, "publishConfig": { diff --git a/packages/i18n/package.json b/packages/i18n/package.json index eafc000b..f6d6288c 100644 --- a/packages/i18n/package.json +++ b/packages/i18n/package.json @@ -29,7 +29,7 @@ "@types/i18n": "^0.13.12", "c8": "^10.1.2", "mocha": "^10.7.3", - "trifid-core": "^4.0.3" + "trifid-core": "^5.0.0" }, "publishConfig": { "access": "public", diff --git a/packages/iiif/CHANGELOG.md b/packages/iiif/CHANGELOG.md index a16339c4..c2a23b4d 100644 --- a/packages/iiif/CHANGELOG.md +++ b/packages/iiif/CHANGELOG.md @@ -1,5 +1,11 @@ # @zazuko/trifid-plugin-iiif +## 1.0.4 + +### Patch Changes + +- 1cafa55: Return `reply` in the `routeHandler`, in order to be compatible with the support for compression. + ## 1.0.3 ### Patch Changes diff --git a/packages/iiif/package.json b/packages/iiif/package.json index 9bf02e95..daa198a6 100644 --- a/packages/iiif/package.json +++ b/packages/iiif/package.json @@ -1,6 +1,6 @@ { "name": "@zazuko/trifid-plugin-iiif", - "version": "1.0.3", + "version": "1.0.4", "type": "module", "description": "Trifid plugin to handle IIIF data", "keywords": [ @@ -33,7 +33,7 @@ "@types/jsonld": "^1.5.15", "c8": "^10.1.2", "mocha": "^10.7.3", - "trifid-core": "^4.0.6" + "trifid-core": "^5.0.0" }, "publishConfig": { "access": "public", diff --git a/packages/markdown-content/CHANGELOG.md b/packages/markdown-content/CHANGELOG.md index f8691e09..ca9ffda1 100644 --- a/packages/markdown-content/CHANGELOG.md +++ b/packages/markdown-content/CHANGELOG.md @@ -1,5 +1,11 @@ # @zazuko/trifid-markdown-content +## 2.0.3 + +### Patch Changes + +- 1cafa55: Return `reply` in the `routeHandler`, in order to be compatible with the support for compression. + ## 2.0.2 ### Patch Changes diff --git a/packages/markdown-content/package.json b/packages/markdown-content/package.json index 6ddc2df0..aab4cd72 100644 --- a/packages/markdown-content/package.json +++ b/packages/markdown-content/package.json @@ -1,6 +1,6 @@ { "name": "@zazuko/trifid-markdown-content", - "version": "2.0.2", + "version": "2.0.3", "description": "Trifid plugin to handle Markdown files", "main": "src/index.js", "type": "module", @@ -35,7 +35,7 @@ "c8": "^10.1.2", "mocha": "^10.7.3", "rimraf": "^6.0.1", - "trifid-core": "^4.0.0" + "trifid-core": "^5.0.0" }, "publishConfig": { "access": "public", diff --git a/packages/sparql-proxy/CHANGELOG.md b/packages/sparql-proxy/CHANGELOG.md index 582055ac..c03b680c 100644 --- a/packages/sparql-proxy/CHANGELOG.md +++ b/packages/sparql-proxy/CHANGELOG.md @@ -1,5 +1,18 @@ # @zazuko/trifid-plugin-sparql-proxy +## 2.4.0 + +### Minor Changes + +- 7729ed7: Serve a [SPARQL 1.1 Service Description](https://www.w3.org/TR/sparql11-service-description/), proxied from the original server (fixes #461) + +### Patch Changes + +- 1cafa55: Return `reply` in the `routeHandler`, in order to be compatible with the support for compression. +- Updated dependencies [1cafa55] +- Updated dependencies [1cafa55] + - trifid-core@5.0.0 + ## 2.3.0 ### Minor Changes diff --git a/packages/sparql-proxy/package.json b/packages/sparql-proxy/package.json index 2912dd47..e70bb67e 100644 --- a/packages/sparql-proxy/package.json +++ b/packages/sparql-proxy/package.json @@ -1,6 +1,6 @@ { "name": "@zazuko/trifid-plugin-sparql-proxy", - "version": "2.3.0", + "version": "2.4.0", "description": "Trifid plugin for sparql-proxy", "main": "index.js", "type": "module", @@ -24,7 +24,7 @@ "@vocabulary/sd": "^1.0.4", "@zazuko/env-node": "^2.1.3", "string-replace-stream": "^0.0.2", - "trifid-core": "^4.0.7" + "trifid-core": "^5.0.0" }, "devDependencies": { "@types/node": "^22.4.1", diff --git a/packages/spex/CHANGELOG.md b/packages/spex/CHANGELOG.md index 524139d2..a5e6b9f1 100644 --- a/packages/spex/CHANGELOG.md +++ b/packages/spex/CHANGELOG.md @@ -1,5 +1,11 @@ # trifid-plugin-spex +## 2.1.1 + +### Patch Changes + +- 1cafa55: Return `reply` in the `routeHandler`, in order to be compatible with the support for compression. + ## 2.1.0 ### Minor Changes diff --git a/packages/spex/package.json b/packages/spex/package.json index 32a888dc..4bf0bd99 100644 --- a/packages/spex/package.json +++ b/packages/spex/package.json @@ -3,7 +3,7 @@ "description": "Trifid SPEX plugin", "type": "module", "main": "index.js", - "version": "2.1.0", + "version": "2.1.1", "license": "Apache-2.0", "homepage": "https://github.com/zazuko/trifid", "repository": { @@ -29,7 +29,7 @@ "devDependencies": { "c8": "^10.1.2", "mocha": "^10.7.3", - "trifid-core": "^4.0.0" + "trifid-core": "^5.0.0" }, "publishConfig": { "access": "public", diff --git a/packages/trifid/CHANGELOG.md b/packages/trifid/CHANGELOG.md index ded221bf..ae1852b4 100644 --- a/packages/trifid/CHANGELOG.md +++ b/packages/trifid/CHANGELOG.md @@ -1,5 +1,20 @@ # trifid +## 5.0.7 + +### Patch Changes + +- Updated dependencies [1cafa55] +- Updated dependencies [1cafa55] +- Updated dependencies [7729ed7] + - @zazuko/trifid-entity-renderer@1.2.1 + - trifid-plugin-graph-explorer@2.0.3 + - trifid-handler-fetch@3.3.1 + - @zazuko/trifid-plugin-sparql-proxy@2.4.0 + - trifid-plugin-yasgui@3.1.2 + - trifid-core@5.0.0 + - trifid-plugin-spex@2.1.1 + ## 5.0.6 ### Patch Changes diff --git a/packages/trifid/package.json b/packages/trifid/package.json index 4383349b..f54be912 100644 --- a/packages/trifid/package.json +++ b/packages/trifid/package.json @@ -1,7 +1,7 @@ { "name": "trifid", "description": "Trifid - Lightweight Linked Data Server and Proxy", - "version": "5.0.6", + "version": "5.0.7", "license": "Apache-2.0", "homepage": "https://github.com/zazuko/trifid", "type": "module", @@ -23,15 +23,15 @@ "trifid": "./server.js" }, "dependencies": { - "@zazuko/trifid-plugin-sparql-proxy": "^2.1.0", - "@zazuko/trifid-entity-renderer": "^1.1.1", + "@zazuko/trifid-plugin-sparql-proxy": "^2.4.0", + "@zazuko/trifid-entity-renderer": "^1.2.1", "commander": "^12.1.0", - "trifid-core": "^4.0.6", - "trifid-handler-fetch": "^3.1.0", - "trifid-plugin-graph-explorer": "^2.0.2", + "trifid-core": "^5.0.0", + "trifid-handler-fetch": "^3.3.1", + "trifid-plugin-graph-explorer": "^2.0.3", "trifid-plugin-i18n": "^3.0.0", - "trifid-plugin-spex": "^2.0.2", - "trifid-plugin-yasgui": "^3.1.0" + "trifid-plugin-spex": "^2.1.1", + "trifid-plugin-yasgui": "^3.1.2" }, "publishConfig": { "access": "public", diff --git a/packages/yasgui/CHANGELOG.md b/packages/yasgui/CHANGELOG.md index f426f3eb..b14f5f1c 100644 --- a/packages/yasgui/CHANGELOG.md +++ b/packages/yasgui/CHANGELOG.md @@ -1,5 +1,11 @@ # trifid-plugin-yasgui +## 3.1.2 + +### Patch Changes + +- 1cafa55: Return `reply` in the `routeHandler`, in order to be compatible with the support for compression. + ## 3.1.1 ### Patch Changes diff --git a/packages/yasgui/package.json b/packages/yasgui/package.json index 51534181..9f4a9687 100644 --- a/packages/yasgui/package.json +++ b/packages/yasgui/package.json @@ -2,7 +2,7 @@ "name": "trifid-plugin-yasgui", "description": "Trifid YASGUI plugin", "type": "module", - "version": "3.1.1", + "version": "3.1.2", "license": "MIT", "main": "index.js", "homepage": "https://github.com/zazuko/trifid", @@ -32,7 +32,7 @@ "devDependencies": { "c8": "^10.1.2", "mocha": "^10.7.3", - "trifid-core": "^4.0.5" + "trifid-core": "^5.0.0" }, "publishConfig": { "access": "public",