Skip to content

Commit bc097e6

Browse files
chore(main): release 3.4.0 (#190)
## [3.4.0](v3.3.1...v3.4.0) (2024-06-03) ### Features * **Authorization:** adds `additionalParams` option to allow passing arbitrary query parameters through OAuth redirects. ([#170](#170)) ([754b508](754b508)) ```tsx managerInstance.handleErrorResponse(res, { additionalParams: { retained_state: "example-state", retained_route: "example.route", }, }); ``` * **GCS:** adds HTTPS Access service methods to GCS ([#182](#182)) ([a258082](a258082)) ```tsx const request = await https.get(GCS_CONFIGURATION, '/my-file.txt', { headers: { Authorization: 'Bearer an-example-token', }, }); ``` ## Internal We've updated the request composition to include an `X-Globus-ClientInfo` header with requests. This header will include the current SDK version information for use by the Globus platform and support. e.g. `X-Globus-ClientInfo: product=javascript-sdk,version=3.4.0;`. --- 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>
1 parent 101d203 commit bc097e6

5 files changed

Lines changed: 13 additions & 5 deletions

File tree

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "3.3.1"
2+
".": "3.4.0"
33
}

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
## [3.4.0](https://github.com/globus/globus-sdk-javascript/compare/v3.3.1...v3.4.0) (2024-06-03)
7+
8+
9+
### Features
10+
11+
* **Authorization:** adds "additionalParams" option to allow passing arbitrary query parameters through OAuth redirects. ([#170](https://github.com/globus/globus-sdk-javascript/issues/170)) ([754b508](https://github.com/globus/globus-sdk-javascript/commit/754b508c81b5a5e235dc52ffbd411eb4e5519fed))
12+
* **GCS:** adds HTTPS Access service methods to GCS ([#182](https://github.com/globus/globus-sdk-javascript/issues/182)) ([a258082](https://github.com/globus/globus-sdk-javascript/commit/a2580829c4feb092c5de280f54e949ea195b30bd))
13+
614
## [3.3.1](https://github.com/globus/globus-sdk-javascript/compare/v3.3.0...v3.3.1) (2024-05-17)
715

816

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": "@globus/sdk",
3-
"version": "3.3.1",
3+
"version": "3.4.0",
44
"private": true,
55
"description": "The Globus SDK for JavaScript",
66
"main": "dist/cjs/index.js",

src/lib/core/info/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
// x-release-please-start-version
2-
export const VERSION = '3.3.1';
2+
export const VERSION = '3.4.0';
33
// x-release-please-end

0 commit comments

Comments
 (0)