@highstate/gateway-api 0.10.0 → 0.11.4
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 +64 -0
- package/bin/package.json +7 -4
- package/package.json +11 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,67 @@
|
|
|
1
|
+
## 0.11.4 (2025-10-16)
|
|
2
|
+
|
|
3
|
+
### 🩹 Fixes
|
|
4
|
+
|
|
5
|
+
- fix docs ([90c9fcb](https://github.com/highstate-io/highstate/commit/90c9fcb))
|
|
6
|
+
|
|
7
|
+
### ❤️ Thank You
|
|
8
|
+
|
|
9
|
+
- Fedor Chubukov @Exeteres
|
|
10
|
+
|
|
11
|
+
## 0.11.3 (2025-10-16)
|
|
12
|
+
|
|
13
|
+
### 🩹 Fixes
|
|
14
|
+
|
|
15
|
+
- add repo url for all packages ([02c61d3](https://github.com/highstate-io/highstate/commit/02c61d3))
|
|
16
|
+
|
|
17
|
+
### ❤️ Thank You
|
|
18
|
+
|
|
19
|
+
- Fedor Chubukov @Exeteres
|
|
20
|
+
|
|
21
|
+
## 0.11.2 (2025-10-16)
|
|
22
|
+
|
|
23
|
+
This was a version bump only for @highstate/gateway-api to align it with other projects, there were no code changes.
|
|
24
|
+
|
|
25
|
+
## 0.11.1 (2025-10-16)
|
|
26
|
+
|
|
27
|
+
### 🩹 Fixes
|
|
28
|
+
|
|
29
|
+
- Fix type errors ([160c1f8](https://github.com/highstate-io/highstate/commit/160c1f8))
|
|
30
|
+
|
|
31
|
+
### ❤️ Thank You
|
|
32
|
+
|
|
33
|
+
- Copilot @Copilot
|
|
34
|
+
|
|
35
|
+
## 0.11.0 (2025-10-16)
|
|
36
|
+
|
|
37
|
+
### 🚀 Features
|
|
38
|
+
|
|
39
|
+
- Add support for manual backend identity specification via environment variables ([d7b13e8](https://github.com/highstate-io/highstate/commit/d7b13e8))
|
|
40
|
+
|
|
41
|
+
### ❤️ Thank You
|
|
42
|
+
|
|
43
|
+
- Copilot @Copilot
|
|
44
|
+
|
|
45
|
+
## 0.10.2 (2025-10-15)
|
|
46
|
+
|
|
47
|
+
### 🩹 Fixes
|
|
48
|
+
|
|
49
|
+
- fix release pipeline ([d4cf202](https://github.com/highstate-io/highstate/commit/d4cf202))
|
|
50
|
+
|
|
51
|
+
### ❤️ Thank You
|
|
52
|
+
|
|
53
|
+
- Fedor Chubukov @Exeteres
|
|
54
|
+
|
|
55
|
+
## 0.10.1 (2025-10-15)
|
|
56
|
+
|
|
57
|
+
### 🩹 Fixes
|
|
58
|
+
|
|
59
|
+
- fix build errors ([eea20ce](https://github.com/highstate-io/highstate/commit/eea20ce))
|
|
60
|
+
|
|
61
|
+
### ❤️ Thank You
|
|
62
|
+
|
|
63
|
+
- Fedor Chubukov @Exeteres
|
|
64
|
+
|
|
1
65
|
# v0.10.0 (Mon Oct 13 2025)
|
|
2
66
|
|
|
3
67
|
:tada: This release contains work from a new contributor! :tada:
|
package/bin/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@highstate/gateway-api",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.3",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"kubernetes",
|
|
@@ -8,7 +8,9 @@
|
|
|
8
8
|
"kind/native"
|
|
9
9
|
],
|
|
10
10
|
"homepage": "https://pulumi.com",
|
|
11
|
-
"repository":
|
|
11
|
+
"repository": {
|
|
12
|
+
"url": "https://github.com/highstate-io/highstate"
|
|
13
|
+
},
|
|
12
14
|
"license": "Apache-2.0",
|
|
13
15
|
"main": "bin/index.js",
|
|
14
16
|
"scripts": {
|
|
@@ -22,14 +24,15 @@
|
|
|
22
24
|
"glob": "^10.3.10",
|
|
23
25
|
"node-fetch": "^2.3.0",
|
|
24
26
|
"shell-quote": "^1.6.1",
|
|
25
|
-
"tmp": "^0.0.33"
|
|
27
|
+
"tmp": "^0.0.33",
|
|
28
|
+
"typescript": "^5.7.2"
|
|
26
29
|
},
|
|
27
30
|
"devDependencies": {
|
|
28
31
|
"@types/mocha": "^5.2.5",
|
|
29
32
|
"@types/node": "^14",
|
|
30
33
|
"@types/shell-quote": "^1.6.0",
|
|
31
34
|
"mocha": "^5.2.0",
|
|
32
|
-
"typescript": "^
|
|
35
|
+
"typescript": "^4.3.5"
|
|
33
36
|
},
|
|
34
37
|
"pulumi": {
|
|
35
38
|
"resource": true,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@highstate/gateway-api",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.4",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"pulumi",
|
|
6
6
|
"kubernetes",
|
|
@@ -8,12 +8,11 @@
|
|
|
8
8
|
"kind/native"
|
|
9
9
|
],
|
|
10
10
|
"homepage": "https://pulumi.com",
|
|
11
|
-
"repository":
|
|
11
|
+
"repository": {
|
|
12
|
+
"url": "https://github.com/highstate-io/highstate"
|
|
13
|
+
},
|
|
12
14
|
"license": "Apache-2.0",
|
|
13
15
|
"main": "bin/index.js",
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "tsc && cp package.json bin/package.json"
|
|
16
|
-
},
|
|
17
16
|
"dependencies": {
|
|
18
17
|
"@pulumi/kubernetes": "4.18.0",
|
|
19
18
|
"@pulumi/pulumi": "^3.198.0",
|
|
@@ -22,14 +21,15 @@
|
|
|
22
21
|
"glob": "^10.3.10",
|
|
23
22
|
"node-fetch": "^2.3.0",
|
|
24
23
|
"shell-quote": "^1.6.1",
|
|
25
|
-
"tmp": "^0.0.33"
|
|
24
|
+
"tmp": "^0.0.33",
|
|
25
|
+
"typescript": "^5.7.2"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/mocha": "^5.2.5",
|
|
29
29
|
"@types/node": "^14",
|
|
30
30
|
"@types/shell-quote": "^1.6.0",
|
|
31
31
|
"mocha": "^5.2.0",
|
|
32
|
-
"typescript": "^
|
|
32
|
+
"typescript": "^4.3.5"
|
|
33
33
|
},
|
|
34
34
|
"pulumi": {
|
|
35
35
|
"resource": true,
|
|
@@ -39,5 +39,7 @@
|
|
|
39
39
|
"publishConfig": {
|
|
40
40
|
"access": "public"
|
|
41
41
|
},
|
|
42
|
-
"
|
|
43
|
-
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsc && cp package.json bin/package.json"
|
|
44
|
+
}
|
|
45
|
+
}
|