From 7e1c738e77c4469b8347afbf579f3b9982e4fc99 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 29 Aug 2023 06:05:29 +0000 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 14 +++++++------- Cargo.lock | 18 +++++++++--------- rust/noosphere-api/CHANGELOG.md | 4 ++++ rust/noosphere-api/Cargo.toml | 4 ++-- rust/noosphere-cli/CHANGELOG.md | 22 ++++++++++++++++++++++ rust/noosphere-cli/Cargo.toml | 16 ++++++++-------- rust/noosphere-core/CHANGELOG.md | 7 +++++++ rust/noosphere-core/Cargo.toml | 2 +- rust/noosphere-gateway/CHANGELOG.md | 23 +++++++++++++++++++++++ rust/noosphere-gateway/Cargo.toml | 12 ++++++------ rust/noosphere-into/CHANGELOG.md | 7 +++++++ rust/noosphere-into/Cargo.toml | 8 ++++---- rust/noosphere-ipfs/CHANGELOG.md | 15 +++++++++++++++ rust/noosphere-ipfs/Cargo.toml | 4 ++-- rust/noosphere-ns/CHANGELOG.md | 16 ++++++++++++++++ rust/noosphere-ns/Cargo.toml | 8 ++++---- rust/noosphere-sphere/CHANGELOG.md | 22 ++++++++++++++++++++++ rust/noosphere-sphere/Cargo.toml | 8 ++++---- rust/noosphere/CHANGELOG.md | 18 ++++++++++++++++++ rust/noosphere/Cargo.toml | 12 ++++++------ 20 files changed, 187 insertions(+), 53 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 10c9caa0d..59731bd21 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,13 +1,13 @@ { "rust/noosphere-api": "0.12.2", - "rust/noosphere-cli": "0.14.1", + "rust/noosphere-cli": "0.14.2", "rust/noosphere-collections": "0.6.3", - "rust/noosphere-core": "0.15.1", + "rust/noosphere-core": "0.15.2", "rust/noosphere-into": "0.10.6", - "rust/noosphere-ns": "0.10.1", + "rust/noosphere-ns": "0.10.2", "rust/noosphere-storage": "0.8.1", - "rust/noosphere": "0.14.1", - "rust/noosphere-ipfs": "0.7.3", - "rust/noosphere-gateway": "0.8.1", - "rust/noosphere-sphere": "0.10.1" + "rust/noosphere": "0.14.2", + "rust/noosphere-ipfs": "0.7.4", + "rust/noosphere-gateway": "0.8.2", + "rust/noosphere-sphere": "0.10.2" } diff --git a/Cargo.lock b/Cargo.lock index 9ba11f34a..49de2def0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3303,7 +3303,7 @@ dependencies = [ [[package]] name = "noosphere" -version = "0.14.1" +version = "0.14.2" dependencies = [ "anyhow", "async-stream", @@ -3345,7 +3345,7 @@ dependencies = [ [[package]] name = "noosphere-api" -version = "0.12.1" +version = "0.12.2" dependencies = [ "anyhow", "cid", @@ -3371,7 +3371,7 @@ dependencies = [ [[package]] name = "noosphere-cli" -version = "0.14.1" +version = "0.14.2" dependencies = [ "anyhow", "async-trait", @@ -3438,7 +3438,7 @@ dependencies = [ [[package]] name = "noosphere-core" -version = "0.15.1" +version = "0.15.2" dependencies = [ "anyhow", "async-once-cell", @@ -3480,7 +3480,7 @@ dependencies = [ [[package]] name = "noosphere-gateway" -version = "0.8.1" +version = "0.8.2" dependencies = [ "anyhow", "async-stream", @@ -3518,7 +3518,7 @@ dependencies = [ [[package]] name = "noosphere-into" -version = "0.10.5" +version = "0.10.6" dependencies = [ "anyhow", "async-compat", @@ -3549,7 +3549,7 @@ dependencies = [ [[package]] name = "noosphere-ipfs" -version = "0.7.3" +version = "0.7.4" dependencies = [ "anyhow", "async-compat", @@ -3577,7 +3577,7 @@ dependencies = [ [[package]] name = "noosphere-ns" -version = "0.10.1" +version = "0.10.2" dependencies = [ "anyhow", "async-trait", @@ -3611,7 +3611,7 @@ dependencies = [ [[package]] name = "noosphere-sphere" -version = "0.10.1" +version = "0.10.2" dependencies = [ "anyhow", "async-stream", diff --git a/rust/noosphere-api/CHANGELOG.md b/rust/noosphere-api/CHANGELOG.md index 66f2e690d..288074613 100644 --- a/rust/noosphere-api/CHANGELOG.md +++ b/rust/noosphere-api/CHANGELOG.md @@ -69,6 +69,10 @@ * noosphere-core bumped from 0.13.0 to 0.13.1 * noosphere-storage bumped from 0.7.0 to 0.7.1 +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.15.1 to 0.15.2 + ## [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 189d3cdff..daef7d25c 100644 --- a/rust/noosphere-api/Cargo.toml +++ b/rust/noosphere-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-api" -version = "0.12.1" +version = "0.12.2" 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,7 +26,7 @@ url = { workspace = true } serde = { workspace = true } serde_urlencoded = "~0.7" tracing = { workspace = true } -noosphere-core = { version = "0.15.1", path = "../noosphere-core" } +noosphere-core = { version = "0.15.2", path = "../noosphere-core" } noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" } iroh-car = { workspace = true } reqwest = { version = "0.11.15", default-features = false, features = ["json", "rustls-tls", "stream"] } diff --git a/rust/noosphere-cli/CHANGELOG.md b/rust/noosphere-cli/CHANGELOG.md index 74671e73d..a6cf0e5d8 100644 --- a/rust/noosphere-cli/CHANGELOG.md +++ b/rust/noosphere-cli/CHANGELOG.md @@ -196,6 +196,28 @@ * dev-dependencies * noosphere-ns bumped from 0.9.3 to 0.9.4 +## [0.14.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.14.1...noosphere-cli-v0.14.2) (2023-08-29) + + +### Bug Fixes + +* Better handling of removed content in `orb` ([#588](https://github.com/subconsciousnetwork/noosphere/issues/588)) ([b811e68](https://github.com/subconsciousnetwork/noosphere/commit/b811e6891aec648d9a856adaeda86335ae94cacb)) +* Increase allowed request body payload size ([#608](https://github.com/subconsciousnetwork/noosphere/issues/608)) ([da83f38](https://github.com/subconsciousnetwork/noosphere/commit/da83f3894d47d606bd148b72db83414a92688cf4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-ipfs bumped from 0.7.3 to 0.7.4 + * noosphere-core bumped from 0.15.1 to 0.15.2 + * noosphere-sphere bumped from 0.10.1 to 0.10.2 + * noosphere-api bumped from 0.12.1 to 0.12.2 + * noosphere-gateway bumped from 0.8.1 to 0.8.2 + * noosphere bumped from 0.14.1 to 0.14.2 + * dev-dependencies + * noosphere-ns bumped from 0.10.1 to 0.10.2 + ## [0.14.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.14.0...noosphere-cli-v0.14.1) (2023-08-10) diff --git a/rust/noosphere-cli/Cargo.toml b/rust/noosphere-cli/Cargo.toml index 6a8d97a7d..afec7ad12 100644 --- a/rust/noosphere-cli/Cargo.toml +++ b/rust/noosphere-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-cli" -version = "0.14.1" +version = "0.14.2" edition = "2021" description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol" keywords = ["cli", "sync", "noosphere", "p2p", "ucan"] @@ -24,7 +24,7 @@ test_kubo = [] [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] tracing-subscriber = { workspace = true } reqwest = { version = "~0.11", default-features = false, features = ["json", "rustls-tls", "stream"] } -noosphere-ns = { version = "0.10.1", path = "../noosphere-ns" } +noosphere-ns = { version = "0.10.2", path = "../noosphere-ns" } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] tempfile = { workspace = true } @@ -45,13 +45,13 @@ mime_guess = "^2" witty-phrase-generator = "~0.2" globset = "~0.4" -noosphere-ipfs = { version = "0.7.3", path = "../noosphere-ipfs" } -noosphere-core = { version = "0.15.1", path = "../noosphere-core" } -noosphere-sphere = { version = "0.10.1", path = "../noosphere-sphere" } +noosphere-ipfs = { version = "0.7.4", path = "../noosphere-ipfs" } +noosphere-core = { version = "0.15.2", path = "../noosphere-core" } +noosphere-sphere = { version = "0.10.2", path = "../noosphere-sphere" } noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" } -noosphere-api = { version = "0.12.1", path = "../noosphere-api" } -noosphere-gateway = { version = "0.8.1", path = "../noosphere-gateway" } -noosphere = { version = "0.14.1", path = "../noosphere" } +noosphere-api = { version = "0.12.2", path = "../noosphere-api" } +noosphere-gateway = { version = "0.8.2", path = "../noosphere-gateway" } +noosphere = { version = "0.14.2", path = "../noosphere" } ucan = { workspace = true } ucan-key-support = { workspace = true } cid = { workspace = true } diff --git a/rust/noosphere-core/CHANGELOG.md b/rust/noosphere-core/CHANGELOG.md index dbc0f4514..182d17d62 100644 --- a/rust/noosphere-core/CHANGELOG.md +++ b/rust/noosphere-core/CHANGELOG.md @@ -10,6 +10,13 @@ * noosphere-storage bumped from 0.7.0 to 0.7.1 * noosphere-collections bumped from 0.6.0 to 0.6.1 +## [0.15.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.15.1...noosphere-core-v0.15.2) (2023-08-29) + + +### Features + +* Ensure adopted link records are fresher than previous entries. Fixes [#258](https://github.com/subconsciousnetwork/noosphere/issues/258), fixes [#562](https://github.com/subconsciousnetwork/noosphere/issues/562) ([#578](https://github.com/subconsciousnetwork/noosphere/issues/578)) ([36e42fb](https://github.com/subconsciousnetwork/noosphere/commit/36e42fb03424858e7731d10ad0a0cf89826b1354)) + ## [0.15.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.15.0...noosphere-core-v0.15.1) (2023-08-10) diff --git a/rust/noosphere-core/Cargo.toml b/rust/noosphere-core/Cargo.toml index b233d6748..e9f6c10ff 100644 --- a/rust/noosphere-core/Cargo.toml +++ b/rust/noosphere-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-core" -version = "0.15.1" +version = "0.15.2" edition = "2021" description = "Core data types of the Rust Noosphere implementation" keywords = ["hamt", "ipld", "noosphere", "p2p", "async"] diff --git a/rust/noosphere-gateway/CHANGELOG.md b/rust/noosphere-gateway/CHANGELOG.md index 7d611814b..da6b2d243 100644 --- a/rust/noosphere-gateway/CHANGELOG.md +++ b/rust/noosphere-gateway/CHANGELOG.md @@ -105,6 +105,29 @@ * dependencies * noosphere-ns bumped from 0.9.3 to 0.9.4 +## [0.8.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.8.1...noosphere-gateway-v0.8.2) (2023-08-29) + + +### Features + +* Ensure adopted link records are fresher than previous entries. Fixes [#258](https://github.com/subconsciousnetwork/noosphere/issues/258), fixes [#562](https://github.com/subconsciousnetwork/noosphere/issues/562) ([#578](https://github.com/subconsciousnetwork/noosphere/issues/578)) ([36e42fb](https://github.com/subconsciousnetwork/noosphere/commit/36e42fb03424858e7731d10ad0a0cf89826b1354)) + + +### Bug Fixes + +* Increase allowed request body payload size ([#608](https://github.com/subconsciousnetwork/noosphere/issues/608)) ([da83f38](https://github.com/subconsciousnetwork/noosphere/commit/da83f3894d47d606bd148b72db83414a92688cf4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-ipfs bumped from 0.7.3 to 0.7.4 + * noosphere-core bumped from 0.15.1 to 0.15.2 + * noosphere-ns bumped from 0.10.1 to 0.10.2 + * noosphere-sphere bumped from 0.10.1 to 0.10.2 + * noosphere-api bumped from 0.12.1 to 0.12.2 + ## [0.8.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.8.0...noosphere-gateway-v0.8.1) (2023-08-10) diff --git a/rust/noosphere-gateway/Cargo.toml b/rust/noosphere-gateway/Cargo.toml index b74925d18..359aeeb6a 100644 --- a/rust/noosphere-gateway/Cargo.toml +++ b/rust/noosphere-gateway/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-gateway" -version = "0.8.1" +version = "0.8.2" edition = "2021" description = "A geist on the network that enables user spheres to discover each other" keywords = ["http", "geist", "noosphere", "p2p", "ucan"] @@ -39,12 +39,12 @@ wnfs-namefilter = { version = "0.1.21" } url = { workspace = true, features = ["serde"] } mime_guess = "^2" -noosphere-ipfs = { version = "0.7.3", path = "../noosphere-ipfs" } -noosphere-core = { version = "0.15.1", path = "../noosphere-core" } -noosphere-ns = { version = "0.10.1", path = "../noosphere-ns" } +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-sphere = { version = "0.10.1", path = "../noosphere-sphere" } -noosphere-api = { version = "0.12.1", path = "../noosphere-api" } +noosphere-sphere = { version = "0.10.2", path = "../noosphere-sphere" } +noosphere-api = { version = "0.12.2", 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 729c65bd3..cce1de058 100644 --- a/rust/noosphere-into/CHANGELOG.md +++ b/rust/noosphere-into/CHANGELOG.md @@ -135,6 +135,13 @@ * dev-dependencies * noosphere-sphere bumped from 0.9.0 to 0.10.0 +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.15.1 to 0.15.2 + * noosphere-sphere bumped from 0.10.1 to 0.10.2 + * dev-dependencies + * noosphere-sphere bumped from 0.10.1 to 0.10.2 + ## [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 3ab9c54ba..7b5ad78eb 100644 --- a/rust/noosphere-into/Cargo.toml +++ b/rust/noosphere-into/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-into" -version = "0.10.5" +version = "0.10.6" 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.15.1", path = "../noosphere-core" } +noosphere-core = { version = "0.15.2", path = "../noosphere-core" } noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" } -noosphere-sphere = { version = "0.10.1", path = "../noosphere-sphere" } +noosphere-sphere = { version = "0.10.2", path = "../noosphere-sphere" } subtext = { version = "0.3.2", features = ["stream"] } async-trait = "~0.1" url = { workspace = true } @@ -44,7 +44,7 @@ ucan = { workspace = true } ucan-key-support = { workspace = true } [dev-dependencies] -noosphere-sphere = { version = "0.10.1", path = "../noosphere-sphere", features = ["helpers"] } +noosphere-sphere = { version = "0.10.2", 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 52427aef6..b971252f6 100644 --- a/rust/noosphere-ipfs/CHANGELOG.md +++ b/rust/noosphere-ipfs/CHANGELOG.md @@ -54,6 +54,21 @@ * noosphere-storage bumped from 0.7.1 to 0.8.0 * noosphere-core bumped from 0.14.0 to 0.15.0 +## [0.7.4](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.7.3...noosphere-ipfs-v0.7.4) (2023-08-29) + + +### Bug Fixes + +* Better handling of removed content in `orb` ([#588](https://github.com/subconsciousnetwork/noosphere/issues/588)) ([b811e68](https://github.com/subconsciousnetwork/noosphere/commit/b811e6891aec648d9a856adaeda86335ae94cacb)) +* Increase allowed request body payload size ([#608](https://github.com/subconsciousnetwork/noosphere/issues/608)) ([da83f38](https://github.com/subconsciousnetwork/noosphere/commit/da83f3894d47d606bd148b72db83414a92688cf4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dev-dependencies + * noosphere-core bumped from 0.15.1 to 0.15.2 + ## [0.7.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.7.2...noosphere-ipfs-v0.7.3) (2023-08-10) diff --git a/rust/noosphere-ipfs/Cargo.toml b/rust/noosphere-ipfs/Cargo.toml index 646e9ba44..3c9f44b22 100644 --- a/rust/noosphere-ipfs/Cargo.toml +++ b/rust/noosphere-ipfs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ipfs" -version = "0.7.3" +version = "0.7.4" edition = "2021" description = "An interface for an IPFS client." keywords = [ @@ -53,4 +53,4 @@ ipfs-api-prelude = "0.6" rand = { workspace = true } iroh-car = { workspace = true } libipld-cbor = { workspace = true } -noosphere-core = { version = "0.15.1", path = "../noosphere-core" } +noosphere-core = { version = "0.15.2", path = "../noosphere-core" } diff --git a/rust/noosphere-ns/CHANGELOG.md b/rust/noosphere-ns/CHANGELOG.md index 76f18fec0..4af5d031c 100644 --- a/rust/noosphere-ns/CHANGELOG.md +++ b/rust/noosphere-ns/CHANGELOG.md @@ -106,6 +106,22 @@ * dependencies * noosphere bumped from 0.13.0 to 0.13.1 +## [0.10.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.10.1...noosphere-ns-v0.10.2) (2023-08-29) + + +### Bug Fixes + +* Increase allowed request body payload size ([#608](https://github.com/subconsciousnetwork/noosphere/issues/608)) ([da83f38](https://github.com/subconsciousnetwork/noosphere/commit/da83f3894d47d606bd148b72db83414a92688cf4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.15.1 to 0.15.2 + * noosphere bumped from 0.14.1 to 0.14.2 + * noosphere-ipfs bumped from 0.7.3 to 0.7.4 + ## [0.10.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ns-v0.10.0...noosphere-ns-v0.10.1) (2023-08-10) diff --git a/rust/noosphere-ns/Cargo.toml b/rust/noosphere-ns/Cargo.toml index d15807b84..78993dcbe 100644 --- a/rust/noosphere-ns/Cargo.toml +++ b/rust/noosphere-ns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ns" -version = "0.10.1" +version = "0.10.2" edition = "2021" description = "A P2P name system for Noosphere" keywords = [ @@ -37,13 +37,13 @@ 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.1", path = "../noosphere-core" } +noosphere-core = { version = "0.15.2", 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.1", path = "../noosphere", optional = true } -noosphere-ipfs = { version = "0.7.3", path = "../noosphere-ipfs", optional = true } +noosphere = { version = "0.14.2", path = "../noosphere", optional = true } +noosphere-ipfs = { version = "0.7.4", 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 3227e862a..1937cd2b0 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.10.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-sphere-v0.10.1...noosphere-sphere-v0.10.2) (2023-08-29) + + +### Features + +* Ensure adopted link records are fresher than previous entries. Fixes [#258](https://github.com/subconsciousnetwork/noosphere/issues/258), fixes [#562](https://github.com/subconsciousnetwork/noosphere/issues/562) ([#578](https://github.com/subconsciousnetwork/noosphere/issues/578)) ([36e42fb](https://github.com/subconsciousnetwork/noosphere/commit/36e42fb03424858e7731d10ad0a0cf89826b1354)) + + +### Bug Fixes + +* Increase allowed request body payload size ([#608](https://github.com/subconsciousnetwork/noosphere/issues/608)) ([da83f38](https://github.com/subconsciousnetwork/noosphere/commit/da83f3894d47d606bd148b72db83414a92688cf4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.15.1 to 0.15.2 + * noosphere-api bumped from 0.12.1 to 0.12.2 + * dev-dependencies + * noosphere-core bumped from 0.15.1 to 0.15.2 + ## [0.10.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-sphere-v0.10.0...noosphere-sphere-v0.10.1) (2023-08-10) diff --git a/rust/noosphere-sphere/Cargo.toml b/rust/noosphere-sphere/Cargo.toml index e942e50b5..e34af8ddd 100644 --- a/rust/noosphere-sphere/Cargo.toml +++ b/rust/noosphere-sphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-sphere" -version = "0.10.1" +version = "0.10.2" 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.1", path = "../noosphere-core" } +noosphere-core = { version = "0.15.2", path = "../noosphere-core" } noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" } -noosphere-api = { version = "0.12.1", path = "../noosphere-api" } +noosphere-api = { version = "0.12.2", 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.1", path = "../noosphere-core", features = ["helpers"] } +noosphere-core = { version = "0.15.2", 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/CHANGELOG.md b/rust/noosphere/CHANGELOG.md index 0d9331f76..a286aca0a 100644 --- a/rust/noosphere/CHANGELOG.md +++ b/rust/noosphere/CHANGELOG.md @@ -75,6 +75,24 @@ * noosphere-ipfs bumped from 0.7.2 to 0.7.3 * noosphere-into bumped from 0.10.4 to 0.10.5 +## [0.14.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.14.1...noosphere-v0.14.2) (2023-08-29) + + +### Bug Fixes + +* Increase allowed request body payload size ([#608](https://github.com/subconsciousnetwork/noosphere/issues/608)) ([da83f38](https://github.com/subconsciousnetwork/noosphere/commit/da83f3894d47d606bd148b72db83414a92688cf4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.15.1 to 0.15.2 + * noosphere-sphere bumped from 0.10.1 to 0.10.2 + * noosphere-api bumped from 0.12.1 to 0.12.2 + * noosphere-ipfs bumped from 0.7.3 to 0.7.4 + * noosphere-into bumped from 0.10.5 to 0.10.6 + ## [0.14.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.13.1...noosphere-v0.14.0) (2023-08-04) diff --git a/rust/noosphere/Cargo.toml b/rust/noosphere/Cargo.toml index 52668d815..5d0227fdc 100644 --- a/rust/noosphere/Cargo.toml +++ b/rust/noosphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere" -version = "0.14.1" +version = "0.14.2" edition = "2021" description = "A high-level package for dealing with accessing the Noosphere" keywords = ["noosphere"] @@ -38,11 +38,11 @@ libipld-core = { workspace = true } libipld-cbor = { workspace = true } bytes = "^1" -noosphere-core = { version = "0.15.1", path = "../noosphere-core" } -noosphere-sphere = { version = "0.10.1", path = "../noosphere-sphere" } +noosphere-core = { version = "0.15.2", path = "../noosphere-core" } +noosphere-sphere = { version = "0.10.2", path = "../noosphere-sphere" } noosphere-storage = { version = "0.8.1", path = "../noosphere-storage" } -noosphere-api = { version = "0.12.1", path = "../noosphere-api" } -noosphere-ipfs = { version = "0.7.3", path = "../noosphere-ipfs", optional = true } +noosphere-api = { version = "0.12.2", path = "../noosphere-api" } +noosphere-ipfs = { version = "0.7.4", path = "../noosphere-ipfs", optional = true } ucan = { workspace = true } ucan-key-support = { workspace = true } @@ -57,7 +57,7 @@ rexie = { version = "~0.4" } wasm-bindgen = { workspace = true } wasm-bindgen-futures = { workspace = true } js-sys = { workspace = true } -noosphere-into = { version = "0.10.5", path = "../noosphere-into" } +noosphere-into = { version = "0.10.6", path = "../noosphere-into" } [target.'cfg(target_arch = "wasm32")'.dependencies.web-sys] version = "~0.3"