0
Fork 0
mirror of https://github.com/stonith404/pingvin-share.git synced 2025-01-15 01:14:27 -05:00

release: 0.28.0

This commit is contained in:
Elias Schneider 2024-07-22 13:36:54 +02:00
parent 0e66be5f08
commit 601772d2f4
No known key found for this signature in database
GPG key ID: 07E623B294202B6C
7 changed files with 21 additions and 9 deletions

View file

@ -1,3 +1,15 @@
## [0.28.0](https://github.com/stonith404/pingvin-share/compare/v0.27.0...v0.28.0) (2024-07-22)
### Features
* **auth:** Add role-based access management from OpenID Connect ([#535](https://github.com/stonith404/pingvin-share/issues/535)) ([70fd2d9](https://github.com/stonith404/pingvin-share/commit/70fd2d94be3411cc430f5c56e522028398127efb))
### Bug Fixes
* store only 10 share tokens in the cookies and clear the expired ones ([e5a0c64](https://github.com/stonith404/pingvin-share/commit/e5a0c649e36e0db419d04446affe2564c45cf321))
## [0.27.0](https://github.com/stonith404/pingvin-share/compare/v0.26.0...v0.27.0) (2024-07-11)

View file

@ -1,12 +1,12 @@
{
"name": "pingvin-share-backend",
"version": "0.27.0",
"version": "0.28.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pingvin-share-backend",
"version": "0.27.0",
"version": "0.28.0",
"dependencies": {
"@nestjs/cache-manager": "^2.2.2",
"@nestjs/common": "^10.3.9",

View file

@ -1,6 +1,6 @@
{
"name": "pingvin-share-backend",
"version": "0.27.0",
"version": "0.28.0",
"scripts": {
"build": "nest build",
"dev": "cross-env NODE_ENV=development nest start --watch",

View file

@ -1,12 +1,12 @@
{
"name": "pingvin-share-frontend",
"version": "0.27.0",
"version": "0.28.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "pingvin-share-frontend",
"version": "0.27.0",
"version": "0.28.0",
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/server": "^11.11.0",

View file

@ -1,6 +1,6 @@
{
"name": "pingvin-share-frontend",
"version": "0.27.0",
"version": "0.28.0",
"scripts": {
"dev": "next dev",
"build": "next build",

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "pingvin-share",
"version": "0.27.0",
"version": "0.28.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "pingvin-share",
"version": "0.27.0",
"version": "0.28.0",
"devDependencies": {
"conventional-changelog-cli": "^3.0.0"
}

View file

@ -1,6 +1,6 @@
{
"name": "pingvin-share",
"version": "0.27.0",
"version": "0.28.0",
"scripts": {
"format": "cd frontend && npm run format && cd ../backend && npm run format",
"lint": "cd frontend && npm run lint && cd ../backend && npm run lint",