Skip to content

Commit 060749f

Browse files
authored
v0.19.2 release change notes (#586)
1 parent 713d533 commit 060749f

File tree

3 files changed

+20
-2
lines changed

3 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file.
33

44
The changelog format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

6+
## [0.19.2] - 26-May-2020
7+
8+
**Milestone**: Gorilla.1(0.9.5.1)
9+
Package | Version | Link
10+
---|---|---
11+
SDK Core| v0.19.2 | https://www.npmjs.com/package/symbol-sdk
12+
Catbuffer | v0.0.19 | https://www.npmjs.com/package/catbuffer-typescript
13+
Client Library | v0.8.11 | https://www.npmjs.com/package/symbol-openapi-typescript-node-client
14+
15+
- **[BREAKING CHANGE]** Replaced constructor parameter `config` with `url` in `Listener` class. The constructor is now **only using a complete websocket url (e.g. http://localhost:3000/ws or ws://localhost:3000/ws) but not rest-gateway url anymore (It will NOT append `/ws` suffix to the input url)**.
16+
- **[BREAKING CHANGE]** `RepositoryFactory`: Optional constructor parameters has been moved into `RepositoryFactoryConfig` interface (optional).
17+
- **[BREAKING CHANGE]** Added `websocketInjected` (optional) parameter to the `RepositoryFactoryConfig` interface. `RepositoryFactory.createListener()` can now take injected websocket instance to create `Listener` object.
18+
- **[BREAKING CHANGE]** Added `websocketUrl` (optional) parameter to the `RepositoryFactoryConfig` interface. it allows custom websocket url to be used to create the `Listener` object. By default (not provided), the factory will use rest-gateway url with '/ws' suffix appended (e.g. http://localhost:3000/ws)
19+
- **[BREAKING CHANGE]** `Listener.newBlock` channel is now returning new object `NewBlock` rather than sharing with `BlockInfo` used by rest-gateway payload.
20+
- Added `stateHashSubCacheMerkleRoots` to `BlockInfo`.
21+
622
## [0.19.1] - 21-May-2020
723

824
**Milestone**: Gorilla.1(0.9.5.1)
@@ -499,6 +515,7 @@ Client Library | v0.7.20-alpha.6 | https://www.npmjs.com/package/nem2-sdk-opena
499515

500516
- Initial code release.
501517

518+
[0.19.2]: https://github.com/nemtech/symbol-sdk-typescript-javascript/compare/v0.19.1...v0.19.2
502519
[0.19.1]: https://github.com/nemtech/symbol-sdk-typescript-javascript/compare/v0.19.0...v0.19.1
503520
[0.19.0]: https://github.com/nemtech/symbol-sdk-typescript-javascript/compare/v0.18.0...v0.19.0
504521
[0.18.0]: https://github.com/nemtech/symbol-sdk-typescript-javascript/compare/v0.17.4...v0.18.0

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ The Symbol SDK for TypeScript / JavaScript allows you to develop web, mobile, an
1111

1212
### _Gorilla.1_ Network Compatibility ([email protected])
1313

14-
Due to a network upgrade with [[email protected]](https://github.com/nemtech/catapult-server/releases/tag/v0.9.5.1) version, **it is recommended to use this package's 0.19.1 version and upwards to use this package with Fushicho versioned networks**.
14+
Due to a network upgrade with [[email protected]](https://github.com/nemtech/catapult-server/releases/tag/v0.9.5.1) version, **it is recommended to use this package's 0.19.2 version and upwards to use this package with Fushicho versioned networks**.
1515

16-
The upgrade to this package's [version v0.19.1](https://github.com/nemtech/symbol-sdk-typescript-javascript/releases/tag/v0.19.1) is mandatory for **_Gorilla compatibility**.
16+
The upgrade to this package's [version v0.19.2](https://github.com/nemtech/symbol-sdk-typescript-javascript/releases/tag/v0.19.2) is mandatory for **_Gorilla compatibility**.
1717

1818
Find the complete release notes [here](CHANGELOG.md).
1919

src/infrastructure/infrastructure.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,3 +48,4 @@ export * from './RestrictionAccountRepository';
4848
export * from './RestrictionMosaicRepository';
4949
export * from './TransactionRepository';
5050
export * from './TransactionFilter';
51+
export * from './RepositoryFactoryConfig';

0 commit comments

Comments
 (0)