Skip to content

Commit dd00ce1

Browse files
ShadowCat567Vieltojarvi
andauthored
Temporary fix for canaries (#2821)
* update node size for canaries * revert package-lock change * trying something * testing something * pinning zod * inconsistent zod * update zod, revert some experiments * changeset * change zod version * remove node space increase * remove empty changeset, not needed * update api * update api - part 2 --------- Co-authored-by: Vieltojarvi <[email protected]>
1 parent be1be94 commit dd00ce1

File tree

12 files changed

+58
-32
lines changed

12 files changed

+58
-32
lines changed

.changeset/solid-donkeys-attend.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
---
2+
'@aws-amplify/deployed-backend-client': minor
3+
'@aws-amplify/backend-output-schemas': minor
4+
'@aws-amplify/integration-tests': minor
5+
'@aws-amplify/client-config': minor
6+
'@aws-amplify/platform-core': minor
7+
'@aws-amplify/cli-core': minor
8+
'@aws-amplify/backend-cli': minor
9+
---
10+
11+
zod upgrade

package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/backend-output-schemas/API.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -379,12 +379,6 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
379379
region: string;
380380
};
381381
} | undefined;
382-
"AWS::Amplify::Custom"?: {
383-
version: "1";
384-
payload: {
385-
customOutputs: string;
386-
};
387-
} | undefined;
388382
"AWS::Amplify::Auth"?: {
389383
version: "1";
390384
payload: {
@@ -431,6 +425,12 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
431425
buckets?: string | undefined;
432426
};
433427
} | undefined;
428+
"AWS::Amplify::Custom"?: {
429+
version: "1";
430+
payload: {
431+
customOutputs: string;
432+
};
433+
} | undefined;
434434
"AWS::Amplify::Function"?: {
435435
version: "1";
436436
payload: {
@@ -451,12 +451,6 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
451451
region: string;
452452
};
453453
} | undefined;
454-
"AWS::Amplify::Custom"?: {
455-
version: "1";
456-
payload: {
457-
customOutputs: string;
458-
};
459-
} | undefined;
460454
"AWS::Amplify::Auth"?: {
461455
version: "1";
462456
payload: {
@@ -503,6 +497,12 @@ export const unifiedBackendOutputSchema: z.ZodObject<{
503497
buckets?: string | undefined;
504498
};
505499
} | undefined;
500+
"AWS::Amplify::Custom"?: {
501+
version: "1";
502+
payload: {
503+
customOutputs: string;
504+
};
505+
} | undefined;
506506
"AWS::Amplify::Function"?: {
507507
version: "1";
508508
payload: {

packages/backend-output-schemas/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@
2222
"@aws-amplify/plugin-types": "^1.10.0"
2323
},
2424
"peerDependencies": {
25-
"zod": "^3.22.2"
25+
"zod": "3.22.3"
2626
}
2727
}

packages/cli-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@
2929
"strip-ansi": "^7.1.0",
3030
"wrap-ansi": "^9.0.0",
3131
"semver": "^7.6.3",
32-
"zod": "^3.22.2"
32+
"zod": "^3.22.3"
3333
}
3434
}

packages/cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"open": "^10.1.0",
6262
"semver": "^7.6.3",
6363
"yargs": "^17.7.2",
64-
"zod": "^3.22.2"
64+
"zod": "^3.22.3"
6565
},
6666
"peerDependencies": {
6767
"@aws-sdk/types": "^3.734.0",

packages/client-config/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
"@aws-amplify/model-generator": "^1.2.0",
3030
"@aws-amplify/platform-core": "^1.8.0",
3131
"@aws-amplify/plugin-types": "^1.10.0",
32-
"zod": "^3.22.2"
32+
"zod": "^3.22.3"
3333
},
3434
"devDependencies": {
3535
"@aws-sdk/types": "^3.734.0",

packages/deployed-backend-client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"@aws-amplify/backend-output-schemas": "^1.6.0",
2323
"@aws-amplify/platform-core": "^1.8.0",
2424
"@aws-amplify/plugin-types": "^1.10.0",
25-
"zod": "^3.22.2"
25+
"zod": "^3.22.3"
2626
},
2727
"peerDependencies": {
2828
"@aws-sdk/client-amplify": "^3.750.0",

packages/integration-tests/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"ssh2": "^1.15.0",
5151
"strip-ansi": "^7.1.0",
5252
"uuid": "^11.1.0",
53-
"zod": "^3.22.2"
53+
"zod": "^3.22.3"
5454
},
5555
"license": "Apache-2.0"
5656
}

packages/platform-core/API.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,12 +210,12 @@ export const packageJsonSchema: z.ZodObject<{
210210
type: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"module">, z.ZodLiteral<"commonjs">]>>;
211211
}, "strip", z.ZodTypeAny, {
212212
name?: string | undefined;
213-
type?: "module" | "commonjs" | undefined;
214213
version?: string | undefined;
214+
type?: "module" | "commonjs" | undefined;
215215
}, {
216216
name?: string | undefined;
217-
type?: "module" | "commonjs" | undefined;
218217
version?: string | undefined;
218+
type?: "module" | "commonjs" | undefined;
219219
}>;
220220

221221
// @public

0 commit comments

Comments
 (0)