@remotion/cloudrun 4.0.357 → 4.0.358

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.
@@ -0,0 +1,44 @@
1
+
2
+ $ eslint src
3
+ =============
4
+
5
+ WARNING: You are currently running a version of TypeScript which is not officially supported by @typescript-eslint/typescript-estree.
6
+
7
+ You may find that it works just fine, or you may not.
8
+
9
+ SUPPORTED TYPESCRIPT VERSIONS: >=4.7.4 <5.7.0
10
+
11
+ YOUR TYPESCRIPT VERSION: 5.8.2
12
+
13
+ Please only submit bug reports when using the officially supported version.
14
+
15
+ =============
16
+ 
17
+ /Users/jonathanburger/remotion/packages/cloudrun/src/api/check-if-service-exists.ts
18
+  59:14 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
19
+ 
20
+ /Users/jonathanburger/remotion/packages/cloudrun/src/api/get-sites.ts
21
+  58:24 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
22
+  62:40 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
23
+ 
24
+ /Users/jonathanburger/remotion/packages/cloudrun/src/api/render-media-on-cloudrun.ts
25
+  227:3 warning Unexpected 'todo' comment: 'TODO: Add any sort of type safety' no-warning-comments
26
+  236:17 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
27
+ 
28
+ /Users/jonathanburger/remotion/packages/cloudrun/src/api/render-still-on-cloudrun.ts
29
+  174:17 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
30
+ 
31
+ /Users/jonathanburger/remotion/packages/cloudrun/src/cli/commands/render/helpers/renderArgsCheck.ts
32
+  79:4 warning Unexpected 'todo' comment: 'TODO: Log if there is an incompatible...' no-warning-comments
33
+ 
34
+ /Users/jonathanburger/remotion/packages/cloudrun/src/cli/commands/render/index.ts
35
+  192:2 warning Unexpected 'todo' comment: 'Todo: Check cloudRunUrl is valid, as the...' no-warning-comments
36
+ 
37
+ /Users/jonathanburger/remotion/packages/cloudrun/src/cli/commands/still.ts
38
+  169:2 warning Unexpected 'todo' comment: 'Todo: Check cloudRunUrl is valid, as the...' no-warning-comments
39
+ 
40
+ /Users/jonathanburger/remotion/packages/cloudrun/src/shared/constants.ts
41
+  22:1 warning Unexpected 'todo' comment: 'TODO: In V5, Enable set this to 5' no-warning-comments
42
+ 
43
+ ✖ 10 problems (0 errors, 10 warnings)
44
+ 
@@ -1,5 +1,2 @@
1
1
 
