diff --git a/CHANGELOG.md b/CHANGELOG.md index fca1bf53..3dcfe02c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,12 +1,14 @@ # Changelog -### Unreleased +### 7.6.0 / 2024-10-18 * Add support for filtering events by attendee email * Add buffer support for file attachments * Add new webhook trigger types +* Add ews as a provider * Change rotate secret endpoint from being a PUT to a POST call * Fix issue where crypto import was causing downstream Jest incompatibilities * Fix FormData import compatibility issues with ESM +* Remove eslint-plugin-import from production dependencies ### 7.5.2 / 2024-07-12 * Fix issue where metadata was being incorrectly modified before being sent to the API diff --git a/package-lock.json b/package-lock.json index a51bf618..4203f51b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "nylas", - "version": "7.5.2", + "version": "7.6.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "nylas", - "version": "7.5.2", + "version": "7.6.0", "license": "MIT", "dependencies": { "change-case": "^4.1.2", diff --git a/package.json b/package.json index 93a68549..fffe5253 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "nylas", - "version": "7.5.2", + "version": "7.6.0", "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", diff --git a/src/version.ts b/src/version.ts index 42645c31..1a5842a9 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,2 +1,2 @@ // This file is generated by scripts/exportVersion.js -export const SDK_VERSION = '7.5.2'; +export const SDK_VERSION = '7.6.0';