Skip to content

Commit

Permalink
fix(npm): update dependency http-cookie-agent to ^4.0.0 (#485)
Browse files Browse the repository at this point in the history
* ci: test on windows and macos

* fix(npm): update dependency http-cookie-agent to ^4.0.0
  • Loading branch information
3846masa committed May 8, 2022
1 parent 44c2df0 commit 7b85d03
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/default.yml
Expand Up @@ -19,10 +19,11 @@ jobs:
- run: yarn lint
test:
name: Test
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: ["14", "16", "18"]
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
steps:
- uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3.0.2
- uses: actions/setup-node@56337c425554a6be30cdef71bf441f15be286854 # tag=v3.1.1
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -53,7 +53,7 @@
}
},
"dependencies": {
"http-cookie-agent": "^3.0.0"
"http-cookie-agent": "^4.0.0"
},
"devDependencies": {
"@3846masa/configs": "github:3846masa/configs#c9cb404fd4e6ead15044c605e014aecea1182124",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
@@ -1,5 +1,5 @@
import type { AxiosInstance, AxiosRequestConfig, AxiosStatic } from 'axios';
import { HttpCookieAgent, HttpsCookieAgent } from 'http-cookie-agent/node:http';
import { HttpCookieAgent, HttpsCookieAgent } from 'http-cookie-agent/http';
import type { CookieJar } from 'tough-cookie';

declare module 'axios' {
Expand Down
9 changes: 4 additions & 5 deletions yarn.lock
Expand Up @@ -4,7 +4,6 @@

"@3846masa/configs@github:3846masa/configs#c9cb404fd4e6ead15044c605e014aecea1182124":
version "1.0.0"
uid c9cb404fd4e6ead15044c605e014aecea1182124
resolved "https://codeload.github.com/3846masa/configs/tar.gz/c9cb404fd4e6ead15044c605e014aecea1182124"
dependencies:
"@tsconfig/strictest" "1.0.1"
Expand Down Expand Up @@ -2434,10 +2433,10 @@ http-cache-semantics@^4.1.0:
resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-4.1.0.tgz#49e91c5cbf36c9b94bcfcd71c23d5249ec74e390"
integrity sha512-carPklcUh7ROWRK7Cv27RPtdhYhUsela/ue5/jKzjegVvXDqM2ILE9Q2BGn9JZJh1g87cp56su/FgQSzcWS8cQ==

http-cookie-agent@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/http-cookie-agent/-/http-cookie-agent-3.0.0.tgz#315d2290ed2bc908a9b7343b1c017ccef8eafd24"
integrity sha512-wqlyPQSKdMbb4Wj2PpFDDhVEzbZ56VbhwFJ4b1msJgk5XmpFtCciIwIEpg181S7U3k+JrAV+6z3j3rzYl0DvOQ==
http-cookie-agent@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/http-cookie-agent/-/http-cookie-agent-4.0.0.tgz#66da5577c844cac1677d1b6f12e8d7d0ef64d73f"
integrity sha512-QkM0nYmTy1P0HiHlIQz/Vt18wVU1vYdwES7Kd60urh4ch1ko83swGMb10Ev9IgUWJwl4QCytf6+i6sBkyyqizg==
dependencies:
agent-base "^6.0.2"

Expand Down

0 comments on commit 7b85d03

Please sign in to comment.