2
- 
3
- > @remotion/cloudrun@4.0.357 make /Users/jonathanburger/remotion/packages/cloudrun
4
- > tsc -d && cp src/shared/sa-permissions.json dist/shared/sa-permissions.json
5
-
2
+ $ tsc -d && cp src/shared/sa-permissions.json dist/shared/sa-permissions.json
package/package.json CHANGED
@@ -1,58 +1,60 @@
1
1
  {
2
- "repository": {
3
- "url": "https://github.com/remotion-dev/remotion/tree/main/packages/cloudrun"
4
- },
5
- "name": "@remotion/cloudrun",
6
- "version": "4.0.357",
7
- "description": "Render Remotion videos on Google Cloud Run",
8
- "main": "dist/index.js",
9
- "sideEffects": false,
10
- "dependencies": {
11
- "@google-cloud/artifact-registry": "3.5.1",
12
- "@google-cloud/functions-framework": "3.4.6",
13
- "@google-cloud/run": "1.5.1",
14
- "@google-cloud/storage": "7.15.2",
15
- "@google-cloud/resource-manager": "5.3.1",
16
- "@google-cloud/logging": "11.2.0",
17
- "google-auth-library": "8.7.0",
18
- "zod": "3.22.3",
19
- "@remotion/bundler": "4.0.357",
20
- "@remotion/cli": "4.0.357",
21
- "@remotion/renderer": "4.0.357",
22
- "remotion": "4.0.357"
23
- },
24
- "devDependencies": {
25
- "@types/minimist": "1.2.2",
26
- "eslint": "9.19.0",
27
- "@remotion/compositor-linux-x64-gnu": "4.0.357",
28
- "@remotion/eslint-config-internal": "4.0.357"
29
- },
30
- "exports": {
31
- "./package.json": "./package.json",
32
- ".": "./dist/index.js",
33
- "./defaults": "./dist/defaults.js",
34
- "./regions": "./dist/regions.js",
35
- "./client": "./dist/client.js",
36
- "./permissions.json": "./dist/shared/sa-permissions.json"
37
- },
38
- "typesVersions": {
39
- ">=1.0": {
40
- "defaults": [
41
- "dist/defaults.d.ts"
42
- ],
43
- "regions": [
44
- "dist/regions.d.ts"
45
- ],
46
- "client": [
47
- "dist/client.d.ts"
48
- ]
49
- }
50
- },
51
- "homepage": "https://www.remotion.dev/docs/cloudrun",
52
- "scripts": {
53
- "make": "tsc -d && cp src/shared/sa-permissions.json dist/shared/sa-permissions.json",
54
- "makeruntime": "bun build.ts",
55
- "lint": "eslint src",
56
- "test": "bun test src"
57
- }
58
- }
2
+ "repository": {
3
+ "url": "https://github.com/remotion-dev/remotion/tree/main/packages/cloudrun"
4
+ },
5
+ "name": "@remotion/cloudrun",
6
+ "version": "4.0.358",
7
+ "description": "Render Remotion videos on Google Cloud Run",
8
+ "main": "dist/index.js",
9
+ "sideEffects": false,
10
+ "scripts": {
11
+ "make": "tsc -d && cp src/shared/sa-permissions.json dist/shared/sa-permissions.json",
12
+ "makeruntime": "bun build.ts",
13
+ "lint": "eslint src",
14
+ "test": "bun test src",
15
+ "publish": "bun build.ts && cd container && ARTIFACT_REGISTRY_ENV=production node submit.mjs"
16
+ },
17
+ "dependencies": {
18
+ "@google-cloud/artifact-registry": "3.5.1",
19
+ "@google-cloud/functions-framework": "3.4.6",
20
+ "@google-cloud/run": "1.5.1",
21
+ "@google-cloud/storage": "7.15.2",
22
+ "@google-cloud/resource-manager": "5.3.1",
23
+ "@google-cloud/logging": "11.2.0",
24
+ "@remotion/bundler": "4.0.357",
25
+ "@remotion/cli": "4.0.357",
26
+ "@remotion/renderer": "4.0.357",
27
+ "google-auth-library": "8.7.0",
28
+ "remotion": "4.0.357",
29
+ "zod": "3.22.3"
30
+ },
31
+ "devDependencies": {
32
+ "@remotion/compositor-linux-x64-gnu": "4.0.357",
33
+ "@types/minimist": "1.2.2",
34
+ "@remotion/eslint-config-internal": "4.0.357",
35
+ "eslint": "9.19.0",
36
+ "@types/node": "20.12.14"
37
+ },
38
+ "exports": {
39
+ "./package.json": "./package.json",
40
+ ".": "./dist/index.js",
41
+ "./defaults": "./dist/defaults.js",
42
+ "./regions": "./dist/regions.js",
43
+ "./client": "./dist/client.js",
44
+ "./permissions.json": "./dist/shared/sa-permissions.json"
45
+ },
46
+ "typesVersions": {
47
+ ">=1.0": {
48
+ "defaults": [
49
+ "dist/defaults.d.ts"
50
+ ],
51
+ "regions": [
52
+ "dist/regions.d.ts"
53
+ ],
54
+ "client": [
55
+ "dist/client.d.ts"
56
+ ]
57
+ }
58
+ },
59
+ "homepage": "https://www.remotion.dev/docs/cloudrun"
60
+ }
@@ -1,24 +0,0 @@
1
-
2
- $ bun test src
3
- bun test v1.2.21 (7c45ed97)
4
- 
5
- src/api/test/service-names.test.ts:
6
- ✓ Parse service names [1.35ms]
7
- 
8
- src/api/test/running-in-what-server.test.ts:
9
- ✓ is running in cloud tasks = true
10
- ✓ is running in cloud tasks = false [0.03ms]
11
- ✓ which project Id = remotion-test [0.06ms]
12
- ✓ which project Id = remotion-test-cloudtask [0.01ms]
13
- 
14
- src/api/test/payloads.test.ts:
15
- ✓ CloudRunPayload should work with and without optional webhook fields [2.48ms]
16
- 
17
- src/api/test/make-console.test.ts:
18
- ✓ app is in cloud tasks [0.34ms]
19
- ✓ app is not in cloud tasks [0.03ms]
20
-
21
-  8 pass
22
-  0 fail
23
- 17 expect() calls
24
- Ran 8 tests across 4 files. [99.00ms]
package/LICENSE.md DELETED
@@ -1,49 +0,0 @@
1
- # Remotion License
2
-
3
- In Remotion 5.0, the license will slightly change. [View the changes here](https://github.com/remotion-dev/remotion/pull/3750).
4
-
5
- ---
6
-
7
- Depending on the type of your legal entity, you are granted permission to use Remotion for your project. Individuals and small companies are allowed to use Remotion to create videos for free (even commercial), while a company license is required for for-profit organizations of a certain size. This two-tier system was designed to ensure funding for this project while still allowing the source code to be available and the program to be free for most. Read below for the exact terms of use.
8
-
9
- - [Free License](#free-license)
10
- - [Company License](#company-license)
11
-
12
- ## Free License
13
-
14
- Copyright © 2025 [Remotion](https://www.remotion.dev)
15
-
16
- ### Eligibility
17
-
18
- You are eligible to use Remotion for free if you are:
19
-
20
- - an individual
21
- - a for-profit organization with up to 3 employees
22
- - a non-profit or not-for-profit organization
23
- - evaluating whether Remotion is a good fit, and are not yet using it in a commercial way
24
-
25
- ### Allowed use cases
26
-
27
- Permission is hereby granted, free of charge, to any person eligible for the "Free License", to use the software non-commercially or commercially for the purpose of creating videos and images and to modify the software to their own liking, for the purpose of fulfilling their custom use case or to contribute bug fixes or improvements back to Remotion.
28
-
29
- ### Disallowed use cases
30
-
31
- It is not allowed to copy or modify Remotion code for the purpose of selling, renting, licensing, relicensing, or sublicensing your own derivate of Remotion.
32
-
33
- ### Warranty notice
34
-
35
- The software is provided "as is", without warranty of any kind, express or implied, including but not limited to the warranties of merchantability, fitness for a particular purpose, and non-infringement. In no event shall the author or copyright holders be liable for any claim, damages or other liability, whether in an action of contract, tort or otherwise, arising from, out of or in connection with the software or the use or other dealings in the software.
36
-
37
- ### Support
38
-
39
- Support is provided on a best-we-can-do basis via GitHub Issues and Discord.
40
-
41
- ## Company License
42
-
43
- You are required to obtain a Company License to use Remotion if you are not within the group of entities eligible for a Free License. This license will enable you to use Remotion for the allowed use cases specified in the Free License, and give you access to prioritized support (read the [Support Policy](https://www.remotion.dev/docs/support)).
44
-
45
- Visit [remotion.pro](https://www.remotion.pro/license) for pricing and to buy a license.
46
-
47
- ### FAQs
48
-
49
- Are you not sure whether you need a Company License because of an edge case? Here are some [frequently asked questions](https://www.remotion.pro/faq).