Skip to content

Commit 766110f

Browse files
chore: release v4.5.16 (#4856)
## Summary 1 improvement, 2 bug fixes. ## Improvements - The `trigger.dev deploy` and `trigger.dev dev` commands now warn (with the suggested fix) when your code loads a package through `createRequire()` that won't be available in the deployed image. Previously it would fail at runtime in production to load the package. Deploys also now show bundler warnings for your code instead of discarding them. ([#4851](#4851)) ## Bug fixes - Fixes an issue introduced in 4.5.11 that made deploy image builds of projects with large dependency trees noticeably slower. ([#4878](#4878)) ## Server changes These changes affect the self-hosted Docker image and Trigger.dev Cloud: - A durable guard improves reliability for runs waiting on triggerAndWait or batchTriggerAndWait if there's a database error that interrupts a child run finishing. ([#4849](#4849)) <details> <summary>Raw changeset output</summary> # Releases ## @trigger.dev/build@4.5.16 ### Patch Changes - The `trigger.dev deploy` and `trigger.dev dev` commands now warn (with the suggested fix) when your code loads a package through `createRequire()` that won't be available in the deployed image. Previously it would fail at runtime in production to load the package. Deploys also now show bundler warnings for your code instead of discarding them. ([#4851](#4851)) - Updated dependencies: - `@trigger.dev/core@4.5.16` ## trigger.dev@4.5.16 ### Patch Changes - Fixes an issue introduced in 4.5.11 that made deploy image builds of projects with large dependency trees noticeably slower. ([#4878](#4878)) - The `trigger.dev deploy` and `trigger.dev dev` commands now warn (with the suggested fix) when your code loads a package through `createRequire()` that won't be available in the deployed image. Previously it would fail at runtime in production to load the package. Deploys also now show bundler warnings for your code instead of discarding them. ([#4851](#4851)) - Updated dependencies: - `@trigger.dev/build@4.5.16` - `@trigger.dev/core@4.5.16` - `@trigger.dev/schema-to-json@4.5.16` ## @trigger.dev/core@4.5.16 ### Patch Changes - The `trigger.dev deploy` and `trigger.dev dev` commands now warn (with the suggested fix) when your code loads a package through `createRequire()` that won't be available in the deployed image. Previously it would fail at runtime in production to load the package. Deploys also now show bundler warnings for your code instead of discarding them. ([#4851](#4851)) ## @trigger.dev/python@4.5.16 ### Patch Changes - Updated dependencies: - `@trigger.dev/build@4.5.16` - `@trigger.dev/core@4.5.16` - `@trigger.dev/sdk@4.5.16` ## @trigger.dev/react-hooks@4.5.16 ### Patch Changes - Updated dependencies: - `@trigger.dev/core@4.5.16` ## @trigger.dev/redis-worker@4.5.16 ### Patch Changes - Updated dependencies: - `@trigger.dev/core@4.5.16` ## @trigger.dev/rsc@4.5.16 ### Patch Changes - Updated dependencies: - `@trigger.dev/core@4.5.16` ## @trigger.dev/schema-to-json@4.5.16 ### Patch Changes - Updated dependencies: - `@trigger.dev/core@4.5.16` ## @trigger.dev/sdk@4.5.16 ### Patch Changes - Updated dependencies: - `@trigger.dev/core@4.5.16` </details> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 7317fe1 commit 766110f

23 files changed

Lines changed: 104 additions & 53 deletions

.changeset/code-layer-exclude-copy.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/warn-createrequire-deploy.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.server-changes/run-finalization-guard.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

hosting/k8s/helm/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: trigger
33
description: The official Trigger.dev Helm chart
44
type: application
5-
version: 4.5.15
6-
appVersion: v4.5.15
5+
version: 4.5.16
6+
appVersion: v4.5.16
77
home: https://trigger.dev
88
sources:
99
- https://github.com/triggerdotdev/trigger.dev

packages/build/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @trigger.dev/build
22

3+
## 4.5.16
4+
5+
### Patch Changes
6+
7+
- The `trigger.dev deploy` and `trigger.dev dev` commands now warn (with the suggested fix) when your code loads a package through `createRequire()` that won't be available in the deployed image. Previously it would fail at runtime in production to load the package. Deploys also now show bundler warnings for your code instead of discarding them. ([#4851](https://github.com/triggerdotdev/trigger.dev/pull/4851))
8+
- Updated dependencies:
9+
- `@trigger.dev/core@4.5.16`
10+
311
## 4.5.15
412

513
### Patch Changes

packages/build/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@trigger.dev/build",
3-
"version": "4.5.15",
3+
"version": "4.5.16",
44
"description": "trigger.dev build extensions",
55
"license": "MIT",
66
"publishConfig": {
@@ -82,7 +82,7 @@
8282
},
8383
"dependencies": {
8484
"@prisma/config": "^6.10.0",
85-
"@trigger.dev/core": "workspace:4.5.15",
85+
"@trigger.dev/core": "workspace:4.5.16",
8686
"mlly": "^1.7.1",
8787
"pkg-types": "^1.1.3",
8888
"tinyglobby": "^0.2.2",

packages/cli-v3/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# trigger.dev
22

3+
## 4.5.16
4+
5+
### Patch Changes
6+
7+
- Fixes an issue introduced in 4.5.11 that made deploy image builds of projects with large dependency trees noticeably slower. ([#4878](https://github.com/triggerdotdev/trigger.dev/pull/4878))
8+
- The `trigger.dev deploy` and `trigger.dev dev` commands now warn (with the suggested fix) when your code loads a package through `createRequire()` that won't be available in the deployed image. Previously it would fail at runtime in production to load the package. Deploys also now show bundler warnings for your code instead of discarding them. ([#4851](https://github.com/triggerdotdev/trigger.dev/pull/4851))
9+
- Updated dependencies:
10+
- `@trigger.dev/build@4.5.16`
11+
- `@trigger.dev/core@4.5.16`
12+
- `@trigger.dev/schema-to-json@4.5.16`
13+
314
## 4.5.15
415

516
### Patch Changes

packages/cli-v3/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "trigger.dev",
3-
"version": "4.5.15",
3+
"version": "4.5.16",
44
"description": "A Command-Line Interface for Trigger.dev projects",
55
"type": "module",
66
"license": "MIT",
@@ -83,9 +83,9 @@
8383
"@opentelemetry/api-logs": "0.218.0",
8484
"@opentelemetry/instrumentation": "0.218.0",
8585
"@s2-dev/streamstore": "^0.25.0",
86-
"@trigger.dev/build": "workspace:4.5.15",
87-
"@trigger.dev/core": "workspace:4.5.15",
88-
"@trigger.dev/schema-to-json": "workspace:4.5.15",
86+
"@trigger.dev/build": "workspace:4.5.16",
87+
"@trigger.dev/core": "workspace:4.5.16",
88+
"@trigger.dev/schema-to-json": "workspace:4.5.16",
8989
"ansi-escapes": "^7.0.0",
9090
"braces": "^3.0.3",
9191
"c12": "^1.11.1",

packages/core/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# internal-platform
22

3+
## 4.5.16
4+
5+
### Patch Changes
6+
7+
- The `trigger.dev deploy` and `trigger.dev dev` commands now warn (with the suggested fix) when your code loads a package through `createRequire()` that won't be available in the deployed image. Previously it would fail at runtime in production to load the package. Deploys also now show bundler warnings for your code instead of discarding them. ([#4851](https://github.com/triggerdotdev/trigger.dev/pull/4851))
8+
39
## 4.5.15
410

511
### Patch Changes

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@trigger.dev/core",
3-
"version": "4.5.15",
3+
"version": "4.5.16",
44
"description": "Core code used across the Trigger.dev SDK and platform",
55
"license": "MIT",
66
"publishConfig": {

0 commit comments

Comments
 (0)