chore(deps): update dependency node-libcurl to v5#3076
Closed
renovate[bot] wants to merge 1 commit into
Closed
Conversation
Contributor
|
Important Review skippedBot user detected. To trigger a single review, invoke the You can disable this status message by setting the
Comment |
Contributor
✅
|
Contributor
✅
|
Contributor
✅
|
Contributor
✅
|
Contributor
✅
|
Contributor
✅
|
renovate
Bot
force-pushed
the
renovate/node-libcurl-5.x
branch
from
January 27, 2026 12:20
6fbc91c to
1debd6a
Compare
Contributor
Author
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
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:
4.1.0→5.0.2Release Notes
JCMais/node-libcurl (node-libcurl)
v5.0.2Compare Source
Fixed
FileInfoobject. With 5.0.0, the properties were changed to be all in lowercase, to follow the libcurl struct more closely.v5.0.1Compare Source
Fixed
v5.0.0Compare Source
Breaking Change
FileInfoobject properties are now all in lowercase, to follow the libcurl struct more closely.CurlEasyErrorCurlMultiErrorCurlSharedErrorThese classes extends the
CurlErrorclass. Previously the addon used to throw only native Javascript errors, such asError,TypeError, etc.The curly related errors also inherit from the
CurlErrorclass, and do not have aisCurlErrorproperty anymore.Any caught error thrown from user callbacks will be added as the
causeproperty of the error.getCACertificatesfunction. This is done usingCURLOPT_CAINFO_BLOB. This is a breaking change if you were passing custom CA certificates before usingCAINFO, asCURLOPT_CAINFO_BLOBtakes priority over it. If that is the case, you can avoid the default behavior by callingsetOpt("CAINFO_BLOB", null)on the Easy handle. The TLS certificate is loaded into memory only once for each JavaScript context.HSTSREADFUNCTIONcallback now receives an object with themaxHostLengthBytesproperty, which is the maximum length of the host name that can be returned by the callback.Curl.globalCleanupis a no-op now. The addon will automatically callcurl_global_cleanupwhen the process exits. This method will be removed in a future major version.Curl.globalInitis a no-op now. The addon will automatically callcurl_global_initwhen the process starts. This method will be removed in a future major version.Fixed
CurlHttpVersion.V3not being set to the proper value (was not set to30)Added
examples/22-worker-threads.jsfor usage example.Easy.wsRecv(buffer)- Receive WebSocket frames with metadataEasy.wsSend(buffer, flags, fragsize?)- Send WebSocket frames (text, binary, ping, pong, close)Easy.wsMeta()- Get WebSocket frame metadataCurlWsenum for WebSocket frame flags (Text, Binary, Close, Ping, Pong, Cont, Offset)CurlWsOptionsenum for WebSocket options (RawMode, NoAutoPong)CurlWsFrameinterface for frame metadata (age, flags, offset, bytesleft, len)CONNECT_ONLYmode with value 2 for WebSocket connectionsexamples/21-websockets-native.jsfor usage exampleCurlMimeclass for creating multipart MIME structuresCurlMimePartclass for individual MIME partsCurlMimeOptenum for MIME options (FormEscape)CURLOPT_MIME_OPTIONSandCURLOPT_MIMEPOSToptionsEasy.setMimePost(mime),Curl.setMimePost(mime), andcurlyMimePostalternatives for setting MIME data in a structured way.examples/23-mime-post-easy.jsfor usage exampleCURLOPT_SSH_HOSTKEYFUNCTIONcallback for custom host key verificationCURLOPT_SSH_HOST_PUBLIC_KEY_SHA256option for SHA256 fingerprint verificationCurlSshKeyTypeenum for SSH host key types (Unknown, Rsa, Dss, Ecdsa,Ed25519)CurlSshKeyMatchenum for SSH host key verification results (Ok, Mismatch)CURLOPT_STREAM_DEPENDS- Set stream dependencyCURLOPT_STREAM_DEPENDS_E- Set stream dependency (exclusive)CURLOPT_STREAM_WEIGHT- Set stream weight for resource allocationCURLOPT_INTERLEAVEFUNCTIONcallback for handling RTSP interleaved dataMulti.performmethod for addingEasyinstances to aMultiinstance. This will eventually replace theMulti.addHandleandMulti.onMessagemethods, which are now deprecated.CurlFollowCurlMultiNetworkChangedCurlWsCurlWsOptionsCurlWriteFunc.AbortCurlShareLock.DataShareCurlHttpVersion.V3OnlyCurlProxy.Https2CurlCode.CURLE_UNRECOVERABLE_POLLCurlCode.CURLE_TOO_LARGECurlCode.CURLE_ECH_REQUIREDCurlSslOpt.EarlydataCurl.id,Easy.id,Multi.id, andShare.idproperties, which return the unique ID of each instance. The value is unique across threads.Changed
CurlGlobalInitenum is deprecated and should not be used.Multi.onMessageandMulti.addHandleare now deprecated and will be removed in a future major version. UseMulti.performinstead.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 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.