diff --git a/CHANGELOG.md b/CHANGELOG.md index f66b4767..f1d096c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ [1]: https://www.npmjs.com/package/nodejs-logging?activeTab=versions +## [11.2.0](https://github.com/googleapis/nodejs-logging/compare/v11.1.0...v11.2.0) (2024-07-15) + + +### Features + +* Open telemetry integration and span Id fix for nodejs logging library ([#1497](https://github.com/googleapis/nodejs-logging/issues/1497)) ([91577e0](https://github.com/googleapis/nodejs-logging/commit/91577e0c46cefd1333bb3a69e62a50e0aab74615)) + ## [11.1.0](https://github.com/googleapis/nodejs-logging/compare/v11.0.0...v11.1.0) (2024-05-29) diff --git a/package.json b/package.json index 446fd30f..68e98c5e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@google-cloud/logging", - "version": "11.1.0", + "version": "11.2.0", "description": "Cloud Logging Client Library for Node.js", "keywords": [ "google apis client", diff --git a/samples/package.json b/samples/package.json index 5738dec5..d2491394 100644 --- a/samples/package.json +++ b/samples/package.json @@ -14,7 +14,7 @@ "test": "mocha --timeout 60000" }, "dependencies": { - "@google-cloud/logging": "^11.1.0", + "@google-cloud/logging": "^11.2.0", "@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 c3004fba..3be703f1 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.1.0'; // {x-release-please-version} +export const NODEJS_DEFAULT_LIBRARY_VERSION = '11.2.0'; // {x-release-please-version} export const MAX_INSTRUMENTATION_COUNT = 3; export type InstrumentationInfo = {name: string; version: string};