Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and tpluscode committed Nov 15, 2023
1 parent 5c526f2 commit 21f6624
Show file tree
Hide file tree
Showing 33 changed files with 260 additions and 113 deletions.
5 changes: 0 additions & 5 deletions .changeset/bright-plums-sort.md

This file was deleted.

19 changes: 0 additions & 19 deletions .changeset/chilly-worms-compare.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/early-news-lay.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eleven-pugs-appear.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/fluffy-plants-invent.md

This file was deleted.

25 changes: 0 additions & 25 deletions .changeset/hungry-mayflies-begin.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/little-paws-sit.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wet-tomatoes-yawn.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/young-jeans-tan.md

This file was deleted.

6 changes: 6 additions & 0 deletions packages/base/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# v1.0.0

## 2.0.1

### Patch Changes

- 67504df: Remove redundant dependency on `rdf-utils-fs`

## 2.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/base/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "barnard59-base",
"version": "2.0.0",
"version": "2.0.1",
"description": "Linked Data pipelines",
"main": "index.js",
"type": "module",
Expand Down Expand Up @@ -30,7 +30,7 @@
"through2": "^4.0.2"
},
"devDependencies": {
"barnard59-core": "^4.0.0",
"barnard59-core": "^5.0.0",
"chai": "^4.3.10",
"get-stream": "^6.0.1",
"into-stream": "^7.0.0",
Expand Down
29 changes: 29 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Changelog

## 4.1.0

### Minor Changes

- ce0bdf4: Removed dependency on any RDF/JS Environment. The CLI provides it at runtime to ensure that steps
use the same factories. Step implementors are encouraged to use the environment provided by the
barnard59 runtime insead of importing directly.

```diff
-import rdf from 'rdf-ext'

export function myStep() {
- const dataset = rdf.dataset()
+ const dataset = this.env.dataset()

return rdf.dataset().toStream()
}
```

- 5c526f2: Include current project in manifest discovery

### Patch Changes

- 0e5cb97: Write CLI errors to `stderr`
- Updated dependencies [ce0bdf4]
- Updated dependencies [ce0bdf4]
- [email protected]
- [email protected]

## 4.0.0

### Major Changes
Expand Down
14 changes: 7 additions & 7 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "barnard59",
"version": "4.0.0",
"version": "4.1.0",
"description": "Barnard59 Linked Data pipelines",
"type": "module",
"main": "index.js",
Expand Down Expand Up @@ -32,8 +32,8 @@
"@opentelemetry/semantic-conventions": "^0.24.0",
"@opentelemetry/tracing": "^0.24.0",
"@rdfjs/namespace": "^2.0.0",
"barnard59-core": "4.0.0",
"barnard59-env": "0.0.0",
"barnard59-core": "5.0.0",
"barnard59-env": "1.0.0",
"commander": "^11.0.0",
"find-plugins": "^1.1.7",
"is-graph-pointer": "^2.1.0",
Expand All @@ -43,12 +43,12 @@
},
"devDependencies": {
"approvals": "^6.2.2",
"barnard59-base": "^2.0.0",
"barnard59-formats": "^2.0.0",
"barnard59-graph-store": "^2.0.0",
"barnard59-base": "^2.0.1",
"barnard59-formats": "^2.1.0",
"barnard59-graph-store": "^2.1.0",
"barnard59-http": "^2.0.0",
"barnard59-shell": "^0.1.0",
"barnard59-test-support": "^0.0.2",
"barnard59-test-support": "^0.0.3",
"chai": "^4.3.7",
"shelljs": "^0.8.4",
"strip-ansi": "^7.0.0"
Expand Down
20 changes: 20 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 5.0.0

### Major Changes

- ce0bdf4: This is breaking change for users creating and running pipeline programmatically. The `createPipeline`
function exported by the package now requires that an RDF/JS Environment is passed as an argument.
A compatible environment which includes all necessary factories can be imported from the new
`barnard59-env` package.

```diff
import { createPipeline, run } from 'barnard59-core'
import env from 'barnard59-env'

let pointer

await run(createPipeline(pointer, {
+ env
})
```

## 4.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "barnard59-core",
"version": "4.0.0",
"version": "5.0.0",
"description": "Core component of Barnard59 Linked Data pipelines",
"type": "module",
"main": "index.js",
Expand Down Expand Up @@ -34,9 +34,9 @@
},
"devDependencies": {
"@rdfjs/namespace": "^2.0.0",
"barnard59-env": "^0.0.0",
"barnard59-env": "^1.0.0",
"barnard59-http": "^2.0.0",
"barnard59-test-support": "^0.0.2",
"barnard59-test-support": "^0.0.3",
"chai": "^4.3.7",
"get-stream": "^6.0.1",
"husky": "^8.0.3",
Expand Down
19 changes: 19 additions & 0 deletions packages/csvw/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# barnard59-csvw

## 2.1.0

### Minor Changes

- ce0bdf4: Removed dependency on any RDF/JS Environment. The CLI provides it at runtime to ensure that steps
use the same factories. Step implementors are encouraged to use the environment provided by the
barnard59 runtime insead of importing directly.

```diff
-import rdf from 'rdf-ext'

export function myStep() {
- const dataset = rdf.dataset()
+ const dataset = this.env.dataset()

return rdf.dataset().toStream()
}
```

## 2.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/csvw/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "barnard59-csvw",
"version": "2.0.0",
"version": "2.1.0",
"description": "Simplifies handling CSVW mapping documents in barnard59 pipelines",
"type": "module",
"main": "index.js",
Expand Down Expand Up @@ -28,7 +28,7 @@
"readable-stream": "^3.6.0"
},
"devDependencies": {
"barnard59-env": "^0.0.0",
"barnard59-env": "^1.0.0",
"express-as-promise": "^1.2.0",
"get-stream": "^7.0.1",
"is-stream": "^3.0.0"
Expand Down
7 changes: 7 additions & 0 deletions packages/env/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# barnard59-env

## 1.0.0

### Major Changes

- ce0bdf4: First release
2 changes: 1 addition & 1 deletion packages/env/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "barnard59-env",
"version": "0.0.0",
"version": "1.0.0",
"type": "module",
"main": "index.js",
"dependencies": {
Expand Down
24 changes: 24 additions & 0 deletions packages/formats/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# v1.0.0

## 2.1.0

### Minor Changes

- ce0bdf4: Removed dependency on any RDF/JS Environment. The CLI provides it at runtime to ensure that steps
use the same factories. Step implementors are encouraged to use the environment provided by the
barnard59 runtime insead of importing directly.

```diff
-import rdf from 'rdf-ext'

export function myStep() {
- const dataset = rdf.dataset()
+ const dataset = this.env.dataset()

return rdf.dataset().toStream()
}
```

### Patch Changes

- Updated dependencies [67504df]
- [email protected]

## 2.0.0

### Major Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/formats/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "barnard59-formats",
"version": "2.0.0",
"version": "2.1.0",
"description": "Support for various formats for Barnard59 Linked Data pipelines",
"main": "index.js",
"type": "module",
Expand All @@ -26,13 +26,13 @@
"@rdfjs/serializer-jsonld": "^2.0.0",
"@rdfjs/serializer-ntriples": "^2.0.0",
"@rdfjs/sink-to-duplex": "^1.0.0",
"barnard59-base": "^2.0.0",
"barnard59-base": "^2.0.1",
"rdf-parser-csvw": "^0.15.0",
"rdf-parser-csvw-xlsx": "^0.1.0",
"rdfxml-streaming-parser": "^1.2.0"
},
"devDependencies": {
"barnard59-env": "^0.0.0",
"barnard59-env": "^1.0.0",
"chai": "^4.3.7"
},
"engines": {
Expand Down
24 changes: 24 additions & 0 deletions packages/graph-store/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# v1.0.0

## 2.1.0

### Minor Changes

- ce0bdf4: Removed dependency on any RDF/JS Environment. The CLI provides it at runtime to ensure that steps
use the same factories. Step implementors are encouraged to use the environment provided by the
barnard59 runtime insead of importing directly.

```diff
-import rdf from 'rdf-ext'

export function myStep() {
- const dataset = rdf.dataset()
+ const dataset = this.env.dataset()

return rdf.dataset().toStream()
}
```

### Patch Changes

- Updated dependencies [67504df]
- [email protected]

## 2.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/graph-store/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "barnard59-graph-store",
"version": "2.0.0",
"version": "2.1.0",
"description": "SPARQL Graph Store Protocol support for Linked Data pipelines",
"type": "module",
"main": "index.js",
Expand All @@ -27,7 +27,7 @@
"sparql-http-client": "^2.4.0"
},
"peerDependencies": {
"barnard59-base": "^2.0.0",
"barnard59-base": "^2.0.1",
"barnard59-rdf": "^2.0.0"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 21f6624

Please sign in to comment.