Skip to content

Commit

Permalink
Release 10.3.2 (#265)
Browse files Browse the repository at this point in the history
* format, update deps and fix underscores not being allowed in usernames

* format
  • Loading branch information
Alfagun74 authored Mar 29, 2024
1 parent 747ffac commit 6d62653
Show file tree
Hide file tree
Showing 7 changed files with 379 additions and 412 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# GameVault Backend Server Changelog

## 10.3.2

### Changes

- Fix Username Validation not allowing underscores in usernames.

## 10.3.1

### Changes
Expand Down
40 changes: 20 additions & 20 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gamevault-backend",
"version": "10.3.1",
"version": "10.3.2",
"description": "the self-hosted gaming platform for drm-free games",
"author": "Alkan Alper, Schäfer Philip GbR / Phalcode",
"private": true,
Expand All @@ -25,21 +25,21 @@
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"dependencies": {
"@img/sharp-linux-x64": "^0.33.2",
"@img/sharp-linux-x64": "^0.33.3",
"@nestjs/axios": "3.0.2",
"@nestjs/common": "10.3.3",
"@nestjs/core": "10.3.3",
"@nestjs/common": "10.3.7",
"@nestjs/core": "10.3.7",
"@nestjs/event-emitter": "^2.0.4",
"@nestjs/passport": "10.0.3",
"@nestjs/platform-express": "10.3.3",
"@nestjs/platform-socket.io": "10.3.3",
"@nestjs/platform-express": "10.3.7",
"@nestjs/platform-socket.io": "10.3.7",
"@nestjs/schedule": "4.0.1",
"@nestjs/swagger": "7.3.0",
"@nestjs/swagger": "7.3.1",
"@nestjs/typeorm": "10.0.2",
"@nestjs/websockets": "10.3.3",
"@nestjs/websockets": "10.3.7",
"@types/stream-throttle": "^0.1.4",
"async-g-i-s": "1.5.2",
"axios": "1.6.7",
"axios": "1.6.8",
"bcrypt": "5.1.1",
"better-sqlite3": "^8.7.0",
"builder-pattern": "2.2.0",
Expand All @@ -49,7 +49,7 @@
"compression": "1.7.4",
"cookie-parser": "1.4.6",
"dotenv": "16.4.5",
"express": "4.18.3",
"express": "4.19.2",
"fastify": "4.26.2",
"file-type-checker": "1.0.9",
"helmet": "7.1.0",
Expand All @@ -67,21 +67,21 @@
"rimraf": "5.0.5",
"rxjs": "7.8.1",
"sanitize-filename": "1.6.3",
"sharp": "0.33.2",
"socket.io": "4.7.4",
"sharp": "0.33.3",
"socket.io": "4.7.5",
"stream-throttle": "^0.1.3",
"string-similarity-js": "2.1.4",
"typeorm": "0.3.20",
"typeorm-naming-strategies": "4.1.0",
"unidecode": "^0.1.8",
"winston": "3.12.0",
"unidecode": "^1.0.1",
"winston": "3.13.0",
"winston-console-format": "1.0.8",
"winston-daily-rotate-file": "5.0.0"
},
"devDependencies": {
"@nestjs/cli": "10.3.2",
"@nestjs/schematics": "10.1.1",
"@nestjs/testing": "^10.3.3",
"@nestjs/testing": "^10.3.7",
"@types/bcrypt": "5.0.2",
"@types/compression": "1.7.5",
"@types/cookie-parser": "1.4.7",
Expand All @@ -90,24 +90,24 @@
"@types/mime": "3.0.4",
"@types/morgan": "1.9.9",
"@types/multer": "^1.4.11",
"@types/node": "20.11.26",
"@types/node": "20.11.30",
"@types/node-7z": "2.1.8",
"@types/passport-http": "0.3.11",
"@types/string-similarity": "4.0.2",
"@types/unidecode": "^0.1.3",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-prettier": "5.1.3",
"jest": "^29.7.0",
"prettier": "3.2.5",
"prettier-plugin-jsdoc": "1.3.0",
"simple-git-hooks": "2.10.0",
"simple-git-hooks": "2.11.1",
"ts-jest": "^29.1.2",
"ts-node": "10.9.2",
"typescript": "5.4.2"
"typescript": "5.4.3"
},
"jest": {
"moduleFileExtensions": [
Expand Down
Loading

0 comments on commit 6d62653

Please sign in to comment.