Skip to content

Commit b17291c

Browse files
committed
fix: release-please
1 parent 31a6eeb commit b17291c

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ export class CompressionHandler implements Middleware {
6969
return this.executeInternal(currentOptions, url, requestInit as FetchRequestInit, requestOptions);
7070
}
7171

72-
private async executeInternal(options: CompressionHandlerOptions, url: string, requestInit: FetchRequestInit, requestOptions?: Record<string, RequestOption> | undefined, span?: Span): Promise<Response> {
72+
private async executeInternal(options: CompressionHandlerOptions, url: string, requestInit: FetchRequestInit, requestOptions?: Record<string, RequestOption>, span?: Span): Promise<Response> {
7373
if (!options.ShouldCompress || this.contentRangeBytesIsPresent(requestInit.headers) || this.contentEncodingIsPresent(requestInit.headers) || requestInit.body === null || requestInit.body === undefined) {
7474
return this.next?.execute(url, requestInit as RequestInit, requestOptions) ?? Promise.reject(new Error("Response is undefined"));
7575
}

release-please-config.json

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
"bump-patch-for-minor-pre-major": true,
99
"skip-github-release": true,
1010
"versioning": "prerelease",
11-
"last-release-sha": "f13c350c40b76f7dff25e71e6ceeeb0066aa02be",
1211
"packages": {
1312
"packages/abstractions": {
1413
"component": "@microsoft/kiota-abstractions",

0 commit comments

Comments
 (0)