Skip to content

Commit ee374a2

Browse files
chore(main): release 11.1.0 (#1481)
* chore(main): release 11.1.0 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com> Co-authored-by: Owl Bot <gcf-owl-bot[bot]@users.noreply.github.com>
1 parent 346e646 commit ee374a2

6 files changed

+19
-5
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@
55
[1]: https://www.npmjs.com/package/nodejs-logging?activeTab=versions
66

77

8+
## [11.1.0](https://github.com/googleapis/nodejs-logging/compare/v11.0.0...v11.1.0) (2024-05-29)
9+
10+
11+
### Features
12+
13+
* Add several fields to manage state of database encryption update ([#1495](https://github.com/googleapis/nodejs-logging/issues/1495)) ([4137f7b](https://github.com/googleapis/nodejs-logging/commit/4137f7b276aaf419125de2f913bf0d61afc7cde7))
14+
* Update Nodejs generator to send API versions in headers for GAPICs ([#1502](https://github.com/googleapis/nodejs-logging/issues/1502)) ([346e646](https://github.com/googleapis/nodejs-logging/commit/346e646367e7e1d6d9456ed4f8ff4a7464eb16a9))
15+
16+
17+
### Bug Fixes
18+
19+
* Correct long audio synthesis HTTP binding ([#1479](https://github.com/googleapis/nodejs-logging/issues/1479)) ([1f94504](https://github.com/googleapis/nodejs-logging/commit/1f945042478bfc9fba4fb348705f903d05b41821))
20+
* 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))
21+
822
## [11.0.0](https://github.com/googleapis/nodejs-logging/compare/v10.5.0...v11.0.0) (2023-08-10)
923

1024

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@google-cloud/logging",
3-
"version": "11.0.0",
3+
"version": "11.1.0",
44
"description": "Cloud Logging Client Library for Node.js",
55
"keywords": [
66
"google apis client",

samples/generated/v2/snippet_metadata.google.logging.v2.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"clientLibrary": {
33
"name": "nodejs-logging",
4-
"version": "11.0.0",
4+
"version": "11.1.0",
55
"language": "TYPESCRIPT",
66
"apis": [
77
{

samples/generated/v2/snippet_metadata_google.logging.v2.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"clientLibrary": {
33
"name": "nodejs-logging",
4-
"version": "11.0.0",
4+
"version": "11.1.0",
55
"language": "TYPESCRIPT",
66
"apis": [
77
{

samples/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"test": "mocha --timeout 60000"
1515
},
1616
"dependencies": {
17-
"@google-cloud/logging": "^11.0.0",
17+
"@google-cloud/logging": "^11.1.0",
1818
"@google-cloud/storage": "^6.0.0",
1919
"express": "^4.16.3",
2020
"fluent-logger": "^3.0.0",

src/utils/instrumentation.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const NODEJS_LIBRARY_NAME_PREFIX = 'nodejs';
3939
* Using release-please annotations to update DEFAULT_INSTRUMENTATION_VERSION with latest version.
4040
* See https://github.com/googleapis/release-please/blob/main/docs/customizing.md#updating-arbitrary-files
4141
*/
42-
export const NODEJS_DEFAULT_LIBRARY_VERSION = '11.0.0'; // {x-release-please-version}
42+
export const NODEJS_DEFAULT_LIBRARY_VERSION = '11.1.0'; // {x-release-please-version}
4343
export const MAX_INSTRUMENTATION_COUNT = 3;
4444
export type InstrumentationInfo = {name: string; version: string};
4545

0 commit comments

Comments
 (0)