diff --git a/CHANGELOG.md b/CHANGELOG.md index ac46c20..6ba7268 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## [1.13.0](https://github.com/stonith404/pingvin-share/compare/v1.12.0...v1.13.0) (2025-05-25) + + +### Features + +* allow to use redis cache instead of memory cache ([#832](https://github.com/stonith404/pingvin-share/issues/832)) ([85f5143](https://github.com/stonith404/pingvin-share/commit/85f514316b0b808b8c063bf571df6b528a1b3de4)) +* **backend:** allow to define path to the config file ([#838](https://github.com/stonith404/pingvin-share/issues/838)) ([cfdb29e](https://github.com/stonith404/pingvin-share/commit/cfdb29ed4dde875233b4bc3f510ae50976b963b8)) + ## [1.12.0](https://github.com/stonith404/pingvin-share/compare/v1.11.1...v1.12.0) (2025-05-07) diff --git a/backend/package-lock.json b/backend/package-lock.json index 5501666..b3a88d4 100644 --- a/backend/package-lock.json +++ b/backend/package-lock.json @@ -1,12 +1,12 @@ { "name": "pingvin-share-backend", - "version": "1.12.0", + "version": "1.13.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pingvin-share-backend", - "version": "1.12.0", + "version": "1.13.0", "dependencies": { "@aws-sdk/client-s3": "^3.787.0", "@keyv/redis": "^4.4.0", diff --git a/backend/package.json b/backend/package.json index ba15fbe..6d5a826 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,6 +1,6 @@ { "name": "pingvin-share-backend", - "version": "1.12.0", + "version": "1.13.0", "scripts": { "build": "nest build", "dev": "cross-env NODE_ENV=development nest start --watch", diff --git a/frontend/package-lock.json b/frontend/package-lock.json index fe77ccd..7733619 100644 --- a/frontend/package-lock.json +++ b/frontend/package-lock.json @@ -1,12 +1,12 @@ { "name": "pingvin-share-frontend", - "version": "1.12.0", + "version": "1.13.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "pingvin-share-frontend", - "version": "1.12.0", + "version": "1.13.0", "dependencies": { "@emotion/react": "^11.13.3", "@emotion/server": "^11.11.0", diff --git a/frontend/package.json b/frontend/package.json index 7255ef2..51a5204 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,6 @@ { "name": "pingvin-share-frontend", - "version": "1.12.0", + "version": "1.13.0", "scripts": { "dev": "next dev", "build": "next build", diff --git a/package-lock.json b/package-lock.json index 6f1d6fd..0f35e21 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "pingvin-share", - "version": "1.12.0", + "version": "1.13.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "pingvin-share", - "version": "1.12.0", + "version": "1.13.0", "devDependencies": { "conventional-changelog-cli": "^3.0.0" } diff --git a/package.json b/package.json index 9b7e4db..92ced03 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "pingvin-share", - "version": "1.12.0", + "version": "1.13.0", "scripts": { "format": "cd frontend && npm run format && cd ../backend && npm run format", "lint": "cd frontend && npm run lint && cd ../backend && npm run lint",