From dec6d40c69020e7c7b2d0d904b8585f623b0b707 Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 07:42:40 +0000 Subject: [PATCH] chore(main): release 11.0.1 --- CHANGELOG.md | 8 ++++++++ package.json | 2 +- samples/package.json | 2 +- src/utils/instrumentation.ts | 2 +- 4 files changed, 11 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e814654f..6808caf3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,14 @@ [1]: https://www.npmjs.com/package/nodejs-logging?activeTab=versions +## [11.0.1](https://github.com/googleapis/nodejs-logging/compare/v11.0.0...v11.0.1) (2024-02-06) + + +### Bug Fixes + +* Correct long audio synthesis HTTP binding ([#1479](https://github.com/googleapis/nodejs-logging/issues/1479)) ([1f94504](https://github.com/googleapis/nodejs-logging/commit/1f945042478bfc9fba4fb348705f903d05b41821)) +* Improve retry logic for streaming API calls ([#1484](https://github.com/googleapis/nodejs-logging/issues/1484)) ([7e11e11](https://github.com/googleapis/nodejs-logging/commit/7e11e11bcb2c3dd346b589cf01cb75626ff10f4c)) + ## [11.0.0](https://github.com/googleapis/nodejs-logging/compare/v10.5.0...v11.0.0) (2023-08-10) diff --git a/package.json b/package.json index d5c1bb93..b27fde90 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@google-cloud/logging", - "version": "11.0.0", + "version": "11.0.1", "description": "Cloud Logging Client Library for Node.js", "keywords": [ "google apis client", diff --git a/samples/package.json b/samples/package.json index 19bc43d5..3a1f3709 100644 --- a/samples/package.json +++ b/samples/package.json @@ -14,7 +14,7 @@ "test": "mocha --timeout 60000" }, "dependencies": { - "@google-cloud/logging": "^11.0.0", + "@google-cloud/logging": "^11.0.1", "@google-cloud/storage": "^6.0.0", "express": "^4.16.3", "fluent-logger": "^3.0.0", diff --git a/src/utils/instrumentation.ts b/src/utils/instrumentation.ts index 6e128bf0..d6080910 100644 --- a/src/utils/instrumentation.ts +++ b/src/utils/instrumentation.ts @@ -39,7 +39,7 @@ export const NODEJS_LIBRARY_NAME_PREFIX = 'nodejs'; * Using release-please annotations to update DEFAULT_INSTRUMENTATION_VERSION with latest version. * See https://github.com/googleapis/release-please/blob/main/docs/customizing.md#updating-arbitrary-files */ -export const NODEJS_DEFAULT_LIBRARY_VERSION = '11.0.0'; // {x-release-please-version} +export const NODEJS_DEFAULT_LIBRARY_VERSION = '11.0.1'; // {x-release-please-version} export const MAX_INSTRUMENTATION_COUNT = 3; export type InstrumentationInfo = {name: string; version: string};