Skip to content

Commit dbfc891

Browse files
committed
Release 0.5.9
1 parent b21a0e7 commit dbfc891

File tree

5 files changed

+79
-59
lines changed

5 files changed

+79
-59
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change Log
22

3+
## 0.5.9
4+
* Better support for Google and Microsoft SSO.
5+
* Updated editor.
6+
37
## 0.5.7
48
* Support domain name changes, database exchanges, and multi-tenancy in a more performant fashion.
59
* Fixed bugs around re-importing deleted data and versioning.

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# CaSS
22
Competency and Skills Service -- Competency Management
33

4-
Release Candidate: 0.5.7 [![Build Status](https://travis-ci.org/cassproject/CASS.svg?branch=0.5)](https://travis-ci.org/cassproject/CASS)
4+
Release Candidate: 0.5.9 [![Build Status](https://travis-ci.org/cassproject/CASS.svg?branch=0.5)](https://travis-ci.org/cassproject/CASS)
55
Supported: 1.4 [![Build Status](https://travis-ci.org/cassproject/CASS.svg?branch=1.4)](https://travis-ci.org/cassproject/CASS)
66
Supported: 1.3 [![Build Status](https://travis-ci.org/cassproject/CASS.svg?branch=1.3)](https://travis-ci.org/cassproject/CASS)
77
Supported: 1.2 [![Build Status](https://travis-ci.org/cassproject/CASS.svg?branch=1.2)](https://travis-ci.org/cassproject/CASS)
@@ -100,3 +100,4 @@ Due to the performance improvements in the 0.5 version of CaSS, we highly recomm
100100
* Update CHANGELOG.md
101101
* Update README.md
102102
* Commit with release notes.
103+
* Tag commit with version number.

package-lock.json

Lines changed: 44 additions & 55 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cass",
3-
"version": "0.5.8",
3+
"version": "0.5.9",
44
"description": "Competency and Skills System",
55
"main": "src/main/server.js",
66
"directories": {
@@ -91,11 +91,11 @@
9191
"node-object-hash": "^2.3.10",
9292
"node-worker-threads-pool": "^1.5.1",
9393
"pure-uuid": "^1.6.2",
94-
"rdflib": "^2.2.15",
94+
"rdflib": "^2.2.17",
9595
"ws": "^8.4.2"
9696
},
9797
"devDependencies": {
98-
"chai": "^4.3.5",
98+
"chai": "^4.3.6",
9999
"mocha": "^9.2.0",
100100
"nodemon": "^2.0.15",
101101
"npm-run-all": "^4.1.5",

pm2.microsoft.config.js

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
module.exports = {
2+
apps : [
3+
{
4+
name: "CaSS",
5+
script: "./src/main/server.js",
6+
watch: true,
7+
ignore_watch: ["logs", "node_modules"],
8+
instances: 1,
9+
log_file: 'logs/cass.log',
10+
env: {
11+
"CASS_LOOPBACK": "https://<endpoint>/api/",
12+
"ELASTICSEARCH_ENDPOINT": "http://localhost:9200",
13+
"PORT": "8080",
14+
"CASS_BASE": "",
15+
"CASS_OIDC_ISSUER_BASE_URL": "https://login.microsoftonline.com/common",
16+
"CASS_OIDC_CLIENT_ID": "<client_id>",
17+
"CASS_OIDC_BASE_URL": "https://<endpoint>/",
18+
"CASS_OIDC_SECRET": "<client_secret>",
19+
"CASS_OIDC_ENABLED": "true"
20+
},
21+
node_args: [
22+
"--max-old-space-size=512"
23+
]
24+
}
25+
]
26+
}

0 commit comments

Comments
 (0)