-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update dependency whatwg-fetch to v3.6.2 #161
Open
renovate
wants to merge
1
commit into
master
Choose a base branch
from
renovate/whatwg-fetch-3.x
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains 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
renovate
bot
changed the title
Update dependency whatwg-fetch to v3.1.1
Update dependency whatwg-fetch to v3.2.0
Jul 9, 2020
renovate
bot
force-pushed
the
renovate/whatwg-fetch-3.x
branch
from
July 9, 2020 15:40
32dee5a
to
e3f6716
Compare
renovate
bot
force-pushed
the
renovate/whatwg-fetch-3.x
branch
from
August 4, 2020 11:20
e3f6716
to
f931eeb
Compare
renovate
bot
changed the title
Update dependency whatwg-fetch to v3.2.0
Update dependency whatwg-fetch to v3.3.0
Aug 4, 2020
renovate
bot
force-pushed
the
renovate/whatwg-fetch-3.x
branch
from
August 4, 2020 11:37
f931eeb
to
0bc74f9
Compare
renovate
bot
changed the title
Update dependency whatwg-fetch to v3.3.0
Update dependency whatwg-fetch to v3.3.1
Aug 4, 2020
renovate
bot
changed the title
Update dependency whatwg-fetch to v3.3.1
Update dependency whatwg-fetch to v3.4.0
Aug 7, 2020
renovate
bot
force-pushed
the
renovate/whatwg-fetch-3.x
branch
from
August 7, 2020 16:07
0bc74f9
to
b022293
Compare
renovate
bot
force-pushed
the
renovate/whatwg-fetch-3.x
branch
from
October 25, 2020 19:58
b022293
to
c056795
Compare
renovate
bot
changed the title
Update dependency whatwg-fetch to v3.4.0
Update dependency whatwg-fetch to v3.4.1
Oct 25, 2020
renovate
bot
force-pushed
the
renovate/whatwg-fetch-3.x
branch
from
November 27, 2020 06:55
c056795
to
8477b1e
Compare
renovate
bot
changed the title
Update dependency whatwg-fetch to v3.4.1
Update dependency whatwg-fetch to v3.5.0
Nov 27, 2020
renovate
bot
force-pushed
the
renovate/whatwg-fetch-3.x
branch
from
February 18, 2021 13:19
8477b1e
to
a268931
Compare
renovate
bot
changed the title
Update dependency whatwg-fetch to v3.5.0
Update dependency whatwg-fetch to v3.6.0
Feb 18, 2021
renovate
bot
force-pushed
the
renovate/whatwg-fetch-3.x
branch
from
February 18, 2021 18:49
a268931
to
573a124
Compare
renovate
bot
changed the title
Update dependency whatwg-fetch to v3.6.0
Update dependency whatwg-fetch to v3.6.1
Feb 18, 2021
renovate
bot
force-pushed
the
renovate/whatwg-fetch-3.x
branch
from
February 27, 2021 19:34
573a124
to
b1c0e4f
Compare
renovate
bot
changed the title
Update dependency whatwg-fetch to v3.6.1
Update dependency whatwg-fetch to v3.6.2
Feb 27, 2021
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
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:
3.1.0
->3.6.2
Release Notes
github/fetch
v3.6.2
Compare Source
v3.6.1
Compare Source
Bug fixes:
const
Both were fixed in https://github.com/github/fetch/pull/914
v3.6.0
Compare Source
Bug fixes:
Improve error message if a header contains an invalid character -- https://github.com/github/fetch/pull/880 Thank you for the contribution @CarmeloPatti
Make Response.statusText be an empty string if set to
undefined
and be'null'
if set tonull
-- https://github.com/github/fetch/pull/897 Thank you for the contribution @tkrotoffRepresent non-stringified JSON request body as an [object Object] string --https://github.com/github/fetch/pull/8811 Thank you for the contribution @kettanaito
v3.5.0
Compare Source
Added a work-around for projects which use core-js -- https://github.com/github/fetch/issues/748
v3.4.1
: Republishing to ensure the dist/fetch.umd.js is up-to-dateCompare Source
Republishing to ensure the dist/fetch.umd.js is up-to-date
v3.4.0
Compare Source
Use globalThis as the global object if it exists #822
v3.3.1
Compare Source
v3.3.0
Compare Source
Features:
Bug fixes:
Fixed the "self is not defined" error that was reported for NodeJS applications - https://github.com/github/fetch/pull/794
Reverted the DOMException handling refactor as the original code fixed issues in old Android browsers - https://github.com/github/fetch/pull/797
Response.arrayBuffer()
now always resolve with aArrayBuffer
as per the specification. -- https://github.com/github/fetch/pull/816Request
andResponse
can now only be called vianew
(as constructors) as per the specification. -- https://github.com/github/fetch/pull/796Headers which are passed as a
Headers
object no longer have their names normalised as per the specification -- https://github.com/github/fetch/pull/798Refactor:
this
to stop warnings being emitted from Rollup. -- https://github.com/github/fetch/pull/815v3.2.0
Compare Source
Features:
Bug fixes:
new
- https://github.com/github/fetch/pull/796Refactor:
v3.1.1
Compare Source
Bug fix
-- check if Content-Type header exists prior to examining the value #792
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 has been generated by Mend Renovate. View repository job log here.