Skip to content

Commit

Permalink
chore: version
Browse files Browse the repository at this point in the history
  • Loading branch information
tpluscode committed Nov 13, 2024
1 parent 0a5c478 commit c9ee95f
Show file tree
Hide file tree
Showing 10 changed files with 61 additions and 53 deletions.
6 changes: 0 additions & 6 deletions .changeset/funny-lies-taste.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/heavy-sheep-taste.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/mighty-frogs-thank.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/popular-apricots-flow.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/spicy-phones-tease.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/unlucky-dolphins-care.md

This file was deleted.

32 changes: 32 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# @hydrofoil/talos

## 0.8.0

### Minor Changes

- 094d088: SPARQL Queries are adjusted to use the base URI calculated from the resource path. For example, in query `/tables/generate.ru`, the effective base URI would be `/tables/generate/`. This is to align this behavior with how static sources are parsed. In such case, rename the file to `index.ru` to remove the file name from resolves URIs.
- 38c59be: Ensures trailing slash in bare-domain resources
- 094d088: Base URI behavior changed. Now relative URIs will be resolved against the calculated base including a trailing slash. The exception is an empty `<>` reference which will be resolved against the base without a trailing slash.
Use `<./>` to create a resource with a trailing slash.

| File path | URI reference | Resulting URI |
| ----------------- | ------------- | ------------------ |
| `/api/people.ttl` | `<>` | `/api/people` |
| `/api/people.ttl` | `<.>` | `/api/people` |
| `/api/people.ttl` | `<./>` | `/api/people/` |
| `/api/people.ttl` | `<john>` | `/api/people/john` |
| `/api/people.ttl` | `<#john>` | `/api/people#john` |
| `/api/people.ttl` | `<../people>` | `/api/people` |
| `/api/people.ttl` | `<./people>` | `/api/people` |
| `/api/people.ttl` | `</projects>` | `/projects` |

### Patch Changes

- b4bf27e: Prettier logs
- 094d088: Trailing slash in base URI is truncated when resolving relative URI references
- Updated dependencies [b4bf27e]
- Updated dependencies [be8f9e4]
- Updated dependencies [094d088]
- Updated dependencies [38c59be]
- Updated dependencies [094d088]
- Updated dependencies [094d088]
- @hydrofoil/talos-core@0.3.0

## 0.7.0

### Minor Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hydrofoil/talos",
"version": "0.7.0",
"version": "0.8.0",
"main": "index.js",
"type": "module",
"bin": {
Expand All @@ -26,7 +26,7 @@
},
"dependencies": {
"@hydrofoil/resource-store": "^0.2.2",
"@hydrofoil/talos-core": "^0.2.0",
"@hydrofoil/talos-core": "^0.3.0",
"@hydrofoil/vocabularies": "^2.1.1",
"@tpluscode/rdf-string": "^1.3.0",
"@tpluscode/sparql-builder": "^3",
Expand Down
26 changes: 26 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# @hydrofoil/talos-core

## 0.3.0

### Minor Changes

- 094d088: SPARQL Queries are adjusted to use the base URI calculated from the resource path. For example, in query `/tables/generate.ru`, the effective base URI would be `/tables/generate/`. This is to align this behavior with how static sources are parsed. In such case, rename the file to `index.ru` to remove the file name from resolves URIs.
- 38c59be: Ensures trailing slash in bare-domain resources
- 094d088: Base URI behavior changed. Now relative URIs will be resolved against the calculated base including a trailing slash. The exception is an empty `<>` reference which will be resolved against the base without a trailing slash.
Use `<./>` to create a resource with a trailing slash.

| File path | URI reference | Resulting URI |
| ----------------- | ------------- | ------------------ |
| `/api/people.ttl` | `<>` | `/api/people` |
| `/api/people.ttl` | `<.>` | `/api/people` |
| `/api/people.ttl` | `<./>` | `/api/people/` |
| `/api/people.ttl` | `<john>` | `/api/people/john` |
| `/api/people.ttl` | `<#john>` | `/api/people#john` |
| `/api/people.ttl` | `<../people>` | `/api/people` |
| `/api/people.ttl` | `<./people>` | `/api/people` |
| `/api/people.ttl` | `</projects>` | `/projects` |

### Patch Changes

- b4bf27e: Prettier logs
- be8f9e4: Updated `@comunica/query-sparql` to v4.0.2
- 094d088: Trailing slash in base URI is truncated when resolving relative URI references

## 0.2.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
@@ -1,6 +1,6 @@
{
"name": "@hydrofoil/talos-core",
"version": "0.2.0",
"version": "0.3.0",
"type": "module",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit c9ee95f

Please sign in to comment.