Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merge to release #468

Merged
merged 1 commit into from
Aug 21, 2024
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
14 changes: 0 additions & 14 deletions .changeset/flat-glasses-breathe.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/long-seahorses-eat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tasty-terms-exercise.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/ckan/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
6 changes: 3 additions & 3 deletions packages/ckan/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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"
Expand Down
14 changes: 14 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down
9 changes: 9 additions & 0 deletions packages/entity-renderer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]
- [email protected]

## 1.2.0

### Minor Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/entity-renderer/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/graph-explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/graph-explorer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/handler-fetch/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/handler-fetch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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": {
Expand Down
2 changes: 1 addition & 1 deletion packages/i18n/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/iiif/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/iiif/package.json
Original file line number Diff line number Diff line change
@@ -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": [
Expand Down Expand Up @@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/markdown-content/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/markdown-content/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -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",
Expand Down
13 changes: 13 additions & 0 deletions packages/sparql-proxy/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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]
- [email protected]

## 2.3.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/sparql-proxy/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/spex/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions packages/spex/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -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",
Expand Down
15 changes: 15 additions & 0 deletions packages/trifid/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# trifid

## 5.0.7

### Patch Changes

- Updated dependencies [1cafa55]
- Updated dependencies [1cafa55]
- Updated dependencies [7729ed7]
- @zazuko/[email protected]
- [email protected]
- [email protected]
- @zazuko/[email protected]
- [email protected]
- [email protected]
- [email protected]

## 5.0.6

### Patch Changes
Expand Down
16 changes: 8 additions & 8 deletions packages/trifid/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -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",
Expand Down
6 changes: 6 additions & 0 deletions packages/yasgui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Loading