-
Notifications
You must be signed in to change notification settings - Fork 250
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: TooTallNate/proxy-agents
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: https-proxy-agent@7.0.2
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: TooTallNate/proxy-agents
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: https-proxy-agent@7.0.3
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 14 commits
- 52 files changed
- 9 contributors
Commits on Sep 8, 2023
-
1
Configuration menu - View commit details
-
Copy full SHA for 523b74c - Browse repository at this point
Copy the full SHA 523b74cView commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 43a9689 - Browse repository at this point
Copy the full SHA 43a9689View commit details
Commits on Sep 22, 2023
-
Moved licenses to separate files (#251)
tschlechtweg authoredSep 22, 2023 1Configuration menu - View commit details
-
Copy full SHA for 5923589 - Browse repository at this point
Copy the full SHA 5923589View commit details
Commits on Sep 30, 2023
-
1
Configuration menu - View commit details
-
Copy full SHA for aaebfa4 - Browse repository at this point
Copy the full SHA aaebfa4View commit details -
[data-uri-to-buffer] Refactor to return an
ArrayBuffer
instead of a…… Node.js `Buffer` (#252) Breaking change refactor to return an `ArrayBuffer` instead of a Node.js `Buffer`. This change is being made to make the package platform-agnostic, and work in web browsers or other non-Node.js environments without polyfills. For Node.js users of this package, you can get a Node.js `Buffer` instance from an `ArrayBuffer` like so: ```typescript const uri = 'data:,Hello%2C%20World!'; const parsed = dataUriToBuffer(uri); const buffer = Buffer.from(parsed.buffer); // `buffer` is a Node.js Buffer ```
1Configuration menu - View commit details
-
Copy full SHA for 52b458f - Browse repository at this point
Copy the full SHA 52b458fView commit details -
1
Configuration menu - View commit details
-
Copy full SHA for b149ecc - Browse repository at this point
Copy the full SHA b149eccView commit details -
1
Configuration menu - View commit details
-
Copy full SHA for 1d146e8 - Browse repository at this point
Copy the full SHA 1d146e8View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for b133295 - Browse repository at this point
Copy the full SHA b133295View commit details
Commits on Jan 8, 2024
-
1
Configuration menu - View commit details
-
Copy full SHA for c3c405e - Browse repository at this point
Copy the full SHA c3c405eView commit details -
Use native decoding of base64 in Node.js (#269)
* Make decoding of base64 data URIs faster I saw in microsoft/vscode-js-debug#1911 that base64 decoding of a data URI was taking a bit of time. This PR feature-detects the presence of a global `Buffer` to use native decoding when running in Node.js, which is about 25x faster on a 10MB data URI than the JS implementation in the library. I have a bit of a hack in order to test both paths when running tests, happy to change it if desired :) * use conditional exports * fix test import * fix node test import, and set stringToBuffer encoding * Create few-adults-rhyme.md --------- Co-authored-by: Nathan Rajlich <n@n8.io>
1Configuration menu - View commit details
-
Copy full SHA for c881a18 - Browse repository at this point
Copy the full SHA c881a18View commit details
Commits on Feb 12, 2024
-
1
Configuration menu - View commit details
-
Copy full SHA for c854e4c - Browse repository at this point
Copy the full SHA c854e4cView commit details -
[proxy-agent] Allow asynchronous
getProxyForUrl
(#275)This allows users to use an asynchronous getProxyForUrl in case they need to do asynchronous operations to resolve the correct proxy URL. This can be the case, for example, if using Electron.Session.resolveProxy(url).
1Configuration menu - View commit details
-
Copy full SHA for e7e0e56 - Browse repository at this point
Copy the full SHA e7e0e56View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for a954da3 - Browse repository at this point
Copy the full SHA a954da3View commit details -
1
Configuration menu - View commit details
-
Copy full SHA for d4d3cd0 - Browse repository at this point
Copy the full SHA d4d3cd0View commit details
There are no files selected for viewing