@budibase/worker 1.4.8-alpha.3 → 1.4.9

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/Dockerfile CHANGED
@@ -23,6 +23,5 @@ ENV NODE_ENV=production
23
23
  ENV CLUSTER_MODE=${CLUSTER_MODE}
24
24
  ENV SERVICE=worker-service
25
25
  ENV POSTHOG_TOKEN=phc_bIjZL7oh2GEUd2vqvTBH8WvrX0fWTFQMs6H5KQxiUxU
26
- ENV TENANT_FEATURE_FLAGS=*:LICENSING,*:USER_GROUPS
27
26
 
28
27
  CMD ["./docker_run.sh"]
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/worker",
3
3
  "email": "hi@budibase.com",
4
- "version": "1.4.8-alpha.3",
4
+ "version": "1.4.9",
5
5
  "description": "Budibase background service",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -36,10 +36,10 @@
36
36
  "author": "Budibase",
37
37
  "license": "GPL-3.0",
38
38
  "dependencies": {
39
- "@budibase/backend-core": "1.4.8-alpha.3",
40
- "@budibase/pro": "1.4.8-alpha.2",
41
- "@budibase/string-templates": "1.4.8-alpha.3",
42
- "@budibase/types": "1.4.8-alpha.3",
39
+ "@budibase/backend-core": "^1.4.9",
40
+ "@budibase/pro": "1.4.8",
41
+ "@budibase/string-templates": "^1.4.9",
42
+ "@budibase/types": "^1.4.9",
43
43
  "@koa/router": "8.0.8",
44
44
  "@sentry/node": "6.17.7",
45
45
  "@techpass/passport-openidconnect": "0.3.2",
@@ -104,5 +104,5 @@
104
104
  "./scripts/jestSetup.js"
105
105
  ]
106
106
  },
107
- "gitHead": "5a895e48e0e80d45283bbc59652e81f60f86b456"
107
+ "gitHead": "e15f0834451ad122fe2bb09e8924a7bd50886f68"
108
108
  }
@@ -10,9 +10,7 @@ const router = Router()
10
10
  function buildEmailSendValidation() {
11
11
  // prettier-ignore
12
12
  return joiValidator.body(Joi.object({
13
- email: Joi.string().email({
14
- multiple: true,
15
- }),
13
+ email: Joi.string().email(),
16
14
  purpose: Joi.string().valid(...Object.values(EmailTemplatePurpose)),
17
15
  workspaceId: Joi.string().allow("", null),
18
16
  from: Joi.string().allow("", null),