Skip to content

Commit a83f46d

Browse files
chore(main): release 6.0.0
1 parent 9c44fc3 commit a83f46d

File tree

5 files changed

+36
-5
lines changed

5 files changed

+36
-5
lines changed

.release-please-manifest.json

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

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,37 @@
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+
## [6.0.0](https://github.com/globus/globus-sdk-javascript/compare/v5.8.0...v6.0.0) (2025-06-30)
7+
8+
9+
### ⚠ BREAKING CHANGES
10+
11+
* **Timers:** Timer renamed to Timer*s*, Moves `timer.create` export to `timers.timer.create` to better reflect API. ([#533](https://github.com/globus/globus-sdk-javascript/issues/533))
12+
* Drops support for Node.js 18 ([#520](https://github.com/globus/globus-sdk-javascript/issues/520))
13+
14+
### Features
15+
16+
* **Authorization:** adds experimental `PopupTransport` for AuthorizationManager ([#461](https://github.com/globus/globus-sdk-javascript/issues/461)) ([94d87fb](https://github.com/globus/globus-sdk-javascript/commit/94d87fb0b68e402dcaf2aa22d4104a5fd5ef7db8))
17+
* **Compute:** Adds `endpoint.update` and `remove` methods ([#524](https://github.com/globus/globus-sdk-javascript/issues/524)) ([6ee61ff](https://github.com/globus/globus-sdk-javascript/commit/6ee61ffb64cdbc9c76615605bef5d6054f45e992))
18+
* Drops support for Node.js 18 ([#520](https://github.com/globus/globus-sdk-javascript/issues/520)) ([ae67d68](https://github.com/globus/globus-sdk-javascript/commit/ae67d6836bf8e39405e19d653598ac68fdcd07de))
19+
* **Flows:** add `runs.get` method for retrieving specific run details ([#534](https://github.com/globus/globus-sdk-javascript/issues/534)) ([64a28a2](https://github.com/globus/globus-sdk-javascript/commit/64a28a25f566a623fabd33b2c376a3738cbf65f5))
20+
* **Flows:** Adds OpenAPI type generation and export for Flows service ([#548](https://github.com/globus/globus-sdk-javascript/issues/548)) ([6bdd0c4](https://github.com/globus/globus-sdk-javascript/commit/6bdd0c42b94a6d9082a425544773a8b70030560c))
21+
* **Flows:** use `OpenAPI` specs for Run method types ([#556](https://github.com/globus/globus-sdk-javascript/issues/556)) ([4dac4d3](https://github.com/globus/globus-sdk-javascript/commit/4dac4d38e45e58d83d0aca1085ac5ddce84f26dc))
22+
* **Timer:** add Timer Jobs methods ([#531](https://github.com/globus/globus-sdk-javascript/issues/531)) ([392035b](https://github.com/globus/globus-sdk-javascript/commit/392035b88e31931e1838429b9cc71e0169d67cca))
23+
* **Transfer:** Adds support for roles operations. ([#537](https://github.com/globus/globus-sdk-javascript/issues/537)) ([1fc00e0](https://github.com/globus/globus-sdk-javascript/commit/1fc00e07a75fc693ac48fb9f1eeedf9936086442))
24+
* **Typescript:** Use internal, OpenAPI-generated, types for Compute, GCS, Groups, and Timer. ([#447](https://github.com/globus/globus-sdk-javascript/issues/447)) ([7c98b08](https://github.com/globus/globus-sdk-javascript/commit/7c98b08d4ea6f684e46b40904f1a432a56b9d629))
25+
26+
27+
### Bug Fixes
28+
29+
* **Typescript, Flows:** Updates OpenAPI URL and regenerates types. ([#554](https://github.com/globus/globus-sdk-javascript/issues/554)) ([c960bad](https://github.com/globus/globus-sdk-javascript/commit/c960bad94e88441add92d007b8dbf23953012569))
30+
* **Typescript:** Fix incorrect calls to `PaginatedResponse` and improve the generic. ([#550](https://github.com/globus/globus-sdk-javascript/issues/550)) ([294d9f4](https://github.com/globus/globus-sdk-javascript/commit/294d9f43fadc15f821331e6e1dc785ce23d90586))
31+
32+
33+
### Code Refactoring
34+
35+
* **Timers:** Timer renamed to Timer*s*, Moves `timer.create` export to `timers.timer.create` to better reflect API. ([#533](https://github.com/globus/globus-sdk-javascript/issues/533)) ([d8fc964](https://github.com/globus/globus-sdk-javascript/commit/d8fc964e1d1883071854d1b552ba87bdf4477a2f))
36+
637
## [5.8.0](https://github.com/globus/globus-sdk-javascript/compare/v5.7.0...v5.8.0) (2025-05-29)
738

839

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": "5.8.0",
3+
"version": "6.0.0",
44
"description": "The Globus SDK for JavaScript",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",

src/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 = '5.8.0';
2+
export const VERSION = '6.0.0';
33
// x-release-please-end

0 commit comments

Comments
 (0)