From 1ae0ac9ece0a0e8dbd07e13ec4d7548a8b50e257 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 4 Oct 2023 12:01:30 -0700 Subject: [PATCH] chore: release main (#664) Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 14 +++++++------- Cargo.lock | 14 +++++++------- rust/noosphere-cli/CHANGELOG.md | 8 ++++++++ rust/noosphere-cli/Cargo.toml | 12 ++++++------ rust/noosphere-core/CHANGELOG.md | 11 +++++++++++ rust/noosphere-core/Cargo.toml | 2 +- rust/noosphere-gateway/CHANGELOG.md | 22 ++++++++++++++++++++++ rust/noosphere-gateway/Cargo.toml | 10 +++++----- rust/noosphere-into/CHANGELOG.md | 6 ++++++ rust/noosphere-into/Cargo.toml | 6 +++--- rust/noosphere-ipfs/CHANGELOG.md | 4 ++++ rust/noosphere-ipfs/Cargo.toml | 4 ++-- rust/noosphere-ns/CHANGELOG.md | 6 ++++++ rust/noosphere-ns/Cargo.toml | 8 ++++---- rust/noosphere/CHANGELOG.md | 8 ++++++++ rust/noosphere/Cargo.toml | 10 +++++----- 16 files changed, 105 insertions(+), 40 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 90fe2df7d..842a0f045 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,12 +1,12 @@ { - "rust/noosphere-cli": "0.15.0", + "rust/noosphere-cli": "0.15.1", "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-core": "0.17.0", + "rust/noosphere-into": "0.11.1", + "rust/noosphere-ns": "0.11.1", "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": "0.15.1", + "rust/noosphere-ipfs": "0.8.1", + "rust/noosphere-gateway": "0.10.0", "rust/noosphere-common": "0.1.0" } \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 014067fed..f0a0a69fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3441,7 +3441,7 @@ dependencies = [ [[package]] name = "noosphere" -version = "0.15.0" +version = "0.15.1" dependencies = [ "anyhow", "async-stream", @@ -3489,7 +3489,7 @@ dependencies = [ [[package]] name = "noosphere-cli" -version = "0.15.0" +version = "0.15.1" dependencies = [ "anyhow", "async-trait", @@ -3567,7 +3567,7 @@ dependencies = [ [[package]] name = "noosphere-core" -version = "0.16.0" +version = "0.17.0" dependencies = [ "anyhow", "async-once-cell", @@ -3622,7 +3622,7 @@ dependencies = [ [[package]] name = "noosphere-gateway" -version = "0.9.0" +version = "0.10.0" dependencies = [ "anyhow", "async-stream", @@ -3659,7 +3659,7 @@ dependencies = [ [[package]] name = "noosphere-into" -version = "0.11.0" +version = "0.11.1" dependencies = [ "anyhow", "async-compat", @@ -3689,7 +3689,7 @@ dependencies = [ [[package]] name = "noosphere-ipfs" -version = "0.8.0" +version = "0.8.1" dependencies = [ "anyhow", "async-compat", @@ -3718,7 +3718,7 @@ dependencies = [ [[package]] name = "noosphere-ns" -version = "0.11.0" +version = "0.11.1" dependencies = [ "anyhow", "async-trait", diff --git a/rust/noosphere-cli/CHANGELOG.md b/rust/noosphere-cli/CHANGELOG.md index 35cc91bc4..2ef20ebfd 100644 --- a/rust/noosphere-cli/CHANGELOG.md +++ b/rust/noosphere-cli/CHANGELOG.md @@ -196,6 +196,14 @@ * dev-dependencies * noosphere-ns bumped from 0.9.3 to 0.9.4 +* The following workspace dependencies were updated + * dependencies + * noosphere-ipfs bumped from 0.8.0 to 0.8.1 + * noosphere-core bumped from 0.16.0 to 0.17.0 + * noosphere-gateway bumped from 0.9.0 to 0.10.0 + * noosphere-ns bumped from 0.11.0 to 0.11.1 + * noosphere bumped from 0.15.0 to 0.15.1 + ## [0.15.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.14.2...noosphere-cli-v0.15.0) (2023-09-19) diff --git a/rust/noosphere-cli/Cargo.toml b/rust/noosphere-cli/Cargo.toml index cc7e038e5..3091764a6 100644 --- a/rust/noosphere-cli/Cargo.toml +++ b/rust/noosphere-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-cli" -version = "0.15.0" +version = "0.15.1" 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.0", path = "../noosphere-ipfs" } -noosphere-core = { version = "0.16.0", path = "../noosphere-core" } +noosphere-ipfs = { version = "0.8.1", path = "../noosphere-ipfs" } +noosphere-core = { version = "0.17.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" } +noosphere-gateway = { version = "0.10.0", path = "../noosphere-gateway" } +noosphere-ns = { version = "0.11.1", path = "../noosphere-ns", optional = true } +noosphere = { version = "0.15.1", 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 ea67b4f8c..e6bebbce0 100644 --- a/rust/noosphere-core/CHANGELOG.md +++ b/rust/noosphere-core/CHANGELOG.md @@ -10,6 +10,17 @@ * noosphere-storage bumped from 0.7.0 to 0.7.1 * noosphere-collections bumped from 0.6.0 to 0.6.1 +## [0.17.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.16.0...noosphere-core-v0.17.0) (2023-10-04) + + +### ⚠ BREAKING CHANGES + +* History compaction for spheres and gateways ([#661](https://github.com/subconsciousnetwork/noosphere/issues/661)) + +### Features + +* History compaction for spheres and gateways ([#661](https://github.com/subconsciousnetwork/noosphere/issues/661)) ([b8f41b6](https://github.com/subconsciousnetwork/noosphere/commit/b8f41b6bea9393e0dddfce94fd2fd5e4188e28d7)) + ## [0.16.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.15.2...noosphere-core-v0.16.0) (2023-09-19) diff --git a/rust/noosphere-core/Cargo.toml b/rust/noosphere-core/Cargo.toml index 83e6fba59..53adb83a5 100644 --- a/rust/noosphere-core/Cargo.toml +++ b/rust/noosphere-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-core" -version = "0.16.0" +version = "0.17.0" 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 ace63ae21..62efea51d 100644 --- a/rust/noosphere-gateway/CHANGELOG.md +++ b/rust/noosphere-gateway/CHANGELOG.md @@ -105,6 +105,28 @@ * dependencies * noosphere-ns bumped from 0.9.3 to 0.9.4 +## [0.10.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.9.0...noosphere-gateway-v0.10.0) (2023-10-04) + + +### ⚠ BREAKING CHANGES + +* History compaction for spheres and gateways ([#661](https://github.com/subconsciousnetwork/noosphere/issues/661)) + +### Features + +* History compaction for spheres and gateways ([#661](https://github.com/subconsciousnetwork/noosphere/issues/661)) ([b8f41b6](https://github.com/subconsciousnetwork/noosphere/commit/b8f41b6bea9393e0dddfce94fd2fd5e4188e28d7)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * noosphere-ipfs bumped from 0.8.0 to 0.8.1 + * noosphere-core bumped from 0.16.0 to 0.17.0 + * noosphere-ns bumped from 0.11.0 to 0.11.1 + * dev-dependencies + * noosphere-core bumped from 0.16.0 to 0.17.0 + ## [0.9.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.8.2...noosphere-gateway-v0.9.0) (2023-09-19) diff --git a/rust/noosphere-gateway/Cargo.toml b/rust/noosphere-gateway/Cargo.toml index 7692bbae3..919f82e7f 100644 --- a/rust/noosphere-gateway/Cargo.toml +++ b/rust/noosphere-gateway/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-gateway" -version = "0.9.0" +version = "0.10.0" edition = "2021" description = "A geist on the network that enables user spheres to discover each other" keywords = ["http", "geist", "noosphere", "p2p", "ucan"] @@ -21,7 +21,7 @@ tracing = { workspace = true } [target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies] reqwest = { workspace = true } noosphere-common = { version = "0.1.0", path = "../noosphere-common", features = ["helpers"] } -noosphere-core = { version = "0.16.0", path = "../noosphere-core", features = ["helpers"] } +noosphere-core = { version = "0.17.0", path = "../noosphere-core", features = ["helpers"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] anyhow = { workspace = true } @@ -43,9 +43,9 @@ deterministic-bloom = { workspace = true } url = { workspace = true, features = ["serde"] } mime_guess = "^2" -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-ipfs = { version = "0.8.1", path = "../noosphere-ipfs" } +noosphere-core = { version = "0.17.0", path = "../noosphere-core" } +noosphere-ns = { version = "0.11.1", path = "../noosphere-ns" } noosphere-storage = { version = "0.9.0", path = "../noosphere-storage" } ucan = { workspace = true } ucan-key-support = { workspace = true } diff --git a/rust/noosphere-into/CHANGELOG.md b/rust/noosphere-into/CHANGELOG.md index 28e06e6f1..13f455e14 100644 --- a/rust/noosphere-into/CHANGELOG.md +++ b/rust/noosphere-into/CHANGELOG.md @@ -142,6 +142,12 @@ * dev-dependencies * noosphere-sphere bumped from 0.10.1 to 0.10.2 +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.16.0 to 0.17.0 + * dev-dependencies + * noosphere-core bumped from 0.16.0 to 0.17.0 + ## [0.11.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.10.6...noosphere-into-v0.11.0) (2023-09-19) diff --git a/rust/noosphere-into/Cargo.toml b/rust/noosphere-into/Cargo.toml index 2b2a8693d..2c69d8a6b 100644 --- a/rust/noosphere-into/Cargo.toml +++ b/rust/noosphere-into/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-into" -version = "0.11.0" +version = "0.11.1" edition = "2021" description = "Transformations of Noosphere content into various target formats" keywords = ["html", "ipld", "noosphere", "subtext", "transcode"] @@ -17,7 +17,7 @@ homepage = "https://github.com/subconsciousnetwork/noosphere" readme = "README.md" [dependencies] -noosphere-core = { version = "0.16.0", path = "../noosphere-core" } +noosphere-core = { version = "0.17.0", path = "../noosphere-core" } noosphere-storage = { version = "0.9.0", path = "../noosphere-storage" } subtext = { version = "0.3.2", features = ["stream"] } async-trait = "~0.1" @@ -43,7 +43,7 @@ ucan = { workspace = true } ucan-key-support = { workspace = true } [dev-dependencies] -noosphere-core = { version = "0.16.0", path = "../noosphere-core", features = ["helpers"] } +noosphere-core = { version = "0.17.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 e34ed5857..4e3cd8eea 100644 --- a/rust/noosphere-ipfs/CHANGELOG.md +++ b/rust/noosphere-ipfs/CHANGELOG.md @@ -54,6 +54,10 @@ * noosphere-storage bumped from 0.7.1 to 0.8.0 * noosphere-core bumped from 0.14.0 to 0.15.0 +* The following workspace dependencies were updated + * dev-dependencies + * noosphere-core bumped from 0.16.0 to 0.17.0 + ## [0.8.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-ipfs-v0.7.4...noosphere-ipfs-v0.8.0) (2023-09-19) diff --git a/rust/noosphere-ipfs/Cargo.toml b/rust/noosphere-ipfs/Cargo.toml index a656e1c16..1712125a1 100644 --- a/rust/noosphere-ipfs/Cargo.toml +++ b/rust/noosphere-ipfs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ipfs" -version = "0.8.0" +version = "0.8.1" edition = "2021" description = "An interface for an IPFS client." keywords = [ @@ -52,4 +52,4 @@ ipfs-api-prelude = "0.6" rand = { workspace = true } iroh-car = { workspace = true } libipld-cbor = { workspace = true } -noosphere-core = { version = "0.16.0", path = "../noosphere-core" } +noosphere-core = { version = "0.17.0", path = "../noosphere-core" } diff --git a/rust/noosphere-ns/CHANGELOG.md b/rust/noosphere-ns/CHANGELOG.md index 813e68fbd..cddf6d037 100644 --- a/rust/noosphere-ns/CHANGELOG.md +++ b/rust/noosphere-ns/CHANGELOG.md @@ -106,6 +106,12 @@ * dependencies * noosphere bumped from 0.13.0 to 0.13.1 +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.16.0 to 0.17.0 + * noosphere bumped from 0.15.0 to 0.15.1 + * noosphere-ipfs bumped from 0.8.0 to 0.8.1 + ## [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 b7fdedc6a..376fb7847 100644 --- a/rust/noosphere-ns/Cargo.toml +++ b/rust/noosphere-ns/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere-ns" -version = "0.11.0" +version = "0.11.1" edition = "2021" description = "A P2P name system for Noosphere" keywords = [ @@ -37,14 +37,14 @@ 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.0", path = "../noosphere-storage" } -noosphere-core = { version = "0.16.0", path = "../noosphere-core" } +noosphere-core = { version = "0.17.0", path = "../noosphere-core" } noosphere-common = { version = "0.1.0", 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.0", path = "../noosphere", optional = true } -noosphere-ipfs = { version = "0.8.0", path = "../noosphere-ipfs", optional = true } +noosphere = { version = "0.15.1", path = "../noosphere", optional = true } +noosphere-ipfs = { version = "0.8.1", path = "../noosphere-ipfs", optional = true } clap = { version = "^4.4", features = ["derive"], optional = true } home = { version = "~0.5", optional = true } toml = { version = "~0.7", optional = true } diff --git a/rust/noosphere/CHANGELOG.md b/rust/noosphere/CHANGELOG.md index 154f85e1f..ce1384a25 100644 --- a/rust/noosphere/CHANGELOG.md +++ b/rust/noosphere/CHANGELOG.md @@ -75,6 +75,14 @@ * noosphere-ipfs bumped from 0.7.2 to 0.7.3 * noosphere-into bumped from 0.10.4 to 0.10.5 +* The following workspace dependencies were updated + * dependencies + * noosphere-core bumped from 0.16.0 to 0.17.0 + * noosphere-ipfs bumped from 0.8.0 to 0.8.1 + * noosphere-into bumped from 0.11.0 to 0.11.1 + * dev-dependencies + * noosphere-core bumped from 0.16.0 to 0.17.0 + ## [0.15.0](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-v0.14.2...noosphere-v0.15.0) (2023-09-19) diff --git a/rust/noosphere/Cargo.toml b/rust/noosphere/Cargo.toml index acd40169b..07d989f16 100644 --- a/rust/noosphere/Cargo.toml +++ b/rust/noosphere/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "noosphere" -version = "0.15.0" +version = "0.15.1" edition = "2021" description = "A high-level package for dealing with accessing the Noosphere" keywords = ["noosphere"] @@ -41,9 +41,9 @@ libipld-core = { workspace = true } libipld-cbor = { workspace = true } bytes = "^1" -noosphere-core = { version = "0.16.0", path = "../noosphere-core" } +noosphere-core = { version = "0.17.0", path = "../noosphere-core" } noosphere-storage = { version = "0.9.0", path = "../noosphere-storage" } -noosphere-ipfs = { version = "0.8.0", path = "../noosphere-ipfs", optional = true } +noosphere-ipfs = { version = "0.8.1", path = "../noosphere-ipfs", optional = true } ucan = { workspace = true } ucan-key-support = { workspace = true } @@ -52,7 +52,7 @@ libipld-core = { workspace = true } rand = { workspace = true } serde_json = { workspace = true } -noosphere-core = { version = "0.16.0", path = "../noosphere-core", features = ["helpers"] } +noosphere-core = { version = "0.17.0", path = "../noosphere-core", features = ["helpers"] } noosphere-common = { version = "0.1.0", path = "../noosphere-common", features = ["helpers"] } [target.'cfg(target_arch = "wasm32")'.dependencies] @@ -63,7 +63,7 @@ rexie = { version = "~0.5" } wasm-bindgen = { workspace = true } wasm-bindgen-futures = { workspace = true } js-sys = { workspace = true } -noosphere-into = { version = "0.11.0", path = "../noosphere-into" } +noosphere-into = { version = "0.11.1", path = "../noosphere-into" } [target.'cfg(target_arch = "wasm32")'.dependencies.web-sys] workspace = true