Skip to content

Commit d05b313

Browse files
Hotfix/0.8.1 (#357)
* Feature/wasm update (#341) * Split text and binary client apis * Very initial attempt at new serialization * Defined ser+de for Recipient and ReplySURB * Response errors * builds with changes * Working WS API + moved to separate crate * updated python examples * Fixed parsing bug * Updated go examples * Updated rust examples * formatting * Removed unused imports * dependency updates * Further dependency changes * nymsphinx exposingn framing only if not in wasm32 * Cargo lock changes before develop merge * Pending work * Actually sending and receiving websocket from rust! * more WIP * Initial wasm client + establishing shared key with gateway! * Splitting and sending a message! * WIP * WIP * Initial wasm-ification of the gateway client * Passing reconstruction result to js callback! * Initial WASM cleaning pass * Dependency pruning * Moved processing loop to received_processor + at least ack unwrappingn * Post merge fix * Kinda updated react example * Old print statement removed * Removed yarn.lock * Fixed building issue for other clients * Fixed travis test command * Updated wasm publishing instructions * Increased default presence and metrics sending interval (#354) * Defaulting to mix layer with fewest node if no argument provided (#353) * Defaulting to mix layer with fewest node if no argument provided * cargo fmt * Selecting the gateway randomly from 2 known good ones. (#355) * Selecting the gateway randomly from 2 known good ones. There's a problem with the config file in this commit though. * Saving value of chosen gateway * Removed duplicate printing of gateway being used Co-authored-by: jstuczyn <jedrzej.stuczynski@gmail.com> * More detailed error response on authentication/registration failure (#356) * Updated changelog * Updated version numbers Co-authored-by: Dave Hrycyszyn <futurechimp@users.noreply.github.com>
1 parent f58d19a commit d05b313

File tree

69 files changed

+3488
-2828
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

69 files changed

+3488
-2828
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,5 @@ before_script:
1111
- rustup component add rustfmt
1212
script:
1313
- cargo build
14-
- cargo test -- --test-threads=1
14+
- cargo test --all
1515
- cargo fmt -- --check

CHANGELOG.md

+21-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
11
# Changelog
22

3-
## [v0.8.0](https://github.com/nymtech/nym/tree/v0.8.0)
3+
## [v0.8.1](https://github.com/nymtech/nym/tree/v0.8.1) (2020-09-28)
4+
5+
[Full Changelog](https://github.com/nymtech/nym/compare/v0.8.0...v0.8.1)
6+
7+
**Closed issues:**
8+
9+
- Hardcode two gateways for `client init` if none provided [\#352](https://github.com/nymtech/nym/issues/352)
10+
- Make mixnodes take layer with fewest nodes [\#351](https://github.com/nymtech/nym/issues/351)
11+
- Change default presence/metrics interval for mixnodes/gateways [\#349](https://github.com/nymtech/nym/issues/349)
12+
- Mixnodes should only be able to enter layers 1, 2, or 3 [\#348](https://github.com/nymtech/nym/issues/348)
13+
- Docs are inaccurate [\#337](https://github.com/nymtech/nym/issues/337)
14+
- Figure out the cause of high packet loss on testnet [\#159](https://github.com/nymtech/nym/issues/159)
15+
- Change Topology to GraphTopology [\#76](https://github.com/nymtech/nym/issues/76)
16+
17+
**Merged pull requests:**
18+
19+
- Feature/wasm update [\#341](https://github.com/nymtech/nym/pull/341) ([jstuczyn](https://github.com/jstuczyn))
20+
21+
## [v0.8.0](https://github.com/nymtech/nym/tree/v0.8.0) (2020-09-10)
422

523
[Full Changelog](https://github.com/nymtech/nym/compare/v0.7.0...v0.8.0)
624

@@ -50,6 +68,7 @@ This release introduces, among other things, the following improvements:
5068
- Knocking down delay on message sending default [\#332](https://github.com/nymtech/nym/pull/332) ([futurechimp](https://github.com/futurechimp))
5169
- Made gateway mandatory during init [\#331](https://github.com/nymtech/nym/pull/331) ([jstuczyn](https://github.com/jstuczyn))
5270
- Renaming client binary [\#330](https://github.com/nymtech/nym/pull/330) ([futurechimp](https://github.com/futurechimp))
71+
- v0.8.0 Changelog update [\#328](https://github.com/nymtech/nym/pull/328) ([jstuczyn](https://github.com/jstuczyn))
5372
- Feature/sphinx socks [\#326](https://github.com/nymtech/nym/pull/326) ([futurechimp](https://github.com/futurechimp))
5473
- Feature/print client address on startup [\#325](https://github.com/nymtech/nym/pull/325) ([jstuczyn](https://github.com/jstuczyn))
5574
- Feature/temp wasm example removal [\#324](https://github.com/nymtech/nym/pull/324) ([jstuczyn](https://github.com/jstuczyn))
@@ -60,7 +79,6 @@ This release introduces, among other things, the following improvements:
6079
- Removed unused dependencies [\#315](https://github.com/nymtech/nym/pull/315) ([jstuczyn](https://github.com/jstuczyn))
6180
- Feature/perf messing [\#311](https://github.com/nymtech/nym/pull/311) ([futurechimp](https://github.com/futurechimp))
6281
- Upgrades tungstenite libraries to new versions with 64MB message sizes. [\#310](https://github.com/nymtech/nym/pull/310) ([futurechimp](https://github.com/futurechimp))
63-
- Assigning connection shared key post registration [\#309](https://github.com/nymtech/nym/pull/309) ([jstuczyn](https://github.com/jstuczyn))
6482
- Assigning connection shared key post registration [\#308](https://github.com/nymtech/nym/pull/308) ([jstuczyn](https://github.com/jstuczyn))
6583
- Feature/client binary api update [\#306](https://github.com/nymtech/nym/pull/306) ([jstuczyn](https://github.com/jstuczyn))
6684
- Removes unused Cargo dependencies so we stay slim and trim. [\#305](https://github.com/nymtech/nym/pull/305) ([futurechimp](https://github.com/futurechimp))
@@ -192,7 +210,6 @@ See the [changelog](https://github.com/nymtech/nym/blob/develop/CHANGELOG.md) fo
192210
- Feature/nym sphinx wasm [\#183](https://github.com/nymtech/nym/pull/183) ([futurechimp](https://github.com/futurechimp))
193211
- Improvements to sfw-provider - client communcation [\#180](https://github.com/nymtech/nym/pull/180) ([jstuczyn](https://github.com/jstuczyn))
194212
- Adding Apache 2 license headers to all files [\#178](https://github.com/nymtech/nym/pull/178) ([futurechimp](https://github.com/futurechimp))
195-
- Feature/tcp client connection timeout [\#176](https://github.com/nymtech/nym/pull/176) ([jstuczyn](https://github.com/jstuczyn))
196213
- Feature/service persistence [\#171](https://github.com/nymtech/nym/pull/171) ([futurechimp](https://github.com/futurechimp))
197214

198215
## [v0.6.0](https://github.com/nymtech/nym/tree/v0.6.0) (2020-04-07)
@@ -221,6 +238,7 @@ This release fixes bugs in v0.5.0. All testnet node operators are advised to up
221238

222239
**Merged pull requests:**
223240

241+
- Feature/tcp client connection timeout [\#176](https://github.com/nymtech/nym/pull/176) ([jstuczyn](https://github.com/jstuczyn))
224242
- Feature/mixing stats logging [\#175](https://github.com/nymtech/nym/pull/175) ([jstuczyn](https://github.com/jstuczyn))
225243
- Preventing multiplication overflow for reconnection backoff [\#174](https://github.com/nymtech/nym/pull/174) ([jstuczyn](https://github.com/jstuczyn))
226244
- Feature/non mandatory debug config [\#173](https://github.com/nymtech/nym/pull/173) ([jstuczyn](https://github.com/jstuczyn))

0 commit comments

Comments
 (0)