@globus/sdk 6.0.0-rc.5 → 6.0.0-rc.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -9,37 +9,29 @@ The Globus SDK for JavaScript provides first class TypeScript support and makes
9
9
  - [@globus/sdk API Documentation](https://globus.github.io/globus-sdk-javascript/)
10
10
  - [Examples](https://github.com/globus/globus-sdk-javascript/blob/main/examples/README.md)
11
11
  - [Upgrading](https://github.com/globus/globus-sdk-javascript/blob/main/UPGRADING.md)
12
+ - [Migrating from `v5` to `v6`](https://github.com/globus/globus-sdk-javascript/blob/main/UPGRADING.md#migrating-from-v5-to-v6)
12
13
  - [Migrating from `v4` to `v5`](https://github.com/globus/globus-sdk-javascript/blob/main/UPGRADING.md#migrating-from-v4-to-v5)
13
14
  - [Migrating from `v3` to `v4`](https://github.com/globus/globus-sdk-javascript/blob/main/UPGRADING.md#migrating-from-v3-to-v4)
14
15
 
15
16
  ## Installation
16
17
 
17
- If you are not using Typescript, you can install the SDK with the following command:
18
+ You can install the SDK with the following command:
18
19
 
19
20
  ```sh
20
21
  npm install @globus/sdk
21
22
  ```
22
23
 
23
- ### Typescript
24
-
25
- `@globus/sdk` is written in Typescript and includes type definitions for its internal types, Globus platform types (i.e., API responses) are provided by the `@globus/types` package and must be installed separately.
26
-
27
- ```sh
28
- npm install @globus/sdk @globus/types
29
- ```
30
-
31
24
  ## Supported Platforms
32
25
 
33
26
  ### Node.js
34
27
 
35
28
  We aim to support all Active LTS [Node.js releases](https://nodejs.org/en/about/previous-releases). We intend to support all Maintenance LTS versions until their official end-of-life. Removal of support for a Node.js version will be considered a breaking change and result in a major version bump of the SDK.
36
29
 
37
- | Version | |
38
- | --------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
39
- | ⚠️ Node.js 18 (END-OF-LIFE) | [![lts/hydrogen](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/ci.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/ci.yml) |
40
- | Node.js 20 | [![lts/iron](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/ci.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/ci.yml) |
41
- | Node.js 22 | [![lts/jod](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/ci.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/ci.yml) |
42
- | Node.js 24 | [![24.x](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/ci.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/ci.yml) |
30
+ | Version | |
31
+ | ---------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
32
+ | Node.js 20 | [![lts/iron](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/ci.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/ci.yml) |
33
+ | Node.js 22 | [![lts/jod](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/ci.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/ci.yml) |
34
+ | Node.js 24 | [![24.x](https://img.shields.io/github/actions/workflow/status/globus/globus-sdk-javascript/ci.yml?style=flat-square&label=)](https://github.com/globus/globus-sdk-javascript/actions/workflows/ci.yml) |
43
35
 
44
36
  ### Browser Support
45
37
 
@@ -1,4 +1,4 @@
1
1
  {
2
2
  "type": "module",
3
- "version": "6.0.0-rc.5"
3
+ "version": "6.0.0-rc.6"
4
4
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@globus/sdk",
3
- "version": "6.0.0-rc.5",
3
+ "version": "6.0.0-rc.6",
4
4
  "description": "The Globus SDK for JavaScript",
5
5
  "main": "dist/cjs/index.js",
6
6
  "module": "dist/esm/index.js",
@@ -115,7 +115,7 @@
115
115
  "typescript": "^5.5.4"
116
116
  },
117
117
  "engines": {
118
- "node": ">=18"
118
+ "node": ">=20"
119
119
  },
120
120
  "dependencies": {
121
121
  "cross-fetch": "^4.0.0",