@algolia/requester-fetch 5.8.0 → 5.8.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@algolia/requester-fetch",
3
- "version": "5.8.0",
3
+ "version": "5.8.1",
4
4
  "description": "Promise-based request library using Fetch.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -47,7 +47,7 @@
47
47
  "test:bundle": "publint . && attw --pack ."
48
48
  },
49
49
  "dependencies": {
50
- "@algolia/client-common": "5.8.0"
50
+ "@algolia/client-common": "5.8.1"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@arethetypeswrong/cli": "0.16.4",
@@ -82,7 +82,6 @@ describe('status code handling', () => {
82
82
  const data = Buffer.from('äöü');
83
83
 
84
84
  // create a test response stream that is chunked inside a unicode character
85
- // eslint-disable-next-line @typescript-eslint/explicit-function-return-type
86
85
  function* generate() {
87
86
  yield data.subarray(0, 3);
88
87
  yield data.subarray(3);