Skip to content
This repository was archived by the owner on Sep 21, 2024. It is now read-only.

Commit 26b64d5

Browse files
chore: release main (#674)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 9d44417 commit 26b64d5

File tree

22 files changed

+203
-66
lines changed

22 files changed

+203
-66
lines changed

.release-please-manifest.json

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
{
2-
"rust/noosphere-cli": "0.15.2",
3-
"rust/noosphere-collections": "0.6.5",
4-
"rust/noosphere-core": "0.17.1",
5-
"rust/noosphere-into": "0.11.2",
6-
"rust/noosphere-ns": "0.11.2",
7-
"rust/noosphere-storage": "0.9.1",
8-
"rust/noosphere": "0.15.2",
9-
"rust/noosphere-ipfs": "0.8.2",
10-
"rust/noosphere-gateway": "0.10.1",
11-
"rust/noosphere-common": "0.1.1"
2+
"rust/noosphere-cli": "0.15.3",
3+
"rust/noosphere-collections": "0.6.6",
4+
"rust/noosphere-core": "0.17.2",
5+
"rust/noosphere-into": "0.11.3",
6+
"rust/noosphere-ns": "0.11.3",
7+
"rust/noosphere-storage": "0.9.2",
8+
"rust/noosphere": "0.15.3",
9+
"rust/noosphere-ipfs": "0.8.3",
10+
"rust/noosphere-gateway": "0.10.2",
11+
"rust/noosphere-common": "0.1.2"
1212
}

Cargo.lock

+10-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

rust/noosphere-cli/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,25 @@
204204
* noosphere-ns bumped from 0.11.0 to 0.11.1
205205
* noosphere bumped from 0.15.0 to 0.15.1
206206

207+
## [0.15.3](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.15.2...noosphere-cli-v0.15.3) (2023-10-12)
208+
209+
210+
### Features
211+
212+
* Introduce `--storage-memory-cache-limit` ([#671](https://github.com/subconsciousnetwork/noosphere/issues/671)) ([9d44417](https://github.com/subconsciousnetwork/noosphere/commit/9d44417756b36a38518bdd28e34b4d3082956b36))
213+
214+
215+
### Dependencies
216+
217+
* The following workspace dependencies were updated
218+
* dependencies
219+
* noosphere-ipfs bumped from 0.8.2 to 0.8.3
220+
* noosphere-core bumped from 0.17.1 to 0.17.2
221+
* noosphere-storage bumped from 0.9.1 to 0.9.2
222+
* noosphere-gateway bumped from 0.10.1 to 0.10.2
223+
* noosphere-ns bumped from 0.11.2 to 0.11.3
224+
* noosphere bumped from 0.15.2 to 0.15.3
225+
207226
## [0.15.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-cli-v0.15.1...noosphere-cli-v0.15.2) (2023-10-06)
208227

209228

rust/noosphere-cli/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-cli"
3-
version = "0.15.2"
3+
version = "0.15.3"
44
edition = "2021"
55
description = "Reference client and pedagogical tool to demonstrate the principles of the Noosphere protocol"
66
keywords = ["cli", "sync", "noosphere", "p2p", "ucan"]
@@ -46,12 +46,12 @@ mime_guess = "^2"
4646
witty-phrase-generator = "~0.2"
4747
globset = "~0.4"
4848

49-
noosphere-ipfs = { version = "0.8.2", path = "../noosphere-ipfs" }
50-
noosphere-core = { version = "0.17.1", path = "../noosphere-core" }
51-
noosphere-storage = { version = "0.9.1", path = "../noosphere-storage" }
52-
noosphere-gateway = { version = "0.10.1", path = "../noosphere-gateway" }
53-
noosphere-ns = { version = "0.11.2", path = "../noosphere-ns", optional = true }
54-
noosphere = { version = "0.15.2", path = "../noosphere" }
49+
noosphere-ipfs = { version = "0.8.3", path = "../noosphere-ipfs" }
50+
noosphere-core = { version = "0.17.2", path = "../noosphere-core" }
51+
noosphere-storage = { version = "0.9.2", path = "../noosphere-storage" }
52+
noosphere-gateway = { version = "0.10.2", path = "../noosphere-gateway" }
53+
noosphere-ns = { version = "0.11.3", path = "../noosphere-ns", optional = true }
54+
noosphere = { version = "0.15.3", path = "../noosphere" }
5555
ucan = { workspace = true }
5656
ucan-key-support = { workspace = true }
5757
cid = { workspace = true }

rust/noosphere-collections/CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
* dependencies
3333
* noosphere-storage bumped from 0.8.1 to 0.9.0
3434

35+
* The following workspace dependencies were updated
36+
* dependencies
37+
* noosphere-storage bumped from 0.9.1 to 0.9.2
38+
3539
## [0.6.5](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-collections-v0.6.4...noosphere-collections-v0.6.5) (2023-10-06)
3640

3741

rust/noosphere-collections/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-collections"
3-
version = "0.6.5"
3+
version = "0.6.6"
44
edition = "2021"
55
description = "Collection data types that are needed by an efficient implementation of Noosphere's IPLD data structures"
66
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
@@ -27,7 +27,7 @@ byteorder = "^1.4"
2727
async-recursion = { workspace = true }
2828
libipld-core = { workspace = true }
2929
libipld-cbor = { workspace = true }
30-
noosphere-storage = { version = "0.9.1", path = "../noosphere-storage" }
30+
noosphere-storage = { version = "0.9.2", path = "../noosphere-storage" }
3131
tokio = { workspace = true, features = ["sync", "io-util"] }
3232

3333
tokio-stream = { workspace = true }

rust/noosphere-common/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Changelog
22

3+
## [0.1.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-common-v0.1.1...noosphere-common-v0.1.2) (2023-10-12)
4+
5+
6+
### Features
7+
8+
* 3P replication fall-back and resilience ([#673](https://github.com/subconsciousnetwork/noosphere/issues/673)) ([08dcc3d](https://github.com/subconsciousnetwork/noosphere/commit/08dcc3d54768fdda6158b1087a32805a5c855e98))
9+
310
## [0.1.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-common-v0.1.0...noosphere-common-v0.1.1) (2023-10-06)
411

512

rust/noosphere-common/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-common"
3-
version = "0.1.1"
3+
version = "0.1.2"
44
edition = "2021"
55
description = "Common, generic utilities that are shared across other Noosphere packages"
66
keywords = ["noosphere"]

rust/noosphere-core/CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,24 @@
1010
* noosphere-storage bumped from 0.7.0 to 0.7.1
1111
* noosphere-collections bumped from 0.6.0 to 0.6.1
1212

13+
## [0.17.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.17.1...noosphere-core-v0.17.2) (2023-10-12)
14+
15+
16+
### Features
17+
18+
* 3P replication fall-back and resilience ([#673](https://github.com/subconsciousnetwork/noosphere/issues/673)) ([08dcc3d](https://github.com/subconsciousnetwork/noosphere/commit/08dcc3d54768fdda6158b1087a32805a5c855e98))
19+
20+
21+
### Dependencies
22+
23+
* The following workspace dependencies were updated
24+
* dependencies
25+
* noosphere-common bumped from 0.1.1 to 0.1.2
26+
* noosphere-storage bumped from 0.9.1 to 0.9.2
27+
* noosphere-collections bumped from 0.6.5 to 0.6.6
28+
* dev-dependencies
29+
* noosphere-common bumped from 0.1.1 to 0.1.2
30+
1331
## [0.17.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-core-v0.17.0...noosphere-core-v0.17.1) (2023-10-06)
1432

1533

rust/noosphere-core/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-core"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
edition = "2021"
55
description = "Core data types of the Rust Noosphere implementation"
66
keywords = ["hamt", "ipld", "noosphere", "p2p", "async"]
@@ -58,9 +58,9 @@ strum = { workspace = true }
5858
strum_macros = { workspace = true }
5959
tokio-util = { workspace = true, features = ["io"] }
6060

61-
noosphere-common = { version = "0.1.1", path = "../noosphere-common" }
62-
noosphere-storage = { version = "0.9.1", path = "../noosphere-storage" }
63-
noosphere-collections = { version = "0.6.5", path = "../noosphere-collections" }
61+
noosphere-common = { version = "0.1.2", path = "../noosphere-common" }
62+
noosphere-storage = { version = "0.9.2", path = "../noosphere-storage" }
63+
noosphere-collections = { version = "0.6.6", path = "../noosphere-collections" }
6464

6565
ucan = { workspace = true }
6666
ucan-key-support = { workspace = true }
@@ -69,7 +69,7 @@ sentry-tracing = { workspace = true, optional = true }
6969
[dev-dependencies]
7070
wasm-bindgen-test = { workspace = true }
7171
serde_bytes = "~0.11"
72-
noosphere-common = { version = "0.1.1", path = "../noosphere-common", features = ["helpers"] }
72+
noosphere-common = { version = "0.1.2", path = "../noosphere-common", features = ["helpers"] }
7373

7474
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
7575
tokio = { workspace = true, features = ["full"] }

rust/noosphere-gateway/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,27 @@
105105
* dependencies
106106
* noosphere-ns bumped from 0.9.3 to 0.9.4
107107

108+
## [0.10.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.10.1...noosphere-gateway-v0.10.2) (2023-10-12)
109+
110+
111+
### Features
112+
113+
* 3P replication fall-back and resilience ([#673](https://github.com/subconsciousnetwork/noosphere/issues/673)) ([08dcc3d](https://github.com/subconsciousnetwork/noosphere/commit/08dcc3d54768fdda6158b1087a32805a5c855e98))
114+
115+
116+
### Dependencies
117+
118+
* The following workspace dependencies were updated
119+
* dependencies
120+
* noosphere-ipfs bumped from 0.8.2 to 0.8.3
121+
* noosphere-core bumped from 0.17.1 to 0.17.2
122+
* noosphere-ns bumped from 0.11.2 to 0.11.3
123+
* noosphere-storage bumped from 0.9.1 to 0.9.2
124+
* noosphere-common bumped from 0.1.1 to 0.1.2
125+
* dev-dependencies
126+
* noosphere-common bumped from 0.1.1 to 0.1.2
127+
* noosphere-core bumped from 0.17.1 to 0.17.2
128+
108129
## [0.10.1](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-gateway-v0.10.0...noosphere-gateway-v0.10.1) (2023-10-06)
109130

110131

rust/noosphere-gateway/Cargo.toml

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-gateway"
3-
version = "0.10.1"
3+
version = "0.10.2"
44
edition = "2021"
55
description = "A geist on the network that enables user spheres to discover each other"
66
keywords = ["http", "geist", "noosphere", "p2p", "ucan"]
@@ -23,8 +23,8 @@ tracing = { workspace = true }
2323

2424
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
2525
reqwest = { workspace = true }
26-
noosphere-common = { version = "0.1.1", path = "../noosphere-common", features = ["helpers"] }
27-
noosphere-core = { version = "0.17.1", path = "../noosphere-core", features = ["helpers"] }
26+
noosphere-common = { version = "0.1.2", path = "../noosphere-common", features = ["helpers"] }
27+
noosphere-core = { version = "0.17.2", path = "../noosphere-core", features = ["helpers"] }
2828

2929
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
3030
anyhow = { workspace = true }
@@ -46,11 +46,11 @@ async-stream = { workspace = true }
4646
url = { workspace = true, features = ["serde"] }
4747
mime_guess = "^2"
4848

49-
noosphere-ipfs = { version = "0.8.2", path = "../noosphere-ipfs" }
50-
noosphere-core = { version = "0.17.1", path = "../noosphere-core" }
51-
noosphere-ns = { version = "0.11.2", path = "../noosphere-ns" }
52-
noosphere-storage = { version = "0.9.1", path = "../noosphere-storage" }
53-
noosphere-common = { version = "0.1.1", path = "../noosphere-common" }
49+
noosphere-ipfs = { version = "0.8.3", path = "../noosphere-ipfs" }
50+
noosphere-core = { version = "0.17.2", path = "../noosphere-core" }
51+
noosphere-ns = { version = "0.11.3", path = "../noosphere-ns" }
52+
noosphere-storage = { version = "0.9.2", path = "../noosphere-storage" }
53+
noosphere-common = { version = "0.1.2", path = "../noosphere-common" }
5454
ucan = { workspace = true }
5555
ucan-key-support = { workspace = true }
5656
cid = { workspace = true }

rust/noosphere-into/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -148,6 +148,13 @@
148148
* dev-dependencies
149149
* noosphere-core bumped from 0.16.0 to 0.17.0
150150

151+
* The following workspace dependencies were updated
152+
* dependencies
153+
* noosphere-core bumped from 0.17.1 to 0.17.2
154+
* noosphere-storage bumped from 0.9.1 to 0.9.2
155+
* dev-dependencies
156+
* noosphere-core bumped from 0.17.1 to 0.17.2
157+
151158
## [0.11.2](https://github.com/subconsciousnetwork/noosphere/compare/noosphere-into-v0.11.1...noosphere-into-v0.11.2) (2023-10-06)
152159

153160

rust/noosphere-into/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "noosphere-into"
3-
version = "0.11.2"
3+
version = "0.11.3"
44
edition = "2021"
55
description = "Transformations of Noosphere content into various target formats"
66
keywords = ["html", "ipld", "noosphere", "subtext", "transcode"]
@@ -17,8 +17,8 @@ homepage = "https://github.com/subconsciousnetwork/noosphere"
1717
readme = "README.md"
1818

1919
[dependencies]
20-
noosphere-core = { version = "0.17.1", path = "../noosphere-core" }
21-
noosphere-storage = { version = "0.9.1", path = "../noosphere-storage" }
20+
noosphere-core = { version = "0.17.2", path = "../noosphere-core" }
21+
noosphere-storage = { version = "0.9.2", path = "../noosphere-storage" }
2222
subtext = { version = "0.3.2", features = ["stream"] }
2323
async-trait = "~0.1"
2424
url = { workspace = true }
@@ -43,7 +43,7 @@ ucan = { workspace = true }
4343
ucan-key-support = { workspace = true }
4444

4545
[dev-dependencies]
46-
noosphere-core = { version = "0.17.1", path = "../noosphere-core", features = ["helpers"] }
46+
noosphere-core = { version = "0.17.2", path = "../noosphere-core", features = ["helpers"] }
4747
wasm-bindgen-test = { workspace = true }
4848

4949
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]

0 commit comments

Comments
 (0)