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

deps(dev): bump aegir from 42.2.11 to 44.1.0 #316

Merged
merged 7 commits into from
Aug 2, 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
34 changes: 17 additions & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@

# Packages

- [`/packages/blockstore-core`](./packages/blockstore-core) Contains various implementations of the API contract described in interface-blockstore
- [`/packages/blockstore-fs`](./packages/blockstore-fs) Blockstore implementation with file system backend
- [`/packages/blockstore-idb`](./packages/blockstore-idb) Blockstore implementation with IndexedDB backend
- [`/packages/blockstore-level`](./packages/blockstore-level) Blockstore implementation with level(up|down) backend
- [`/packages/blockstore-s3`](./packages/blockstore-s3) IPFS blockstore implementation backed by s3
- [`/packages/datastore-core`](./packages/datastore-core) Wrapper implementation for interface-datastore
- [`/packages/datastore-fs`](./packages/datastore-fs) Datastore implementation with file system backend
- [`/packages/datastore-idb`](./packages/datastore-idb) Datastore implementation with IndexedDB backend.
- [`/packages/datastore-level`](./packages/datastore-level) Datastore implementation with level(up|down) backend
- [`/packages/datastore-s3`](./packages/datastore-s3) IPFS datastore implementation backed by s3
- [`/packages/interface-blockstore`](./packages/interface-blockstore) An interface for storing and retrieving blocks
- [`/packages/interface-blockstore-tests`](./packages/interface-blockstore-tests) Compliance tests for the blockstore interface
- [`/packages/interface-datastore`](./packages/interface-datastore) datastore interface
- [`/packages/interface-datastore-tests`](./packages/interface-datastore-tests) Compliance tests for the datastore interface
- [`/packages/interface-store`](./packages/interface-store) A generic interface for storing and retrieving data
- [`packages/blockstore-core`](https://github.com/ipfs/js-stores/tree/main/packages/blockstore-core) Contains various implementations of the API contract described in interface-blockstore
- [`packages/blockstore-fs`](https://github.com/ipfs/js-stores/tree/main/packages/blockstore-fs) Blockstore implementation with file system backend
- [`packages/blockstore-idb`](https://github.com/ipfs/js-stores/tree/main/packages/blockstore-idb) Blockstore implementation with IndexedDB backend
- [`packages/blockstore-level`](https://github.com/ipfs/js-stores/tree/main/packages/blockstore-level) Blockstore implementation with level(up|down) backend
- [`packages/blockstore-s3`](https://github.com/ipfs/js-stores/tree/main/packages/blockstore-s3) IPFS blockstore implementation backed by s3
- [`packages/datastore-core`](https://github.com/ipfs/js-stores/tree/main/packages/datastore-core) Wrapper implementation for interface-datastore
- [`packages/datastore-fs`](https://github.com/ipfs/js-stores/tree/main/packages/datastore-fs) Datastore implementation with file system backend
- [`packages/datastore-idb`](https://github.com/ipfs/js-stores/tree/main/packages/datastore-idb) Datastore implementation with IndexedDB backend.
- [`packages/datastore-level`](https://github.com/ipfs/js-stores/tree/main/packages/datastore-level) Datastore implementation with level(up|down) backend
- [`packages/datastore-s3`](https://github.com/ipfs/js-stores/tree/main/packages/datastore-s3) IPFS datastore implementation backed by s3
- [`packages/interface-blockstore`](https://github.com/ipfs/js-stores/tree/main/packages/interface-blockstore) An interface for storing and retrieving blocks
- [`packages/interface-blockstore-tests`](https://github.com/ipfs/js-stores/tree/main/packages/interface-blockstore-tests) Compliance tests for the blockstore interface
- [`packages/interface-datastore`](https://github.com/ipfs/js-stores/tree/main/packages/interface-datastore) datastore interface
- [`packages/interface-datastore-tests`](https://github.com/ipfs/js-stores/tree/main/packages/interface-datastore-tests) Compliance tests for the datastore interface
- [`packages/interface-store`](https://github.com/ipfs/js-stores/tree/main/packages/interface-store) A generic interface for storing and retrieving data

# API Docs

Expand All @@ -33,8 +33,8 @@

Licensed under either of

- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
- Apache 2.0, ([LICENSE-APACHE](https://github.com/ipfs/js-stores/blob/main/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](https://github.com/ipfs/js-stores/blob/main/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)

# Contribute

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
"docs:no-publish": "aegir docs --publish false"
},
"devDependencies": {
"aegir": "^42.2.3",
"aegir": "^44.1.0",
"npm-run-all": "^4.1.5"
},
"workspaces": [
Expand Down
21 changes: 18 additions & 3 deletions packages/blockstore-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@

# About

<!--

!IMPORTANT!

Everything in this README between "# About" and "# Install" is automatically
generated and will be overwritten the next time the doc generator is run.

To make changes to this section, please update the @packageDocumentation section
of src/index.js or src/index.ts

To experiment with formatting, please run "npm run docs" from the root of this
repo and examine the changes made.

-->

Various Blockstore implementations are available.

## Implementations
Expand Down Expand Up @@ -97,7 +112,7 @@ $ npm i blockstore-core

## Browser `<script>` tag

Loading this module through a script tag will make it's exports available as `BlockstoreCore` in the global namespace.
Loading this module through a script tag will make its exports available as `BlockstoreCore` in the global namespace.

```html
<script src="https://unpkg.com/blockstore-core/dist/index.min.js"></script>
Expand All @@ -111,8 +126,8 @@ Loading this module through a script tag will make it's exports available as `Bl

Licensed under either of

- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
- Apache 2.0, ([LICENSE-APACHE](https://github.com/ipfs/js-stores/blob/main/packages/blockstore-core/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](https://github.com/ipfs/js-stores/blob/main/packages/blockstore-core/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)

# Contribute

Expand Down
23 changes: 12 additions & 11 deletions packages/blockstore-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,22 +94,23 @@
"test:firefox": "aegir test -t browser -- --browser firefox",
"test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
"test:electron-main": "aegir test -t electron-main",
"dep-check": "aegir dep-check"
"dep-check": "aegir dep-check",
"release": "aegir release"
},
"dependencies": {
"@libp2p/logger": "^4.0.6",
"@libp2p/logger": "^4.0.19",
"interface-blockstore": "^5.0.0",
"interface-store": "6.0.0",
"it-drain": "^3.0.5",
"it-filter": "^3.0.4",
"it-merge": "^3.0.3",
"interface-store": "^6.0.0",
"it-drain": "^3.0.7",
"it-filter": "^3.1.1",
"it-merge": "^3.0.5",
"it-pushable": "^3.2.3",
"multiformats": "^13.0.1"
"multiformats": "^13.2.2"
},
"devDependencies": {
"aegir": "^42.2.3",
"interface-blockstore-tests": "7.0.0",
"it-all": "^3.0.4",
"uint8arrays": "^5.0.2"
"aegir": "^44.1.0",
"interface-blockstore-tests": "^7.0.0",
"it-all": "^3.0.6",
"uint8arrays": "^5.1.0"
}
}
19 changes: 17 additions & 2 deletions packages/blockstore-fs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@

# About

<!--

!IMPORTANT!

Everything in this README between "# About" and "# Install" is automatically
generated and will be overwritten the next time the doc generator is run.

To make changes to this section, please update the @packageDocumentation section
of src/index.js or src/index.ts

To experiment with formatting, please run "npm run docs" from the root of this
repo and examine the changes made.

-->

A Blockstore implementation that stores blocks in the local filesystem.

## Example
Expand All @@ -33,8 +48,8 @@ $ npm i blockstore-fs

Licensed under either of

- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
- Apache 2.0, ([LICENSE-APACHE](https://github.com/ipfs/js-stores/blob/main/packages/blockstore-fs/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](https://github.com/ipfs/js-stores/blob/main/packages/blockstore-fs/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)

# Contribute

Expand Down
15 changes: 8 additions & 7 deletions packages/blockstore-fs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,19 +73,20 @@
"test": "aegir test -t node -t electron-main",
"test:node": "aegir test -t node",
"test:electron-main": "aegir test -t electron-main",
"dep-check": "aegir dep-check"
"dep-check": "aegir dep-check",
"release": "aegir release"
},
"dependencies": {
"fast-write-atomic": "^0.2.1",
"interface-blockstore": "^5.0.0",
"interface-store": "6.0.0",
"interface-store": "^6.0.0",
"it-glob": "^3.0.1",
"it-map": "^3.0.5",
"it-parallel-batch": "^3.0.4",
"multiformats": "^13.0.1"
"it-map": "^3.1.1",
"it-parallel-batch": "^3.0.6",
"multiformats": "^13.2.2"
},
"devDependencies": {
"aegir": "^42.2.3",
"interface-blockstore-tests": "7.0.0"
"aegir": "^44.1.0",
"interface-blockstore-tests": "^7.0.0"
}
}
3 changes: 0 additions & 3 deletions packages/blockstore-fs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,6 @@
"test"
],
"references": [
{
"path": "../blockstore-core"
},
{
"path": "../interface-blockstore"
},
Expand Down
21 changes: 18 additions & 3 deletions packages/blockstore-idb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@

# About

<!--

!IMPORTANT!

Everything in this README between "# About" and "# Install" is automatically
generated and will be overwritten the next time the doc generator is run.

To make changes to this section, please update the @packageDocumentation section
of src/index.js or src/index.ts

To experiment with formatting, please run "npm run docs" from the root of this
repo and examine the changes made.

-->

A Blockstore implementation for browsers that stores blocks in [IndexedDB](https://developer.mozilla.org/en-US/docs/Web/API/IndexedDB_API).

## Example
Expand All @@ -27,7 +42,7 @@ $ npm i blockstore-idb

## Browser `<script>` tag

Loading this module through a script tag will make it's exports available as `BlockstoreIdb` in the global namespace.
Loading this module through a script tag will make its exports available as `BlockstoreIdb` in the global namespace.

```html
<script src="https://unpkg.com/blockstore-idb/dist/index.min.js"></script>
Expand All @@ -41,8 +56,8 @@ Loading this module through a script tag will make it's exports available as `Bl

Licensed under either of

- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
- Apache 2.0, ([LICENSE-APACHE](https://github.com/ipfs/js-stores/blob/main/packages/blockstore-idb/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](https://github.com/ipfs/js-stores/blob/main/packages/blockstore-idb/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)

# Contribute

Expand Down
13 changes: 7 additions & 6 deletions packages/blockstore-idb/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,17 +53,18 @@
"test:chrome-webworker": "aegir test -t webworker",
"test:firefox": "aegir test -t browser -- --browser firefox",
"test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
"dep-check": "aegir dep-check"
"dep-check": "aegir dep-check",
"release": "aegir release"
},
"dependencies": {
"blockstore-core": "5.0.0",
"blockstore-core": "^5.0.0",
"idb": "^8.0.0",
"interface-blockstore": "^5.0.0",
"interface-store": "6.0.0",
"multiformats": "^13.0.1"
"interface-store": "^6.0.0",
"multiformats": "^13.2.2"
},
"devDependencies": {
"aegir": "^42.2.3",
"interface-blockstore-tests": "7.0.0"
"aegir": "^44.1.0",
"interface-blockstore-tests": "^7.0.0"
}
}
21 changes: 18 additions & 3 deletions packages/blockstore-level/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@

# About

<!--

!IMPORTANT!

Everything in this README between "# About" and "# Install" is automatically
generated and will be overwritten the next time the doc generator is run.

To make changes to this section, please update the @packageDocumentation section
of src/index.js or src/index.ts

To experiment with formatting, please run "npm run docs" from the root of this
repo and examine the changes made.

-->

A Blockstore implementation that uses a flavour of [Level](https://leveljs.org/) as a backend.

N.b. this is here largely for the sake of completeness, in node you should probably use FSDatastore, in browsers you should probably use IDBDatastore.
Expand All @@ -29,7 +44,7 @@ $ npm i blockstore-level

## Browser `<script>` tag

Loading this module through a script tag will make it's exports available as `BlockstoreLevel` in the global namespace.
Loading this module through a script tag will make its exports available as `BlockstoreLevel` in the global namespace.

```html
<script src="https://unpkg.com/blockstore-level/dist/index.min.js"></script>
Expand All @@ -43,8 +58,8 @@ Loading this module through a script tag will make it's exports available as `Bl

Licensed under either of

- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
- Apache 2.0, ([LICENSE-APACHE](https://github.com/ipfs/js-stores/blob/main/packages/blockstore-level/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](https://github.com/ipfs/js-stores/blob/main/packages/blockstore-level/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)

# Contribute

Expand Down
13 changes: 7 additions & 6 deletions packages/blockstore-level/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,18 +56,19 @@
"test:firefox": "aegir test -t browser -- --browser firefox",
"test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
"test:electron-main": "aegir test -t electron-main",
"dep-check": "aegir dep-check"
"dep-check": "aegir dep-check",
"release": "aegir release"
},
"dependencies": {
"blockstore-core": "5.0.0",
"blockstore-core": "^5.0.0",
"interface-blockstore": "^5.0.0",
"interface-store": "6.0.0",
"interface-store": "^6.0.0",
"level": "^8.0.1",
"multiformats": "^13.0.1"
"multiformats": "^13.2.2"
},
"devDependencies": {
"aegir": "^42.2.3",
"interface-blockstore-tests": "7.0.0",
"aegir": "^44.1.0",
"interface-blockstore-tests": "^7.0.0",
"ipfs-utils": "^9.0.14",
"memory-level": "^1.0.0"
}
Expand Down
21 changes: 18 additions & 3 deletions packages/blockstore-s3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@

# About

<!--

!IMPORTANT!

Everything in this README between "# About" and "# Install" is automatically
generated and will be overwritten the next time the doc generator is run.

To make changes to this section, please update the @packageDocumentation section
of src/index.js or src/index.ts

To experiment with formatting, please run "npm run docs" from the root of this
repo and examine the changes made.

-->

A Blockstore implementation that stores blocks on Amazon S3.

## Example - Quickstart
Expand Down Expand Up @@ -50,7 +65,7 @@ $ npm i blockstore-s3

## Browser `<script>` tag

Loading this module through a script tag will make it's exports available as `BlockstoreS3` in the global namespace.
Loading this module through a script tag will make its exports available as `BlockstoreS3` in the global namespace.

```html
<script src="https://unpkg.com/blockstore-s3/dist/index.min.js"></script>
Expand All @@ -64,8 +79,8 @@ Loading this module through a script tag will make it's exports available as `Bl

Licensed under either of

- Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
- Apache 2.0, ([LICENSE-APACHE](https://github.com/ipfs/js-stores/blob/main/packages/blockstore-s3/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
- MIT ([LICENSE-MIT](https://github.com/ipfs/js-stores/blob/main/packages/blockstore-s3/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)

# Contribute

Expand Down
Loading
Loading