Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(main): release 9.10.0 #1806

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,20 @@

[1]: https://www.npmjs.com/package/google-auth-library?activeTab=versions

## [9.10.0](https://github.com/googleapis/google-auth-library-nodejs/compare/v9.9.0...v9.10.0) (2024-05-10)


### Features

* Implement `UserRefreshClient#fetchIdToken` ([#1811](https://github.com/googleapis/google-auth-library-nodejs/issues/1811)) ([ae8bc54](https://github.com/googleapis/google-auth-library-nodejs/commit/ae8bc5476f5d93c8516d9a9eb553e7ce7c00edd5))


### Bug Fixes

* **deps:** Update dependency @googleapis/iam to v16 ([#1803](https://github.com/googleapis/google-auth-library-nodejs/issues/1803)) ([40406a0](https://github.com/googleapis/google-auth-library-nodejs/commit/40406a0512cde1d75d2af7dd23aa7aa7de38d30b))
* **deps:** Update dependency @googleapis/iam to v17 ([#1808](https://github.com/googleapis/google-auth-library-nodejs/issues/1808)) ([4d67f07](https://github.com/googleapis/google-auth-library-nodejs/commit/4d67f07380f690a99c8facf7266db7cb2d6c69b3))
* **deps:** Update dependency @googleapis/iam to v18 ([#1809](https://github.com/googleapis/google-auth-library-nodejs/issues/1809)) ([b2b9676](https://github.com/googleapis/google-auth-library-nodejs/commit/b2b9676f933c012fb2cd1789ad80b927af0de07c))

## [9.9.0](https://github.com/googleapis/google-auth-library-nodejs/compare/v9.8.0...v9.9.0) (2024-04-18)


2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "google-auth-library",
"version": "9.9.0",
"version": "9.10.0",
"author": "Google Inc.",
"description": "Google APIs Authentication Client Library for Node.js",
"engines": {
2 changes: 1 addition & 1 deletion samples/package.json
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@
"dependencies": {
"@google-cloud/storage": "^7.0.0",
"@googleapis/iam": "^18.0.0",
"google-auth-library": "^9.9.0",
"google-auth-library": "^9.10.0",
"node-fetch": "^2.3.0",
"open": "^9.0.0",
"server-destroy": "^1.0.1"

Unchanged files with check annotations Beta

* token type for the external account identity. Not used.
*/
async getSubjectToken(
context: ExternalAccountSupplierContext

Check warning on line 78 in src/auth/filesubjecttokensupplier.ts

GitHub Actions / lint

'context' is defined but never used
): Promise<string> {
// Make sure there is a file at the path. lstatSync will throw if there is
// nothing there.
this.regionError = options.regionError;
}
async getAwsRegion(context: ExternalAccountSupplierContext): Promise<string> {

Check warning on line 1297 in test/test.awsclient.ts

GitHub Actions / lint

'context' is defined but never used
if (this.regionError) {
throw this.regionError;
} else {
}
async getAwsSecurityCredentials(
context: ExternalAccountSupplierContext

Check warning on line 1306 in test/test.awsclient.ts

GitHub Actions / lint

'context' is defined but never used
): Promise<AwsSecurityCredentials> {
if (this.credentialsError) {
throw this.credentialsError;
this.error = options.error;
}
getSubjectToken(context: ExternalAccountSupplierContext): Promise<string> {

Check warning on line 1413 in test/test.identitypoolclient.ts

GitHub Actions / lint

'context' is defined but never used
if (this.error) {
throw this.error;
}