diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index fe8ca85e6..0ee5bff20 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -142,7 +142,7 @@ jobs: - name: CLI Tests env: FRODO_MASTER_KEY: ${{ secrets.FRODO_MASTER_KEY }} - run: npm test + run: npm run test:serial - name: Version Test run: frodo -v diff --git a/CHANGELOG.md b/CHANGELOG.md index b8ba59e97..ac1d1dbed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed + +- Update to frodo-lib 3.0.4 + +### Fixed + +- \#477: Frodo CLI now properly includes the transformation script for both `Social Provider Handler Node` and `Legacy Social Provider Handler Node`. +- \#482: Frodo CLI now properly honors the NO_PROXY environment variable in addition to HTTP_PROXY and HTTPS_PROXY. +- \#489: MacOS binaries are now provided for both Intel and ARM64 architectures. +- \#490: Linux ARM64 binary now works on Linux running on ARM64 hardware. + ## [3.0.4-1] - 2025-04-03 ### Fixed diff --git a/package.json b/package.json index 7cdb3105e..35976d2db 100644 --- a/package.json +++ b/package.json @@ -34,6 +34,7 @@ "scripts": { "test": "npm run test:only", "test:only": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest --silent", + "test:serial": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest --silent --runInBand", "test:debug": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest --silent=false --json --outputFile=./testResults.json", "test:update": "NODE_OPTIONS='--no-warnings --experimental-vm-modules' npx jest --silent=false --updateSnapshot", "lint": "eslint --ext .ts --ignore-path .gitignore .", @@ -114,7 +115,7 @@ ] }, "devDependencies": { - "@rockcarver/frodo-lib": "3.0.4-2", + "@rockcarver/frodo-lib": "3.1.0", "@types/colors": "^1.2.1", "@types/fs-extra": "^11.0.1", "@types/jest": "^29.2.3",