@remotion/cloudrun 4.0.39 → 4.0.41
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/.turbo/turbo-build.log
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
|
|
2
|
-
> @remotion/cloudrun@4.0.
|
|
2
|
+
> @remotion/cloudrun@4.0.40 build /Users/jonathanburger/remotion/packages/cloudrun
|
|
3
3
|
> tsc -d && cp src/shared/sa-permissions.json dist/shared/sa-permissions.json && pnpm run buildContainer && pnpm run tarInstaller
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
> @remotion/cloudrun@4.0.
|
|
6
|
+
> @remotion/cloudrun@4.0.40 buildContainer /Users/jonathanburger/remotion/packages/cloudrun
|
|
7
7
|
> ts-node src/admin/bundle-renderLogic.ts
|
|
8
8
|
|
|
9
9
|
distribution bundled.
|
|
10
10
|
|
|
11
|
-
> @remotion/cloudrun@4.0.
|
|
11
|
+
> @remotion/cloudrun@4.0.40 tarInstaller /Users/jonathanburger/remotion/packages/cloudrun
|
|
12
12
|
> ts-node src/admin/bundle-installer.ts
|
|
13
13
|
|
package/dist/api/get-buckets.js
CHANGED
|
@@ -16,7 +16,11 @@ const getRemotionStorageBuckets = async (region) => {
|
|
|
16
16
|
}
|
|
17
17
|
let remotionBuckets = buckets.filter((b) => { var _a; return (_a = b.name) === null || _a === void 0 ? void 0 : _a.startsWith(constants_1.REMOTION_BUCKET_PREFIX); });
|
|
18
18
|
if (region !== 'all regions') {
|
|
19
|
-
remotionBuckets = buckets.filter((b) =>
|
|
19
|
+
remotionBuckets = buckets.filter((b) => {
|
|
20
|
+
var _a;
|
|
21
|
+
return b.metadata.location === region.toUpperCase() &&
|
|
22
|
+
((_a = b.name) === null || _a === void 0 ? void 0 : _a.startsWith(constants_1.REMOTION_BUCKET_PREFIX));
|
|
23
|
+
});
|
|
20
24
|
}
|
|
21
25
|
return { remotionBuckets };
|
|
22
26
|
};
|
|
@@ -24,19 +24,19 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
24
24
|
chromiumOptions: z.ZodOptional<z.ZodObject<{
|
|
25
25
|
ignoreCertificateErrors: z.ZodOptional<z.ZodBoolean>;
|
|
26
26
|
disableWebSecurity: z.ZodOptional<z.ZodBoolean>;
|
|
27
|
-
gl: z.ZodNullable<z.ZodOptional<z.ZodEnum<["swangle", "angle", "egl", "swiftshader"]>>>;
|
|
27
|
+
gl: z.ZodNullable<z.ZodOptional<z.ZodEnum<["swangle", "angle", "egl", "swiftshader", "vulkan"]>>>;
|
|
28
28
|
headless: z.ZodOptional<z.ZodBoolean>;
|
|
29
29
|
userAgent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
30
30
|
}, "strip", z.ZodTypeAny, {
|
|
31
31
|
ignoreCertificateErrors?: boolean | undefined;
|
|
32
32
|
disableWebSecurity?: boolean | undefined;
|
|
33
|
-
gl?: "swangle" | "angle" | "egl" | "swiftshader" | null | undefined;
|
|
33
|
+
gl?: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | null | undefined;
|
|
34
34
|
headless?: boolean | undefined;
|
|
35
35
|
userAgent?: string | null | undefined;
|
|
36
36
|
}, {
|
|
37
37
|
ignoreCertificateErrors?: boolean | undefined;
|
|
38
38
|
disableWebSecurity?: boolean | undefined;
|
|
39
|
-
gl?: "swangle" | "angle" | "egl" | "swiftshader" | null | undefined;
|
|
39
|
+
gl?: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | null | undefined;
|
|
40
40
|
headless?: boolean | undefined;
|
|
41
41
|
userAgent?: string | null | undefined;
|
|
42
42
|
}>>;
|
|
@@ -85,7 +85,7 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
85
85
|
chromiumOptions?: {
|
|
86
86
|
ignoreCertificateErrors?: boolean | undefined;
|
|
87
87
|
disableWebSecurity?: boolean | undefined;
|
|
88
|
-
gl?: "swangle" | "angle" | "egl" | "swiftshader" | null | undefined;
|
|
88
|
+
gl?: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | null | undefined;
|
|
89
89
|
headless?: boolean | undefined;
|
|
90
90
|
userAgent?: string | null | undefined;
|
|
91
91
|
} | undefined;
|
|
@@ -125,7 +125,7 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
125
125
|
chromiumOptions?: {
|
|
126
126
|
ignoreCertificateErrors?: boolean | undefined;
|
|
127
127
|
disableWebSecurity?: boolean | undefined;
|
|
128
|
-
gl?: "swangle" | "angle" | "egl" | "swiftshader" | null | undefined;
|
|
128
|
+
gl?: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | null | undefined;
|
|
129
129
|
headless?: boolean | undefined;
|
|
130
130
|
userAgent?: string | null | undefined;
|
|
131
131
|
} | undefined;
|
|
@@ -146,19 +146,19 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
146
146
|
chromiumOptions: z.ZodOptional<z.ZodObject<{
|
|
147
147
|
ignoreCertificateErrors: z.ZodOptional<z.ZodBoolean>;
|
|
148
148
|
disableWebSecurity: z.ZodOptional<z.ZodBoolean>;
|
|
149
|
-
gl: z.ZodNullable<z.ZodOptional<z.ZodEnum<["swangle", "angle", "egl", "swiftshader"]>>>;
|
|
149
|
+
gl: z.ZodNullable<z.ZodOptional<z.ZodEnum<["swangle", "angle", "egl", "swiftshader", "vulkan"]>>>;
|
|
150
150
|
headless: z.ZodOptional<z.ZodBoolean>;
|
|
151
151
|
userAgent: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
152
152
|
}, "strip", z.ZodTypeAny, {
|
|
153
153
|
ignoreCertificateErrors?: boolean | undefined;
|
|
154
154
|
disableWebSecurity?: boolean | undefined;
|
|
155
|
-
gl?: "swangle" | "angle" | "egl" | "swiftshader" | null | undefined;
|
|
155
|
+
gl?: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | null | undefined;
|
|
156
156
|
headless?: boolean | undefined;
|
|
157
157
|
userAgent?: string | null | undefined;
|
|
158
158
|
}, {
|
|
159
159
|
ignoreCertificateErrors?: boolean | undefined;
|
|
160
160
|
disableWebSecurity?: boolean | undefined;
|
|
161
|
-
gl?: "swangle" | "angle" | "egl" | "swiftshader" | null | undefined;
|
|
161
|
+
gl?: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | null | undefined;
|
|
162
162
|
headless?: boolean | undefined;
|
|
163
163
|
userAgent?: string | null | undefined;
|
|
164
164
|
}>>;
|
|
@@ -188,7 +188,7 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
188
188
|
chromiumOptions?: {
|
|
189
189
|
ignoreCertificateErrors?: boolean | undefined;
|
|
190
190
|
disableWebSecurity?: boolean | undefined;
|
|
191
|
-
gl?: "swangle" | "angle" | "egl" | "swiftshader" | null | undefined;
|
|
191
|
+
gl?: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | null | undefined;
|
|
192
192
|
headless?: boolean | undefined;
|
|
193
193
|
userAgent?: string | null | undefined;
|
|
194
194
|
} | undefined;
|
|
@@ -213,7 +213,7 @@ export declare const CloudRunPayload: z.ZodDiscriminatedUnion<"type", [z.ZodObje
|
|
|
213
213
|
chromiumOptions?: {
|
|
214
214
|
ignoreCertificateErrors?: boolean | undefined;
|
|
215
215
|
disableWebSecurity?: boolean | undefined;
|
|
216
|
-
gl?: "swangle" | "angle" | "egl" | "swiftshader" | null | undefined;
|
|
216
|
+
gl?: "swangle" | "angle" | "egl" | "swiftshader" | "vulkan" | null | undefined;
|
|
217
217
|
headless?: boolean | undefined;
|
|
218
218
|
userAgent?: string | null | undefined;
|
|
219
219
|
} | undefined;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@remotion/cloudrun",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.41",
|
|
4
4
|
"description": "GCP Cloud Run alternative to lambda rendering",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"dependencies": {
|
|
@@ -12,10 +12,10 @@
|
|
|
12
12
|
"@google-cloud/logging": "^10.5.0",
|
|
13
13
|
"google-auth-library": "^8.7.0",
|
|
14
14
|
"zod": "^3.21.4",
|
|
15
|
-
"
|
|
16
|
-
"@remotion/cli": "4.0.
|
|
17
|
-
"@remotion/renderer": "4.0.
|
|
18
|
-
"remotion": "4.0.
|
|
15
|
+
"remotion": "4.0.41",
|
|
16
|
+
"@remotion/cli": "4.0.41",
|
|
17
|
+
"@remotion/renderer": "4.0.41",
|
|
18
|
+
"@remotion/bundler": "4.0.41"
|
|
19
19
|
},
|
|
20
20
|
"devDependencies": {
|
|
21
21
|
"@jonny/eslint-config": "3.0.266",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"prettier-plugin-organize-imports": "^3.2.2",
|
|
27
27
|
"ts-node": "^10.8.0",
|
|
28
28
|
"vitest": "0.24.3",
|
|
29
|
-
"@remotion/compositor-linux-x64-gnu": "4.0.
|
|
29
|
+
"@remotion/compositor-linux-x64-gnu": "4.0.41"
|
|
30
30
|
},
|
|
31
31
|
"exports": {
|
|
32
32
|
"./package.json": "./package.json",
|
package/.turbo/turbo-lint.log
DELETED
|
File without changes
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
"use strict";
|