@budibase/worker 2.26.2 → 2.27.2

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": "2.26.2",
4
+ "version": "2.27.2",
5
5
  "description": "Budibase background service",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -37,10 +37,10 @@
37
37
  "author": "Budibase",
38
38
  "license": "GPL-3.0",
39
39
  "dependencies": {
40
- "@budibase/backend-core": "2.26.2",
41
- "@budibase/pro": "2.26.2",
42
- "@budibase/string-templates": "2.26.2",
43
- "@budibase/types": "2.26.2",
40
+ "@budibase/backend-core": "2.27.2",
41
+ "@budibase/pro": "2.27.2",
42
+ "@budibase/string-templates": "2.27.2",
43
+ "@budibase/types": "2.27.2",
44
44
  "@koa/router": "8.0.8",
45
45
  "@techpass/passport-openidconnect": "0.3.2",
46
46
  "@types/global-agent": "2.1.1",
@@ -108,5 +108,5 @@
108
108
  }
109
109
  }
110
110
  },
111
- "gitHead": "3d3bff09f82a7994168af6c475616750c0e9163a"
111
+ "gitHead": "9e50a9ac2616fc848aa9132965452bedf88a07e3"
112
112
  }
@@ -459,10 +459,11 @@ describe("scim", () => {
459
459
  it("should return 404 when requesting unexisting user id", async () => {
460
460
  const response = await findScimUser(structures.uuid(), { expect: 404 })
461
461
 
462
- expect(response).toEqual({
463
- message: "missing",
464
- status: 404,
465
- })
462
+ expect(response).toEqual(
463
+ expect.objectContaining({
464
+ status: 404,
465
+ })
466
+ )
466
467
  })
467
468
  })
468
469
 
@@ -861,10 +862,11 @@ describe("scim", () => {
861
862
  it("should return 404 when requesting unexisting group id", async () => {
862
863
  const response = await findScimGroup(structures.uuid(), { expect: 404 })
863
864
 
864
- expect(response).toEqual({
865
- message: "missing",
866
- status: 404,
867
- })
865
+ expect(response).toEqual(
866
+ expect.objectContaining({
867
+ status: 404,
868
+ })
869
+ )
868
870
  })
869
871
 
870
872
  it("should allow excluding members", async () => {