Skip to content

Commit 025072b

Browse files
authored
v1.20.1 Release (#148)
# Description New Nylas Java SDK release contains the following changes: * Provide default implementations for `WebhookHandler` methods `onOpen`, `onClose`, and `onError` * Fix `Tunnel.onMessage` not emitting individual deltas * Change `java-websocket` dependency to `api` configuration # License <!-- Your PR comment must contain the following line for us to merge the PR. --> I confirm that this contribution is made under the terms of the MIT license and that I have the authority necessary to make this contribution on behalf of its copyright owner.
1 parent d9708b3 commit 025072b

2 files changed

Lines changed: 15 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,25 @@ This section contains changes that have been committed but not yet released.
88

99
### Changed
1010

11-
* Provide default implementations for `WebhookHandler` methods `onOpen`, `onClose`, and `onError`
12-
1311
### Deprecated
1412

1513
### Fixed
1614

17-
* Fix `Tunnel.onMessage` not emitting individual deltas
18-
* Change `java-websocket` dependency to `api` configuration
19-
2015
### Removed
2116

2217
### Security
2318

19+
## [1.20.1] - Released 2023-02-09
20+
21+
### Changed
22+
23+
* Provide default implementations for `WebhookHandler` methods `onOpen`, `onClose`, and `onError`
24+
25+
### Fixed
26+
27+
* Fix `Tunnel.onMessage` not emitting individual deltas
28+
* Change `java-websocket` dependency to `api` configuration
29+
2430
## [1.20.0] - Released 2023-02-06
2531

2632
### Added
@@ -369,7 +375,8 @@ This second release aims toward API stability so that we can get to v1.0.0.
369375

370376
Initial preview release
371377

372-
[Unreleased]: https://github.com/nylas/nylas-java/compare/v1.20.0...HEAD
378+
[Unreleased]: https://github.com/nylas/nylas-java/compare/v1.20.1...HEAD
379+
[1.20.1]: https://github.com/nylas/nylas-java/releases/tag/v1.20.1
373380
[1.20.0]: https://github.com/nylas/nylas-java/releases/tag/v1.20.0
374381
[1.19.2]: https://github.com/nylas/nylas-java/releases/tag/v1.19.2
375382
[1.19.1]: https://github.com/nylas/nylas-java/releases/tag/v1.19.1

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ If you have a question about the Nylas Communications Platform, please reach out
1717

1818
**Setup via Gradle**: If you're using Gradle, add the following to your dependencies section of build.gradle:
1919

20-
implementation("com.nylas.sdk:nylas-java-sdk:1.20.0")
20+
implementation("com.nylas.sdk:nylas-java-sdk:1.20.1")
2121

2222
**Setup via Maven**: For projects using Maven, add the following to your POM file:
2323

2424
<dependency>
2525
<groupId>com.nylas.sdk</groupId>
2626
<artifactId>nylas-java-sdk</artifactId>
27-
<version>1.20.0</version>
27+
<version>1.20.1</version>
2828
</dependency>
2929

3030
**Build from source**: To build from source, clone this repo and build the project with Gradle.

0 commit comments

Comments
 (0)