Skip to content

Commit 74eb4a3

Browse files
authored
Release v8.0.0 (#689)
1 parent 40c6588 commit 74eb4a3

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,17 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## [8.0.0] - 2025-12-12
99

1010
### Added
11-
- Support for query parameters (`includeHiddenFolders`, `select`) in `folders.find` method ([#685](https://github.com/nylas/nylas-nodejs/issues/685))
11+
- Migrated the SDK from `node-fetch` to the native Fetch API available in Node.js 18+.
12+
- Removed the custom fetch wrapper abstraction.
13+
- Updated Node.js engine requirements.
14+
- Updated Folders.find method to support optional queryParams (includeHiddenFolders, select).
15+
- Support for query parameters (`includeHiddenFolders`, `select`) in `folders.find` method ([#685](https://github.com/nylas/nylas-nodejs/issues/685)).
16+
17+
### Breaking change
18+
- Requires Node.js 18+. Support for Node 16 has been dropped.
1219

1320
## [7.13.3] - 2025-10-10
1421

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "nylas",
3-
"version": "7.13.3",
3+
"version": "8.0.0",
44
"description": "A NodeJS wrapper for the Nylas REST API for email, contacts, and calendar.",
55
"main": "lib/cjs/nylas.js",
66
"types": "lib/types/nylas.d.ts",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// This file is generated by scripts/exportVersion.js
2-
export const SDK_VERSION = '7.13.3';
2+
export const SDK_VERSION = '8.0.0';

0 commit comments

Comments
 (0)