@budibase/worker 2.7.2 → 2.7.4

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
@@ -14,7 +14,7 @@ RUN yarn global add pm2
14
14
 
15
15
  COPY package.json .
16
16
  COPY dist/yarn.lock .
17
- RUN yarn install --frozen-lockfile --production=true
17
+ RUN yarn install --production=true
18
18
  # Remove unneeded data from file system to reduce image size
19
19
  RUN apk del .gyp \
20
20
  && yarn cache clean
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@budibase/worker",
3
3
  "email": "hi@budibase.com",
4
- "version": "2.7.2",
4
+ "version": "2.7.4",
5
5
  "description": "Budibase background service",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -38,10 +38,10 @@
38
38
  "author": "Budibase",
39
39
  "license": "GPL-3.0",
40
40
  "dependencies": {
41
- "@budibase/backend-core": "2.7.2",
42
- "@budibase/pro": "2.7.2",
43
- "@budibase/string-templates": "2.7.2",
44
- "@budibase/types": "2.7.2",
41
+ "@budibase/backend-core": "2.7.4",
42
+ "@budibase/pro": "2.7.4",
43
+ "@budibase/string-templates": "2.7.4",
44
+ "@budibase/types": "2.7.4",
45
45
  "@koa/router": "8.0.8",
46
46
  "@sentry/node": "6.17.7",
47
47
  "@techpass/passport-openidconnect": "0.3.2",
@@ -103,5 +103,5 @@
103
103
  "typescript": "4.7.3",
104
104
  "update-dotenv": "1.1.1"
105
105
  },
106
- "gitHead": "5b165519b2fc955edc8bb3a2bc994e55e91bb16d"
106
+ "gitHead": "d296aed2d9378fc369049efc2acd79ed06894e3e"
107
107
  }
@@ -140,6 +140,7 @@ export const datasourcePreAuth = async (ctx: any, next: any) => {
140
140
  {
141
141
  provider,
142
142
  appId: ctx.query.appId,
143
+ datasourceId: ctx.query.datasourceId,
143
144
  },
144
145
  Cookie.DatasourceAuth
145
146
  )