Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Nylas Java SDK Changelog

## [unreleased]
## [v2.17.1] - Release 2026-06-25

### Fixed
* Prevent double-encoding of pre-encoded path IDs when building request URLs, fixing Gmail attachment download 404s for attachment IDs containing reserved characters such as `:` and `=`
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,13 +50,13 @@ This repository is for contributors and anyone installing the SDK from source. I
Kotlin DSL (`build.gradle.kts`):

```kotlin
implementation("com.nylas.sdk:nylas:2.17.0")
implementation("com.nylas.sdk:nylas:2.17.1")
```

Groovy (`build.gradle`):

```groovy
implementation 'com.nylas.sdk:nylas:2.17.0'
implementation 'com.nylas.sdk:nylas:2.17.1'
```

### Maven
Expand All @@ -65,7 +65,7 @@ implementation 'com.nylas.sdk:nylas:2.17.0'
<dependency>
<groupId>com.nylas.sdk</groupId>
<artifactId>nylas</artifactId>
<version>2.17.0</version>
<version>2.17.1</version>
</dependency>
```

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=com.nylas.sdk
version=2.17.0
version=2.17.1

# Override and set these in ~/.gradle/gradle.properties
ossrhUser=
Expand Down
Loading