Skip to content

Commit

Permalink
Merge pull request #1564 from holochain/release-20220908.155008
Browse files Browse the repository at this point in the history
Merge release-20220908.155008 back into develop
  • Loading branch information
github-actions[bot] committed Sep 8, 2022
2 parents bc621e3 + cf8adc0 commit 265ef8f
Show file tree
Hide file tree
Showing 52 changed files with 227 additions and 131 deletions.
50 changes: 50 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,56 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

# \[Unreleased\]

# 20220908.155008

## [holochain\_cli-0.0.56](crates/holochain_cli/CHANGELOG.md#0.0.56)

## [holochain\_cli\_sandbox-0.0.52](crates/holochain_cli_sandbox/CHANGELOG.md#0.0.52)

## [holochain\_cli\_bundle-0.0.51](crates/holochain_cli_bundle/CHANGELOG.md#0.0.51)

## [holochain-0.0.161](crates/holochain/CHANGELOG.md#0.0.161)

## [holochain\_test\_wasm\_common-0.0.52](crates/holochain_test_wasm_common/CHANGELOG.md#0.0.52)

## [holochain\_conductor\_api-0.0.58](crates/holochain_conductor_api/CHANGELOG.md#0.0.58)

## [holochain\_wasm\_test\_utils-0.0.57](crates/holochain_wasm_test_utils/CHANGELOG.md#0.0.57)

## [holochain\_cascade-0.0.60](crates/holochain_cascade/CHANGELOG.md#0.0.60)

## [holochain\_state-0.0.58](crates/holochain_state/CHANGELOG.md#0.0.58)

## [holochain\_p2p-0.0.55](crates/holochain_p2p/CHANGELOG.md#0.0.55)

## [holochain\_types-0.0.55](crates/holochain_types/CHANGELOG.md#0.0.55)

## [holochain\_keystore-0.0.54](crates/holochain_keystore/CHANGELOG.md#0.0.54)

## [holochain\_sqlite-0.0.53](crates/holochain_sqlite/CHANGELOG.md#0.0.53)

## [kitsune\_p2p-0.0.44](crates/kitsune_p2p/CHANGELOG.md#0.0.44)

