diff --git a/CHANGELOG.md b/CHANGELOG.md index 7174d1de..72cf1178 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,8 +6,11 @@ - Import/Export of board data - If you want to reuse a board for another retrospective, you can now export the data of the board as JSON and import it later for another session + - Special thanks to @ClaasBusemann and @PaulaBre for their contribution! - Docker development support - Container-based deployment support +- Rate-limiting API +- Configurable CORS settings in PROD mode ### Changed @@ -15,6 +18,7 @@ - Using TypeScript now! - Major UI redesign! - Hooks all the way - no more HOCs! + - Increased maximum card content length - Backend - Storage clean up will now be handled via Node.js instead of writing your own cronjob manually diff --git a/backend/package.json b/backend/package.json index 04c2b909..5fdf55d0 100644 --- a/backend/package.json +++ b/backend/package.json @@ -16,7 +16,7 @@ }, "main": "src/index.js", "license": "MIT", - "version": "0.3.0", + "version": "0.3.3", "private": true, "scripts": { "start:dev": "cross-env NODE_ENV=DEVELOPMENT nodemon ./src/server.js", diff --git a/frontend/package.json b/frontend/package.json index 5ecd33fc..10fbb31e 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,6 +1,20 @@ { - "name": "ts-frontend", - "version": "0.1.0", + "name": "@retro/frontend", + "description": "The React frontend of Retro. Make retrospectives great again.", + "author": { + "name": "Yadullah Duman", + "url": "https://yduman.github.io" + }, + "bugs": { + "url": "https://github.com/yduman/retro/issues" + }, + "repository": { + "type": "git", + "url": "https://github.com/yduman/retro.git", + "directory": "frontend/" + }, + "license": "MIT", + "version": "0.3.3", "private": true, "dependencies": { "@material-ui/core": "^4.10.1",