diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a8fff045e..e022efde9 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,12 +1,12 @@ { - "rust/noosphere-cli": "0.15.4", - "rust/noosphere-collections": "0.6.7", - "rust/noosphere-core": "0.17.3", - "rust/noosphere-into": "0.11.4", - "rust/noosphere-ns": "0.11.4", - "rust/noosphere-storage": "0.9.3", - "rust/noosphere": "0.15.4", - "rust/noosphere-ipfs": "0.8.4", - "rust/noosphere-gateway": "0.10.3", + "rust/noosphere-cli": "0.16.0", + "rust/noosphere-collections": "0.7.0", + "rust/noosphere-core": "0.18.0", + "rust/noosphere-into": "0.11.5", + "rust/noosphere-ns": "0.11.5", + "rust/noosphere-storage": "0.10.0", + "rust/noosphere": "0.16.0", + "rust/noosphere-ipfs": "0.8.5", + "rust/noosphere-gateway": "0.11.0", "rust/noosphere-common": "0.1.2" } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 74d3eef92..6e8b054a4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3384,7 +3384,7 @@ dependencies = [ [[package]] name = "noosphere" -version = "0.15.4" +version = "0.16.0" dependencies = [ "anyhow", "async-stream", @@ -3432,7 +3432,7 @@ dependencies = [ [[package]] name = "noosphere-cli" -version = "0.15.4" +version = "0.16.0" dependencies = [ "anyhow", "async-trait", @@ -3473,7 +3473,7 @@ dependencies = [ [[package]] name = "noosphere-collections" -version = "0.6.7" +version = "0.7.0" dependencies = [ "anyhow", "async-recursion", @@ -3514,7 +3514,7 @@ dependencies = [ [[package]] name = "noosphere-core" -version = "0.17.3" +version = "0.18.0" dependencies = [ "anyhow", "async-once-cell", @@ -3569,7 +3569,7 @@ dependencies = [ [[package]] name = "noosphere-gateway" -version = "0.10.3" +version = "0.11.0" dependencies = [ "anyhow", "async-stream", @@ -3606,7 +3606,7 @@ dependencies = [ [[package]] name = "noosphere-into" -version = "0.11.4" +version = "0.11.5" dependencies = [ "anyhow", "async-compat", @@ -3636,7 +3636,7 @@ dependencies = [ [[package]] name = "noosphere-ipfs" -version = "0.8.4" +version = "0.8.5" dependencies = [ "anyhow", "async-compat", @@ -3667,7 +3667,7 @@ dependencies = [ [[package]] name = "noosphere-ns" -version = "0.11.4" +version = "0.11.5" dependencies = [ "anyhow", "async-trait", @@ -3702,7 +3702,7 @@ dependencies = [ [[package]] name = "noosphere-storage" -version = "0.9.3" +version = "0.10.0" dependencies = [ "anyhow", "async-stream", diff --git a/rust/noosphere-cli/CHANGELOG.md b/rust/noosphere-cli/CHANGELOG.md index 5362925ca..346f0a118 100644 --- a/rust/noosphere-cli/CHANGELOG.md +++ b/rust/noosphere-cli/CHANGELOG.md @@ -213,6 +213,29 @@ * noosphere-ns bumped from 0.11.3 to 0.11.4 * noosphere bumped from 0.15.3 to 0.15.4 +## [0.16.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.15.4...noosphere-cli-v0.16.0) (2023-11-21) + + +### ⚠ BREAKING CHANGES + +* Initial work refactoring noosphere-gateway to be generic over the ([#698](https://github.com/subconsciousnetwork/noosphere/issues/698)) + +### Features + +* Initial work refactoring noosphere-gateway to be generic over the ([#698](https://github.com/subconsciousnetwork/noosphere/issues/698)) ([92f0d8a](https://github.com/subconsciousnetwork/noosphere/commit/92f0d8a6ff4a76dd971f6e945fcc7ddb01019699)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-ipfs bumped from 0.8.4 to 0.8.5 + * noosphere-core bumped from 0.17.3 to 0.18.0 + * noosphere-storage bumped from 0.9.3 to 0.10.0 + * noosphere-gateway bumped from 0.10.3 to 0.11.0 + * noosphere-ns bumped from 0.11.4 to 0.11.5 + * noosphere bumped from 0.15.4 to 0.16.0 + ## [0.15.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.15.2...noosphere-cli-v0.15.3) (2023-10-12) diff --git a/rust/noosphere-cli/Cargo.toml b/rust/noosphere-cli/Cargo.toml index 45d3f807a..b0e800976 100644 --- a/rust/noosphere-cli/Cargo.toml +++ b/rust/noosphere-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-cli" -version = "0.15.4" +version = "0.16.0" edition = "2021" description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol" keywords = ["cli", "sync", "noosphere", "p2p", "ucan"] @@ -46,12 +46,12 @@ mime_guess = "^2" witty-phrase-generator = "~0.2" globset = "~0.4" -noosphere-ipfs = { version = "0.8.4", path = "../noosphere-ipfs" } -noosphere-core = { version = "0.17.3", path = "../noosphere-core" } -noosphere-storage = { version = "0.9.3", path = "../noosphere-storage" } -noosphere-gateway = { version = "0.10.3", path = "../noosphere-gateway" } -noosphere-ns = { version = "0.11.4", path = "../noosphere-ns", optional = true } -noosphere = { version = "0.15.4", path = "../noosphere" } +noosphere-ipfs = { version = "0.8.5", path = "../noosphere-ipfs" } +noosphere-core = { version = "0.18.0", path = "../noosphere-core" } +noosphere-storage = { version = "0.10.0", path = "../noosphere-storage" } +noosphere-gateway = { version = "0.11.0", path = "../noosphere-gateway" } +noosphere-ns = { version = "0.11.5", path = "../noosphere-ns", optional = true } +noosphere = { version = "0.16.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 32e336cef..b0dc84b8c 100644 --- a/rust/noosphere-collections/CHANGELOG.md +++ b/rust/noosphere-collections/CHANGELOG.md @@ -40,6 +40,24 @@ * dependencies * noosphere-storage bumped from 0.9.2 to 0.9.3 +## [0.7.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-collections-v0.6.7...noosphere-collections-v0.7.0) (2023-11-21) + + +### ⚠ BREAKING CHANGES + +* Initial work refactoring noosphere-gateway to be generic over the ([#698](https://github.com/subconsciousnetwork/noosphere/issues/698)) + +### Features + +* Initial work refactoring noosphere-gateway to be generic over the ([#698](https://github.com/subconsciousnetwork/noosphere/issues/698)) ([92f0d8a](https://github.com/subconsciousnetwork/noosphere/commit/92f0d8a6ff4a76dd971f6e945fcc7ddb01019699)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-storage bumped from 0.9.3 to 0.10.0 + ## [0.6.5](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-collections-v0.6.4...noosphere-collections-v0.6.5) (2023-10-06) diff --git a/rust/noosphere-collections/Cargo.toml b/rust/noosphere-collections/Cargo.toml index 778ee001b..a525fb455 100644 --- a/rust/noosphere-collections/Cargo.toml +++ b/rust/noosphere-collections/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-collections" -version = "0.6.7" +version = "0.7.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"] @@ -27,7 +27,7 @@ byteorder = { workspace = true } async-recursion = { workspace = true } libipld-core = { workspace = true } libipld-cbor = { workspace = true } -noosphere-storage = { version = "0.9.3", path = "../noosphere-storage" } +noosphere-storage = { version = "0.10.0", path = "../noosphere-storage" } tokio = { workspace = true, features = ["sync", "io-util"] } tokio-stream = { workspace = true } diff --git a/rust/noosphere-core/CHANGELOG.md b/rust/noosphere-core/CHANGELOG.md index 29dc8a142..57955abb2 100644 --- a/rust/noosphere-core/CHANGELOG.md +++ b/rust/noosphere-core/CHANGELOG.md @@ -10,6 +10,26 @@ * noosphere-storage bumped from 0.7.0 to 0.7.1 * noosphere-collections bumped from 0.6.0 to 0.6.1 +## [0.18.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.17.3...noosphere-core-v0.18.0) (2023-11-21) + + +### ⚠ BREAKING CHANGES + +* Initial work refactoring noosphere-gateway to be generic over the ([#698](https://github.com/subconsciousnetwork/noosphere/issues/698)) + +### Features + +* Initial work refactoring noosphere-gateway to be generic over the ([#698](https://github.com/subconsciousnetwork/noosphere/issues/698)) ([92f0d8a](https://github.com/subconsciousnetwork/noosphere/commit/92f0d8a6ff4a76dd971f6e945fcc7ddb01019699)) +* Rewrite host headers in API client to embed sphere identity in subdomain when feature 'test-gateway' is enabled. ([#726](https://github.com/subconsciousnetwork/noosphere/issues/726)) ([e55f5f1](https://github.com/subconsciousnetwork/noosphere/commit/e55f5f180c3f6f6ad9a8a35a3387830f80957938)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-storage bumped from 0.9.3 to 0.10.0 + * noosphere-collections bumped from 0.6.7 to 0.7.0 + ## [0.17.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.17.2...noosphere-core-v0.17.3) (2023-11-01) diff --git a/rust/noosphere-core/Cargo.toml b/rust/noosphere-core/Cargo.toml index 1a312013e..d02d5f916 100644 --- a/rust/noosphere-core/Cargo.toml +++ b/rust/noosphere-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-core" -version = "0.17.3" +version = "0.18.0" edition = "2021" description = "Core data types of the Rust Noosphere implementation" keywords = ["hamt", "ipld", "noosphere", "p2p", "async"] @@ -59,8 +59,8 @@ strum_macros = { workspace = true } tokio-util = { workspace = true, features = ["io"] } headers = { workspace = true } noosphere-common = { version = "0.1.2", path = "../noosphere-common" } -noosphere-storage = { version = "0.9.3", path = "../noosphere-storage" } -noosphere-collections = { version = "0.6.7", path = "../noosphere-collections" } +noosphere-storage = { version = "0.10.0", path = "../noosphere-storage" } +noosphere-collections = { version = "0.7.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 85b69c2bd..345a5d3df 100644 --- a/rust/noosphere-gateway/CHANGELOG.md +++ b/rust/noosphere-gateway/CHANGELOG.md @@ -105,6 +105,30 @@ * dependencies * noosphere-ns bumped from 0.9.3 to 0.9.4 +## [0.11.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.10.3...noosphere-gateway-v0.11.0) (2023-11-21) + + +### ⚠ BREAKING CHANGES + +* Initial work refactoring noosphere-gateway to be generic over the ([#698](https://github.com/subconsciousnetwork/noosphere/issues/698)) + +### Features + +* Fix nightly builds and add to CI. ([#690](https://github.com/subconsciousnetwork/noosphere/issues/690)) ([344dd7a](https://github.com/subconsciousnetwork/noosphere/commit/344dd7ad20226232ce9545a9399de0c1c17f6687)) +* Initial work refactoring noosphere-gateway to be generic over the ([#698](https://github.com/subconsciousnetwork/noosphere/issues/698)) ([92f0d8a](https://github.com/subconsciousnetwork/noosphere/commit/92f0d8a6ff4a76dd971f6e945fcc7ddb01019699)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-ipfs bumped from 0.8.4 to 0.8.5 + * noosphere-core bumped from 0.17.3 to 0.18.0 + * noosphere-ns bumped from 0.11.4 to 0.11.5 + * noosphere-storage bumped from 0.9.3 to 0.10.0 + * dev-dependencies + * noosphere-core bumped from 0.17.3 to 0.18.0 + ## [0.10.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.10.2...noosphere-gateway-v0.10.3) (2023-11-01) diff --git a/rust/noosphere-gateway/Cargo.toml b/rust/noosphere-gateway/Cargo.toml index 68cb8db05..8f32f4059 100644 --- a/rust/noosphere-gateway/Cargo.toml +++ b/rust/noosphere-gateway/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-gateway" -version = "0.10.3" +version = "0.11.0" edition = "2021" description = "A geist on the network that enables user spheres to discover each other" keywords = ["http", "geist", "noosphere", "p2p", "ucan"] @@ -24,7 +24,7 @@ tracing = { workspace = true } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] reqwest = { workspace = true } noosphere-common = { version = "0.1.2", path = "../noosphere-common", features = ["helpers"] } -noosphere-core = { version = "0.17.3", path = "../noosphere-core", features = ["helpers"] } +noosphere-core = { version = "0.18.0", path = "../noosphere-core", features = ["helpers"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] anyhow = { workspace = true } @@ -46,10 +46,10 @@ async-stream = { workspace = true } url = { workspace = true, features = ["serde"] } mime_guess = "^2" -noosphere-ipfs = { version = "0.8.4", path = "../noosphere-ipfs" } -noosphere-core = { version = "0.17.3", path = "../noosphere-core" } -noosphere-ns = { version = "0.11.4", path = "../noosphere-ns" } -noosphere-storage = { version = "0.9.3", path = "../noosphere-storage" } +noosphere-ipfs = { version = "0.8.5", path = "../noosphere-ipfs" } +noosphere-core = { version = "0.18.0", path = "../noosphere-core" } +noosphere-ns = { version = "0.11.5", path = "../noosphere-ns" } +noosphere-storage = { version = "0.10.0", path = "../noosphere-storage" } noosphere-common = { version = "0.1.2", path = "../noosphere-common" } ucan = { workspace = true } ucan-key-support = { workspace = true } diff --git a/rust/noosphere-into/CHANGELOG.md b/rust/noosphere-into/CHANGELOG.md index bd554721f..f56f8816e 100644 --- a/rust/noosphere-into/CHANGELOG.md +++ b/rust/noosphere-into/CHANGELOG.md @@ -162,6 +162,13 @@ * dev-dependencies * noosphere-core bumped from 0.17.2 to 0.17.3 +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.17.3 to 0.18.0 + * noosphere-storage bumped from 0.9.3 to 0.10.0 + * dev-dependencies + * noosphere-core bumped from 0.17.3 to 0.18.0 + ## [0.11.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.11.1...noosphere-into-v0.11.2) (2023-10-06) diff --git a/rust/noosphere-into/Cargo.toml b/rust/noosphere-into/Cargo.toml index cd2129e73..1a63efea3 100644 --- a/rust/noosphere-into/Cargo.toml +++ b/rust/noosphere-into/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-into" -version = "0.11.4" +version = "0.11.5" 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.17.3", path = "../noosphere-core" } -noosphere-storage = { version = "0.9.3", path = "../noosphere-storage" } +noosphere-core = { version = "0.18.0", path = "../noosphere-core" } +noosphere-storage = { version = "0.10.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.17.3", path = "../noosphere-core", features = ["helpers"] } +noosphere-core = { version = "0.18.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 526273de1..ac37142c6 100644 --- a/rust/noosphere-ipfs/CHANGELOG.md +++ b/rust/noosphere-ipfs/CHANGELOG.md @@ -64,6 +64,12 @@ * dev-dependencies * noosphere-core bumped from 0.17.2 to 0.17.3 +* The following workspace dependencies were updated + * dependencies + * noosphere-storage bumped from 0.9.3 to 0.10.0 + * dev-dependencies + * noosphere-core bumped from 0.17.3 to 0.18.0 + ## [0.8.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.8.2...noosphere-ipfs-v0.8.3) (2023-10-12) diff --git a/rust/noosphere-ipfs/Cargo.toml b/rust/noosphere-ipfs/Cargo.toml index e92048c8b..7d6f2baf8 100644 --- a/rust/noosphere-ipfs/Cargo.toml +++ b/rust/noosphere-ipfs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ipfs" -version = "0.8.4" +version = "0.8.5" 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.9.3", path = "../noosphere-storage" } +noosphere-storage = { version = "0.10.0", path = "../noosphere-storage" } noosphere-common = { version = "0.1.2", path = "../noosphere-common" } ucan = { workspace = true, optional = true } @@ -54,4 +54,4 @@ iroh-car = { workspace = true } libipld-cbor = { workspace = true } libipld-json = { workspace = true } multihash = { workspace = true } -noosphere-core = { version = "0.17.3", path = "../noosphere-core" } +noosphere-core = { version = "0.18.0", path = "../noosphere-core" } diff --git a/rust/noosphere-ns/CHANGELOG.md b/rust/noosphere-ns/CHANGELOG.md index d89432ae0..49efbe34c 100644 --- a/rust/noosphere-ns/CHANGELOG.md +++ b/rust/noosphere-ns/CHANGELOG.md @@ -135,6 +135,23 @@ * noosphere bumped from 0.15.3 to 0.15.4 * noosphere-ipfs bumped from 0.8.3 to 0.8.4 +## [0.11.5](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.11.4...noosphere-ns-v0.11.5) (2023-11-21) + + +### Features + +* Fix nightly builds and add to CI. ([#690](https://github.com/subconsciousnetwork/noosphere/issues/690)) ([344dd7a](https://github.com/subconsciousnetwork/noosphere/commit/344dd7ad20226232ce9545a9399de0c1c17f6687)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-storage bumped from 0.9.3 to 0.10.0 + * noosphere-core bumped from 0.17.3 to 0.18.0 + * noosphere bumped from 0.15.4 to 0.16.0 + * noosphere-ipfs bumped from 0.8.4 to 0.8.5 + ## [0.11.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.10.2...noosphere-ns-v0.11.0) (2023-09-19) diff --git a/rust/noosphere-ns/Cargo.toml b/rust/noosphere-ns/Cargo.toml index 37057bb16..3511da836 100644 --- a/rust/noosphere-ns/Cargo.toml +++ b/rust/noosphere-ns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ns" -version = "0.11.4" +version = "0.11.5" edition = "2021" description = "A P2P name system for Noosphere" keywords = [ @@ -36,15 +36,15 @@ 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.9.3", path = "../noosphere-storage" } -noosphere-core = { version = "0.17.3", path = "../noosphere-core" } +noosphere-storage = { version = "0.10.0", path = "../noosphere-storage" } +noosphere-core = { version = "0.18.0", path = "../noosphere-core" } noosphere-common = { version = "0.1.2", path = "../noosphere-common" } 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.15.4", path = "../noosphere", optional = true } -noosphere-ipfs = { version = "0.8.4", path = "../noosphere-ipfs", optional = true } +noosphere = { version = "0.16.0", path = "../noosphere", optional = true } +noosphere-ipfs = { version = "0.8.5", path = "../noosphere-ipfs", optional = true } clap = { version = "^4.4", features = ["derive"], optional = true } home = { version = "~0.5", optional = true } toml = { version = "~0.8", optional = true } diff --git a/rust/noosphere-storage/CHANGELOG.md b/rust/noosphere-storage/CHANGELOG.md index a0b7e086b..8b80691a2 100644 --- a/rust/noosphere-storage/CHANGELOG.md +++ b/rust/noosphere-storage/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [0.10.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-storage-v0.9.3...noosphere-storage-v0.10.0) (2023-11-21) + + +### ⚠ BREAKING CHANGES + +* Initial work refactoring noosphere-gateway to be generic over the ([#698](https://github.com/subconsciousnetwork/noosphere/issues/698)) + +### Features + +* Initial work refactoring noosphere-gateway to be generic over the ([#698](https://github.com/subconsciousnetwork/noosphere/issues/698)) ([92f0d8a](https://github.com/subconsciousnetwork/noosphere/commit/92f0d8a6ff4a76dd971f6e945fcc7ddb01019699)) + ## [0.9.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-storage-v0.9.2...noosphere-storage-v0.9.3) (2023-11-01) diff --git a/rust/noosphere-storage/Cargo.toml b/rust/noosphere-storage/Cargo.toml index bb50986a7..714934900 100644 --- a/rust/noosphere-storage/Cargo.toml +++ b/rust/noosphere-storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-storage" -version = "0.9.3" +version = "0.10.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 e922ee638..4d498b7d0 100644 --- a/rust/noosphere/CHANGELOG.md +++ b/rust/noosphere/CHANGELOG.md @@ -93,6 +93,30 @@ * noosphere-core bumped from 0.17.0 to 0.17.1 * noosphere-common bumped from 0.1.0 to 0.1.1 +## [0.16.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.15.4...noosphere-v0.16.0) (2023-11-21) + + +### ⚠ BREAKING CHANGES + +* Initial work refactoring noosphere-gateway to be generic over the ([#698](https://github.com/subconsciousnetwork/noosphere/issues/698)) + +### Features + +* Fix nightly builds and add to CI. ([#690](https://github.com/subconsciousnetwork/noosphere/issues/690)) ([344dd7a](https://github.com/subconsciousnetwork/noosphere/commit/344dd7ad20226232ce9545a9399de0c1c17f6687)) +* Initial work refactoring noosphere-gateway to be generic over the ([#698](https://github.com/subconsciousnetwork/noosphere/issues/698)) ([92f0d8a](https://github.com/subconsciousnetwork/noosphere/commit/92f0d8a6ff4a76dd971f6e945fcc7ddb01019699)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.17.3 to 0.18.0 + * noosphere-storage bumped from 0.9.3 to 0.10.0 + * noosphere-ipfs bumped from 0.8.4 to 0.8.5 + * noosphere-into bumped from 0.11.4 to 0.11.5 + * dev-dependencies + * noosphere-core bumped from 0.17.3 to 0.18.0 + ## [0.15.4](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.15.3...noosphere-v0.15.4) (2023-11-01) diff --git a/rust/noosphere/Cargo.toml b/rust/noosphere/Cargo.toml index 127ab08d8..0e5997fe2 100644 --- a/rust/noosphere/Cargo.toml +++ b/rust/noosphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere" -version = "0.15.4" +version = "0.16.0" edition = "2021" description = "A high-level package for dealing with accessing the Noosphere" keywords = ["noosphere"] @@ -42,9 +42,9 @@ libipld-core = { workspace = true } libipld-cbor = { workspace = true } bytes = "^1" -noosphere-core = { version = "0.17.3", path = "../noosphere-core" } -noosphere-storage = { version = "0.9.3", path = "../noosphere-storage" } -noosphere-ipfs = { version = "0.8.4", path = "../noosphere-ipfs", optional = true } +noosphere-core = { version = "0.18.0", path = "../noosphere-core" } +noosphere-storage = { version = "0.10.0", path = "../noosphere-storage" } +noosphere-ipfs = { version = "0.8.5", path = "../noosphere-ipfs", optional = true } ucan = { workspace = true } ucan-key-support = { workspace = true } @@ -53,7 +53,7 @@ libipld-core = { workspace = true } rand = { workspace = true } serde_json = { workspace = true } -noosphere-core = { version = "0.17.3", path = "../noosphere-core", features = ["helpers"] } +noosphere-core = { version = "0.18.0", path = "../noosphere-core", features = ["helpers"] } noosphere-common = { version = "0.1.2", path = "../noosphere-common", features = ["helpers"] } [target.'cfg(target_arch = "wasm32")'.dependencies] @@ -64,7 +64,7 @@ rexie = { version = "~0.5" } wasm-bindgen = { workspace = true } wasm-bindgen-futures = { workspace = true } js-sys = { workspace = true } -noosphere-into = { version = "0.11.4", path = "../noosphere-into" } +noosphere-into = { version = "0.11.5", path = "../noosphere-into" } [target.'cfg(target_arch = "wasm32")'.dependencies.web-sys] workspace = true