@budibase/server 2.11.30 → 2.11.32

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/server",
3
3
  "email": "hi@budibase.com",
4
- "version": "2.11.30",
4
+ "version": "2.11.32",
5
5
  "description": "Budibase Web Server",
6
6
  "main": "src/index.ts",
7
7
  "repository": {
@@ -45,12 +45,12 @@
45
45
  "license": "GPL-3.0",
46
46
  "dependencies": {
47
47
  "@apidevtools/swagger-parser": "10.0.3",
48
- "@budibase/backend-core": "2.11.30",
49
- "@budibase/client": "2.11.30",
50
- "@budibase/pro": "2.11.30",
51
- "@budibase/shared-core": "2.11.30",
52
- "@budibase/string-templates": "2.11.30",
53
- "@budibase/types": "2.11.30",
48
+ "@budibase/backend-core": "2.11.32",
49
+ "@budibase/client": "2.11.32",
50
+ "@budibase/pro": "2.11.32",
51
+ "@budibase/shared-core": "2.11.32",
52
+ "@budibase/string-templates": "2.11.32",
53
+ "@budibase/types": "2.11.32",
54
54
  "@bull-board/api": "3.7.0",
55
55
  "@bull-board/koa": "3.9.4",
56
56
  "@elastic/elasticsearch": "7.10.0",
@@ -174,5 +174,5 @@
174
174
  }
175
175
  }
176
176
  },
177
- "gitHead": "a3cc10c6b0dc3498e19d27c7c6c40433f756f85e"
177
+ "gitHead": "c78678f641ef364c15f56af29b9f1f77733e8e79"
178
178
  }
@@ -43,6 +43,10 @@ describe("postgres integrations", () => {
43
43
  )
44
44
  })
45
45
 
46
+ afterAll(async () => {
47
+ await databaseTestProviders.postgres.stopContainer()
48
+ })
49
+
46
50
  beforeEach(async () => {
47
51
  async function createAuxTable(prefix: string) {
48
52
  return await config.createTable({
@@ -36,3 +36,10 @@ export async function getDsConfig(): Promise<Datasource> {
36
36
  },
37
37
  }
38
38
  }
39
+
40
+ export async function stopContainer() {
41
+ if (container) {
42
+ await container.stop()
43
+ container = undefined
44
+ }
45
+ }