Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • Dojo_Project_Nguyen/backend/dojobackendapi
  • dojo_project/projects/backend/dojobackendapi
2 results
Select Git revision
Show changes
Commits on Source (5)
......@@ -17,7 +17,16 @@
- No modifications / Keep major and minors versions in sync with all parts of the project
-->
## 5.0.0 (Upcoming)
## 5.0.1 (2025-02-25)
### 🐛 Bugfix
- Fix some bugs related to assignments / exercises deletion
### 🔨 Internal / Developers
- Adminer: Style migration to dracula theme
## 5.0.0 (2024-10-21)
### ✨ Feature
- Add possibility of self-host the solution
......
openapi: 3.1.0
info:
title: Dojo API
version: 5.0.0
version: 5.0.1
description: |
**Backend API of the Dojo project.**
......
This diff is collapsed.
{
"name" : "dojo_backend_api",
"description" : "Backend API of the Dojo project",
"version" : "5.0.0",
"version" : "5.0.1",
"license" : "AGPLv3",
"author" : "Michaël Minelli <dojo@minelli.me>",
"main" : "dist/src/app.js",
......@@ -28,54 +28,54 @@
"seed": "node dist/prisma/seed"
},
"dependencies" : {
"@dotenvx/dotenvx" : "^0.45.0",
"@gitbeaker/rest" : "^40.0.3",
"@prisma/client" : "^5.16.1",
"axios" : "^1.7.2",
"compression" : "^1.7.4",
"cors" : "^2.8.5",
"express" : "^4.19.2",
"express-validator" : "^7.1.0",
"form-data" : "^4.0.0",
"helmet" : "^7.1.0",
"http-status-codes" : "^2.3.0",
"json5" : "^2.2.3",
"jsonwebtoken" : "^9.0.2",
"morgan" : "^1.10.0",
"multer" : "^1.4.5-lts.1",
"mysql" : "^2.18.1",
"node" : "^20.15.0",
"parse-link-header" : "^2.0.0",
"semver" : "^7.6.2",
"swagger-ui-express" : "^5.0.1",
"tar-stream" : "^3.1.7",
"uuid" : "^10.0.0",
"winston" : "^3.13.0",
"zod" : "^3.23.8",
"zod-validation-error": "^3.3.0"
"@dotenvx/dotenvx" : "~0.45.0",
"@gitbeaker/rest" : "~40.0.3",
"@prisma/client" : "~5.16.1",
"axios" : "~1.7.2",
"compression" : "~1.7.4",
"cors" : "~2.8.5",
"express" : "~4.19.2",
"express-validator" : "~7.1.0",
"form-data" : "~4.0.0",
"helmet" : "~7.1.0",
"http-status-codes" : "~2.3.0",
"json5" : "~2.2.3",
"jsonwebtoken" : "~9.0.2",
"morgan" : "~1.10.0",
"multer" : "~1.4.5-lts.1",
"mysql" : "~2.18.1",
"node" : "~20.15.0",
"parse-link-header" : "~2.0.0",
"semver" : "~7.6.2",
"swagger-ui-express" : "~5.0.1",
"tar-stream" : "~3.1.7",
"uuid" : "~10.0.0",
"winston" : "~3.13.0",
"zod" : "~3.23.8",
"zod-validation-error": "~3.3.0"
},
"devDependencies": {
"@redocly/cli" : "^1.17.0",
"@types/compression" : "^1.7.5",
"@types/cors" : "^2.8.17",
"@types/express" : "^4.17.21",
"@types/jsonwebtoken" : "^9.0.6",
"@types/morgan" : "^1.9.9",
"@types/multer" : "^1.4.11",
"@types/node" : "^20.14.9",
"@types/parse-link-header" : "^2.0.3",
"@types/semver" : "^7.5.8",
"@types/swagger-ui-express": "^4.1.6",
"@types/tar-stream" : "^3.1.3",
"@types/uuid" : "^10.0.0",
"dotenv-cli" : "^7.4.2",
"eslint" : "^8.57.0",
"genversion" : "^3.2.0",
"nodemon" : "^3.1.4",
"npm" : "^10.8.1",
"prisma" : "^5.16.1",
"tsx" : "^4.16.2",
"typescript" : "^5.5.3",
"typescript-eslint" : "^7.15.0"
"@redocly/cli" : "~1.17.0",
"@types/compression" : "~1.7.5",
"@types/cors" : "~2.8.17",
"@types/express" : "~4.17.21",
"@types/jsonwebtoken" : "~9.0.6",
"@types/morgan" : "~1.9.9",
"@types/multer" : "~1.4.11",
"@types/node" : "~20.14.9",
"@types/parse-link-header" : "~2.0.3",
"@types/semver" : "~7.5.8",
"@types/swagger-ui-express": "~4.1.6",
"@types/tar-stream" : "~3.1.3",
"@types/uuid" : "~10.0.0",
"dotenv-cli" : "~7.4.2",
"eslint" : "~8.57.0",
"genversion" : "~3.2.0",
"nodemon" : "~3.1.4",
"npm" : "~10.8.1",
"prisma" : "~5.16.1",
"tsx" : "~4.16.2",
"typescript" : "~5.5.3",
"typescript-eslint" : "~7.15.0"
}
}
......@@ -22,6 +22,7 @@ services:
- ADMINER_DEFAULT_SERVER=dojo-database
- TZ=Europe/Zurich
- ADMINER_PLUGINS=dump-alter dump-bz2 dump-date dump-json dump-xml dump-zip edit-foreign edit-textarea foreign-system json-column sql-log struct-comments tables-filter
- ADMINER_DESIGN=dracula
networks:
dojo-network:
aliases:
......