Skip to content

Commit e991da0

Browse files
authored
Merge pull request #1127 from microsoft/feature/fix-fetch-issue
fix fetch bug
2 parents dfbafb0 + a9e58c1 commit e991da0

File tree

11 files changed

+37
-37
lines changed

11 files changed

+37
-37
lines changed

package-lock.json

+13-13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/abstractions/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-abstractions",
3-
"version": "1.0.0-preview.49",
3+
"version": "1.0.0-preview.50",
44
"description": "Core abstractions for kiota generated libraries in TypeScript and JavaScript",
55
"main": "dist/cjs/src/index.js",
66
"module": "dist/es/src/index.js",

packages/authentication/azure/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-authentication-azure",
3-
"version": "1.0.0-preview.44",
3+
"version": "1.0.0-preview.45",
44
"description": "Authentication provider for Kiota using Azure Identity",
55
"main": "dist/cjs/src/index.js",
66
"module": "dist/es/src/index.js",
@@ -30,7 +30,7 @@
3030
"homepage": "https://github.com/microsoft/kiota-typescript#readme",
3131
"dependencies": {
3232
"@azure/core-auth": "^1.5.0",
33-
"@microsoft/kiota-abstractions": "^1.0.0-preview.49",
33+
"@microsoft/kiota-abstractions": "^1.0.0-preview.50",
3434
"@opentelemetry/api": "^1.7.0",
3535
"tslib": "^2.6.2"
3636
},

