@budibase/worker 3.6.0 → 3.7.0

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/worker",
3
3
  "email": "hi@budibase.com",
4
- "version": "3.6.0",
4
+ "version": "3.7.0",
5
5
  "description": "Budibase background service",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -50,7 +50,7 @@
50
50
  "bcrypt": "5.1.0",
51
51
  "bcryptjs": "2.4.3",
52
52
  "bull": "4.10.1",
53
- "dd-trace": "5.26.0",
53
+ "dd-trace": "5.43.0",
54
54
  "dotenv": "8.6.0",
55
55
  "email-validator": "^2.0.4",
56
56
  "global-agent": "3.0.0",
@@ -102,6 +102,9 @@
102
102
  "typescript": "5.7.2",
103
103
  "update-dotenv": "1.1.1"
104
104
  },
105
+ "resolutions": {
106
+ "@budibase/pro": "npm:@budibase/pro@latest"
107
+ },
105
108
  "nx": {
106
109
  "targets": {
107
110
  "dev": {
@@ -117,5 +120,5 @@
117
120
  }
118
121
  }
119
122
  },
120
- "gitHead": "fcc8291c1f2968ee7fd17bd47ee6ca19181a14a7"
123
+ "gitHead": "701aef170adfb9552bb88b97a0231e31e6054f64"
121
124
  }
@@ -586,6 +586,7 @@ export async function configChecklist(ctx: Ctx<void, ConfigChecklistResponse>) {
586
586
  checked: !!smtpConfig,
587
587
  label: "Set up email",
588
588
  link: "/builder/portal/settings/email",
589
+ fallback: smtpConfig?.fallback || false,
589
590
  },
590
591
  adminUser: {
591
592
  checked: userExists,
@@ -279,6 +279,7 @@ describe("configs", () => {
279
279
 
280
280
  expect(checklist.apps.checked).toBeFalsy()
281
281
  expect(checklist.smtp.checked).toBeTruthy()
282
+ expect(checklist.smtp.fallback).toBeFalsy()
282
283
  expect(checklist.adminUser.checked).toBeTruthy()
283
284
  })
284
285
  })