diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 59731bd21..84b05a376 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -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.12.3", + "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" } diff --git a/Cargo.lock b/Cargo.lock index d82ecf8da..5fadbeb9c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3332,7 +3332,7 @@ dependencies = [ [[package]] name = "noosphere" -version = "0.14.2" +version = "0.15.0" dependencies = [ "anyhow", "async-stream", @@ -3379,7 +3379,7 @@ dependencies = [ [[package]] name = "noosphere-api" -version = "0.12.2" +version = "0.12.3" dependencies = [ "anyhow", "cid", @@ -3405,7 +3405,7 @@ dependencies = [ [[package]] name = "noosphere-cli" -version = "0.14.2" +version = "0.15.0" dependencies = [ "anyhow", "async-trait", @@ -3446,7 +3446,7 @@ dependencies = [ [[package]] name = "noosphere-collections" -version = "0.6.3" +version = "0.6.4" dependencies = [ "anyhow", "async-once-cell", @@ -3484,7 +3484,7 @@ dependencies = [ [[package]] name = "noosphere-core" -version = "0.15.2" +version = "0.16.0" dependencies = [ "anyhow", "async-once-cell", @@ -3539,7 +3539,7 @@ dependencies = [ [[package]] name = "noosphere-gateway" -version = "0.8.2" +version = "0.9.0" dependencies = [ "anyhow", "async-stream", @@ -3575,7 +3575,7 @@ dependencies = [ [[package]] name = "noosphere-into" -version = "0.10.6" +version = "0.11.0" dependencies = [ "anyhow", "async-compat", @@ -3605,7 +3605,7 @@ dependencies = [ [[package]] name = "noosphere-ipfs" -version = "0.7.4" +version = "0.8.0" dependencies = [ "anyhow", "async-compat", @@ -3634,7 +3634,7 @@ dependencies = [ [[package]] name = "noosphere-ns" -version = "0.10.2" +version = "0.11.0" dependencies = [ "anyhow", "async-trait", @@ -3668,7 +3668,7 @@ dependencies = [ [[package]] name = "noosphere-sphere" -version = "0.10.2" +version = "0.11.0+deprecated" dependencies = [ "anyhow", "async-stream", @@ -3699,7 +3699,7 @@ dependencies = [ [[package]] name = "noosphere-storage" -version = "0.8.1" +version = "0.9.0" dependencies = [ "anyhow", "async-stream", diff --git a/rust/noosphere-api/CHANGELOG.md b/rust/noosphere-api/CHANGELOG.md index 288074613..a02b73cc7 100644 --- a/rust/noosphere-api/CHANGELOG.md +++ b/rust/noosphere-api/CHANGELOG.md @@ -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) diff --git a/rust/noosphere-api/Cargo.toml b/rust/noosphere-api/Cargo.toml index daef7d25c..471753db2 100644 --- a/rust/noosphere-api/Cargo.toml +++ b/rust/noosphere-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-api" -version = "0.12.2" +version = "0.12.3" 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,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 } diff --git a/rust/noosphere-cli/CHANGELOG.md b/rust/noosphere-cli/CHANGELOG.md index a6cf0e5d8..4fe68314e 100644 --- a/rust/noosphere-cli/CHANGELOG.md +++ b/rust/noosphere-cli/CHANGELOG.md @@ -196,6 +196,29 @@ * 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-12) + + +### ⚠ BREAKING CHANGES + +* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) + +### Features + +* 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) diff --git a/rust/noosphere-cli/Cargo.toml b/rust/noosphere-cli/Cargo.toml index d32fc4a6b..931099af2 100644 --- a/rust/noosphere-cli/Cargo.toml +++ b/rust/noosphere-cli/Cargo.toml @@ -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"] @@ -44,12 +44,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 } diff --git a/rust/noosphere-collections/CHANGELOG.md b/rust/noosphere-collections/CHANGELOG.md index 68ee0e3e1..53ac0db51 100644 --- a/rust/noosphere-collections/CHANGELOG.md +++ b/rust/noosphere-collections/CHANGELOG.md @@ -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) diff --git a/rust/noosphere-collections/Cargo.toml b/rust/noosphere-collections/Cargo.toml index 0d27aa39d..e4f4f72d7 100644 --- a/rust/noosphere-collections/Cargo.toml +++ b/rust/noosphere-collections/Cargo.toml @@ -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"] @@ -29,7 +29,7 @@ async-once-cell = "0.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 } diff --git a/rust/noosphere-common/CHANGELOG.md b/rust/noosphere-common/CHANGELOG.md new file mode 100644 index 000000000..dfc1d1c74 --- /dev/null +++ b/rust/noosphere-common/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + +## 0.1.0 (2023-09-12) + + +### ⚠ BREAKING CHANGES + +* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) + +### Features + +* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) ([9390797](https://github.com/subconsciousnetwork/noosphere/commit/9390797eb6653fdecd41c3a54225ffd55945bb89)) diff --git a/rust/noosphere-core/CHANGELOG.md b/rust/noosphere-core/CHANGELOG.md index 182d17d62..e7ea5c3ea 100644 --- a/rust/noosphere-core/CHANGELOG.md +++ b/rust/noosphere-core/CHANGELOG.md @@ -10,6 +10,25 @@ * 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-12) + + +### ⚠ BREAKING CHANGES + +* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) + +### Features + +* 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) diff --git a/rust/noosphere-core/Cargo.toml b/rust/noosphere-core/Cargo.toml index 03a90473b..03c696d98 100644 --- a/rust/noosphere-core/Cargo.toml +++ b/rust/noosphere-core/Cargo.toml @@ -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"] @@ -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 } diff --git a/rust/noosphere-gateway/CHANGELOG.md b/rust/noosphere-gateway/CHANGELOG.md index da6b2d243..43e52c5c3 100644 --- a/rust/noosphere-gateway/CHANGELOG.md +++ b/rust/noosphere-gateway/CHANGELOG.md @@ -105,6 +105,27 @@ * 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-12) + + +### ⚠ BREAKING CHANGES + +* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) + +### Features + +* 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-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) diff --git a/rust/noosphere-gateway/Cargo.toml b/rust/noosphere-gateway/Cargo.toml index 20aee3916..b356469ae 100644 --- a/rust/noosphere-gateway/Cargo.toml +++ b/rust/noosphere-gateway/Cargo.toml @@ -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"] @@ -41,10 +41,10 @@ wnfs-namefilter = { 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 } diff --git a/rust/noosphere-into/CHANGELOG.md b/rust/noosphere-into/CHANGELOG.md index cce1de058..ce523230a 100644 --- a/rust/noosphere-into/CHANGELOG.md +++ b/rust/noosphere-into/CHANGELOG.md @@ -142,6 +142,27 @@ * 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-12) + + +### ⚠ BREAKING CHANGES + +* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) + +### Features + +* 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) diff --git a/rust/noosphere-into/Cargo.toml b/rust/noosphere-into/Cargo.toml index 07fd3cf57..2b2a8693d 100644 --- a/rust/noosphere-into/Cargo.toml +++ b/rust/noosphere-into/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-into" -version = "0.10.6" +version = "0.11.0" edition = "2021" description = "Transformations of Noosphere content into various target formats" keywords = ["html", "ipld", "noosphere", "subtext", "transcode"] @@ -17,8 +17,8 @@ homepage = "https://github.com/subconsciousnetwork/noosphere" readme = "README.md" [dependencies] -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" } subtext = { version = "0.3.2", features = ["stream"] } async-trait = "~0.1" url = { workspace = true } @@ -43,7 +43,7 @@ ucan = { workspace = true } ucan-key-support = { workspace = true } [dev-dependencies] -noosphere-core = { version = "0.15.1", path = "../noosphere-core", features = ["helpers"] } +noosphere-core = { version = "0.16.0", path = "../noosphere-core", 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 b971252f6..2271f6092 100644 --- a/rust/noosphere-ipfs/CHANGELOG.md +++ b/rust/noosphere-ipfs/CHANGELOG.md @@ -54,6 +54,26 @@ * noosphere-storage bumped from 0.7.1 to 0.8.0 * noosphere-core bumped from 0.14.0 to 0.15.0 +## [0.8.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.7.4...noosphere-ipfs-v0.8.0) (2023-09-12) + + +### ⚠ BREAKING CHANGES + +* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) + +### Features + +* 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 + * dev-dependencies + * noosphere-core bumped from 0.15.2 to 0.16.0 + ## [0.7.4](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.7.3...noosphere-ipfs-v0.7.4) (2023-08-29) diff --git a/rust/noosphere-ipfs/Cargo.toml b/rust/noosphere-ipfs/Cargo.toml index 26ddda0da..a656e1c16 100644 --- a/rust/noosphere-ipfs/Cargo.toml +++ b/rust/noosphere-ipfs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ipfs" -version = "0.7.4" +version = "0.8.0" edition = "2021" description = "An interface for an IPFS client." keywords = [ @@ -39,7 +39,7 @@ tokio = { workspace = true, features = ["io-util"] } tokio-stream = { workspace = true } tracing = { workspace = true } url = { workspace = true, features = [ "serde" ] } -noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" } +noosphere-storage = { version = "0.9.0", path = "../noosphere-storage" } noosphere-common = { version = "0.1.0", path = "../noosphere-common" } ucan = { workspace = true, optional = true } @@ -52,4 +52,4 @@ ipfs-api-prelude = "0.6" rand = { workspace = true } iroh-car = { workspace = true } libipld-cbor = { workspace = true } -noosphere-core = { version = "0.15.2", path = "../noosphere-core" } +noosphere-core = { version = "0.16.0", path = "../noosphere-core" } diff --git a/rust/noosphere-ns/CHANGELOG.md b/rust/noosphere-ns/CHANGELOG.md index 4af5d031c..baabfd5b6 100644 --- a/rust/noosphere-ns/CHANGELOG.md +++ b/rust/noosphere-ns/CHANGELOG.md @@ -106,6 +106,27 @@ * dependencies * noosphere bumped from 0.13.0 to 0.13.1 +## [0.11.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.10.2...noosphere-ns-v0.11.0) (2023-09-12) + + +### ⚠ BREAKING CHANGES + +* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) + +### Features + +* 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-core bumped from 0.15.2 to 0.16.0 + * noosphere bumped from 0.14.2 to 0.15.0 + * noosphere-ipfs bumped from 0.7.4 to 0.8.0 + ## [0.10.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.10.1...noosphere-ns-v0.10.2) (2023-08-29) diff --git a/rust/noosphere-ns/Cargo.toml b/rust/noosphere-ns/Cargo.toml index 78993dcbe..c56c97f46 100644 --- a/rust/noosphere-ns/Cargo.toml +++ b/rust/noosphere-ns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ns" -version = "0.10.2" +version = "0.11.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 = { workspace = true, features = ["io-util", "io-std", "sync", "macros", "rt", "rt-multi-thread"] } -noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" } -noosphere-core = { version = "0.15.2", path = "../noosphere-core" } +noosphere-storage = { version = "0.9.0", path = "../noosphere-storage" } +noosphere-core = { version = "0.16.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.14.2", path = "../noosphere", optional = true } -noosphere-ipfs = { version = "0.7.4", path = "../noosphere-ipfs", optional = true } +noosphere = { version = "0.15.0", path = "../noosphere", optional = true } +noosphere-ipfs = { version = "0.8.0", path = "../noosphere-ipfs", optional = true } clap = { version = "^4.3", features = ["derive"], optional = true } home = { version = "~0.5", optional = true } toml = { version = "~0.7", optional = true } diff --git a/rust/noosphere-sphere/CHANGELOG.md b/rust/noosphere-sphere/CHANGELOG.md index 1937cd2b0..2af226517 100644 --- a/rust/noosphere-sphere/CHANGELOG.md +++ b/rust/noosphere-sphere/CHANGELOG.md @@ -29,6 +29,28 @@ * noosphere-storage bumped from 0.7.0 to 0.7.1 * noosphere-api bumped from 0.9.0 to 0.9.1 +## [0.11.0+deprecated](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-sphere-v0.10.2...noosphere-sphere-v0.11.0+deprecated) (2023-09-12) + + +### ⚠ BREAKING CHANGES + +* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) + +### Features + +* 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 + * noosphere-api bumped from 0.12.2 to 0.12.3 + * dev-dependencies + * noosphere-core bumped from 0.15.2 to 0.16.0 + ## [0.10.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-sphere-v0.10.1...noosphere-sphere-v0.10.2) (2023-08-29) diff --git a/rust/noosphere-sphere/Cargo.toml b/rust/noosphere-sphere/Cargo.toml index e34af8ddd..4c283fb57 100644 --- a/rust/noosphere-sphere/Cargo.toml +++ b/rust/noosphere-sphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-sphere" -version = "0.10.2" +version = "0.11.0+deprecated" edition = "2021" description = "High-level access to content, address books and other features of spheres" keywords = [] @@ -23,9 +23,9 @@ iroh-car = { workspace = true } url = { version = "^2", features = ["serde"] } tracing = { workspace = true } -noosphere-core = { version = "0.15.2", path = "../noosphere-core" } -noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" } -noosphere-api = { version = "0.12.2", path = "../noosphere-api" } +noosphere-core = { version = "0.16.0", path = "../noosphere-core" } +noosphere-storage = { version = "0.9.0", path = "../noosphere-storage" } +noosphere-api = { version = "0.12.3", path = "../noosphere-api" } ucan = { workspace = true } ucan-key-support = { workspace = true } @@ -43,7 +43,7 @@ serde = { workspace = true } thiserror = { workspace = true } [dev-dependencies] -noosphere-core = { version = "0.15.2", path = "../noosphere-core", features = ["helpers"] } +noosphere-core = { version = "0.16.0", path = "../noosphere-core", features = ["helpers"] } [target.'cfg(target_arch = "wasm32")'.dependencies] # TODO: We should eventually support gateway storage as a specialty target only, diff --git a/rust/noosphere-storage/CHANGELOG.md b/rust/noosphere-storage/CHANGELOG.md index e40b38dad..20bb07def 100644 --- a/rust/noosphere-storage/CHANGELOG.md +++ b/rust/noosphere-storage/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.9.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-storage-v0.8.1...noosphere-storage-v0.9.0) (2023-09-12) + + +### ⚠ BREAKING CHANGES + +* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) + +### Features + +* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) ([9390797](https://github.com/subconsciousnetwork/noosphere/commit/9390797eb6653fdecd41c3a54225ffd55945bb89)) + ## [0.8.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-storage-v0.8.0...noosphere-storage-v0.8.1) (2023-08-10) diff --git a/rust/noosphere-storage/Cargo.toml b/rust/noosphere-storage/Cargo.toml index 1a6042bdf..a8ff9895c 100644 --- a/rust/noosphere-storage/Cargo.toml +++ b/rust/noosphere-storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-storage" -version = "0.8.1" +version = "0.9.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 a286aca0a..cba8a2c95 100644 --- a/rust/noosphere/CHANGELOG.md +++ b/rust/noosphere/CHANGELOG.md @@ -75,6 +75,29 @@ * noosphere-ipfs bumped from 0.7.2 to 0.7.3 * noosphere-into bumped from 0.10.4 to 0.10.5 +## [0.15.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.14.2...noosphere-v0.15.0) (2023-09-12) + + +### ⚠ BREAKING CHANGES + +* Replace `Bundle` with CAR streams in push ([#624](https://github.com/subconsciousnetwork/noosphere/issues/624)) + +### Features + +* 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 + * noosphere-ipfs bumped from 0.7.4 to 0.8.0 + * noosphere-into bumped from 0.10.6 to 0.11.0 + * dev-dependencies + * noosphere-core bumped from 0.15.1 to 0.16.0 + ## [0.14.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.14.1...noosphere-v0.14.2) (2023-08-29) diff --git a/rust/noosphere/Cargo.toml b/rust/noosphere/Cargo.toml index d132a3a01..b0989a3fb 100644 --- a/rust/noosphere/Cargo.toml +++ b/rust/noosphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere" -version = "0.14.2" +version = "0.15.0" edition = "2021" description = "A high-level package for dealing with accessing the Noosphere" keywords = ["noosphere"] @@ -39,9 +39,9 @@ libipld-core = { workspace = true } libipld-cbor = { workspace = true } bytes = "^1" -noosphere-core = { version = "0.15.2", path = "../noosphere-core" } -noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" } -noosphere-ipfs = { version = "0.7.4", path = "../noosphere-ipfs", optional = true } +noosphere-core = { version = "0.16.0", path = "../noosphere-core" } +noosphere-storage = { version = "0.9.0", path = "../noosphere-storage" } +noosphere-ipfs = { version = "0.8.0", path = "../noosphere-ipfs", optional = true } ucan = { workspace = true } ucan-key-support = { workspace = true } @@ -50,7 +50,7 @@ libipld-core = { workspace = true } rand = { workspace = true } serde_json = { workspace = true } -noosphere-core = { version = "0.15.1", path = "../noosphere-core", features = ["helpers"] } +noosphere-core = { version = "0.16.0", path = "../noosphere-core", features = ["helpers"] } noosphere-common = { version = "0.1.0", path = "../noosphere-common", features = ["helpers"] } [target.'cfg(target_arch = "wasm32")'.dependencies] @@ -61,7 +61,7 @@ rexie = { version = "~0.4" } wasm-bindgen = { workspace = true } wasm-bindgen-futures = { workspace = true } js-sys = { workspace = true } -noosphere-into = { version = "0.10.6", path = "../noosphere-into" } +noosphere-into = { version = "0.11.0", path = "../noosphere-into" } [target.'cfg(target_arch = "wasm32")'.dependencies.web-sys] workspace = true