Skip to content
Permalink

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: JakeChampion/fetch
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 8f48ca686f9564bf52704e0e4b410ca970b17031
Choose a base ref
...
head repository: JakeChampion/fetch
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b48a6964bbb97b9e626fcee489cf09cb2bb82716
Choose a head ref

Commits on May 10, 2021

  1. Copy the full SHA
    7727e50 View commit details

Commits on Aug 2, 2021

  1. always set a signal on Request

    romainmenke authored and JakeChampion committed Aug 2, 2021
    Copy the full SHA
    d1d09fb View commit details

Commits on Dec 8, 2021

  1. 4
    Copy the full SHA
    fb5b0cf View commit details

Commits on Apr 1, 2023

  1. Copy the full SHA
    a43b628 View commit details
  2. fix: ignore not throw on invalid response headers

    Fixes #930
    pke authored and JakeChampion committed Apr 1, 2023
    Copy the full SHA
    9a6d748 View commit details

Commits on Jul 17, 2023

  1. Update lock.yml permissions

    Signed-off-by: Joyce <joycebrum@google.com>
    joycebrum authored and JakeChampion committed Jul 17, 2023
    Copy the full SHA
    e97321b View commit details
  2. Update node.js.yml permissions

    Signed-off-by: Joyce <joycebrum@google.com>
    joycebrum authored and JakeChampion committed Jul 17, 2023
    Copy the full SHA
    baca85e View commit details
  3. Update node.js.yml

    JakeChampion committed Jul 17, 2023
    Copy the full SHA
    afd09a7 View commit details
  4. dont use github eslint

    Jake Champion authored and JakeChampion committed Jul 17, 2023
    Copy the full SHA
    408d3b6 View commit details
  5. remove invalid-headers test

    Jake Champion authored and JakeChampion committed Jul 17, 2023
    Copy the full SHA
    e3f6590 View commit details
  6. Update year range

    rylan-justice authored and JakeChampion committed Jul 17, 2023
    Copy the full SHA
    fc921d6 View commit details
  7. dont shadow global

    fixes #1026
    Jake Champion authored and JakeChampion committed Jul 17, 2023
    Copy the full SHA
    8984692 View commit details
  8. validate status is in range

    fixes #1213
    Jake Champion authored and JakeChampion committed Jul 17, 2023
    Copy the full SHA
    0c1d2b9 View commit details
  9. fix: when no body supplied, do not set bodyUsed to true

    Jake Champion authored and JakeChampion committed Jul 17, 2023
    Copy the full SHA
    7d92dff View commit details

Commits on Jul 18, 2023

  1. use globals if they exist

    solves #860
    Jake Champion authored and JakeChampion committed Jul 18, 2023
    Copy the full SHA
    dffc542 View commit details
  2. Define Body.arrayBuffer even if support.blob is false

    resolves #992
    Jake Champion authored and JakeChampion committed Jul 18, 2023
    Copy the full SHA
    d8669ab View commit details
  3. fix: Headers only accepts array which have nested array of length 2

    fixes #1235
    Jake Champion authored and JakeChampion committed Jul 18, 2023
    Copy the full SHA
    f7e3e92 View commit details
  4. respect charset within readBlobAsText

    fixes #1059
    Jake Champion authored and JakeChampion committed Jul 18, 2023
    Copy the full SHA
    e3375eb View commit details
  5. Fix #1076

    Jake Champion authored and JakeChampion committed Jul 18, 2023
    Copy the full SHA
    32b671d View commit details
  6. fix #997

    Jake Champion authored and JakeChampion committed Jul 18, 2023
    Copy the full SHA
    c0b8634 View commit details
  7. Resolves #928

    Jake Champion authored and JakeChampion committed Jul 18, 2023
    Copy the full SHA
    ce61789 View commit details
  8. 3.6.16

    Jake Champion committed Jul 18, 2023
    Copy the full SHA
    64ce761 View commit details

Commits on Jul 20, 2023

  1. Revert "Resolves #928"

    This reverts commit ce61789.
    JakeChampion committed Jul 20, 2023
    Copy the full SHA
    b8338ff View commit details
  2. 3.6.17

    Jake Champion committed Jul 20, 2023
    Copy the full SHA
    49b71a7 View commit details

Commits on Aug 28, 2023

  1. Remove broken links

    JakeChampion authored Aug 28, 2023
    Copy the full SHA
    1dc07c6 View commit details
  2. Copy the full SHA
    96017de View commit details
  3. automatically generate a changelog

    Jake Champion committed Aug 28, 2023
    Copy the full SHA
    0e7d1dd View commit details
  4. 3.6.18

    Jake Champion committed Aug 28, 2023
    Copy the full SHA
    b48a696 View commit details
Showing with 724 additions and 103 deletions.
  1. +0 −1 .eslintignore
  2. +14 −0 .eslintrc.js
  3. +0 −48 .eslintrc.json
  4. +5 −0 .github/workflows/lock.yml
  5. +4 −1 .github/workflows/node.js.yml
  6. +549 −0 CHANGELOG.md
  7. +1 −1 LICENSE
  8. +2 −5 README.md
  9. +78 −42 fetch.js
  10. +4 −3 package.json
  11. +1 −0 prettier.config.js
  12. +1 −0 test/karma-worker.config.js
  13. +1 −0 test/karma.config.js
  14. +1 −0 test/server.js
  15. +59 −2 test/test.js
  16. +2 −0 test/worker-adapter.js
  17. +2 −0 test/worker.js
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
node_modules
dist/**
14 changes: 14 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
/* eslint-env node */
module.exports = {
"env": {
"browser": true,
"es2021": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 12,
"sourceType": "module"
},
"rules": {
}
};
48 changes: 0 additions & 48 deletions .eslintrc.json

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/lock.yml
Original file line number Diff line number Diff line change
@@ -4,9 +4,14 @@ on:
schedule:
- cron: '0 0 * * *'

permissions: {}

jobs:
lock:
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- uses: dessant/lock-threads@v2
with:
5 changes: 4 additions & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -8,6 +8,9 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]

permissions:
contents: read

jobs:
build:
@@ -16,7 +19,7 @@ jobs:

strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [18.x, 20.x]

steps:
- uses: actions/checkout@v2
Loading