Skip to content

Commit

Permalink
Release 1.5.9
Browse files Browse the repository at this point in the history
  • Loading branch information
Lomilar committed May 26, 2022
1 parent 7070694 commit 76ddc1f
Show file tree
Hide file tree
Showing 7 changed files with 36 additions and 32 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log

## 1.5.9
* Updates to login in editor.
* Updates to library.

## 1.5.8
* Updates to editor and CaSS library
* Updated HTTP/2 Negotiation
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# CaSS
Competency and Skills Service -- Competency Management

Release Candidate: 1.5.8 [![Build Status](https://travis-ci.org/cassproject/CASS.svg?branch=1.5)](https://travis-ci.org/cassproject/CASS)
Release Candidate: 1.5.9 [![Build Status](https://travis-ci.org/cassproject/CASS.svg?branch=1.5)](https://travis-ci.org/cassproject/CASS)
Supported: 1.4 [![Build Status](https://travis-ci.org/cassproject/CASS.svg?branch=1.4)](https://travis-ci.org/cassproject/CASS)
Supported: 1.3 [![Build Status](https://travis-ci.org/cassproject/CASS.svg?branch=1.3)](https://travis-ci.org/cassproject/CASS)
Supported: 1.2 [![Build Status](https://travis-ci.org/cassproject/CASS.svg?branch=1.2)](https://travis-ci.org/cassproject/CASS)
Expand Down Expand Up @@ -94,7 +94,7 @@ Due to the performance improvements in the 1.5 version of CaSS, we highly recomm
## Release Process
* Review dependencies, autocomplete version numbers
* Increment version number in package.json
* Increment elasticsearch version number to latest minor/revision in docker/standalone/DockerFile
* Increment elasticsearch version number to latest minor/revision in docker/standalone/DockerFile (https://hub.docker.com/_/elasticsearch)
* `npm install`
* `npm run testWithCoverage`
* In another command window, `npm run test:mocha` - Must not fail any tests.
Expand Down
Empty file added coverage/lcov.info
Empty file.
2 changes: 1 addition & 1 deletion docker/standalone/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM docker.elastic.co/elasticsearch/elasticsearch:7.17.3
FROM docker.elastic.co/elasticsearch/elasticsearch:7.17.4

RUN curl -sL https://deb.nodesource.com/setup_16.x | bash -
RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt install -qqy nodejs git
Expand Down
46 changes: 23 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "cass",
"version": "1.5.8",
"version": "1.5.9",
"description": "Competency and Skills System",
"main": "src/main/server.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test": "npm run test:deps && npm run test:start && npm run mocha && npm run stop",
"testWithCoverage": "npm run test:deps && nyc --all --include 'src/main/**' --exclude 'node_modules/**' --exclude 'src/main/webapp/**' npm run test:start",
"testWithCoverage": "npm run test:deps && nyc --reporter=lcov --reporter=text --all --include 'src/main/**' --exclude 'node_modules/**' --exclude 'src/main/webapp/**' npm run test:start",
"test:mocha": "nyc npm run mocha",
"test:start": "node src/main/server.js",
"test:sudostart": "sudo pm2 start ./pm2.test.config.js",
Expand Down Expand Up @@ -81,10 +81,10 @@
"homepage": "https://github.com/cassproject/CASS#readme",
"dependencies": {
"axios": "^0.27.2",
"cassproject": "^1.5.8",
"cassproject": "^1.5.9",
"cors": "^2.8.5",
"express": "^4.18.1",
"express-jwt": "^7.7.1",
"express-jwt": "^7.7.2",
"express-openid-connect": "^2.7.2",
"express-ws": "^5.0.2",
"formidable": "^2.0.1",
Expand All @@ -96,7 +96,7 @@
"pure-uuid": "^1.6.2",
"rdflib": "^2.2.19",
"spdy": "^4.0.2",
"ws": "^8.6.0"
"ws": "^8.7.0"
},
"devDependencies": {
"chai": "^4.3.6",
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp
Submodule webapp updated 460 files

0 comments on commit 76ddc1f

Please sign in to comment.