diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b66f1919b..90afe5a7a 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,14 +1,14 @@ { - "rust/noosphere-api": "0.7.9", - "rust/noosphere-cli": "0.10.11", - "rust/noosphere-collections": "0.5.3", - "rust/noosphere-core": "0.11.0", - "rust/noosphere-into": "0.8.9", - "rust/noosphere-ns": "0.7.2", - "rust/noosphere-storage": "0.6.3", - "rust/noosphere": "0.10.11", - "rust/noosphere-ipfs": "0.4.4", - "rust/noosphere-gateway": "0.4.11", - "rust/noosphere-sphere": "0.5.8", - "rust/noosphere-car": "0.1.2" + "rust/noosphere-api": "0.8.0", + "rust/noosphere-cli": "0.11.0", + "rust/noosphere-collections": "0.6.0", + "rust/noosphere-core": "0.12.0", + "rust/noosphere-into": "0.9.0", + "rust/noosphere-ns": "0.8.0", + "rust/noosphere-storage": "0.7.0", + "rust/noosphere": "0.11.0", + "rust/noosphere-ipfs": "0.5.0", + "rust/noosphere-gateway": "0.5.0", + "rust/noosphere-sphere": "0.6.0", + "rust/noosphere-car": "0.2.0" } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 6572868b9..1d64aa563 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3397,7 +3397,7 @@ dependencies = [ [[package]] name = "noosphere" -version = "0.10.11" +version = "0.11.0" dependencies = [ "anyhow", "async-stream", @@ -3438,7 +3438,7 @@ dependencies = [ [[package]] name = "noosphere-api" -version = "0.7.9" +version = "0.8.0" dependencies = [ "anyhow", "cid 0.10.1", @@ -3464,7 +3464,7 @@ dependencies = [ [[package]] name = "noosphere-car" -version = "0.1.2" +version = "0.2.0" dependencies = [ "anyhow", "cid 0.10.1", @@ -3480,7 +3480,7 @@ dependencies = [ [[package]] name = "noosphere-cli" -version = "0.10.11" +version = "0.11.0" dependencies = [ "anyhow", "async-trait", @@ -3521,7 +3521,7 @@ dependencies = [ [[package]] name = "noosphere-collections" -version = "0.5.3" +version = "0.6.0" dependencies = [ "anyhow", "async-once-cell 0.3.1", @@ -3547,7 +3547,7 @@ dependencies = [ [[package]] name = "noosphere-core" -version = "0.11.0" +version = "0.12.0" dependencies = [ "anyhow", "async-once-cell 0.3.1", @@ -3588,7 +3588,7 @@ dependencies = [ [[package]] name = "noosphere-gateway" -version = "0.4.11" +version = "0.5.0" dependencies = [ "anyhow", "async-stream", @@ -3626,7 +3626,7 @@ dependencies = [ [[package]] name = "noosphere-into" -version = "0.8.9" +version = "0.9.0" dependencies = [ "anyhow", "async-compat", @@ -3657,7 +3657,7 @@ dependencies = [ [[package]] name = "noosphere-ipfs" -version = "0.4.4" +version = "0.5.0" dependencies = [ "anyhow", "async-compat", @@ -3685,7 +3685,7 @@ dependencies = [ [[package]] name = "noosphere-ns" -version = "0.7.2" +version = "0.8.0" dependencies = [ "anyhow", "async-trait", @@ -3719,7 +3719,7 @@ dependencies = [ [[package]] name = "noosphere-sphere" -version = "0.5.8" +version = "0.6.0" dependencies = [ "anyhow", "async-stream", @@ -3750,7 +3750,7 @@ dependencies = [ [[package]] name = "noosphere-storage" -version = "0.6.3" +version = "0.7.0" dependencies = [ "anyhow", "async-std", diff --git a/rust/noosphere-api/CHANGELOG.md b/rust/noosphere-api/CHANGELOG.md index 4c012a2f6..ffaae2053 100644 --- a/rust/noosphere-api/CHANGELOG.md +++ b/rust/noosphere-api/CHANGELOG.md @@ -52,6 +52,33 @@ * dependencies * noosphere-car bumped from 0.1.1 to 0.1.2 +## [0.8.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.7.9...noosphere-api-v0.8.0) (2023-06-08) + + +### ⚠ BREAKING CHANGES + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) + +### Features + +* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386) + + +### Bug Fixes + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.11.0 to 0.12.0 + * noosphere-storage bumped from 0.6.3 to 0.7.0 + * noosphere-car bumped from 0.1.2 to 0.2.0 + ## [0.7.8](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-api-v0.7.7...noosphere-api-v0.7.8) (2023-05-08) diff --git a/rust/noosphere-api/Cargo.toml b/rust/noosphere-api/Cargo.toml index a746d61f6..084fd331e 100644 --- a/rust/noosphere-api/Cargo.toml +++ b/rust/noosphere-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-api" -version = "0.7.9" +version = "0.8.0" 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"] @@ -26,9 +26,9 @@ url = "^2" serde = { workspace = true } serde_urlencoded = "~0.7" tracing = { workspace = true } -noosphere-core = { version = "0.11.0", path = "../noosphere-core" } -noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" } -noosphere-car = { version = "0.1.2", path = "../noosphere-car" } +noosphere-core = { version = "0.12.0", path = "../noosphere-core" } +noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } +noosphere-car = { version = "0.2.0", path = "../noosphere-car" } reqwest = { version = "0.11.15", default-features = false, features = ["json", "rustls-tls", "stream"] } tokio-stream = "~0.1" tokio-util = "0.7.7" diff --git a/rust/noosphere-car/CHANGELOG.md b/rust/noosphere-car/CHANGELOG.md index 745e98952..dbcdc7d8b 100644 --- a/rust/noosphere-car/CHANGELOG.md +++ b/rust/noosphere-car/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [0.2.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-car-v0.1.2...noosphere-car-v0.2.0) (2023-06-08) + + +### ⚠ BREAKING CHANGES + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) + +### Features + +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386) + + +### Bug Fixes + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358)) + ## [0.1.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-car-v0.1.1...noosphere-car-v0.1.2) (2023-05-09) diff --git a/rust/noosphere-car/Cargo.toml b/rust/noosphere-car/Cargo.toml index 3e6489ced..3951ab6f8 100644 --- a/rust/noosphere-car/Cargo.toml +++ b/rust/noosphere-car/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-car" -version = "0.1.2" +version = "0.2.0" edition = "2021" description = "Streaming CAR format support for Noosphere" keywords = ["car", "sync", "noosphere", "ipfs", "cid"] diff --git a/rust/noosphere-cli/CHANGELOG.md b/rust/noosphere-cli/CHANGELOG.md index 301cc865c..b369b6ee0 100644 --- a/rust/noosphere-cli/CHANGELOG.md +++ b/rust/noosphere-cli/CHANGELOG.md @@ -144,6 +144,40 @@ * dev-dependencies * noosphere-ns bumped from 0.7.1 to 0.7.2 +## [0.11.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.10.11...noosphere-cli-v0.11.0) (2023-06-08) + + +### ⚠ BREAKING CHANGES + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) + +### Features + +* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386) + + +### Bug Fixes + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-car bumped from 0.1.2 to 0.2.0 + * noosphere-ipfs bumped from 0.4.4 to 0.5.0 + * noosphere-core bumped from 0.11.0 to 0.12.0 + * noosphere-sphere bumped from 0.5.8 to 0.6.0 + * noosphere-storage bumped from 0.6.3 to 0.7.0 + * noosphere-api bumped from 0.7.9 to 0.8.0 + * noosphere-gateway bumped from 0.4.11 to 0.5.0 + * noosphere bumped from 0.10.11 to 0.11.0 + * dev-dependencies + * noosphere-ns bumped from 0.7.2 to 0.8.0 + ## [0.10.8](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.10.7...noosphere-cli-v0.10.8) (2023-05-11) diff --git a/rust/noosphere-cli/Cargo.toml b/rust/noosphere-cli/Cargo.toml index b9509d63d..7002a717c 100644 --- a/rust/noosphere-cli/Cargo.toml +++ b/rust/noosphere-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-cli" -version = "0.10.11" +version = "0.11.0" edition = "2021" description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol" keywords = ["cli", "sync", "noosphere", "p2p", "ucan"] @@ -23,7 +23,7 @@ test_kubo = [] [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] reqwest = { version = "~0.11", default-features = false, features = ["json", "rustls-tls", "stream"] } -noosphere-ns = { version = "0.7.2", path = "../noosphere-ns" } +noosphere-ns = { version = "0.8.0", path = "../noosphere-ns" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tempfile = { workspace = true } @@ -36,7 +36,7 @@ tower = "~0.4" tower-http = { version = "~0.3", features = ["cors", "trace"] } async-trait = "~0.1" tracing = { workspace = true } -noosphere-car = { version = "0.1.2", path = "../noosphere-car" } +noosphere-car = { version = "0.2.0", path = "../noosphere-car" } url = { version = "^2", features = [ "serde" ] } whoami = "^1" @@ -46,13 +46,13 @@ mime_guess = "^2" witty-phrase-generator = "~0.2" globset = "~0.4" -noosphere-ipfs = { version = "0.4.4", path = "../noosphere-ipfs" } -noosphere-core = { version = "0.11.0", path = "../noosphere-core" } -noosphere-sphere = { version = "0.5.8", path = "../noosphere-sphere" } -noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" } -noosphere-api = { version = "0.7.9", path = "../noosphere-api" } -noosphere-gateway = { version = "0.4.11", path = "../noosphere-gateway" } -noosphere = { version = "0.10.11", path = "../noosphere" } +noosphere-ipfs = { version = "0.5.0", path = "../noosphere-ipfs" } +noosphere-core = { version = "0.12.0", path = "../noosphere-core" } +noosphere-sphere = { version = "0.6.0", path = "../noosphere-sphere" } +noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } +noosphere-api = { version = "0.8.0", path = "../noosphere-api" } +noosphere-gateway = { version = "0.5.0", path = "../noosphere-gateway" } +noosphere = { version = "0.11.0", path = "../noosphere" } ucan = { workspace = true } ucan-key-support = { workspace = true } cid = { workspace = true } diff --git a/rust/noosphere-collections/CHANGELOG.md b/rust/noosphere-collections/CHANGELOG.md index 1e8f47e7e..895bd31fc 100644 --- a/rust/noosphere-collections/CHANGELOG.md +++ b/rust/noosphere-collections/CHANGELOG.md @@ -16,6 +16,25 @@ * dependencies * noosphere-storage bumped from 0.6.2 to 0.6.3 +## [0.6.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-collections-v0.5.3...noosphere-collections-v0.6.0) (2023-06-08) + + +### ⚠ BREAKING CHANGES + +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) + +### Features + +* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-storage bumped from 0.6.3 to 0.7.0 + ## [0.5.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-collections-v0.5.1...noosphere-collections-v0.5.2) (2023-04-22) diff --git a/rust/noosphere-collections/Cargo.toml b/rust/noosphere-collections/Cargo.toml index f229fddef..1844b4f4f 100644 --- a/rust/noosphere-collections/Cargo.toml +++ b/rust/noosphere-collections/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-collections" -version = "0.5.3" +version = "0.6.0" 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"] @@ -31,7 +31,7 @@ async-once-cell = "0.3" async-recursion = "^1" libipld-core = { workspace = true } libipld-cbor = { workspace = true } -noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" } +noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } tokio = { version = "^1", features = ["sync", "io-util"] } tokio-stream = "~0.1" diff --git a/rust/noosphere-core/CHANGELOG.md b/rust/noosphere-core/CHANGELOG.md index 33ee9937b..e4bcf0dd7 100644 --- a/rust/noosphere-core/CHANGELOG.md +++ b/rust/noosphere-core/CHANGELOG.md @@ -5,6 +5,30 @@ * noosphere-storage bumped from 0.4.1 to 0.4.2 * noosphere-collections bumped from 0.3.1 to 0.3.2 +## [0.12.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.11.0...noosphere-core-v0.12.0) (2023-06-08) + + +### ⚠ BREAKING CHANGES + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) + +### Features + +* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca)) + + +### Bug Fixes + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-storage bumped from 0.6.3 to 0.7.0 + * noosphere-collections bumped from 0.5.3 to 0.6.0 + ## [0.11.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.10.2...noosphere-core-v0.11.0) (2023-05-08) diff --git a/rust/noosphere-core/Cargo.toml b/rust/noosphere-core/Cargo.toml index b5b58d34b..dd95e8d88 100644 --- a/rust/noosphere-core/Cargo.toml +++ b/rust/noosphere-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-core" -version = "0.11.0" +version = "0.12.0" edition = "2021" description = "Core data types of the Rust Noosphere implementation" keywords = ["hamt", "ipld", "noosphere", "p2p", "async"] @@ -45,8 +45,8 @@ libipld-cbor = { workspace = true } strum = { workspace = true } strum_macros = { workspace = true } -noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" } -noosphere-collections = { version = "0.5.3", path = "../noosphere-collections" } +noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } +noosphere-collections = { version = "0.6.0", path = "../noosphere-collections" } ucan = { workspace = true } ucan-key-support = { workspace = true } diff --git a/rust/noosphere-gateway/CHANGELOG.md b/rust/noosphere-gateway/CHANGELOG.md index 4279675dd..9a00c1bd4 100644 --- a/rust/noosphere-gateway/CHANGELOG.md +++ b/rust/noosphere-gateway/CHANGELOG.md @@ -76,6 +76,37 @@ * noosphere-ns bumped from 0.7.1 to 0.7.2 * noosphere bumped from 0.10.10 to 0.10.11 +## [0.5.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.4.11...noosphere-gateway-v0.5.0) (2023-06-08) + + +### ⚠ BREAKING CHANGES + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) + +### Features + +* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386) + + +### Bug Fixes + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-car bumped from 0.1.2 to 0.2.0 + * noosphere-ipfs bumped from 0.4.4 to 0.5.0 + * noosphere-core bumped from 0.11.0 to 0.12.0 + * noosphere-ns bumped from 0.7.2 to 0.8.0 + * noosphere-storage bumped from 0.6.3 to 0.7.0 + * noosphere-sphere bumped from 0.5.8 to 0.6.0 + * noosphere-api bumped from 0.7.9 to 0.8.0 + ## [0.4.10](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.4.9...noosphere-gateway-v0.4.10) (2023-05-17) diff --git a/rust/noosphere-gateway/Cargo.toml b/rust/noosphere-gateway/Cargo.toml index 163d1b354..672ce6ede 100644 --- a/rust/noosphere-gateway/Cargo.toml +++ b/rust/noosphere-gateway/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-gateway" -version = "0.4.11" +version = "0.5.0" edition = "2021" description = "A geist on the network that enables user spheres to discover each other" keywords = ["http", "geist", "noosphere", "p2p", "ucan"] @@ -38,13 +38,13 @@ wnfs-namefilter = { version = "0.1.19" } url = { version = "^2", features = [ "serde" ] } mime_guess = "^2" -noosphere-car = { version = "0.1.2", path = "../noosphere-car" } -noosphere-ipfs = { version = "0.4.4", path = "../noosphere-ipfs" } -noosphere-core = { version = "0.11.0", path = "../noosphere-core" } -noosphere-ns = { version = "0.7.2", path = "../noosphere-ns" } -noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" } -noosphere-sphere = { version = "0.5.8", path = "../noosphere-sphere" } -noosphere-api = { version = "0.7.9", path = "../noosphere-api" } +noosphere-car = { version = "0.2.0", path = "../noosphere-car" } +noosphere-ipfs = { version = "0.5.0", path = "../noosphere-ipfs" } +noosphere-core = { version = "0.12.0", path = "../noosphere-core" } +noosphere-ns = { version = "0.8.0", path = "../noosphere-ns" } +noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } +noosphere-sphere = { version = "0.6.0", path = "../noosphere-sphere" } +noosphere-api = { version = "0.8.0", path = "../noosphere-api" } ucan = { workspace = true } ucan-key-support = { workspace = true } cid = { workspace = true } diff --git a/rust/noosphere-into/CHANGELOG.md b/rust/noosphere-into/CHANGELOG.md index 7a4be84e3..1afdff323 100644 --- a/rust/noosphere-into/CHANGELOG.md +++ b/rust/noosphere-into/CHANGELOG.md @@ -84,6 +84,34 @@ * dev-dependencies * noosphere-sphere bumped from 0.5.7 to 0.5.8 +## [0.9.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.8.9...noosphere-into-v0.9.0) (2023-06-08) + + +### ⚠ BREAKING CHANGES + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) + +### Features + +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386) + + +### Bug Fixes + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.11.0 to 0.12.0 + * noosphere-storage bumped from 0.6.3 to 0.7.0 + * noosphere-sphere bumped from 0.5.8 to 0.6.0 + * dev-dependencies + * noosphere-sphere bumped from 0.5.8 to 0.6.0 + ## [0.8.6](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.8.5...noosphere-into-v0.8.6) (2023-05-09) diff --git a/rust/noosphere-into/Cargo.toml b/rust/noosphere-into/Cargo.toml index 7c0fa02c0..6393073fa 100644 --- a/rust/noosphere-into/Cargo.toml +++ b/rust/noosphere-into/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-into" -version = "0.8.9" +version = "0.9.0" edition = "2021" description = "Transformations of Noosphere content into various target formats" keywords = ["html", "ipld", "noosphere", "subtext", "transcode"] @@ -17,9 +17,9 @@ homepage = "https://github.com/subconsciousnetwork/noosphere" readme = "README.md" [dependencies] -noosphere-core = { version = "0.11.0", path = "../noosphere-core" } -noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" } -noosphere-sphere = { version = "0.5.8", path = "../noosphere-sphere" } +noosphere-core = { version = "0.12.0", path = "../noosphere-core" } +noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } +noosphere-sphere = { version = "0.6.0", path = "../noosphere-sphere" } subtext = { version = "0.3.2", features = ["stream"] } async-trait = "~0.1" url = "2" @@ -45,7 +45,7 @@ ucan = { workspace = true } ucan-key-support = { workspace = true } [dev-dependencies] -noosphere-sphere = { version = "0.5.8", path = "../noosphere-sphere", features = ["helpers"] } +noosphere-sphere = { version = "0.6.0", path = "../noosphere-sphere", features = ["helpers"] } wasm-bindgen-test = { workspace = true } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] diff --git a/rust/noosphere-ipfs/CHANGELOG.md b/rust/noosphere-ipfs/CHANGELOG.md index e2d0f13e4..6ae4abb64 100644 --- a/rust/noosphere-ipfs/CHANGELOG.md +++ b/rust/noosphere-ipfs/CHANGELOG.md @@ -24,6 +24,35 @@ * dependencies * noosphere-car bumped from 0.1.1 to 0.1.2 +## [0.5.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.4.4...noosphere-ipfs-v0.5.0) (2023-06-08) + + +### ⚠ BREAKING CHANGES + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) + +### Features + +* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386) + + +### Bug Fixes + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-storage bumped from 0.6.3 to 0.7.0 + * dev-dependencies + * noosphere-storage bumped from 0.6.3 to 0.7.0 + * noosphere-car bumped from 0.1.2 to 0.2.0 + * noosphere-core bumped from 0.11.0 to 0.12.0 + ## [0.4.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.4.2...noosphere-ipfs-v0.4.3) (2023-05-08) diff --git a/rust/noosphere-ipfs/Cargo.toml b/rust/noosphere-ipfs/Cargo.toml index 1f09d47b6..8b96f89ec 100644 --- a/rust/noosphere-ipfs/Cargo.toml +++ b/rust/noosphere-ipfs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ipfs" -version = "0.4.4" +version = "0.5.0" edition = "2021" description = "An interface for an IPFS client." keywords = [ @@ -39,7 +39,7 @@ serde_json = { workspace = true } tokio = { version = "^1", features = ["io-util"] } tracing = { workspace = true } url = { version = "^2", features = [ "serde" ] } -noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" } +noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } ucan = { workspace = true, optional = true } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] @@ -52,6 +52,6 @@ ipfs-api-prelude = "~0.5" [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] rand = "~0.8" libipld-cbor = { workspace = true } -noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" } -noosphere-car = { version = "0.1.2", path = "../noosphere-car" } -noosphere-core = { version = "0.11.0", path = "../noosphere-core" } +noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } +noosphere-car = { version = "0.2.0", path = "../noosphere-car" } +noosphere-core = { version = "0.12.0", path = "../noosphere-core" } diff --git a/rust/noosphere-ns/CHANGELOG.md b/rust/noosphere-ns/CHANGELOG.md index 2d07f4ded..02106a53b 100644 --- a/rust/noosphere-ns/CHANGELOG.md +++ b/rust/noosphere-ns/CHANGELOG.md @@ -71,6 +71,34 @@ * dependencies * noosphere bumped from 0.10.10 to 0.10.11 +## [0.8.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.7.2...noosphere-ns-v0.8.0) (2023-06-08) + + +### ⚠ BREAKING CHANGES + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) + +### Features + +* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386) + + +### Bug Fixes + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-storage bumped from 0.6.3 to 0.7.0 + * noosphere-core bumped from 0.11.0 to 0.12.0 + * noosphere bumped from 0.10.11 to 0.11.0 + * noosphere-ipfs bumped from 0.4.4 to 0.5.0 + ## [0.7.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.7.0...noosphere-ns-v0.7.1) (2023-05-17) diff --git a/rust/noosphere-ns/Cargo.toml b/rust/noosphere-ns/Cargo.toml index ca317f575..98ac828c1 100644 --- a/rust/noosphere-ns/Cargo.toml +++ b/rust/noosphere-ns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ns" -version = "0.7.2" +version = "0.8.0" edition = "2021" description = "A P2P name system for Noosphere" keywords = [ @@ -36,14 +36,14 @@ async-trait = "~0.1" ucan = { workspace = true } ucan-key-support = { workspace = true } tokio = { version = "1.15", features = ["io-util", "io-std", "sync", "macros", "rt", "rt-multi-thread"] } -noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" } -noosphere-core = { version = "0.11.0", path = "../noosphere-core" } +noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } +noosphere-core = { version = "0.12.0", path = "../noosphere-core" } libp2p = { version = "0.51.3", default-features = false, features = [ "ed25519", "identify", "dns", "kad", "macros", "noise", "serde", "tcp", "tokio", "yamux" ] } void = { workspace = true } # noosphere_ns::bin -noosphere = { version = "0.10.11", path = "../noosphere", optional = true } -noosphere-ipfs = { version = "0.4.4", path = "../noosphere-ipfs", optional = true } +noosphere = { version = "0.11.0", path = "../noosphere", optional = true } +noosphere-ipfs = { version = "0.5.0", path = "../noosphere-ipfs", optional = true } clap = { version = "^4.1", features = ["derive"], optional = true } home = { version = "~0.5", optional = true } toml = { version = "~0.5", optional = true } diff --git a/rust/noosphere-sphere/CHANGELOG.md b/rust/noosphere-sphere/CHANGELOG.md index 8cfa2d8f3..e03ff10ff 100644 --- a/rust/noosphere-sphere/CHANGELOG.md +++ b/rust/noosphere-sphere/CHANGELOG.md @@ -18,6 +18,34 @@ * noosphere-ipfs bumped from 0.4.3 to 0.4.4 * noosphere-car bumped from 0.1.1 to 0.1.2 +## [0.6.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-sphere-v0.5.8...noosphere-sphere-v0.6.0) (2023-06-08) + + +### ⚠ BREAKING CHANGES + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) + +### Features + +* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386) + + +### Bug Fixes + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.11.0 to 0.12.0 + * noosphere-storage bumped from 0.6.3 to 0.7.0 + * noosphere-api bumped from 0.7.9 to 0.8.0 + * noosphere-car bumped from 0.1.2 to 0.2.0 + ## [0.5.8](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-sphere-v0.5.7...noosphere-sphere-v0.5.8) (2023-05-12) diff --git a/rust/noosphere-sphere/Cargo.toml b/rust/noosphere-sphere/Cargo.toml index 5ee820d04..a11f86c7a 100644 --- a/rust/noosphere-sphere/Cargo.toml +++ b/rust/noosphere-sphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-sphere" -version = "0.5.8" +version = "0.6.0" edition = "2021" description = "High-level access to content, address books and other features of spheres" keywords = [] @@ -22,10 +22,10 @@ cid = { workspace = true } url = { version = "^2", features = ["serde"] } tracing = { workspace = true } -noosphere-core = { version = "0.11.0", path = "../noosphere-core" } -noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" } -noosphere-api = { version = "0.7.9", path = "../noosphere-api" } -noosphere-car = { version = "0.1.2", path = "../noosphere-car" } +noosphere-core = { version = "0.12.0", path = "../noosphere-core" } +noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } +noosphere-api = { version = "0.8.0", path = "../noosphere-api" } +noosphere-car = { version = "0.2.0", path = "../noosphere-car" } ucan = { workspace = true } ucan-key-support = { workspace = true } diff --git a/rust/noosphere-storage/CHANGELOG.md b/rust/noosphere-storage/CHANGELOG.md index c1fe256e8..eb3bde6b7 100644 --- a/rust/noosphere-storage/CHANGELOG.md +++ b/rust/noosphere-storage/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [0.7.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-storage-v0.6.3...noosphere-storage-v0.7.0) (2023-06-08) + + +### ⚠ BREAKING CHANGES + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) + +### Features + +* Consolidate `NsRecord` implementation in`LinkRecord`. Fixes [#395](https://github.com/subconsciousnetwork/noosphere/issues/395) ([#399](https://github.com/subconsciousnetwork/noosphere/issues/399)) ([9ee4798](https://github.com/subconsciousnetwork/noosphere/commit/9ee47981232fde00b34bb9458c5b0b2799a610ca)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386) + + +### Bug Fixes + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358)) + ## [0.6.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-storage-v0.6.2...noosphere-storage-v0.6.3) (2023-05-08) diff --git a/rust/noosphere-storage/Cargo.toml b/rust/noosphere-storage/Cargo.toml index a92439153..27c99ca1a 100644 --- a/rust/noosphere-storage/Cargo.toml +++ b/rust/noosphere-storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-storage" -version = "0.6.3" +version = "0.7.0" edition = "2021" description = "Pluggable backing storage for the Rust Noosphere implementation" keywords = ["storage", "noosphere", "sled", "ipld", "indexeddb"] diff --git a/rust/noosphere/CHANGELOG.md b/rust/noosphere/CHANGELOG.md index d39e90647..23b677051 100644 --- a/rust/noosphere/CHANGELOG.md +++ b/rust/noosphere/CHANGELOG.md @@ -42,6 +42,35 @@ * noosphere-sphere bumped from 0.5.6 to 0.5.7 * noosphere-into bumped from 0.8.7 to 0.8.8 +## [0.11.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.10.11...noosphere-v0.11.0) (2023-06-08) + + +### ⚠ BREAKING CHANGES + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) + +### Features + +* Migrate blake2b->blake3 everywhere. ([#400](https://github.com/subconsciousnetwork/noosphere/issues/400)) ([f9e0aec](https://github.com/subconsciousnetwork/noosphere/commit/f9e0aecd76a7253aba13b1881af32a2e543fb6de)), closes [#386](https://github.com/subconsciousnetwork/noosphere/issues/386) + + +### Bug Fixes + +* Enable incremental sphere replication ([#409](https://github.com/subconsciousnetwork/noosphere/issues/409)) ([8812a1e](https://github.com/subconsciousnetwork/noosphere/commit/8812a1e8c9348301b36b77d6c1a2024432806358)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.11.0 to 0.12.0 + * noosphere-sphere bumped from 0.5.8 to 0.6.0 + * noosphere-storage bumped from 0.6.3 to 0.7.0 + * noosphere-api bumped from 0.7.9 to 0.8.0 + * noosphere-ipfs bumped from 0.4.4 to 0.5.0 + * noosphere-into bumped from 0.8.9 to 0.9.0 + ## [0.10.11](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.10.10...noosphere-v0.10.11) (2023-05-18) diff --git a/rust/noosphere/Cargo.toml b/rust/noosphere/Cargo.toml index 0eea212fc..8e8fed262 100644 --- a/rust/noosphere/Cargo.toml +++ b/rust/noosphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere" -version = "0.10.11" +version = "0.11.0" edition = "2021" description = "A high-level package for dealing with accessing the Noosphere" keywords = ["noosphere"] @@ -37,11 +37,11 @@ libipld-core = { workspace = true } libipld-cbor = { workspace = true } bytes = "^1" -noosphere-core = { version = "0.11.0", path = "../noosphere-core" } -noosphere-sphere = { version = "0.5.8", path = "../noosphere-sphere" } -noosphere-storage = { version = "0.6.3", path = "../noosphere-storage" } -noosphere-api = { version = "0.7.9", path = "../noosphere-api" } -noosphere-ipfs = { version = "0.4.4", path = "../noosphere-ipfs", optional = true } +noosphere-core = { version = "0.12.0", path = "../noosphere-core" } +noosphere-sphere = { version = "0.6.0", path = "../noosphere-sphere" } +noosphere-storage = { version = "0.7.0", path = "../noosphere-storage" } +noosphere-api = { version = "0.8.0", path = "../noosphere-api" } +noosphere-ipfs = { version = "0.5.0", path = "../noosphere-ipfs", optional = true } ucan = { workspace = true } ucan-key-support = { workspace = true } @@ -56,7 +56,7 @@ rexie = { version = "~0.4" } wasm-bindgen = { workspace = true } wasm-bindgen-futures = { workspace = true } js-sys = { workspace = true } -noosphere-into = { version = "0.8.9", path = "../noosphere-into" } +noosphere-into = { version = "0.9.0", path = "../noosphere-into" } [target.'cfg(target_arch = "wasm32")'.dependencies.web-sys] version = "~0.3"