-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Stable release #449
Merged
Stable release #449
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Implement new hook system
We only wrapped require("fs/promises") when fs/promises is required This would leave require("fs").promises unprotected if just fs is required We should only wrap promises once They point to the same functions: Welcome to Node.js v21.4.0. Type ".help" for more information. > require("fs").promises.readFile === require("fs/promises").readFile true >
Wrap require("fs").promises if "fs" is required
Avoid double wrapping path
* 'beta' of github.com:AikidoSec/node-RASP: (78 commits) Extract helper for checking if it's windows Avoid double wrapping path Wrap require("fs").promises if "fs" is required Add test for require("fs").promises usage Remove unused imports Rename error message Remove unused imports Remove comment Fix typo Remove "the" Fix typo's Remove setInstance from Agent class Fix Hapi test Simplify test Add new createTestAgent helper Update library/agent/hooks/isBuiltinModule.test.ts Apply some requested code improvements Remove comment Increase express benchmark to 40% Improve SQL benchmark ...
…e-beta * 'main' of github.com:AikidoSec/node-RASP: Add missing types in test file Extend base tsconfig Fix path tests for Node v23 Fix package.json Switch default tsconfig, fix test types Fix some type errors in unit tests Run unit tests for Node.js v23 Add comment If IP in bypass list, don't block or detect Do non-strict checks for tests Check types in test files in CI
Update beta branch
Co-authored-by: Hans Ott <hansott@hotmail.be>
Co-authored-by: Hans Ott <hansott@hotmail.be>
Co-authored-by: Hans Ott <hansott@hotmail.be>
* 'esbuild' of github.com:AikidoSec/node-RASP: Update docs/esbuild.md Update docs/esbuild.md
Immediately patch global dispatcher undici
Add end2end test for apps bundled with esbuild
Test all supported undici versions: v4, v5, v6 and v7
Test multiple versions of MongoDB and Express
Improve package.json
fix: Express handler wrapping
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
No description provided.