Skip to content

Commit 7391ad9

Browse files
authored
Merge branch 'main' into feat/svelte-kit-support
2 parents e63fe22 + a847b49 commit 7391ad9

File tree

624 files changed

+23317
-7637
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

624 files changed

+23317
-7637
lines changed

.changeset/config.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,6 @@
11
{
22
"$schema": "https://unpkg.com/@changesets/config@2.2.0/schema.json",
3-
"changelog": [
4-
"@remix-run/changelog-github",
5-
{
6-
"repo": "triggerdotdev/trigger.dev"
7-
}
8-
],
3+
"changelog": "@changesets/cli/changelog",
94
"commit": false,
105
"fixed": [
116
[

.changeset/fair-waves-hug.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@trigger.dev/nestjs": patch
3+
---
4+
5+
First release of NestJS adaptor

.changeset/lazy-parrots-retire.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
"@trigger.dev/replicate": patch
3+
"@trigger.dev/airtable": patch
4+
"@trigger.dev/supabase": patch
5+
"@trigger.dev/typeform": patch
6+
"@trigger.dev/sdk": patch
7+
"@trigger.dev/github": patch
8+
"@trigger.dev/linear": patch
9+
"@trigger.dev/stripe": patch
10+
"@trigger.dev/slack": patch
11+
"@trigger.dev/testing": patch
12+
"@trigger.dev/react": patch
13+
"@trigger.dev/core": patch
14+
"@trigger.dev/cli": patch
15+
---
16+
17+
upgrade zod to 3.22.3

.changeset/orange-falcons-smile.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@trigger.dev/sdk": patch
3+
---
4+
5+
allow cancelling jobs from trigger-client

.changeset/thick-pugs-give.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@trigger.dev/cli": patch
3+
---
4+
5+
Removed log when a file is changed

.dockerignore

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,43 @@
1-
*.log
1+
\*.log
22
.git
33
.github
4+
45
# editor
6+
57
.idea
68
.vscode
9+
710
# dependencies
11+
812
node_modules
913
.pnp
1014
.pnp.js
1115

1216
# testing
17+
1318
coverage
1419

1520
# next.js
21+
1622
.next/
1723
build
1824

1925
# packages
26+
2027
build
2128
dist
22-
packages/**/dist
29+
packages/\*\*/dist
2330

2431
# misc
32+
2533
.DS_Store
26-
*.pem
34+
\*.pem
2735

2836
.turbo
2937
.vercel
3038
.cache
3139
.output
32-
apps/**/public/build
40+
apps/\*\*/public/build
3341

3442
cypress/screenshots
3543
cypress/videos
@@ -38,6 +46,7 @@ apps/**/styles/tailwind.css
3846
packages/**/styles/tailwind.css
3947

4048
.changeset
49+
references
4150
examples
4251
CHANGESETS.md
4352
CONTRIBUTING.md

.env.example

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ CLOUD_AIRTABLE_CLIENT_ID=
3131
CLOUD_AIRTABLE_CLIENT_SECRET=
3232
CLOUD_GITHUB_CLIENT_ID=
3333
CLOUD_GITHUB_CLIENT_SECRET=
34+
CLOUD_LINEAR_CLIENT_ID=
35+
CLOUD_LINEAR_CLIENT_SECRET=
3436
CLOUD_SLACK_APP_HOST=
3537
CLOUD_SLACK_CLIENT_ID=
3638
CLOUD_SLACK_CLIENT_SECRET=
Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: 🐞 Bug Report
2+
description: Create a bug report to help us improve
3+
title: "bug: "
4+
labels: ["🐞 unconfirmed bug"]
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Provide environment information
9+
description: |
10+
Run this command in your project root and paste the results:
11+
```bash
12+
npx envinfo --system --binaries
13+
```
14+
15+
validations:
16+
required: true
17+
- type: textarea
18+
attributes:
19+
label: Describe the bug
20+
description: A clear and concise description of the bug, as well as what you expected to happen when encountering it.
21+
validations:
22+
required: true
23+
- type: input
24+
attributes:
25+
label: Reproduction repo
26+
description: If applicable, please provide a link to a reproduction repo or a Stackblitz / CodeSandbox project. Your issue may be closed if this is not provided and we are unable to reproduce the issue. If your bug is a docs issue, link the appropriate page.
27+
validations:
28+
required: true
29+
- type: textarea
30+
attributes:
31+
label: To reproduce
32+
description: Describe how to reproduce your bug. Steps, code snippets, reproduction repos etc.
33+
validations:
34+
required: true
35+
- type: textarea
36+
attributes:
37+
label: Additional information
38+
description: Add any other information related to the bug here, screenshots if applicable.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Ask a Question
4+
url: https://trigger.dev/discord
5+
about: Ask questions and discuss with other community members
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Feature Request
2+
description: Suggest an idea for this project
3+
title: "feat: "
4+
labels: ["🌟 enhancement"]
5+
body:
6+
- type: textarea
7+
attributes:
8+
label: Is your feature request related to a problem? Please describe.
9+
description: A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
10+
validations:
11+
required: true
12+
- type: textarea
13+
attributes:
14+
label: Describe the solution you'd like to see
15+
description: A clear and concise description of what you want to happen.
16+
validations:
17+
required: true
18+
- type: textarea
19+
attributes:
20+
label: Describe alternate solutions
21+
description: A clear and concise description of any alternative solutions or features you've considered.
22+
validations:
23+
required: true
24+
- type: textarea
25+
attributes:
26+
label: Additional information
27+
description: Add any other information related to the feature here. If your feature request is related to any issues or discussions, link them here.

0 commit comments

Comments
 (0)