chore(deps): update dependency proxy-chain to v3#460
Open
renovate[bot] wants to merge 1 commit into
Open
Conversation
16f5f34 to
0d79d33
Compare
This file contains hidden or 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
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.
This PR contains the following updates:
^2.5.9→^3.0.0Release Notes
apify/proxy-chain (proxy-chain)
v3.0.0Compare Source
This is a major release that modernizes the codebase. The runtime behavior of the
proxy server itself is unchanged; the breaking changes are about how you import,
package, and call the library.
BREAKING: Dropped support for Node.js older than
20.11. The minimum supportedversion is now Node.js
20.11.See #638,
#654.
BREAKING: The package is now ESM-only (
"type": "module"inpackage.json).Use
importinstead ofrequire(). CommonJS consumers must migrate to ESM(or use a dynamic
import()).See #654.
BREAKING: Removed Node.js-style callbacks from the entire public API.
Server#listen(),Server#close(),anonymizeProxy(),closeAnonymizedProxy(),createTunnel(), andcloseTunnel()now return aPromiseonly - useawaitor.then().See #656.
BREAKING:
CustomResponseis now atype-only export. If you were importingit as a value, switch to
import type { CustomResponse } from 'proxy-chain'.See #654.
Upgraded TypeScript to v5 and adopted
NodeNextmodule resolution withverbatimModuleSyntax.See #655.
Added Bun runtime support. The library now loads cleanly under Bun and is
validated on every PR via a dedicated
Unit tests (Bun)job, plus anE2E tests (Bun, compatible)job that runs a curated Bun-safe subset of thee2e suite. A
fulltoggle for running the entire e2e suite under Bun isavailable via workflow dispatch.
See #650.
Internal: removed the unused
typeSocketassertion helper.See #653.
Internal: reorganized tests into
test/unit/andtest/e2e/directoriesand split the CI workflow into separate
unit,e2e, andlintjobs.See #651.
Configuration
📅 Schedule: (UTC)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.