Skip to content

Commit c79d349

Browse files
chore(main): release 6.0.0
1 parent 6bdd0c4 commit c79d349

File tree

5 files changed

+29
-5
lines changed

5 files changed

+29
-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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
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-18)
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+
* **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))
22+
* **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))
23+
* **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))
24+
25+
26+
### Code Refactoring
27+
28+
* **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))
29+
630
## [5.8.0](https://github.com/globus/globus-sdk-javascript/compare/v5.7.0...v5.8.0) (2025-05-29)
731

832

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)