diff --git a/CHANGELOG.md b/CHANGELOG.md index f533587c..ac6824e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ [1]: https://www.npmjs.com/package/nodejs-logging?activeTab=versions +## [10.4.1](https://github.com/googleapis/nodejs-logging/compare/v10.4.0...v10.4.1) (2023-04-28) + + +### Bug Fixes + +* **deps:** Bump `google-gax` to ^3.5.8 ([#1412](https://github.com/googleapis/nodejs-logging/issues/1412)) ([8eb6f03](https://github.com/googleapis/nodejs-logging/commit/8eb6f034c379fff01c3bcb2dacbbf764dd40c1d7)) + ## [10.4.0](https://github.com/googleapis/nodejs-logging/compare/v10.3.3...v10.4.0) (2023-01-30) diff --git a/package.json b/package.json index da349443..2823c29a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@google-cloud/logging", - "version": "10.4.0", + "version": "10.4.1", "description": "Cloud Logging Client Library for Node.js", "keywords": [ "google apis client", diff --git a/samples/generated/v2/snippet_metadata.google.logging.v2.json b/samples/generated/v2/snippet_metadata.google.logging.v2.json index d41bc708..a54c9f57 100644 --- a/samples/generated/v2/snippet_metadata.google.logging.v2.json +++ b/samples/generated/v2/snippet_metadata.google.logging.v2.json @@ -1,7 +1,7 @@ { "clientLibrary": { "name": "nodejs-logging", - "version": "10.4.0", + "version": "10.4.1", "language": "TYPESCRIPT", "apis": [ { diff --git a/samples/package.json b/samples/package.json index 61a078fe..b1452388 100644 --- a/samples/package.json +++ b/samples/package.json @@ -14,7 +14,7 @@ "test": "mocha --timeout 60000" }, "dependencies": { - "@google-cloud/logging": "^10.4.0", + "@google-cloud/logging": "^10.4.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 75266fb5..6fd1d296 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 = '10.4.0'; // {x-release-please-version} +export const NODEJS_DEFAULT_LIBRARY_VERSION = '10.4.1'; // {x-release-please-version} export const MAX_INSTRUMENTATION_COUNT = 3; export type InstrumentationInfo = {name: string; version: string};