diff --git a/.github/workflows/upgrade-from-latest-release.yml b/.github/workflows/upgrade-from-latest-release.yml index 8d83bfc93..627c85af8 100644 --- a/.github/workflows/upgrade-from-latest-release.yml +++ b/.github/workflows/upgrade-from-latest-release.yml @@ -107,12 +107,5 @@ jobs: # For pull requests, ${GITHUB_SHA} is the automatically generated merge # commit that merges the PR's source branch to its destination branch. run: git checkout "${GITHUB_SHA}" - - - - name: Install all dependencies and symlink for ep_etherpad-lite - run: bin/installDeps.sh - - - name: Run Etherpad & Test Frontend - working-directory: ./src - run: | - pnpm run test-ui --project=chromium + - name: Run the backend tests + run: pnpm run test diff --git a/CHANGELOG.md b/CHANGELOG.md index 1b5c29985..b565eed2c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 2.0.1 + +### Notable enhancements and fixes + +- Fixed a bug where a plugin depending on a scoped dependency would not install successfully. + + # 2.0.0 diff --git a/admin/package.json b/admin/package.json index 9a92b4e26..9f829a531 100644 --- a/admin/package.json +++ b/admin/package.json @@ -1,7 +1,7 @@ { "name": "admin", "private": true, - "version": "2.0.0", + "version": "2.0.1", "type": "module", "scripts": { "dev": "vite", diff --git a/bin/package.json b/bin/package.json index c00ac1e18..a39797a8b 100644 --- a/bin/package.json +++ b/bin/package.json @@ -1,6 +1,6 @@ { "name": "bin", - "version": "2.0.0", + "version": "2.0.1", "description": "", "main": "checkAllPads.js", "directories": { diff --git a/package.json b/package.json index bbb9d14b2..022eefbfb 100644 --- a/package.json +++ b/package.json @@ -41,6 +41,6 @@ "type": "git", "url": "https://github.com/ether/etherpad-lite.git" }, - "version": "2.0.0", + "version": "2.0.1", "license": "Apache-2.0" } diff --git a/src/package.json b/src/package.json index e0a64e9a3..339b97d7f 100644 --- a/src/package.json +++ b/src/package.json @@ -125,6 +125,6 @@ "test-admin": "npx playwright test tests/frontend-new/admin-spec --workers 1", "test-admin:ui": "npx playwright test tests/frontend-new/admin-spec --ui --workers 1" }, - "version": "2.0.0", + "version": "2.0.1", "license": "Apache-2.0" }