Skip to content
This repository has been archived by the owner on Sep 21, 2024. It is now read-only.

chore: release main #616

Merged
merged 7 commits into from
Sep 19, 2023
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
23 changes: 12 additions & 11 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"rust/noosphere-api": "0.12.2",
"rust/noosphere-cli": "0.14.2",
"rust/noosphere-collections": "0.6.3",
"rust/noosphere-core": "0.15.2",
"rust/noosphere-into": "0.10.6",
"rust/noosphere-ns": "0.10.2",
"rust/noosphere-storage": "0.8.1",
"rust/noosphere": "0.14.2",
"rust/noosphere-ipfs": "0.7.4",
"rust/noosphere-gateway": "0.8.2",
"rust/noosphere-sphere": "0.10.2"
"rust/noosphere-api": "0.13.0+deprecated",
"rust/noosphere-cli": "0.15.0",
"rust/noosphere-collections": "0.6.4",
"rust/noosphere-core": "0.16.0",
"rust/noosphere-into": "0.11.0",
"rust/noosphere-ns": "0.11.0",
"rust/noosphere-storage": "0.9.0",
"rust/noosphere": "0.15.0",
"rust/noosphere-ipfs": "0.8.0",
"rust/noosphere-gateway": "0.9.0",
"rust/noosphere-sphere": "0.11.0+deprecated",
"rust/noosphere-common": "0.1.0"
}
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions rust/noosphere-api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@
* dependencies
* noosphere-core bumped from 0.15.1 to 0.15.2

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.15.2 to 0.16.0
* noosphere-storage bumped from 0.8.1 to 0.9.0

## [0.12.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.12.0...noosphere-api-v0.12.1) (2023-08-10)


Expand Down
6 changes: 3 additions & 3 deletions rust/noosphere-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-api"
version = "0.12.2"
version = "0.13.0+deprecated"
edition = "2021"
description = "Type information pertinent to the REST API of the gateway server that is a part of the Noosphere CLI"
keywords = ["rest", "api", "noosphere", "p2p"]
Expand All @@ -26,8 +26,8 @@ url = { workspace = true }
serde = { workspace = true }
serde_urlencoded = "~0.7"
tracing = { workspace = true }
noosphere-core = { version = "0.15.2", path = "../noosphere-core" }
noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" }
noosphere-core = { version = "0.16.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.9.0", path = "../noosphere-storage" }
iroh-car = { workspace = true }
reqwest = { version = "0.11.15", default-features = false, features = ["json", "rustls-tls", "stream"] }
tokio-stream = { workspace = true }
Expand Down
26 changes: 26 additions & 0 deletions rust/noosphere-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,32 @@
* dev-dependencies
* noosphere-ns bumped from 0.9.3 to 0.9.4

## [0.15.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.14.2...noosphere-cli-v0.15.0) (2023-09-19)


### ⚠ BREAKING CHANGES

* Disaster recovery via gateway ([#637](https://github.com/subconsciousnetwork/noosphere/issues/637))
* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624))

### Features

* Disaster recovery via gateway ([#637](https://github.com/subconsciousnetwork/noosphere/issues/637)) ([70e7331](https://github.com/subconsciousnetwork/noosphere/commit/70e7331767f65e0976ee5843229f765dc6ace7fb))
* Introduce RocksDbStorage, genericize storage throughout. ([#623](https://github.com/subconsciousnetwork/noosphere/issues/623)) ([7155f86](https://github.com/subconsciousnetwork/noosphere/commit/7155f860c2f5ee481d923941dca95981cd7f4b38))
* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) ([9390797](https://github.com/subconsciousnetwork/noosphere/commit/9390797eb6653fdecd41c3a54225ffd55945bb89))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.7.4 to 0.8.0
* noosphere-core bumped from 0.15.2 to 0.16.0
* noosphere-storage bumped from 0.8.1 to 0.9.0
* noosphere-gateway bumped from 0.8.2 to 0.9.0
* noosphere-ns bumped from 0.10.2 to 0.11.0
* noosphere bumped from 0.14.2 to 0.15.0

## [0.14.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.14.1...noosphere-cli-v0.14.2) (2023-08-29)


Expand Down
14 changes: 7 additions & 7 deletions rust/noosphere-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-cli"
version = "0.14.2"
version = "0.15.0"
edition = "2021"
description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol"
keywords = ["cli", "sync", "noosphere", "p2p", "ucan"]
Expand Down Expand Up @@ -46,12 +46,12 @@ mime_guess = "^2"
witty-phrase-generator = "~0.2"
globset = "~0.4"

noosphere-ipfs = { version = "0.7.4", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.15.2", path = "../noosphere-core" }
noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" }
noosphere-gateway = { version = "0.8.2", path = "../noosphere-gateway" }
noosphere-ns = { version = "0.10.2", path = "../noosphere-ns", optional = true }
noosphere = { version = "0.14.2", path = "../noosphere" }
noosphere-ipfs = { version = "0.8.0", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.16.0", path = "../noosphere-core" }
noosphere-storage = { version = "0.9.0", path = "../noosphere-storage" }
noosphere-gateway = { version = "0.9.0", path = "../noosphere-gateway" }
noosphere-ns = { version = "0.11.0", path = "../noosphere-ns", optional = true }
noosphere = { version = "0.15.0", path = "../noosphere" }
ucan = { workspace = true }
ucan-key-support = { workspace = true }
cid = { workspace = true }
Expand Down
4 changes: 4 additions & 0 deletions rust/noosphere-collections/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@
* dependencies
* noosphere-storage bumped from 0.8.0 to 0.8.1

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.8.1 to 0.9.0

## [0.6.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-collections-v0.5.3...noosphere-collections-v0.6.0) (2023-06-08)


Expand Down
4 changes: 2 additions & 2 deletions rust/noosphere-collections/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-collections"
version = "0.6.3"
version = "0.6.4"
edition = "2021"
description = "Collection data types that are needed by an efficient implementation of Noosphere's IPLD data structures"
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
Expand All @@ -27,7 +27,7 @@ byteorder = "^1.4"
async-recursion = "^1"
libipld-core = { workspace = true }
libipld-cbor = { workspace = true }
noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" }
noosphere-storage = { version = "0.9.0", path = "../noosphere-storage" }
tokio = { workspace = true, features = ["sync", "io-util"] }

tokio-stream = { workspace = true }
Expand Down
13 changes: 13 additions & 0 deletions rust/noosphere-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Changelog

## 0.1.0 (2023-09-19)


### ⚠ BREAKING CHANGES

* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624))

### Features

* Introduce RocksDbStorage, genericize storage throughout. ([#623](https://github.com/subconsciousnetwork/noosphere/issues/623)) ([7155f86](https://github.com/subconsciousnetwork/noosphere/commit/7155f860c2f5ee481d923941dca95981cd7f4b38))
* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) ([9390797](https://github.com/subconsciousnetwork/noosphere/commit/9390797eb6653fdecd41c3a54225ffd55945bb89))
22 changes: 22 additions & 0 deletions rust/noosphere-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,28 @@
* noosphere-storage bumped from 0.7.0 to 0.7.1
* noosphere-collections bumped from 0.6.0 to 0.6.1

## [0.16.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.15.2...noosphere-core-v0.16.0) (2023-09-19)


### ⚠ BREAKING CHANGES

* Disaster recovery via gateway ([#637](https://github.com/subconsciousnetwork/noosphere/issues/637))
* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624))

### Features

* Disaster recovery via gateway ([#637](https://github.com/subconsciousnetwork/noosphere/issues/637)) ([70e7331](https://github.com/subconsciousnetwork/noosphere/commit/70e7331767f65e0976ee5843229f765dc6ace7fb))
* Introduce RocksDbStorage, genericize storage throughout. ([#623](https://github.com/subconsciousnetwork/noosphere/issues/623)) ([7155f86](https://github.com/subconsciousnetwork/noosphere/commit/7155f860c2f5ee481d923941dca95981cd7f4b38))
* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) ([9390797](https://github.com/subconsciousnetwork/noosphere/commit/9390797eb6653fdecd41c3a54225ffd55945bb89))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-storage bumped from 0.8.1 to 0.9.0
* noosphere-collections bumped from 0.6.3 to 0.6.4

## [0.15.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.15.1...noosphere-core-v0.15.2) (2023-08-29)


Expand Down
6 changes: 3 additions & 3 deletions rust/noosphere-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-core"
version = "0.15.2"
version = "0.16.0"
edition = "2021"
description = "Core data types of the Rust Noosphere implementation"
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
Expand Down Expand Up @@ -58,8 +58,8 @@ strum_macros = { workspace = true }
tokio-util = { workspace = true, features = ["io"] }

noosphere-common = { version = "0.1.0", path = "../noosphere-common" }
noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" }
noosphere-collections = { version = "0.6.3", path = "../noosphere-collections" }
noosphere-storage = { version = "0.9.0", path = "../noosphere-storage" }
noosphere-collections = { version = "0.6.4", path = "../noosphere-collections" }

ucan = { workspace = true }
ucan-key-support = { workspace = true }
Expand Down
25 changes: 25 additions & 0 deletions rust/noosphere-gateway/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,31 @@
* dependencies
* noosphere-ns bumped from 0.9.3 to 0.9.4

## [0.9.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.8.2...noosphere-gateway-v0.9.0) (2023-09-19)


### ⚠ BREAKING CHANGES

* Disaster recovery via gateway ([#637](https://github.com/subconsciousnetwork/noosphere/issues/637))
* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624))

### Features

* Disaster recovery via gateway ([#637](https://github.com/subconsciousnetwork/noosphere/issues/637)) ([70e7331](https://github.com/subconsciousnetwork/noosphere/commit/70e7331767f65e0976ee5843229f765dc6ace7fb))
* Introduce RocksDbStorage, genericize storage throughout. ([#623](https://github.com/subconsciousnetwork/noosphere/issues/623)) ([7155f86](https://github.com/subconsciousnetwork/noosphere/commit/7155f860c2f5ee481d923941dca95981cd7f4b38))
* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) ([9390797](https://github.com/subconsciousnetwork/noosphere/commit/9390797eb6653fdecd41c3a54225ffd55945bb89))
* Replace wnfs-namefilter with deterministic-bloom. Fixes [#626](https://github.com/subconsciousnetwork/noosphere/issues/626) ([#644](https://github.com/subconsciousnetwork/noosphere/issues/644)) ([eaa82f9](https://github.com/subconsciousnetwork/noosphere/commit/eaa82f9d48318290f0fdfe9c9cb9474410ad5134))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-ipfs bumped from 0.7.4 to 0.8.0
* noosphere-core bumped from 0.15.2 to 0.16.0
* noosphere-ns bumped from 0.10.2 to 0.11.0
* noosphere-storage bumped from 0.8.1 to 0.9.0

## [0.8.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.8.1...noosphere-gateway-v0.8.2) (2023-08-29)


Expand Down
10 changes: 5 additions & 5 deletions rust/noosphere-gateway/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "noosphere-gateway"
version = "0.8.2"
version = "0.9.0"
edition = "2021"
description = "A geist on the network that enables user spheres to discover each other"
keywords = ["http", "geist", "noosphere", "p2p", "ucan"]
Expand Down Expand Up @@ -41,10 +41,10 @@ deterministic-bloom = { workspace = true }
url = { workspace = true, features = ["serde"] }
mime_guess = "^2"

noosphere-ipfs = { version = "0.7.4", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.15.2", path = "../noosphere-core" }
noosphere-ns = { version = "0.10.2", path = "../noosphere-ns" }
noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" }
noosphere-ipfs = { version = "0.8.0", path = "../noosphere-ipfs" }
noosphere-core = { version = "0.16.0", path = "../noosphere-core" }
noosphere-ns = { version = "0.11.0", path = "../noosphere-ns" }
noosphere-storage = { version = "0.9.0", path = "../noosphere-storage" }
ucan = { workspace = true }
ucan-key-support = { workspace = true }
cid = { workspace = true }
Expand Down
22 changes: 22 additions & 0 deletions rust/noosphere-into/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,28 @@
* dev-dependencies
* noosphere-sphere bumped from 0.10.1 to 0.10.2

## [0.11.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.10.6...noosphere-into-v0.11.0) (2023-09-19)


### ⚠ BREAKING CHANGES

* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624))

### Features

* Introduce RocksDbStorage, genericize storage throughout. ([#623](https://github.com/subconsciousnetwork/noosphere/issues/623)) ([7155f86](https://github.com/subconsciousnetwork/noosphere/commit/7155f860c2f5ee481d923941dca95981cd7f4b38))
* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) ([9390797](https://github.com/subconsciousnetwork/noosphere/commit/9390797eb6653fdecd41c3a54225ffd55945bb89))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* noosphere-core bumped from 0.15.2 to 0.16.0
* noosphere-storage bumped from 0.8.1 to 0.9.0
* dev-dependencies
* noosphere-core bumped from 0.15.1 to 0.16.0

## [0.10.5](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.10.4...noosphere-into-v0.10.5) (2023-08-10)


Expand Down
Loading
Loading