cassproject 0.5.33 → 1.5.0

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/README.md +8 -4
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -21,10 +21,10 @@ Running `npm test` requires Docker.
21
21
 
22
22
  ## Release testing
23
23
 
24
- * `npm test` - Runs unit tests in docker images against the CaSS 0.5, 1.2, 1.3, and 1.4 repositories using Node versions 12-16 and Cypress against Edge, Chrome, Firefox and Electron. Takes some time.
24
+ * `npm test` - Runs unit tests in docker images against the CaSS 1.5, 1.2, 1.3, and 1.4 repositories using Node versions 12-16 and Cypress against Edge, Chrome, Firefox and Electron. Takes some time.
25
25
 
26
26
  ## Development unit testing
27
- Development unit tests presume you have a CaSS Repository running on `localhost:80`. You may get one by running `docker run -d --name cass-test -p80:80 cassproject/cass:0.5.1`
27
+ Development unit tests presume you have a CaSS Repository running on `localhost:80`. You may get one by running `docker run -d --name cass-test -p80:80 cassproject/cass:1.5.0`
28
28
 
29
29
  * `npm automocha` - Runs mocha unit tests against current Node environment. Will rerun unit tests on-save.
30
30
  * `npm mocha` - Runs mocha unit tests.
@@ -36,16 +36,20 @@ Development unit tests presume you have a CaSS Repository running on `localhost:
36
36
  ## Publish checklist
37
37
 
38
38
  * Review dependencies, autocomplete version numbers
39
+ * Increment version number in package.json and yuidoc.json
40
+ * Update documentation, `npm run docs`
41
+ * Delete yuidoc elements from devDependencies in package.json
39
42
  * Delete package-lock.json and node_modules, `npm install`
40
43
  * `npm test` - Must not fail any tests.
41
- * Increment version number in package.json and yuidoc.json
42
- * `npm run docs`
43
44
  * Commit changes to GitHub.
44
45
  * Tag release with semantic version from package.json, push tag.
45
46
  * `npm publish` (must be `npm login`ed)
46
47
 
47
48
  # Changelog
48
49
 
50
+ ## 1.5.0
51
+ * Version increment
52
+
49
53
  ## 0.5.31
50
54
  * Optimized performance of EcFrameworkGraph
51
55
 
package/package.json CHANGED
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "cassproject",
3
- "version": "0.5.33",
3
+ "version": "1.5.0",
4
4
  "description": "Competency and Skills Service",
5
5
  "main": "index.js",
6
6
  "scripts": {
7
7
  "test": "npm run test05 && npm run test14 && npm run test13 && npm run test12",
8
8
  "testCassTest": "npm run testkill && docker run -d --name cass-test -p80:80 cass-test && wait-on http://localhost/api/ping && npm run testCypressEdge && npm run testCypress && npm run testNode16 && npm run testNode15 && npm run testNode14 && npm run testNode13 && npm run testNode12 && npm run testkill",
9
- "test05": "npm run testkill && docker run -d --name cass-test -p80:80 cassproject/cass:0.5.7 && wait-on http://localhost/api/ping && npm run testCypressEdge && npm run testCypress && npm run testNode16 && npm run testNode15 && npm run testNode14 && npm run testNode13 && npm run testNode12 && npm run testkill",
9
+ "test05": "npm run testkill && docker run -d --name cass-test -p80:80 cassproject/cass:1.5.0 && wait-on http://localhost/api/ping && npm run testCypressEdge && npm run testCypress && npm run testNode16 && npm run testNode15 && npm run testNode14 && npm run testNode13 && npm run testNode12 && npm run testkill",
10
10
  "test14": "npm run testkill && docker run -d --name cass-test -p80:80 cassproject/cass:1.4.4 && wait-on http://localhost/api/ping && npm run testCypressEdge && npm run testCypress && npm run testNode16 && npm run testNode15 && npm run testNode14 && npm run testNode13 && npm run testNode12 && npm run testkill",
11
11
  "test13": "npm run testkill && docker run -d --name cass-test -p80:80 cassproject/cass:1.3.18 && wait-on http://localhost/api/ping && npm run testCypressEdge && npm run testCypress && npm run testNode16 && npm run testNode15 && npm run testNode14 && npm run testNode13 && npm run testNode12 && npm run testkill",
12
12
  "test12": "npm run testkill && docker run -d --name cass-test -p80:80 cassproject/cass:1.2.44 && wait-on http://localhost/api/ping && npm run testCypressEdge && npm run testCypress && npm run testNode16 && npm run testNode15 && npm run testNode14 && npm run testNode13 && npm run testNode12 && npm run testkill",
@@ -88,22 +88,22 @@
88
88
  },
89
89
  "homepage": "https://github.com/cassproject/cass-npm#readme",
90
90
  "devDependencies": {
91
- "@babel/core": "^7.16.12",
91
+ "@babel/core": "^7.17.0",
92
92
  "@babel/preset-env": "^7.16.11",
93
93
  "@cypress/browserify-preprocessor": "^3.0.2",
94
94
  "@cypress/webpack-preprocessor": "^5.11.0",
95
95
  "babel-eslint": "^10.1.0",
96
96
  "babel-loader": "^8.2.3",
97
97
  "babel-plugin-transform-remove-strict-mode": "^0.0.2",
98
- "chai": "^4.3.5",
98
+ "chai": "^4.3.6",
99
99
  "convert-hrtime": "^5.0.0",
100
- "cypress": "^9.3.1",
101
- "eslint": "^8.7.0",
100
+ "cypress": "^9.4.1",
101
+ "eslint": "^8.8.0",
102
102
  "mocha": "^9.2.0",
103
103
  "node-polyfill-webpack-plugin": "^1.1.4",
104
104
  "nodemon": "^2.0.15",
105
105
  "wait-on": "^6.0.0",
106
- "webpack": "^5.67.0",
106
+ "webpack": "^5.68.0",
107
107
  "webpack-cli": "^4.9.2"
108
108
  }
109
109
  }