@cubejs-backend/testing 0.28.67 → 0.29.6

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -3,6 +3,56 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.29.6](https://github.com/cube-js/cube.js/compare/v0.29.5...v0.29.6) (2021-12-19)
7
+
8
+ **Note:** Version bump only for package @cubejs-backend/testing
9
+
10
+
11
+
12
+
13
+
14
+ ## [0.29.5](https://github.com/cube-js/cube.js/compare/v0.29.4...v0.29.5) (2021-12-17)
15
+
16
+ **Note:** Version bump only for package @cubejs-backend/testing
17
+
18
+
19
+
20
+
21
+
22
+ ## [0.29.4](https://github.com/cube-js/cube.js/compare/v0.29.3...v0.29.4) (2021-12-16)
23
+
24
+ **Note:** Version bump only for package @cubejs-backend/testing
25
+
26
+
27
+
28
+
29
+
30
+ # [0.29.0](https://github.com/cube-js/cube.js/compare/v0.28.67...v0.29.0) (2021-12-14)
31
+
32
+
33
+ ### Features
34
+
35
+ * **playground:** GraphiQL sandbox. Allow using the cube GraphQL API ([#3810](https://github.com/cube-js/cube.js/issues/3810)) ([1f39042](https://github.com/cube-js/cube.js/commit/1f39042ac063feaa852b3674a1b857d2dbbc9d17))
36
+
37
+
38
+ ### Reverts
39
+
40
+ * Revert "BREAKING CHANGE: 0.29 (#3809)" (#3811) ([db005ed](https://github.com/cube-js/cube.js/commit/db005edc04d48e8251250ab9d0e19f496cf3b52b)), closes [#3809](https://github.com/cube-js/cube.js/issues/3809) [#3811](https://github.com/cube-js/cube.js/issues/3811)
41
+
42
+
43
+ * BREAKING CHANGE: 0.29 (#3809) ([6f1418b](https://github.com/cube-js/cube.js/commit/6f1418b9963774844f341682e594601a56bb0084)), closes [#3809](https://github.com/cube-js/cube.js/issues/3809)
44
+
45
+
46
+ ### BREAKING CHANGES
47
+
48
+ * Drop support for Node.js 10 (12.x is a minimal version)
49
+ * Upgrade Node.js to 14 for Docker images
50
+ * Drop support for Node.js 15
51
+
52
+
53
+
54
+
55
+
6
56
  ## [0.28.67](https://github.com/cube-js/cube.js/compare/v0.28.66...v0.28.67) (2021-12-14)
7
57
 
8
58
 
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@cubejs-backend/testing",
3
- "version": "0.28.67",
3
+ "version": "0.29.6",
4
4
  "description": "Cube.js Testing Helpers",
5
5
  "author": "Cube Dev, Inc.",
6
6
  "license": "Apache-2.0",
7
7
  "main": "dist/src/index.js",
8
8
  "typings": "dist/src/index.d.ts",
9
9
  "engines": {
10
- "node": ">=10.8.0"
10
+ "node": "^12.0.0 || ^14.0.0 || >=16.0.0"
11
11
  },
12
12
  "scripts": {
13
13
  "cypress:open": "kill-port 4000 && TEST_PLAYGROUND_PORT=3080 yarn cypress:birdbox",
@@ -40,10 +40,10 @@
40
40
  "birdbox-fixtures"
41
41
  ],
42
42
  "dependencies": {
43
- "@cubejs-backend/query-orchestrator": "^0.28.64",
44
- "@cubejs-backend/schema-compiler": "^0.28.64",
45
- "@cubejs-backend/shared": "^0.28.55",
46
- "@cubejs-client/ws-transport": "^0.28.52",
43
+ "@cubejs-backend/query-orchestrator": "^0.29.6",
44
+ "@cubejs-backend/schema-compiler": "^0.29.6",
45
+ "@cubejs-backend/shared": "^0.29.0",
46
+ "@cubejs-client/ws-transport": "^0.29.5",
47
47
  "fs-extra": "^8.1.0",
48
48
  "http-proxy": "^1.18.1",
49
49
  "node-fetch": "^2.6.1",
@@ -51,8 +51,8 @@
51
51
  },
52
52
  "devDependencies": {
53
53
  "@4tw/cypress-drag-drop": "^1.6.0",
54
- "@cubejs-backend/linter": "^0.28.22",
55
- "@cubejs-client/core": "^0.28.52",
54
+ "@cubejs-backend/linter": "^0.29.0",
55
+ "@cubejs-client/core": "^0.29.5",
56
56
  "@jest/globals": "^26.6.2",
57
57
  "@types/http-proxy": "^1.17.5",
58
58
  "@types/jest": "^26.0.22",
@@ -83,5 +83,5 @@
83
83
  "eslintConfig": {
84
84
  "extends": "../cubejs-linter"
85
85
  },
86
- "gitHead": "c9249a5e0188d2f7d080d0bb29b48efe5c98b4bc"
86
+ "gitHead": "ebd906a4b7142667fad30437ccaf7e9e9792d063"
87
87
  }