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
  • jw_sonar
  • v6.0.0
  • bedran_exercise-list
  • ask-user-to-delete-exercises-on-duplicates
  • update-dependencies
  • main
  • jw_sonar_backup
  • add_route_assignments
  • 2.0.0
  • 2.1.0
  • 2.2.0
  • 3.0.0
  • 3.0.1
  • 3.1.0
  • 3.1.1
  • 3.1.2
  • 3.1.3
  • 3.2.0
  • 3.3.0
  • 3.4.0
  • 3.4.1
  • 3.4.2
  • 3.5.0
  • 3.5.1
  • 3.5.2
  • 3.5.3
  • 4.0.0
  • 4.1.0
  • 5.0.0
  • 5.0.1
  • 6.0.0-dev
  • v1.0.1
32 results

Target

Select target project
  • Dojo_Project_Nguyen / Backend / DojoBackendAPI
  • Dojo Project (HES-SO) / Projects / Backend / DojoBackendAPI
2 results
Select Git revision
  • jw_sonar
  • v6.0.0
  • bedran_exercise-list
  • ask-user-to-delete-exercises-on-duplicates
  • update-dependencies
  • main
  • jw_sonar_backup
  • add_route_assignments
  • 2.0.0
  • 2.1.0
  • 2.2.0
  • 3.0.0
  • 3.0.1
  • 3.1.0
  • 3.1.1
  • 3.1.2
  • 3.1.3
  • 3.2.0
  • 3.3.0
  • 3.4.0
  • 3.4.1
  • 3.4.2
  • 3.5.0
  • 3.5.1
  • 3.5.2
  • 3.5.3
  • 4.0.0
  • 4.1.0
  • 5.0.0
  • 5.0.1
  • 6.0.0-dev
  • v1.0.1
32 results
Show changes

Commits on Source 5

5 files
+ 2678
1273
Compare changes
  • Side-by-side
  • Inline

Files

+10 −1
Original line number Diff line number Diff line
@@ -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
+1 −1
Original line number Diff line number Diff line
openapi: 3.1.0
info:
    title: Dojo API
    version: 5.0.0
    version: 5.0.1
    description: |
        **Backend API of the Dojo project.**
        
+2618 −1223

File changed.

Preview size limit exceeded, changes collapsed.

+48 −48
Original line number Diff line number Diff line
{
    "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"
    }
}
+1 −0
Original line number Diff line number Diff line
@@ -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: