From 873564934291b5d547b841c352fca57cdad4c975 Mon Sep 17 00:00:00 2001 From: Mostafa Rashed <17770919+mrashed-dev@users.noreply.github.com> Date: Tue, 6 Feb 2024 02:36:27 +0400 Subject: [PATCH] v6.0.0 beta 4 release (#459) # Changelog * **BREAKING CHANGE**: Renamed `Applications.info()` to `Applications.get_details()` for consistency * **BREAKING CHANGE**: Changed return type of `Auth.url_for_oauth2_pkce()` from `OpenStruct` to a hash for consistency * Added support for detecting providers * Added enhanced support for the `Webhooks` API * Default `client_secret` to the configured `api_key` for token exchange methods if not provided * Fixed list and find scheduled messages * Fixed incorrect PKCE code challenge generation * Fixed incompatible types when building OAuth2 URL * Fixed construction of query parameters * Fixed construction of OAuth2 URL * Fixed typo in paths for `Grants` class --- CHANGELOG.md | 2 +- lib/nylas/version.rb | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94b82295..e71e5a1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -### 6.0.0-beta.4 / TBD +### 6.0.0-beta.4 / 2024-02-05 * **BREAKING CHANGE**: Renamed `Applications.info()` to `Applications.get_details()` for consistency * **BREAKING CHANGE**: Changed return type of `Auth.url_for_oauth2_pkce()` from `OpenStruct` to a hash for consistency * Added support for detecting providers diff --git a/lib/nylas/version.rb b/lib/nylas/version.rb index c257a99c..758b7f6b 100644 --- a/lib/nylas/version.rb +++ b/lib/nylas/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Nylas - VERSION = "6.0.0.beta.3" + VERSION = "6.0.0.beta.4" end