Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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 .",
Expand Down Expand Up @@ -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",
Expand Down
Loading