@fourier-labs/harbour 0.1.37 → 0.1.38-rc.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.
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export const PUBLISHED_KIT_BUNDLE = {
|
|
2
2
|
"schema": "harbour.kit-bundle/1.0",
|
|
3
|
-
"kitVersion": "0.1.
|
|
3
|
+
"kitVersion": "0.1.38",
|
|
4
4
|
"sdk": {
|
|
5
5
|
"package": "@harbour/app-sdk",
|
|
6
6
|
"version": "1.1.1",
|
|
@@ -8,13 +8,13 @@ export const PUBLISHED_KIT_BUNDLE = {
|
|
|
8
8
|
"url": "https://public.ecr.aws/v2/y6t4p3i8/harbour-kit-bundle/blobs/sha256:f499af191dd5a42a41e314cf93b0c7d957e0e1987cbdfc96e7c53eee06d86d25"
|
|
9
9
|
},
|
|
10
10
|
"images": {
|
|
11
|
-
"appGateway": "public.ecr.aws/y6t4p3i8/harbour-app-gateway@sha256:
|
|
12
|
-
"sessionFixture": "public.ecr.aws/y6t4p3i8/harbour-session-fixture@sha256:
|
|
11
|
+
"appGateway": "public.ecr.aws/y6t4p3i8/harbour-app-gateway@sha256:c082203ecbed88005b9cd0b6de5f0b7953f077f80038d7905016439ef04f4251",
|
|
12
|
+
"sessionFixture": "public.ecr.aws/y6t4p3i8/harbour-session-fixture@sha256:9396c6fd1231981a146c9ad37424f4ba91d9092e2ae0f18d8e2921bbd302a194"
|
|
13
13
|
},
|
|
14
14
|
"nativeRuntime": {
|
|
15
15
|
"darwinArm64": {
|
|
16
|
-
"url": "https://public.ecr.aws/v2/y6t4p3i8/harbour-kit-bundle/blobs/sha256:
|
|
17
|
-
"sha256": "
|
|
16
|
+
"url": "https://public.ecr.aws/v2/y6t4p3i8/harbour-kit-bundle/blobs/sha256:36222559ea1d6543c93e13dee30b433fe9f6c661ef3cce081a68182fc24e8b33",
|
|
17
|
+
"sha256": "36222559ea1d6543c93e13dee30b433fe9f6c661ef3cce081a68182fc24e8b33"
|
|
18
18
|
}
|
|
19
19
|
},
|
|
20
20
|
"brief": {
|
|
@@ -163,6 +163,12 @@ export class LocalRuntime {
|
|
|
163
163
|
for (const name of await migrationNames(this.root))
|
|
164
164
|
await copyFile(join(this.root, "migrations", name), join(staged, name));
|
|
165
165
|
await rm(join(paths.state, "realtime-outbox.sql"), { force: true });
|
|
166
|
+
// Session credentials are signed by the gateway process that is about to
|
|
167
|
+
// start. Leaving the previous process's files here lets sessionEnv return
|
|
168
|
+
// before the new gateway publishes its keys, so the browser receives a
|
|
169
|
+
// token the new gateway cannot verify after stop/start.
|
|
170
|
+
await rm(join(paths.state, "session.env"), { force: true });
|
|
171
|
+
await rm(join(paths.state, "session.json"), { force: true });
|
|
166
172
|
}
|
|
167
173
|
/**
|
|
168
174
|
* Pulls the pinned images before `up`, so a registry problem is named as such
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const CLI_VERSION = "0.1.
|
|
1
|
+
export const CLI_VERSION = "0.1.38-rc.2";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fourier-labs/harbour",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.38-rc.2",
|
|
4
4
|
"description": "Harbour productionisation helper",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"harbour": {
|
|
38
38
|
"kitBundle": {
|
|
39
39
|
"repository": "public.ecr.aws/y6t4p3i8/harbour-kit-bundle",
|
|
40
|
-
"version": "0.1.
|
|
40
|
+
"version": "0.1.38"
|
|
41
41
|
}
|
|
42
42
|
}
|
|
43
43
|
}
|