@looker/sdk 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 +7 -0
- package/README.md +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ 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-v24.16.1...sdk-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
|
+
|
|
8
15
|
## [24.16.1](https://github.com/looker-open-source/sdk-codegen/compare/sdk-v24.16.0...sdk-v24.16.1) (2024-09-14)
|
|
9
16
|
|
|
10
17
|
|
package/README.md
CHANGED
|
@@ -82,9 +82,9 @@ The [deprecated NodeJS `request` package](https://www.npmjs.com/package/request)
|
|
|
82
82
|
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
|
|
83
83
|
increases the flexibility of streaming implementations and provides other valuable information like `Content-Type` and other headers to the streaming callback.
|
|
84
84
|
|
|
85
|
-
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
|
|
85
|
+
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.
|
|
86
86
|
|
|
87
|
-
This means the Looker Node SDK now
|
|
87
|
+
This means the Looker Node SDK now requires Node 20 or above.
|
|
88
88
|
|
|
89
89
|
The streaming version of the SDK methods should be initialized using the same `AuthSession` as the main SDK to reduce authentication thrashing.
|
|
90
90
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@looker/sdk",
|
|
3
|
-
"version": "24.16.
|
|
3
|
+
"version": "24.16.2",
|
|
4
4
|
"description": "Looker SDK",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"module": "lib/esm/index.js",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"Looker",
|
|
44
44
|
"SDK"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "e7e30025690483553a16231c9218cd6f7e65a59b"
|
|
47
47
|
}
|