packages/authentication/spfx/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-authentication-spfx",
3-
"version": "1.0.0-preview.39",
3+
"version": "1.0.0-preview.40",
44
"description": "Authentication provider for using Kiota in SPFx solutions",
55
"main": "dist/cjs/src/index.js",
66
"module": "dist/es/src/index.js",
@@ -39,7 +39,7 @@
3939
},
4040
"homepage": "https://github.com/microsoft/kiota-typescript#readme",
4141
"dependencies": {
42-
"@microsoft/kiota-abstractions": "^1.0.0-preview.49",
42+
"@microsoft/kiota-abstractions": "^1.0.0-preview.50",
4343
"@microsoft/sp-http": "^1.15.2",
4444
"@opentelemetry/api": "^1.7.0",
4545
"tslib": "^2.6.2"

packages/http/fetch/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-http-fetchlibrary",
3-
"version": "1.0.0-preview.48",
3+
"version": "1.0.0-preview.49",
44
"description": "Kiota request adapter implementation with fetch",
55
"keywords": [
66
"Kiota",
@@ -38,7 +38,7 @@
3838
"test:cjs": "mocha 'dist/cjs/test/common/**/*.js' && mocha 'dist/cjs/test/node/**/*.js'"
3939
},
4040
"dependencies": {
41-
"@microsoft/kiota-abstractions": "^1.0.0-preview.49",
41+
"@microsoft/kiota-abstractions": "^1.0.0-preview.50",
4242
"@opentelemetry/api": "^1.7.0",
4343
"guid-typescript": "^1.0.9",
4444
"tslib": "^2.6.2"

packages/http/fetch/src/middlewares/browser/middlewareFactory.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export class MiddlewareFactory {
1616
* Returns the default middleware chain an array with the middleware handlers
1717
* @returns an array of the middleware handlers of the default middleware chain
1818
*/
19-
public static getDefaultMiddlewares(customFetch: (request: string, init: RequestInit) => Promise<Response> = fetch as any): Middleware[] {
19+
public static getDefaultMiddlewares(customFetch: (request: string, init: RequestInit) => Promise<Response> = (...args) => fetch(...args) as any): Middleware[] {
2020
// Browsers handles redirection automatically and do not require the redirectionHandler
2121
return [
2222
new RetryHandler(),

packages/http/fetch/src/middlewares/middlewareFactory.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,14 @@ export class MiddlewareFactory {
1717
* Returns the default middleware chain an array with the middleware handlers
1818
* @returns an array of the middleware handlers of the default middleware chain
1919
*/
20-
public static getDefaultMiddlewares(customFetch: (request: string, init: RequestInit) => Promise<Response> = fetch as any): Middleware[] {
20+
public static getDefaultMiddlewares(customFetch: (request: string, init: RequestInit) => Promise<Response> = (...args) => fetch(...args) as any): Middleware[] {
2121
return [
22-
new RetryHandler(),
23-
new RedirectHandler(),
24-
new ParametersNameDecodingHandler(),
25-
new UserAgentHandler(),
26-
new HeadersInspectionHandler(),
27-
new CustomFetchHandler(customFetch)
28-
];
22+
new RetryHandler(),
23+
new RedirectHandler(),
24+
new ParametersNameDecodingHandler(),
25+
new UserAgentHandler(),
26+
new HeadersInspectionHandler(),
27+
new CustomFetchHandler(customFetch)
28+
];
2929
}
3030
}

packages/serialization/form/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-serialization-form",
3-
"version": "1.0.0-preview.38",
3+
"version": "1.0.0-preview.39",
44
"description": "Implementation of Kiota Serialization interfaces for URI from encoded",
55
"main": "dist/cjs/src/index.js",
66
"browser": {
@@ -39,7 +39,7 @@
3939
},
4040
"homepage": "https://github.com/microsoft/kiota-typescript#readme",
4141
"dependencies": {
42-
"@microsoft/kiota-abstractions": "^1.0.0-preview.49",
42+
"@microsoft/kiota-abstractions": "^1.0.0-preview.50",
4343
"guid-typescript": "^1.0.9",
4444
"tslib": "^2.6.2"
4545
},

packages/serialization/json/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-serialization-json",
3-
"version": "1.0.0-preview.49",
3+
"version": "1.0.0-preview.50",
44
"description": "Implementation of Kiota Serialization interfaces for JSON",
55
"main": "dist/cjs/src/index.js",
66
"browser": {
@@ -39,7 +39,7 @@
3939
},
4040
"homepage": "https://github.com/microsoft/kiota-typescript#readme",
4141
"dependencies": {
42-
"@microsoft/kiota-abstractions": "^1.0.0-preview.49",
42+
"@microsoft/kiota-abstractions": "^1.0.0-preview.50",
4343
"guid-typescript": "^1.0.9",
4444
"tslib": "^2.6.2"
4545
},

packages/serialization/multipart/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@
3535
},
3636
"homepage": "https://github.com/microsoft/kiota-typescript#readme",
3737
"dependencies": {
38-
"@microsoft/kiota-abstractions": "^1.0.0-preview.49",
38+
"@microsoft/kiota-abstractions": "^1.0.0-preview.50",
3939
"guid-typescript": "^1.0.9",
4040
"tslib": "^2.6.2"
4141
},
4242
"devDependencies": {
43-
"@microsoft/kiota-serialization-json": "^1.0.0-preview.49"
43+
"@microsoft/kiota-serialization-json": "^1.0.0-preview.50"
4444
},
4545
"publishConfig": {
4646
"access": "public"

packages/serialization/text/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@microsoft/kiota-serialization-text",
3-
"version": "1.0.0-preview.46",
3+
"version": "1.0.0-preview.47",
44
"description": "Implementation of Kiota Serialization interfaces for text",
55
"main": "dist/cjs/src/index.js",
66
"browser": {
@@ -39,7 +39,7 @@
3939
},
4040
"homepage": "https://github.com/microsoft/kiota-typescript#readme",
4141
"dependencies": {
42-
"@microsoft/kiota-abstractions": "^1.0.0-preview.49",
42+
"@microsoft/kiota-abstractions": "^1.0.0-preview.50",
4343
"guid-typescript": "^1.0.9",
4444
"tslib": "^2.6.2"
4545
},

0 commit comments

Comments
 (0)