Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v7.7.3 Release #619

Merged
merged 3 commits into from
Jan 23, 2025
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
7 changes: 4 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
# Changelog

## Unreleased
### 7.7.3 / 2025-01-23
* Remove `createdAt` field from message model.
* Change `latestMessageReceivedDate` & `latestMessageSentDate` to be optional on threads model.
* Fix issue where timeout was not being respected when overriding the timeout in the request options.
* Fix issue where query params with array values were not being transformed into comma-delimited strings
* Fix: transform anyEmail array into comma-delimited any_email parameter in threads list

### 7.7.2 / 2024-12-02
* Fix `credentials` resource to use correct endpoint.
Expand All @@ -14,7 +15,7 @@

### 7.7.0 / 2024-11-14
* Add support for Scheduling API.
* Fix issue where inline attachments > 3Mb were not sent correctly.
* Fix issue where inline attachments > 3Mb were not sent correctly.

### 7.6.2 / 2024-10-31
* Add missing `select` field on query params
Expand Down Expand Up @@ -205,7 +206,7 @@
* Introduction of `Enum` types

### 5.10.3 / 2022-01-04
* Prevent `Event` objects from sending an empty list of notifications when not set, causing errors for recurring events
* Prevent `Event` objects from sending an empty list of notifications when not set, causing errors for recurring events

### 5.10.3 / 2021-12-16
* Add missing `provider` option for `urlForAuthentication`
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nylas",
"version": "7.6.1",
"version": "7.7.3",
"description": "A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.",
"main": "lib/cjs/nylas.js",
"types": "lib/types/nylas.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This file is generated by scripts/exportVersion.js
export const SDK_VERSION = '7.6.1';
export const SDK_VERSION = '7.7.3';
Loading