Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #192

Merged
merged 9 commits into from
Sep 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,18 @@

- TODO: Removed Deprecated Utility APIs

## 5.0.1

Recommended Gamevault App Version: `v1.5.0`

### Changes

- Fixed Error when mapping RAWG Games that have no background_image.
- Fixed Error when downloading Games that have special Characters in their name.

## 5.0.0

💫 Recommended Gamevault App Version: `v1.5.0`
Recommended Gamevault App Version: `v1.5.0`

### Breaking Changes & Migration

Expand All @@ -25,7 +34,7 @@

### Changes

### Runtime
#### Runtime

- Updated to Node 20.6

Expand Down
16 changes: 8 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gamevault-backend",
"version": "5.0.0",
"version": "5.0.1",
"description": "the self-hosted gaming platform for drm-free games",
"author": "Alkan Alper, Schäfer Philip GbR / Phalcode",
"private": true,
Expand All @@ -21,10 +21,10 @@
},
"dependencies": {
"@nestjs/axios": "3.0.0",
"@nestjs/common": "10.2.4",
"@nestjs/core": "10.2.4",
"@nestjs/common": "10.2.5",
"@nestjs/core": "10.2.5",
"@nestjs/passport": "10.0.2",
"@nestjs/platform-express": "10.2.4",
"@nestjs/platform-express": "10.2.5",
"@nestjs/schedule": "3.0.3",
"@nestjs/swagger": "7.1.11",
"@nestjs/typeorm": "10.0.0",
Expand All @@ -38,7 +38,7 @@
"cookie-parser": "1.4.6",
"dotenv": "16.3.1",
"express": "4.18.2",
"fastify": "4.22.2",
"fastify": "4.23.0",
"file-type-checker": "^1.0.8",
"helmet": "7.0.0",
"mime": "3.0.0",
Expand Down Expand Up @@ -75,9 +75,9 @@
"@types/node-7z": "2.1.5",
"@types/passport-http": "0.3.9",
"@types/string-similarity": "4.0.0",
"@types/throttle": "^1.0.1",
"@typescript-eslint/eslint-plugin": "6.6.0",
"@typescript-eslint/parser": "6.6.0",
"@types/throttle": "^1.0.2",
"@typescript-eslint/eslint-plugin": "6.7.0",
"@typescript-eslint/parser": "6.7.0",
"eslint": "8.49.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-import": "2.28.1",
Expand Down
Loading