@looker/sdk-node 21.20.1 → 22.4.0
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 +39 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,45 @@ 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
|
+
## [22.4.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-node-v22.2.0...sdk-node-v22.4.0) (2022-03-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* Looker 22.4 API updates ([#1024](https://www.github.com/looker-open-source/sdk-codegen/issues/1024)) ([19bdd61](https://www.github.com/looker-open-source/sdk-codegen/commit/19bdd612366a44bb74d793544df0f9d4babfb099))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
|
|
18
|
+
* declaration miner (internal utility) ([#1025](https://www.github.com/looker-open-source/sdk-codegen/issues/1025)) ([9b987b2](https://www.github.com/looker-open-source/sdk-codegen/commit/9b987b2c2f24e4a43d6ff25921c5f46804b7702a))
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Dependencies
|
|
22
|
+
|
|
23
|
+
* The following workspace dependencies were updated
|
|
24
|
+
* dependencies
|
|
25
|
+
* @looker/sdk bumped from ^22.2.0 to ^22.4.0
|
|
26
|
+
|
|
27
|
+
## [22.2.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-node-v22.0.0...sdk-node-v22.2.0) (2022-02-18)
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Dependencies
|
|
31
|
+
|
|
32
|
+
* The following workspace dependencies were updated
|
|
33
|
+
* dependencies
|
|
34
|
+
* @looker/sdk bumped from ^22.0.0 to ^22.2.0
|
|
35
|
+
|
|
36
|
+
## [22.0.0](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-node-v21.20.1...sdk-node-v22.0.0) (2022-02-14)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
### ⚠ BREAKING CHANGES
|
|
40
|
+
|
|
41
|
+
* SDK support for 22.0
|
|
42
|
+
|
|
43
|
+
### Features
|
|
44
|
+
|
|
45
|
+
* SDK support for 22.0 ([5f9930c](https://www.github.com/looker-open-source/sdk-codegen/commit/5f9930c0b0f7bde59f0b9b47f882ae1f3ff9e490))
|
|
46
|
+
|
|
8
47
|
### [21.20.1](https://www.github.com/looker-open-source/sdk-codegen/compare/sdk-node-v21.20.0...sdk-node-v21.20.1) (2022-01-27)
|
|
9
48
|
|
|
10
49
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@looker/sdk-node",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "22.4.0",
|
|
4
4
|
"description": "Looker SDK Runtime for Node Library",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "lib/index.d.ts",
|
|
@@ -38,8 +38,8 @@
|
|
|
38
38
|
"dotenv": "^8.2.0"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@looker/sdk": "^
|
|
42
|
-
"@looker/sdk-rtl": "^21.3.
|
|
41
|
+
"@looker/sdk": "^22.4.0",
|
|
42
|
+
"@looker/sdk-rtl": "^21.3.2",
|
|
43
43
|
"ini": "^1.3.8",
|
|
44
44
|
"readable-stream": "^3.4.0",
|
|
45
45
|
"request": "^2.88.0",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"SDK",
|
|
51
51
|
"RTL"
|
|
52
52
|
],
|
|
53
|
-
"gitHead": "
|
|
53
|
+
"gitHead": "02ce8785abc5a1ba4b10627d5d9758150842410f"
|
|
54
54
|
}
|