Skip to content

Commit

Permalink
Release 1.5.68
Browse files Browse the repository at this point in the history
  • Loading branch information
Lomilar committed Nov 13, 2024
1 parent 927f382 commit 45d6d67
Show file tree
Hide file tree
Showing 8 changed files with 619 additions and 813 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.68
* Multiget now works in chunks. Fixed bug with async decryption
* Made large encrypted batch operations, deletion of orphan search results and made retrieval of lost/fragmented data more robust.

## 1.5.67
* Remove non-indexable data from index.
* Multithreaded cryptography.
Expand Down
2 changes: 1 addition & 1 deletion 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.67 [![Build Status](https://travis-ci.org/cassproject/CASS.svg?branch=1.5)](https://travis-ci.org/cassproject/CASS)
Release Candidate: 1.5.68 [![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
4 changes: 2 additions & 2 deletions docker-compose-template.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: '3'
services:
cass:
image: cassproject/cass:node-1.5.67
image: cassproject/cass:node-1.5.68
container_name: cass
networks:
- esnet
Expand All @@ -28,7 +28,7 @@ services:
depends_on:
- elasticsearch
elasticsearch:
image: docker.elastic.co/elasticsearch/elasticsearch:8.15.3
image: docker.elastic.co/elasticsearch/elasticsearch:8.16.0
container_name: elasticsearch
networks:
- esnet
Expand Down
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:8.15.3
FROM docker.elastic.co/elasticsearch/elasticsearch:8.16.0

USER root
RUN curl -sL https://deb.nodesource.com/setup_20.x | bash -
Expand Down
1,400 changes: 601 additions & 799 deletions package-lock.json

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cass",
"version": "1.5.67",
"version": "1.5.68",
"description": "Competency and Skills System",
"main": "src/main/server.js",
"directories": {
Expand Down Expand Up @@ -91,13 +91,13 @@
},
"homepage": "https://github.com/cassproject/CASS#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.676.0",
"@aws-sdk/client-s3": "^3.689.0",
"@xmldom/xmldom": "^0.8.10",
"aws-sdk": "^2.1691.0",
"aws-sdk": "^2.1692.0",
"busboy": "^1.6.0",
"cassproject": "^1.5.66",
"cassproject": "^1.5.68",
"check-disk-space": "^3.4.0",
"compression": "^1.7.4",
"compression": "^1.7.5",
"cors": "^2.8.5",
"cron": "^2.4.4",
"express": "^4.21.1",
Expand All @@ -106,8 +106,8 @@
"express-ws": "^5.0.2",
"node-object-hash": "^2.3.10",
"node-worker-threads-pool": "^1.5.1",
"nodemailer": "^6.9.15",
"pm2": "^5.4.2",
"nodemailer": "^6.9.16",
"pm2": "^5.4.3",
"pure-uuid": "^1.8.1",
"rdflib": "^2.2.35",
"spdy": "^4.0.2",
Expand All @@ -121,7 +121,7 @@
"chai": "^4.5.0",
"eslint": "^8.57.1",
"eslint-config-google": "^0.14.0",
"mocha": "^10.7.3",
"mocha": "^10.8.2",
"nodemon": "^3.1.7",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/main/swagger.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"openapi": "3.0.0",
"info": {
"title": "CaSS",
"version": "1.5.66"
"version": "1.5.68"
},
"components": {
"parameters": {
Expand Down
2 changes: 1 addition & 1 deletion src/main/webapp
Submodule webapp updated 262 files

0 comments on commit 45d6d67

Please sign in to comment.