Skip to content

Commit b23ec76

Browse files
chore(release): 1.3.49 [skip ci]
1 parent ca85982 commit b23ec76

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

dist/index.js

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32172,7 +32172,7 @@ module.exports = parseParams
3217232172
/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => {
3217332173

3217432174
"use strict";
32175-
// Axios v1.6.4 Copyright (c) 2024 Matt Zabriskie and contributors
32175+
// Axios v1.6.5 Copyright (c) 2024 Matt Zabriskie and contributors
3217632176

3217732177

3217832178
const FormData$1 = __nccwpck_require__(2220);
@@ -34196,7 +34196,7 @@ function buildFullPath(baseURL, requestedURL) {
3419634196
return requestedURL;
3419734197
}
3419834198

34199-
const VERSION = "1.6.4";
34199+
const VERSION = "1.6.5";
3420034200

3420134201
function parseProtocol(url) {
3420234202
const match = /^([-+\w]{1,25})(:?\/\/|:)/.exec(url);
@@ -34827,6 +34827,10 @@ const httpAdapter = isHttpAdapterSupported && function httpAdapter(config) {
3482734827
// hotfix to support opt.all option which is required for node 20.x
3482834828
lookup = (hostname, opt, cb) => {
3482934829
_lookup(hostname, opt, (err, arg0, arg1) => {
34830+
if (err) {
34831+
return cb(err);
34832+
}
34833+
3483034834
const addresses = utils$1.isArray(arg0) ? arg0.map(addr => buildAddressEntry(addr)) : [buildAddressEntry(arg0, arg1)];
3483134835

3483234836
opt.all ? cb(err, addresses) : cb(err, addresses[0].address, addresses[0].family);

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wayback",
3-
"version": "1.3.48",
3+
"version": "1.3.49",
44
"private": true,
55
"license": "MIT",
66
"repository": {

0 commit comments

Comments
 (0)