http-client
http-client copied to clipboard
A lightweight HTTP client optimized for use with actions, TypeScript with generics and async await.
The `lib` compiler option is used to tell the TypeScript compiler which APIs will be available at runtime in the environment that will execute the transpired code. By default, `lib`...
Fixes #53
https://github.com/actions/http-client/blob/5ea1c5292929dba26848ea46f3b4c2e1ea1e30a2/.github/workflows/test.yml#L30
Bumps [ws](https://github.com/websockets/ws) from 7.2.3 to 7.4.6. Release notes Sourced from ws's releases. 7.4.6 Bug fixes Fixed a ReDoS vulnerability (00c425ec). A specially crafted value of the Sec-Websocket-Protocol header could be...
Originally found in actions/setup-dotnet#110. When fetching a shell script from the URL `https://dot.net/v1/dotnet-install.sh` in a test using `@actions/http-client`, there are 2 redirects involved: 1. A 301 redirect from `https://dot.net/v1/dotnet-install.sh` to...
Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...
The `tunnel` dependency used by `http-client` is calling `new Buffer()` which is deprecated: > The Buffer() function and new Buffer() constructor are deprecated due to API usability issues that can...
Bumps [y18n](https://github.com/yargs/y18n) from 4.0.0 to 4.0.1. Changelog Sourced from y18n's changelog. Change Log All notable changes to this project will be documented in this file. See standard-version for commit guidelines....
Currently the no_proxy environmental variable combined with checkBypass does not take into account sub domains. I don't know if this is by design, but an example of this is: ```javascript...
Some APIs require authentication using a query parameter in the URL. For example, the [Clubhouse API](https://clubhouse.io/api/rest/v3/) has examples that look like this: ``` curl -X GET \ -H "Content-Type: application/json"...