From b15376f19a84653bac1f4160ae38cdfddb4862f4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Nov 2024 17:07:32 -0600 Subject: [PATCH] chore(main): release 5.1.1 (#367) :robot: I have created a release *beep* *boop* --- ## [5.1.1](https://github.com/globus/globus-sdk-javascript/compare/v5.1.0...v5.1.1) (2024-11-13) ### Bug Fixes * **Authorization:** The value of the 'required_scopes' property of an AuthorizationError is now sent to Globus Auth as 'scope' parameter by default. ([#366](https://github.com/globus/globus-sdk-javascript/issues/366)) ([66e5c32](https://github.com/globus/globus-sdk-javascript/commit/66e5c32d335d612c69ae908821335b63d926e8af)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- src/core/info/version.ts | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index affd1ab..6c87755 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "5.1.0" + ".": "5.1.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a13b26..853e44f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,13 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [5.1.1](https://github.com/globus/globus-sdk-javascript/compare/v5.1.0...v5.1.1) (2024-11-13) + + +### Bug Fixes + +* **Authorization:** The value of the 'required_scopes' property of an AuthorizationError is now sent to Globus Auth as 'scope' parameter by default. ([#366](https://github.com/globus/globus-sdk-javascript/issues/366)) ([66e5c32](https://github.com/globus/globus-sdk-javascript/commit/66e5c32d335d612c69ae908821335b63d926e8af)) + ## [5.1.0](https://github.com/globus/globus-sdk-javascript/compare/v5.0.0...v5.1.0) (2024-11-11) diff --git a/package-lock.json b/package-lock.json index 62d35a0..479a5ba 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@globus/sdk", - "version": "5.1.0", + "version": "5.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@globus/sdk", - "version": "5.1.0", + "version": "5.1.1", "license": "Apache-2.0", "dependencies": { "cross-fetch": "^4.0.0", diff --git a/package.json b/package.json index 96c7c81..7310a59 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@globus/sdk", - "version": "5.1.0", + "version": "5.1.1", "description": "The Globus SDK for JavaScript", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/src/core/info/version.ts b/src/core/info/version.ts index 8d9a462..61ffe7f 100644 --- a/src/core/info/version.ts +++ b/src/core/info/version.ts @@ -1,3 +1,3 @@ // x-release-please-start-version -export const VERSION = '5.1.0'; +export const VERSION = '5.1.1'; // x-release-please-end