@looker/sdk-node 24.16.1 → 24.16.2
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/CHANGELOG.md +14 -0
- package/README.md +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [24.16.2](https://github.com/looker-open-source/sdk-codegen/compare/sdk-node-v24.16.1...sdk-node-v24.16.2) (2024-09-16)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* allow node 20 for the TS SDK ([#1506](https://github.com/looker-open-source/sdk-codegen/issues/1506)) ([d4deac4](https://github.com/looker-open-source/sdk-codegen/commit/d4deac485ff3bf748924ab747a6aee0d47581e10))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Dependencies
|
|
17
|
+
|
|
18
|
+
* The following workspace dependencies were updated
|
|
19
|
+
* dependencies
|
|
20
|
+
* @looker/sdk bumped from 24.16.1 to 24.16.2
|
|
21
|
+
|
|
8
22
|
## [24.16.1](https://github.com/looker-open-source/sdk-codegen/compare/sdk-node-v24.16.0...sdk-node-v24.16.1) (2024-09-14)
|
|
9
23
|
|
|
10
24
|
|
package/README.md
CHANGED
|
@@ -201,9 +201,9 @@ The [deprecated NodeJS `request` package](https://www.npmjs.com/package/request)
|
|
|
201
201
|
The streaming method callback signature changed from `(readable: Readable) => Promise<x>` to `(response: Response) => Promise<x>`. Using `Response` as the parameter to the callback greatly
|
|
202
202
|
increases the flexibility of streaming implementations and provides other valuable information like `Content-Type` and other headers to the streaming callback.
|
|
203
203
|
|
|
204
|
-
For the Browser SDK (`@looker/sdk`), the standard `fetch` function is still used. For the Node SDK (`@looker/sdk-node`), the global [`fetch`](https://nodejs.org/api/globals.html#fetch) function from NodeJS
|
|
204
|
+
For the Browser SDK (`@looker/sdk`), the standard `fetch` function is still used. For the Node SDK (`@looker/sdk-node`), the global [`fetch`](https://nodejs.org/api/globals.html#fetch) function from NodeJS is used, which was marked **stable** in version 22.
|
|
205
205
|
|
|
206
|
-
This means the Looker Node SDK now
|
|
206
|
+
This means the Looker Node SDK now requires Node 20 or above.
|
|
207
207
|
|
|
208
208
|
The streaming version of the SDK methods should be initialized using the same `AuthSession` as the main SDK to reduce authentication thrashing.
|
|
209
209
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@looker/sdk-node",
|
|
3
|
-
"version": "24.16.
|
|
3
|
+
"version": "24.16.2",
|
|
4
4
|
"description": "Looker SDK Runtime for Node Library",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"whatwg-fetch": "3.6.20"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@looker/sdk": "24.16.
|
|
42
|
+
"@looker/sdk": "24.16.2",
|
|
43
43
|
"@looker/sdk-rtl": "21.6.3",
|
|
44
44
|
"ini": "5.0.0"
|
|
45
45
|
},
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"SDK",
|
|
49
49
|
"RTL"
|
|
50
50
|
],
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "e7e30025690483553a16231c9218cd6f7e65a59b"
|
|
52
52
|
}
|