Skip to content

Commit

Permalink
Release 9.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Alfagun74 authored Oct 26, 2023
2 parents 63d2760 + 1cbd978 commit 10d90a1
Show file tree
Hide file tree
Showing 5 changed files with 52 additions and 44 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# GameVault Backend Server Changelog

## 9.0.1

Recommended Gamevault App Version: `v1.7.3`

### Changes

- Fixed Socket-Secret migration for SQLITE Users.

## 9.0.0

Recommended Gamevault App Version: `v1.7.3`
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gamevault-backend",
"version": "9.0.0",
"version": "9.0.1",
"description": "the self-hosted gaming platform for drm-free games",
"author": "Alkan Alper, Schäfer Philip GbR / Phalcode",
"private": true,
Expand Down Expand Up @@ -48,7 +48,7 @@
"morgan": "1.10.0",
"nest-winston": "1.9.4",
"nestjs-asyncapi": "^1.2.1",
"nestjs-paginate": "8.3.3",
"nestjs-paginate": "8.4.0",
"node-7z": "3.0.0",
"passport": "0.6.0",
"passport-http": "0.3.0",
Expand Down Expand Up @@ -78,7 +78,7 @@
"@types/mime": "3.0.3",
"@types/morgan": "1.9.7",
"@types/multer": "^1.4.9",
"@types/node": "20.8.7",
"@types/node": "20.8.9",
"@types/node-7z": "2.1.7",
"@types/passport-http": "0.3.10",
"@types/string-similarity": "4.0.1",
Expand Down
78 changes: 39 additions & 39 deletions pnpm-lock.yaml

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

Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export class SocketSecret1698013342889 implements MigrationInterface {
for (const user of users) {
const randomSocketSecret = randomBytes(32).toString("hex"); // 32 bytes for 64 hexadecimal characters
await queryRunner.query(
"UPDATE gamevault_user SET socket_secret = $1 WHERE id = $2",
"UPDATE gamevault_user SET socket_secret = ? WHERE id = ?",
[randomSocketSecret, user.id],
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ export class SocketSecret1698013260248 implements MigrationInterface {
for (const user of users) {
const randomSocketSecret = randomBytes(32).toString("hex"); // 32 bytes for 64 hexadecimal characters
await queryRunner.query(
"UPDATE gamevault_user SET socket_secret = $1 WHERE id = $2",
`UPDATE gamevault_user SET socket_secret = ? WHERE id = ?`,
[randomSocketSecret, user.id],
);
}
Expand Down

0 comments on commit 10d90a1

Please sign in to comment.