- Fixes a regression where a node can prematurely end a gossip round if their partner signals that they are done sending data, even if the node itself still has more data to send, which can lead to persistent timeouts between the two nodes. [\#1553](https://github.com/holochain/holochain/pull/1553)

## [kitsune\_p2p\_proxy-0.0.32](crates/kitsune_p2p_proxy/CHANGELOG.md#0.0.32)

## [kitsune\_p2p\_transport\_quic-0.0.32](crates/kitsune_p2p_transport_quic/CHANGELOG.md#0.0.32)

## [kitsune\_p2p\_types-0.0.32](crates/kitsune_p2p_types/CHANGELOG.md#0.0.32)

## [hdk-0.0.151](crates/hdk/CHANGELOG.md#0.0.151)

## [holochain\_zome\_types-0.0.47](crates/holochain_zome_types/CHANGELOG.md#0.0.47)

## [kitsune\_p2p\_dht-0.0.5](crates/kitsune_p2p_dht/CHANGELOG.md#0.0.5)

## [hdi-0.1.1](crates/hdi/CHANGELOG.md#0.1.1)

## [hdk\_derive-0.0.48](crates/hdk_derive/CHANGELOG.md#0.0.48)

## [holochain\_integrity\_types-0.0.18](crates/holochain_integrity_types/CHANGELOG.md#0.0.18)

# 20220907.100911

## [holochain-0.0.160](crates/holochain/CHANGELOG.md#0.0.160)
Expand Down
46 changes: 23 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions crates/hc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased

## 0.0.56

## 0.0.55

## 0.0.54
Expand Down
6 changes: 3 additions & 3 deletions crates/hc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_cli"
version = "0.0.55"
version = "0.0.56"
homepage = "https://github.com/holochain/holochain"
documentation = "https://docs.rs/holochain_cli"
authors = [ "Holochain Core Dev Team <devcore@holochain.org>" ]
Expand All @@ -21,8 +21,8 @@ path = "src/lib.rs"
[dependencies]
anyhow = "1.0"
futures = "0.3"
holochain_cli_bundle = { path = "../hc_bundle", version = "0.0.50"}
holochain_cli_sandbox = { path = "../hc_sandbox", version = "0.0.51"}
holochain_cli_bundle = { path = "../hc_bundle", version = "0.0.51"}
holochain_cli_sandbox = { path = "../hc_sandbox", version = "0.0.52"}
observability = "0.1.3"
structopt = "0.3"
tokio = { version = "1.11", features = [ "full" ] }
2 changes: 2 additions & 0 deletions crates/hc_bundle/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## \[Unreleased\]

## 0.0.51

## 0.0.50

## 0.0.49
Expand Down
4 changes: 2 additions & 2 deletions crates/hc_bundle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_cli_bundle"
version = "0.0.50"
version = "0.0.51"
description = "DNA and hApp bundling functionality for the `hc` Holochain CLI utility"
license = "Apache-2.0"
homepage = "https://github.com/holochain/holochain"
Expand All @@ -22,7 +22,7 @@ path = "src/bin/hc-dna.rs"
anyhow = "1.0"
holochain_util = { path = "../holochain_util", features = ["backtrace"], version = "0.0.11"}
holochain_serialized_bytes = "=0.0.51"
holochain_types = { version = "0.0.54", path = "../holochain_types" }
holochain_types = { version = "0.0.55", path = "../holochain_types" }
mr_bundle = {version = "0.0.15", path = "../mr_bundle"}
serde = { version = "1.0", features = [ "derive" ] }
serde_bytes = "0.11"
Expand Down
2 changes: 2 additions & 0 deletions crates/hc_sandbox/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## \[Unreleased\]

## 0.0.52

## 0.0.51

## 0.0.50
Expand Down
8 changes: 4 additions & 4 deletions crates/hc_sandbox/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_cli_sandbox"
version = "0.0.51"
version = "0.0.52"
homepage = "https://github.com/holochain/holochain"
documentation = "https://docs.rs/holochain_cli_sandbox"
authors = [ "Holochain Core Dev Team <devcore@holochain.org>" ]
Expand All @@ -19,10 +19,10 @@ anyhow = "1.0"
ansi_term = "0.12"
chrono = { version = "0.4.22", default-features = false, features = ["clock", "std", "oldtime", "serde"] }
futures = "0.3"
holochain_conductor_api = { path = "../holochain_conductor_api", version = "0.0.57"}
holochain_types = { path = "../holochain_types", version = "0.0.54"}
holochain_conductor_api = { path = "../holochain_conductor_api", version = "0.0.58"}
holochain_types = { path = "../holochain_types", version = "0.0.55"}
holochain_websocket = { path = "../holochain_websocket", version = "0.0.39"}
holochain_p2p = { path = "../holochain_p2p", version = "0.0.54"}
holochain_p2p = { path = "../holochain_p2p", version = "0.0.55"}
holochain_util = { version = "0.0.11", path = "../holochain_util", features = [ "pw" ] }
nanoid = "0.3"
observability = "0.1.3"
Expand Down
2 changes: 2 additions & 0 deletions crates/hdi/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased

## 0.1.1

## 0.1.0

- Initial minor version bump. This indicates our impression that we have made significant progress towards stabilizing the detereministic integrity layer’s API. [\#1550](https://github.com/holochain/holochain/pull/1550)
Expand Down
6 changes: 3 additions & 3 deletions crates/hdi/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdi"
version = "0.1.0"
version = "0.1.1"
description = "The HDI"
license = "Apache-2.0"
homepage = "https://github.com/holochain/holochain/tree/develop/crates/hdi"
Expand All @@ -23,12 +23,12 @@ test_utils = [
]

[dependencies]
hdk_derive = { version = "0.0.47", path = "../hdk_derive" }
hdk_derive = { version = "0.0.48", path = "../hdk_derive" }
holo_hash = { version = "0.0.31", path = "../holo_hash" }
holochain_wasmer_guest = "=0.0.80"
# it's important that we depend on holochain_integrity_types with no default
# features, both here AND in hdk_derive, to reduce code bloat
holochain_integrity_types = { version = "0.0.17", path = "../holochain_integrity_types", default-features = false }
holochain_integrity_types = { version = "0.0.18", path = "../holochain_integrity_types", default-features = false }
paste = "=1.0.5"
serde = "1.0"
serde_bytes = "0.11"
Expand Down
2 changes: 2 additions & 0 deletions crates/hdk/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## Unreleased

## 0.0.151

## 0.0.150

## 0.0.149
Expand Down
Loading

0 comments on commit 265ef8f

Please sign in to comment.