{"id":108,"name":"cloud.google.com/go/storage","ecosystem":"go","repository_url":null,"issues_count":1686,"created_at":"2025-06-06T15:01:32.758Z","updated_at":"2025-06-06T15:01:32.758Z","purl":"pkg:golang/cloud.google.com/go/storage","metadata":{"id":3534235,"name":"cloud.google.com/go/storage","ecosystem":"go","description":"Package storage provides an easy way to work with Google Cloud Storage.\nGoogle Cloud Storage stores data in named objects, which are grouped into buckets.\n\nMore information about Google Cloud Storage is available at\nhttps://cloud.google.com/storage/docs.\n\nSee https://pkg.go.dev/cloud.google.com/go for authentication, timeouts,\nconnection pooling and similar aspects of this package.\n\nTo start working with this package, create a Client:\n\nThe client will use your default application credentials. Clients should be\nreused instead of created as needed. The methods of Client are safe for\nconcurrent use by multiple goroutines.\n\nYou may configure the client by passing in options from the google.golang.org/api/option\npackage. You may also use options defined in this package, such as WithJSONReads.\n\nIf you only wish to access public data, you can create\nan unauthenticated client with\n\nTo use an emulator with this library, you can set the STORAGE_EMULATOR_HOST\nenvironment variable to the address at which your emulator is running. This will\nsend requests to that address instead of to Cloud Storage. You can then create\nand use a client as usual:\n\nPlease note that there is no official emulator for Cloud Storage.\n\nA Google Cloud Storage bucket is a collection of objects. To work with a\nbucket, make a bucket handle:\n\nA handle is a reference to a bucket. You can have a handle even if the\nbucket doesn't exist yet. To create a bucket in Google Cloud Storage,\ncall BucketHandle.Create:\n\nNote that although buckets are associated with projects, bucket names are\nglobal across all projects.\n\nEach bucket has associated metadata, represented in this package by\nBucketAttrs. The third argument to BucketHandle.Create allows you to set\nthe initial BucketAttrs of a bucket. To retrieve a bucket's attributes, use\nBucketHandle.Attrs:\n\nAn object holds arbitrary data as a sequence of bytes, like a file. You\nrefer to objects using a handle, just as with buckets, but unlike buckets\nyou don't explicitly create an object. Instead, the first time you write\nto an object it will be created. You can use the standard Go io.Reader\nand io.Writer interfaces to read and write object data:\n\nObjects also have attributes, which you can fetch with ObjectHandle.Attrs:\n\nListing objects in a bucket is done with the BucketHandle.Objects method:\n\nObjects are listed lexicographically by name. To filter objects\nlexicographically, [Query.StartOffset] and/or [Query.EndOffset] can be used:\n\nIf only a subset of object attributes is needed when listing, specifying this\nsubset using Query.SetAttrSelection may speed up the listing process:\n\nBoth objects and buckets have ACLs (Access Control Lists). An ACL is a list of\nACLRules, each of which specifies the role of a user, group or project. ACLs\nare suitable for fine-grained control, but you may prefer using IAM to control\naccess at the project level (see Cloud Storage IAM docs.\n\nTo list the ACLs of a bucket or object, obtain an ACLHandle and call ACLHandle.List:\n\nYou can also set and delete ACLs.\n\nEvery object has a generation and a metageneration. The generation changes\nwhenever the content changes, and the metageneration changes whenever the\nmetadata changes. Conditions let you check these values before an operation;\nthe operation only executes if the conditions match. You can use conditions to\nprevent race conditions in read-modify-write operations.\n\nFor example, say you've read an object's metadata into objAttrs. Now\nyou want to write to that object, but only if its contents haven't changed\nsince you read it. Here is how to express that:\n\nYou can obtain a URL that lets anyone read or write an object for a limited time.\nSigning a URL requires credentials authorized to sign a URL. To use the same\nauthentication that was used when instantiating the Storage client, use\nBucketHandle.SignedURL.\n\nYou can also sign a URL without creating a client. See the documentation of\nSignedURL for details.\n\nA type of signed request that allows uploads through HTML forms directly to Cloud Storage with\ntemporary permission. Conditions can be applied to restrict how the HTML form is used and exercised\nby a user.\n\nFor more information, please see the XML POST Object docs as well\nas the documentation of BucketHandle.GenerateSignedPostPolicyV4.\n\nIf the GoogleAccessID and PrivateKey option fields are not provided, they will\nbe automatically detected by BucketHandle.SignedURL and\nBucketHandle.GenerateSignedPostPolicyV4 if any of the following are true:\n\nDetecting GoogleAccessID may not be possible if you are authenticated using a\ntoken source or using option.WithHTTPClient. In this case, you can provide a\nservice account email for GoogleAccessID and the client will attempt to sign\nthe URL or Post Policy using that service account.\n\nTo generate the signature, you must have:\n\nErrors returned by this client are often of the type googleapi.Error.\nThese errors can be introspected for more information by using errors.As\nwith the richer googleapi.Error type. For example:\n\nMethods in this package may retry calls that fail with transient errors.\nRetrying continues indefinitely unless the controlling context is canceled, the\nclient is closed, or a non-transient error is received. To stop retries from\ncontinuing, use context timeouts or cancellation.\n\nThe retry strategy in this library follows best practices for Cloud Storage. By\ndefault, operations are retried only if they are idempotent, and exponential\nbackoff with jitter is employed. In addition, errors are only retried if they\nare defined as transient by the service. See the Cloud Storage retry docs\nfor more information.\n\nUsers can configure non-default retry behavior for a single library call (using\nBucketHandle.Retryer and ObjectHandle.Retryer) or for all calls made by a\nclient (using Client.SetRetry). For example:\n\nYou can add custom headers to any API call made by this package by using\ncallctx.SetHeaders on the context which is passed to the method. For example,\nto add a custom audit logging header:\n\nThis package includes support for the Cloud Storage gRPC API. The\nimplementation uses gRPC rather than the Default\nJSON \u0026 XML APIs to make requests to Cloud Storage.\nThe Go Storage gRPC client is generally available.\nThe Notifications, Serivce Account HMAC\nand GetServiceAccount RPCs are not supported through the gRPC client.\n\nTo create a client which will use gRPC, use the alternate constructor:\n\nUsing the gRPC API inside GCP with a bucket in the same region can allow for\nDirect Connectivity (enabling requests to skip some proxy steps and reducing\nresponse latency). A warning is emmitted if gRPC is not used within GCP to\nwarn that Direct Connectivity could not be initialized. Direct Connectivity\nis not required to access the gRPC API.\n\nDependencies for the gRPC API may slightly increase the size of binaries for\napplications depending on this package. If you are not using gRPC, you can use\nthe build tag `disable_grpc_modules` to opt out of these dependencies and\nreduce the binary size.\n\nThe gRPC client emits metrics by default and will export the\ngRPC telemetry discussed in gRFC/66 and gRFC/78 to\nGoogle Cloud Monitoring. The metrics are accessible through Cloud Monitoring\nAPI and you incur no additional cost for publishing the metrics. Google Cloud\nSupport can use this information to more quickly diagnose problems related to\nGCS and gRPC.\nSending this data does not incur any billing charges, and requires minimal\nCPU (a single RPC every minute) or memory (a few KiB to batch the\ntelemetry).\n\nTo access the metrics you can view them through Cloud Monitoring\nmetric explorer with the prefix `storage.googleapis.com/client`. Metrics are emitted\nevery minute.\n\nYou can disable metrics using the following example when creating a new gRPC\nclient using WithDisabledClientMetrics.\n\nThe metrics exporter uses Cloud Monitoring API which determines\nproject ID and credentials doing the following:\n\n* Project ID is determined using OTel Resource Detector for the environment\notherwise it falls back to the project provided by google.FindCredentials.\n\n* Credentials are determined using Application Default Credentials. The\nprincipal must have `roles/monitoring.metricWriter` role granted. If not a\nlogged warning will be emitted. Subsequent are silenced to prevent noisy logs.\n\nCertain control plane and long-running operations for Cloud Storage (including Folder\nand Managed Folder operations) are supported via the autogenerated Storage Control\nclient, which is available as a subpackage in this module. See package docs at\ncloud.google.com/go/storage/control/apiv2 or reference the Storage Control API docs.","homepage":"https://github.com/googleapis/google-cloud-go","licenses":"Apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":null,"keywords_array":[],"namespace":"cloud.google.com/go","versions_count":68,"first_release_published_at":"2019-09-16T20:33:11.000Z","latest_release_published_at":"2025-05-30T06:48:19.000Z","latest_release_number":"v1.55.0","last_synced_at":"2025-06-06T17:30:47.376Z","created_at":"2022-04-10T23:40:53.009Z","updated_at":"2025-06-06T17:30:47.376Z","registry_url":"https://pkg.go.dev/cloud.google.com/go/storage","install_command":"go get cloud.google.com/go/storage","documentation_url":"https://pkg.go.dev/cloud.google.com/go/storage#section-documentation","metadata":{},"repo_metadata":{"id":16848688,"uuid":"19608522","full_name":"googleapis/google-cloud-go","owner":"googleapis","description":"Google Cloud Client Libraries for Go.","archived":false,"fork":false,"pushed_at":"2025-05-01T01:21:01.000Z","size":398851,"stargazers_count":4251,"open_issues_count":378,"forks_count":1414,"subscribers_count":266,"default_branch":"main","last_synced_at":"2025-05-01T01:27:12.244Z","etag":null,"topics":["cloud-bigquery","cloud-datastore","cloud-pubsub","cloud-storage","go","golang","google-cloud"],"latest_commit_sha":null,"homepage":"https://cloud.google.com/go/docs/reference","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/googleapis.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGES.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":"support/CHANGES.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2014-05-09T11:11:58.000Z","updated_at":"2025-04-30T16:44:33.000Z","dependencies_parsed_at":"2023-12-18T21:09:01.497Z","dependency_job_id":"3e046a19-7845-4726-ab88-00666eba33d8","html_url":"https://github.com/googleapis/google-cloud-go","commit_stats":{"total_commits":8711,"total_committers":431,"mean_commits":"20.211136890951277","dds":0.8809551142233957,"last_synced_commit":"e4e1a498f21b0792e0a7662f82f9e062e5aa0fe9"},"previous_names":["googlecloudplatform/gcloud-golang","googlecloudplatform/google-cloud-go"],"tags_count":5623,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/googleapis","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":251818993,"owners_count":21649001,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"},"owner_record":{"login":"googleapis","name":"Google APIs","uuid":"16785467","kind":"organization","description":"Clients for Google APIs and tools that help produce them.","email":null,"website":"https://googleapis.github.io","location":null,"twitter":null,"company":null,"icon_url":"https://avatars.githubusercontent.com/u/16785467?v=4","repositories_count":781,"last_synced_at":"2023-04-09T04:55:29.167Z","metadata":{"has_sponsors_listing":false},"html_url":"https://github.com/googleapis","funding_links":[],"total_stars":null,"followers":null,"following":null,"created_at":"2022-11-02T16:20:18.651Z","updated_at":"2023-04-09T04:55:29.452Z","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/googleapis","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/googleapis/repositories"},"tags":[{"name":"release-please-12005","sha":"dad4822822b386f56c313f1a9df3f5a844cea9e7","kind":"commit","published_at":"2025-04-23T14:56:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-12005","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-12005","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-12005","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-12005/manifests"},{"name":"auth/v0.16.1","sha":"dad4822822b386f56c313f1a9df3f5a844cea9e7","kind":"commit","published_at":"2025-04-23T14:56:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.16.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.16.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.16.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.16.1/manifests"},{"name":"aiplatform/v1.84.0","sha":"353a7379a080c08656537716172516ac9db51193","kind":"commit","published_at":"2025-04-23T14:30:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.84.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.84.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.84.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.84.0/manifests"},{"name":"orgpolicy/v1.15.0","sha":"353a7379a080c08656537716172516ac9db51193","kind":"commit","published_at":"2025-04-23T14:30:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orgpolicy/v1.15.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orgpolicy/v1.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orgpolicy%2Fv1.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orgpolicy%2Fv1.15.0/manifests"},{"name":"modelarmor/v0.1.2","sha":"353a7379a080c08656537716172516ac9db51193","kind":"commit","published_at":"2025-04-23T14:30:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/modelarmor/v0.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/modelarmor/v0.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/modelarmor%2Fv0.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/modelarmor%2Fv0.1.2/manifests"},{"name":"analytics/v0.28.0","sha":"353a7379a080c08656537716172516ac9db51193","kind":"commit","published_at":"2025-04-23T14:30:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/analytics/v0.28.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/analytics/v0.28.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.28.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.28.0/manifests"},{"name":"lustre/v0.1.0","sha":"353a7379a080c08656537716172516ac9db51193","kind":"commit","published_at":"2025-04-23T14:30:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/lustre/v0.1.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/lustre/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/lustre%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/lustre%2Fv0.1.0/manifests"},{"name":"maps/v1.20.3","sha":"353a7379a080c08656537716172516ac9db51193","kind":"commit","published_at":"2025-04-23T14:30:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/maps/v1.20.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/maps/v1.20.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.20.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.20.3/manifests"},{"name":"netapp/v1.7.3","sha":"353a7379a080c08656537716172516ac9db51193","kind":"commit","published_at":"2025-04-23T14:30:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/netapp/v1.7.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/netapp/v1.7.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.7.3/manifests"},{"name":"compute/v1.37.0","sha":"353a7379a080c08656537716172516ac9db51193","kind":"commit","published_at":"2025-04-23T14:30:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.37.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.37.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.37.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.37.0/manifests"},{"name":"release-please-12010","sha":"353a7379a080c08656537716172516ac9db51193","kind":"commit","published_at":"2025-04-23T14:30:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-12010","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-12010","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-12010","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-12010/manifests"},{"name":"release-please-11815","sha":"c79fa82417e9cef39798c7381bb845965a3e2997","kind":"commit","published_at":"2025-04-22T19:46:23.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11815","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11815","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11815","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11815/manifests"},{"name":"storage/v1.52.0","sha":"c79fa82417e9cef39798c7381bb845965a3e2997","kind":"commit","published_at":"2025-04-22T19:46:23.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storage/v1.52.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storage/v1.52.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.52.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.52.0/manifests"},{"name":"parallelstore/v0.11.2","sha":"57bbac9d43ab79646a49f45d4504d504ac51212a","kind":"commit","published_at":"2025-04-15T23:04:49.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parallelstore/v0.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parallelstore/v0.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.11.2/manifests"},{"name":"dataplex/v1.25.2","sha":"57bbac9d43ab79646a49f45d4504d504ac51212a","kind":"commit","published_at":"2025-04-15T23:04:49.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataplex/v1.25.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataplex/v1.25.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.25.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.25.2/manifests"},{"name":"recaptchaenterprise/v2.20.4","sha":"57bbac9d43ab79646a49f45d4504d504ac51212a","kind":"commit","published_at":"2025-04-15T23:04:49.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.20.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.20.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.20.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.20.4/manifests"},{"name":"spanner/benchmarks/v0.1.0","sha":"57bbac9d43ab79646a49f45d4504d504ac51212a","kind":"commit","published_at":"2025-04-15T23:04:49.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/spanner/benchmarks/v0.1.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/spanner/benchmarks/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fbenchmarks%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fbenchmarks%2Fv0.1.0/manifests"},{"name":"aiplatform/v1.83.0","sha":"57bbac9d43ab79646a49f45d4504d504ac51212a","kind":"commit","published_at":"2025-04-15T23:04:49.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.83.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.83.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.83.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.83.0/manifests"},{"name":"orchestration/v1.11.9","sha":"57bbac9d43ab79646a49f45d4504d504ac51212a","kind":"commit","published_at":"2025-04-15T23:04:49.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orchestration/v1.11.9","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orchestration/v1.11.9","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.9/manifests"},{"name":"release-please-11996","sha":"57bbac9d43ab79646a49f45d4504d504ac51212a","kind":"commit","published_at":"2025-04-15T23:04:49.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11996","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11996","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11996","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11996/manifests"},{"name":"financialservices/v0.1.3","sha":"57bbac9d43ab79646a49f45d4504d504ac51212a","kind":"commit","published_at":"2025-04-15T23:04:49.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/financialservices/v0.1.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/financialservices/v0.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/financialservices%2Fv0.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/financialservices%2Fv0.1.3/manifests"},{"name":"devicestreaming/v0.1.0","sha":"57bbac9d43ab79646a49f45d4504d504ac51212a","kind":"commit","published_at":"2025-04-15T23:04:49.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/devicestreaming/v0.1.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/devicestreaming/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/devicestreaming%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/devicestreaming%2Fv0.1.0/manifests"},{"name":"bigtable/v1.37.0","sha":"75995493b373da63b694f5909fd076494dada4f9","kind":"commit","published_at":"2025-04-15T21:18:50.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/bigtable/v1.37.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/bigtable/v1.37.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigtable%2Fv1.37.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigtable%2Fv1.37.0/manifests"},{"name":"release-please-11987","sha":"75995493b373da63b694f5909fd076494dada4f9","kind":"commit","published_at":"2025-04-15T21:18:50.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11987","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11987","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11987","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11987/manifests"},{"name":"identitytoolkit/v0.2.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/identitytoolkit/v0.2.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/identitytoolkit/v0.2.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/identitytoolkit%2Fv0.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/identitytoolkit%2Fv0.2.5/manifests"},{"name":"monitoring/v1.24.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/monitoring/v1.24.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/monitoring/v1.24.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.24.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.24.2/manifests"},{"name":"storageinsights/v1.1.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storageinsights/v1.1.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storageinsights/v1.1.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storageinsights%2Fv1.1.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storageinsights%2Fv1.1.6/manifests"},{"name":"shopping/v0.19.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.19.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.19.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.19.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.19.1/manifests"},{"name":"config/v1.3.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/config/v1.3.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/config/v1.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/config%2Fv1.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/config%2Fv1.3.2/manifests"},{"name":"securitycenter/v1.36.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securitycenter/v1.36.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securitycenter/v1.36.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycenter%2Fv1.36.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycenter%2Fv1.36.2/manifests"},{"name":"deploy/v1.27.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/deploy/v1.27.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/deploy/v1.27.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.27.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.27.1/manifests"},{"name":"edgecontainer/v1.4.3","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/edgecontainer/v1.4.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/edgecontainer/v1.4.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgecontainer%2Fv1.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgecontainer%2Fv1.4.3/manifests"},{"name":"managedidentities/v1.7.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedidentities/v1.7.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedidentities/v1.7.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedidentities%2Fv1.7.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedidentities%2Fv1.7.6/manifests"},{"name":"networkmanagement/v1.19.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkmanagement/v1.19.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkmanagement/v1.19.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.19.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.19.1/manifests"},{"name":"dataform/v0.11.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataform/v0.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataform/v0.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataform%2Fv0.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataform%2Fv0.11.2/manifests"},{"name":"dataproc/v2.11.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataproc/v2.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataproc/v2.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataproc%2Fv2.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataproc%2Fv2.11.2/manifests"},{"name":"datalabeling/v0.9.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datalabeling/v0.9.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datalabeling/v0.9.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datalabeling%2Fv0.9.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datalabeling%2Fv0.9.6/manifests"},{"name":"webrisk/v1.11.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/webrisk/v1.11.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/webrisk/v1.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/webrisk%2Fv1.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/webrisk%2Fv1.11.1/manifests"},{"name":"artifactregistry/v1.17.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/artifactregistry/v1.17.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/artifactregistry/v1.17.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.17.1/manifests"},{"name":"policytroubleshooter/v1.11.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/policytroubleshooter/v1.11.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/policytroubleshooter/v1.11.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policytroubleshooter%2Fv1.11.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policytroubleshooter%2Fv1.11.6/manifests"},{"name":"ids/v1.5.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/ids/v1.5.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/ids/v1.5.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ids%2Fv1.5.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ids%2Fv1.5.6/manifests"},{"name":"recaptchaenterprise/v2.20.3","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.20.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.20.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.20.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.20.3/manifests"},{"name":"networkservices/v0.2.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkservices/v0.2.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkservices/v0.2.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkservices%2Fv0.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkservices%2Fv0.2.5/manifests"},{"name":"container/v1.42.4","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/container/v1.42.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/container/v1.42.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/container%2Fv1.42.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/container%2Fv1.42.4/manifests"},{"name":"aiplatform/v1.82.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.82.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.82.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.82.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.82.1/manifests"},{"name":"metastore/v1.14.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/metastore/v1.14.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/metastore/v1.14.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/metastore%2Fv1.14.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/metastore%2Fv1.14.6/manifests"},{"name":"phishingprotection/v0.9.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/phishingprotection/v0.9.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/phishingprotection/v0.9.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/phishingprotection%2Fv0.9.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/phishingprotection%2Fv0.9.6/manifests"},{"name":"discoveryengine/v1.17.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/discoveryengine/v1.17.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/discoveryengine/v1.17.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/discoveryengine%2Fv1.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/discoveryengine%2Fv1.17.1/manifests"},{"name":"assuredworkloads/v1.12.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/assuredworkloads/v1.12.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/assuredworkloads/v1.12.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/assuredworkloads%2Fv1.12.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/assuredworkloads%2Fv1.12.6/manifests"},{"name":"cloudtasks/v1.13.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudtasks/v1.13.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudtasks/v1.13.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudtasks%2Fv1.13.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudtasks%2Fv1.13.6/manifests"},{"name":"shell/v1.8.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shell/v1.8.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shell/v1.8.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shell%2Fv1.8.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shell%2Fv1.8.6/manifests"},{"name":"chat/v0.12.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/chat/v0.12.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/chat/v0.12.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.12.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.12.2/manifests"},{"name":"notebooks/v1.12.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/notebooks/v1.12.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/notebooks/v1.12.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/notebooks%2Fv1.12.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/notebooks%2Fv1.12.6/manifests"},{"name":"streetview/v0.2.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/streetview/v0.2.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/streetview/v0.2.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/streetview%2Fv0.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/streetview%2Fv0.2.5/manifests"},{"name":"securityposture/v0.2.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securityposture/v0.2.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securityposture/v0.2.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securityposture%2Fv0.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securityposture%2Fv0.2.5/manifests"},{"name":"managedkafka/v0.5.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedkafka/v0.5.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedkafka/v0.5.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.5.1/manifests"},{"name":"parallelstore/v0.11.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parallelstore/v0.11.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parallelstore/v0.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.11.1/manifests"},{"name":"iap/v1.11.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iap/v1.11.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iap/v1.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iap%2Fv1.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iap%2Fv1.11.1/manifests"},{"name":"filestore/v1.10.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/filestore/v1.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/filestore/v1.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/filestore%2Fv1.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/filestore%2Fv1.10.2/manifests"},{"name":"containeranalysis/v0.14.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/containeranalysis/v0.14.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/containeranalysis/v0.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/containeranalysis%2Fv0.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/containeranalysis%2Fv0.14.1/manifests"},{"name":"compute/v1.36.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.36.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.36.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.36.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.36.1/manifests"},{"name":"visionai/v0.4.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/visionai/v0.4.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/visionai/v0.4.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/visionai%2Fv0.4.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/visionai%2Fv0.4.5/manifests"},{"name":"longrunning/v0.6.7","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/longrunning/v0.6.7","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/longrunning/v0.6.7","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/longrunning%2Fv0.6.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/longrunning%2Fv0.6.7/manifests"},{"name":"channel/v1.19.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/channel/v1.19.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/channel/v1.19.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/channel%2Fv1.19.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/channel%2Fv1.19.5/manifests"},{"name":"modelarmor/v0.1.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/modelarmor/v0.1.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/modelarmor/v0.1.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/modelarmor%2Fv0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/modelarmor%2Fv0.1.1/manifests"},{"name":"apigeeregistry/v0.9.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigeeregistry/v0.9.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigeeregistry/v0.9.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeregistry%2Fv0.9.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeregistry%2Fv0.9.6/manifests"},{"name":"gkeconnect/v0.12.4","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkeconnect/v0.12.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkeconnect/v0.12.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkeconnect%2Fv0.12.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkeconnect%2Fv0.12.4/manifests"},{"name":"translate/v1.12.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/translate/v1.12.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/translate/v1.12.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/translate%2Fv1.12.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/translate%2Fv1.12.5/manifests"},{"name":"clouddms/v1.8.7","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/clouddms/v1.8.7","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/clouddms/v1.8.7","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/clouddms%2Fv1.8.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/clouddms%2Fv1.8.7/manifests"},{"name":"commerce/v1.2.4","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/commerce/v1.2.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/commerce/v1.2.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/commerce%2Fv1.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/commerce%2Fv1.2.4/manifests"},{"name":"apigeeconnect/v1.7.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigeeconnect/v1.7.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigeeconnect/v1.7.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeconnect%2Fv1.7.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeconnect%2Fv1.7.6/manifests"},{"name":"accessapproval/v1.8.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/accessapproval/v1.8.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/accessapproval/v1.8.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accessapproval%2Fv1.8.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accessapproval%2Fv1.8.6/manifests"},{"name":"netapp/v1.7.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/netapp/v1.7.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/netapp/v1.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.7.2/manifests"},{"name":"speech/v1.27.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/speech/v1.27.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/speech/v1.27.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/speech%2Fv1.27.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/speech%2Fv1.27.1/manifests"},{"name":"release-please-11986","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11986","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11986","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11986","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11986/manifests"},{"name":"networkconnectivity/v1.17.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkconnectivity/v1.17.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkconnectivity/v1.17.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.17.1/manifests"},{"name":"vpcaccess/v1.8.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vpcaccess/v1.8.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vpcaccess/v1.8.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vpcaccess%2Fv1.8.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vpcaccess%2Fv1.8.6/manifests"},{"name":"memorystore/v0.2.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/memorystore/v0.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/memorystore/v0.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memorystore%2Fv0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memorystore%2Fv0.2.2/manifests"},{"name":"apps/v0.7.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apps/v0.7.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apps/v0.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apps%2Fv0.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apps%2Fv0.7.2/manifests"},{"name":"edgenetwork/v1.2.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/edgenetwork/v1.2.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/edgenetwork/v1.2.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgenetwork%2Fv1.2.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgenetwork%2Fv1.2.6/manifests"},{"name":"area120/v0.9.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/area120/v0.9.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/area120/v0.9.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/area120%2Fv0.9.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/area120%2Fv0.9.6/manifests"},{"name":"oracledatabase/v0.4.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oracledatabase/v0.4.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oracledatabase/v0.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.4.1/manifests"},{"name":"websecurityscanner/v1.7.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/websecurityscanner/v1.7.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/websecurityscanner/v1.7.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/websecurityscanner%2Fv1.7.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/websecurityscanner%2Fv1.7.6/manifests"},{"name":"apihub/v0.1.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apihub/v0.1.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apihub/v0.1.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apihub%2Fv0.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apihub%2Fv0.1.5/manifests"},{"name":"telcoautomation/v1.1.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/telcoautomation/v1.1.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/telcoautomation/v1.1.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/telcoautomation%2Fv1.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/telcoautomation%2Fv1.1.5/manifests"},{"name":"dialogflow/v1.68.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.68.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.68.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.68.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.68.2/manifests"},{"name":"datafusion/v1.8.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datafusion/v1.8.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datafusion/v1.8.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datafusion%2Fv1.8.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datafusion%2Fv1.8.6/manifests"},{"name":"essentialcontacts/v1.7.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/essentialcontacts/v1.7.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/essentialcontacts/v1.7.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/essentialcontacts%2Fv1.7.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/essentialcontacts%2Fv1.7.6/manifests"},{"name":"optimization/v1.7.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/optimization/v1.7.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/optimization/v1.7.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/optimization%2Fv1.7.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/optimization%2Fv1.7.6/manifests"},{"name":"networksecurity/v0.10.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networksecurity/v0.10.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networksecurity/v0.10.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networksecurity%2Fv0.10.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networksecurity%2Fv0.10.6/manifests"},{"name":"memcache/v1.11.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/memcache/v1.11.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/memcache/v1.11.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memcache%2Fv1.11.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memcache%2Fv1.11.6/manifests"},{"name":"dlp/v1.22.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dlp/v1.22.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dlp/v1.22.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dlp%2Fv1.22.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dlp%2Fv1.22.1/manifests"},{"name":"talent/v1.8.3","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/talent/v1.8.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/talent/v1.8.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/talent%2Fv1.8.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/talent%2Fv1.8.3/manifests"},{"name":"osconfig/v1.14.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/osconfig/v1.14.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/osconfig/v1.14.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/osconfig%2Fv1.14.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/osconfig%2Fv1.14.5/manifests"},{"name":"maps/v1.20.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/maps/v1.20.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/maps/v1.20.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.20.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.20.2/manifests"},{"name":"vmmigration/v1.8.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vmmigration/v1.8.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vmmigration/v1.8.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmmigration%2Fv1.8.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmmigration%2Fv1.8.6/manifests"},{"name":"workstations/v1.1.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/workstations/v1.1.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/workstations/v1.1.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workstations%2Fv1.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workstations%2Fv1.1.5/manifests"},{"name":"datastream/v1.14.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datastream/v1.14.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datastream/v1.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.14.1/manifests"},{"name":"serviceusage/v1.9.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/serviceusage/v1.9.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/serviceusage/v1.9.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/serviceusage%2Fv1.9.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/serviceusage%2Fv1.9.6/manifests"},{"name":"automl/v1.14.7","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/automl/v1.14.7","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/automl/v1.14.7","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/automl%2Fv1.14.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/automl%2Fv1.14.7/manifests"},{"name":"confidentialcomputing/v1.9.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/confidentialcomputing/v1.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/confidentialcomputing/v1.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/confidentialcomputing%2Fv1.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/confidentialcomputing%2Fv1.9.2/manifests"},{"name":"trace/v1.11.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/trace/v1.11.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/trace/v1.11.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/trace%2Fv1.11.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/trace%2Fv1.11.6/manifests"},{"name":"gkebackup/v1.6.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkebackup/v1.6.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkebackup/v1.6.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkebackup%2Fv1.6.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkebackup%2Fv1.6.5/manifests"},{"name":"vmwareengine/v1.3.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vmwareengine/v1.3.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vmwareengine/v1.3.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmwareengine%2Fv1.3.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmwareengine%2Fv1.3.5/manifests"},{"name":"alloydb/v1.15.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/alloydb/v1.15.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/alloydb/v1.15.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/alloydb%2Fv1.15.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/alloydb%2Fv1.15.1/manifests"},{"name":"vision/v2.9.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vision/v2.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vision/v2.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vision%2Fv2.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vision%2Fv2.9.5/manifests"},{"name":"gkehub/v0.15.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkehub/v0.15.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkehub/v0.15.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkehub%2Fv0.15.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkehub%2Fv0.15.6/manifests"},{"name":"ai/v0.10.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/ai/v0.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/ai/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ai%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ai%2Fv0.10.2/manifests"},{"name":"retail/v1.19.4","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/retail/v1.19.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/retail/v1.19.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/retail%2Fv1.19.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/retail%2Fv1.19.4/manifests"},{"name":"gkemulticloud/v1.5.3","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkemulticloud/v1.5.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkemulticloud/v1.5.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkemulticloud%2Fv1.5.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkemulticloud%2Fv1.5.3/manifests"},{"name":"documentai/v1.36.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/documentai/v1.36.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/documentai/v1.36.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/documentai%2Fv1.36.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/documentai%2Fv1.36.1/manifests"},{"name":"servicehealth/v1.2.3","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicehealth/v1.2.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicehealth/v1.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicehealth%2Fv1.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicehealth%2Fv1.2.3/manifests"},{"name":"binaryauthorization/v1.9.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/binaryauthorization/v1.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/binaryauthorization/v1.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/binaryauthorization%2Fv1.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/binaryauthorization%2Fv1.9.5/manifests"},{"name":"rapidmigrationassessment/v1.1.7","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/rapidmigrationassessment/v1.1.7","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/rapidmigrationassessment/v1.1.7","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/rapidmigrationassessment%2Fv1.1.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/rapidmigrationassessment%2Fv1.1.7/manifests"},{"name":"workflows/v1.14.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/workflows/v1.14.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/workflows/v1.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.14.2/manifests"},{"name":"orgpolicy/v1.14.4","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orgpolicy/v1.14.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orgpolicy/v1.14.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orgpolicy%2Fv1.14.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orgpolicy%2Fv1.14.4/manifests"},{"name":"privatecatalog/v0.10.7","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/privatecatalog/v0.10.7","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/privatecatalog/v0.10.7","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privatecatalog%2Fv0.10.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privatecatalog%2Fv0.10.7/manifests"},{"name":"resourcemanager/v1.10.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/resourcemanager/v1.10.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/resourcemanager/v1.10.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcemanager%2Fv1.10.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcemanager%2Fv1.10.6/manifests"},{"name":"mediatranslation/v0.9.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/mediatranslation/v0.9.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/mediatranslation/v0.9.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/mediatranslation%2Fv0.9.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/mediatranslation%2Fv0.9.6/manifests"},{"name":"videointelligence/v1.12.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/videointelligence/v1.12.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/videointelligence/v1.12.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/videointelligence%2Fv1.12.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/videointelligence%2Fv1.12.6/manifests"},{"name":"recommendationengine/v0.9.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recommendationengine/v0.9.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recommendationengine/v0.9.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommendationengine%2Fv0.9.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommendationengine%2Fv0.9.6/manifests"},{"name":"policysimulator/v0.3.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/policysimulator/v0.3.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/policysimulator/v0.3.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policysimulator%2Fv0.3.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policysimulator%2Fv0.3.6/manifests"},{"name":"servicemanagement/v1.10.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicemanagement/v1.10.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicemanagement/v1.10.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicemanagement%2Fv1.10.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicemanagement%2Fv1.10.6/manifests"},{"name":"certificatemanager/v1.9.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/certificatemanager/v1.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/certificatemanager/v1.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/certificatemanager%2Fv1.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/certificatemanager%2Fv1.9.5/manifests"},{"name":"cloudbuild/v1.22.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudbuild/v1.22.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudbuild/v1.22.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.22.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.22.2/manifests"},{"name":"iam/v1.5.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iam/v1.5.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iam/v1.5.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.5.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.5.2/manifests"},{"name":"servicecontrol/v1.14.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicecontrol/v1.14.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicecontrol/v1.14.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicecontrol%2Fv1.14.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicecontrol%2Fv1.14.5/manifests"},{"name":"backupdr/v1.3.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/backupdr/v1.3.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/backupdr/v1.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/backupdr%2Fv1.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/backupdr%2Fv1.3.2/manifests"},{"name":"run/v1.9.3","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/run/v1.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/run/v1.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.9.3/manifests"},{"name":"scheduler/v1.11.7","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/scheduler/v1.11.7","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/scheduler/v1.11.7","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/scheduler%2Fv1.11.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/scheduler%2Fv1.11.7/manifests"},{"name":"contactcenterinsights/v1.17.3","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/contactcenterinsights/v1.17.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/contactcenterinsights/v1.17.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/contactcenterinsights%2Fv1.17.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/contactcenterinsights%2Fv1.17.3/manifests"},{"name":"redis/v1.18.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/redis/v1.18.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/redis/v1.18.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/redis%2Fv1.18.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/redis%2Fv1.18.2/manifests"},{"name":"iot/v1.8.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iot/v1.8.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iot/v1.8.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iot%2Fv1.8.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iot%2Fv1.8.6/manifests"},{"name":"security/v1.18.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/security/v1.18.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/security/v1.18.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/security%2Fv1.18.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/security%2Fv1.18.5/manifests"},{"name":"apphub/v0.3.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apphub/v0.3.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apphub/v0.3.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apphub%2Fv0.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apphub%2Fv0.3.1/manifests"},{"name":"advisorynotifications/v1.5.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/advisorynotifications/v1.5.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/advisorynotifications/v1.5.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/advisorynotifications%2Fv1.5.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/advisorynotifications%2Fv1.5.5/manifests"},{"name":"recommender/v1.13.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recommender/v1.13.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recommender/v1.13.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommender%2Fv1.13.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommender%2Fv1.13.5/manifests"},{"name":"privilegedaccessmanager/v0.2.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/privilegedaccessmanager/v0.2.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/privilegedaccessmanager/v0.2.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privilegedaccessmanager%2Fv0.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privilegedaccessmanager%2Fv0.2.5/manifests"},{"name":"secretmanager/v1.14.7","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/secretmanager/v1.14.7","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/secretmanager/v1.14.7","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/secretmanager%2Fv1.14.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/secretmanager%2Fv1.14.7/manifests"},{"name":"tpu/v1.8.3","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/tpu/v1.8.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/tpu/v1.8.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/tpu%2Fv1.8.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/tpu%2Fv1.8.3/manifests"},{"name":"apigateway/v1.7.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigateway/v1.7.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigateway/v1.7.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigateway%2Fv1.7.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigateway%2Fv1.7.6/manifests"},{"name":"oslogin/v1.14.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oslogin/v1.14.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oslogin/v1.14.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oslogin%2Fv1.14.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oslogin%2Fv1.14.6/manifests"},{"name":"texttospeech/v1.12.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/texttospeech/v1.12.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/texttospeech/v1.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.12.1/manifests"},{"name":"analytics/v0.27.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/analytics/v0.27.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/analytics/v0.27.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.27.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.27.2/manifests"},{"name":"eventarc/v1.15.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/eventarc/v1.15.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/eventarc/v1.15.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.15.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.15.5/manifests"},{"name":"asset/v1.20.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/asset/v1.20.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/asset/v1.20.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/asset%2Fv1.20.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/asset%2Fv1.20.6/manifests"},{"name":"accesscontextmanager/v1.9.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/accesscontextmanager/v1.9.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/accesscontextmanager/v1.9.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accesscontextmanager%2Fv1.9.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accesscontextmanager%2Fv1.9.6/manifests"},{"name":"cloudcontrolspartner/v1.3.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudcontrolspartner/v1.3.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudcontrolspartner/v1.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudcontrolspartner%2Fv1.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudcontrolspartner%2Fv1.3.2/manifests"},{"name":"kms/v1.21.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/kms/v1.21.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/kms/v1.21.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.21.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.21.2/manifests"},{"name":"securitycentermanagement/v1.1.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securitycentermanagement/v1.1.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securitycentermanagement/v1.1.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycentermanagement%2Fv1.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycentermanagement%2Fv1.1.5/manifests"},{"name":"developerconnect/v0.3.3","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/developerconnect/v0.3.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/developerconnect/v0.3.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/developerconnect%2Fv0.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/developerconnect%2Fv0.3.3/manifests"},{"name":"dataflow/v0.10.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataflow/v0.10.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataflow/v0.10.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataflow%2Fv0.10.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataflow%2Fv0.10.6/manifests"},{"name":"domains/v0.10.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/domains/v0.10.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/domains/v0.10.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/domains%2Fv0.10.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/domains%2Fv0.10.6/manifests"},{"name":"beyondcorp/v1.1.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/beyondcorp/v1.1.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/beyondcorp/v1.1.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/beyondcorp%2Fv1.1.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/beyondcorp%2Fv1.1.6/manifests"},{"name":"baremetalsolution/v1.3.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/baremetalsolution/v1.3.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/baremetalsolution/v1.3.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/baremetalsolution%2Fv1.3.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/baremetalsolution%2Fv1.3.6/manifests"},{"name":"parametermanager/v0.2.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parametermanager/v0.2.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parametermanager/v0.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parametermanager%2Fv0.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parametermanager%2Fv0.2.1/manifests"},{"name":"batch/v1.12.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/batch/v1.12.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/batch/v1.12.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.12.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.12.2/manifests"},{"name":"servicedirectory/v1.12.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicedirectory/v1.12.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicedirectory/v1.12.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicedirectory%2Fv1.12.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicedirectory%2Fv1.12.6/manifests"},{"name":"language/v1.14.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/language/v1.14.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/language/v1.14.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/language%2Fv1.14.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/language%2Fv1.14.5/manifests"},{"name":"financialservices/v0.1.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/financialservices/v0.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/financialservices/v0.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/financialservices%2Fv0.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/financialservices%2Fv0.1.2/manifests"},{"name":"lifesciences/v0.10.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/lifesciences/v0.10.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/lifesciences/v0.10.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/lifesciences%2Fv0.10.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/lifesciences%2Fv0.10.6/manifests"},{"name":"apikeys/v1.2.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apikeys/v1.2.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apikeys/v1.2.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apikeys%2Fv1.2.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apikeys%2Fv1.2.6/manifests"},{"name":"dataplex/v1.25.1","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataplex/v1.25.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataplex/v1.25.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.25.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.25.1/manifests"},{"name":"functions/v1.19.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/functions/v1.19.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/functions/v1.19.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/functions%2Fv1.19.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/functions%2Fv1.19.6/manifests"},{"name":"billing/v1.20.4","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/billing/v1.20.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/billing/v1.20.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/billing%2Fv1.20.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/billing%2Fv1.20.4/manifests"},{"name":"migrationcenter/v1.1.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/migrationcenter/v1.1.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/migrationcenter/v1.1.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/migrationcenter%2Fv1.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/migrationcenter%2Fv1.1.5/manifests"},{"name":"gsuiteaddons/v1.7.7","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gsuiteaddons/v1.7.7","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gsuiteaddons/v1.7.7","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gsuiteaddons%2Fv1.7.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gsuiteaddons%2Fv1.7.7/manifests"},{"name":"datacatalog/v1.25.2","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datacatalog/v1.25.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datacatalog/v1.25.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.25.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.25.2/manifests"},{"name":"dataqna/v0.9.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataqna/v0.9.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataqna/v0.9.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataqna%2Fv0.9.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataqna%2Fv0.9.6/manifests"},{"name":"orchestration/v1.11.8","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orchestration/v1.11.8","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orchestration/v1.11.8","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.8/manifests"},{"name":"cloudprofiler/v0.4.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudprofiler/v0.4.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudprofiler/v0.4.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudprofiler%2Fv0.4.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudprofiler%2Fv0.4.5/manifests"},{"name":"cloudquotas/v1.3.3","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudquotas/v1.3.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudquotas/v1.3.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.3.3/manifests"},{"name":"storagetransfer/v1.12.4","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storagetransfer/v1.12.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storagetransfer/v1.12.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storagetransfer%2Fv1.12.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storagetransfer%2Fv1.12.4/manifests"},{"name":"support/v1.1.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/support/v1.1.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/support/v1.1.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/support%2Fv1.1.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/support%2Fv1.1.6/manifests"},{"name":"securesourcemanager/v1.3.3","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securesourcemanager/v1.3.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securesourcemanager/v1.3.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securesourcemanager%2Fv1.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securesourcemanager%2Fv1.3.3/manifests"},{"name":"grafeas/v0.3.16","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/grafeas/v0.3.16","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/grafeas/v0.3.16","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/grafeas%2Fv0.3.16","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/grafeas%2Fv0.3.16/manifests"},{"name":"appengine/v1.9.6","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/appengine/v1.9.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/appengine/v1.9.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/appengine%2Fv1.9.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/appengine%2Fv1.9.6/manifests"},{"name":"video/v1.23.5","sha":"58dacd1fa3c2be7aa693f92934195cbb73308dc4","kind":"commit","published_at":"2025-04-15T16:02:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/video/v1.23.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/video/v1.23.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/video%2Fv1.23.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/video%2Fv1.23.5/manifests"},{"name":"oracledatabase/v0.4.0","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oracledatabase/v0.4.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oracledatabase/v0.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.4.0/manifests"},{"name":"speech/v1.27.0","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/speech/v1.27.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/speech/v1.27.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/speech%2Fv1.27.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/speech%2Fv1.27.0/manifests"},{"name":"iam/v1.5.1","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iam/v1.5.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iam/v1.5.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.5.1/manifests"},{"name":"edgenetwork/v1.2.5","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/edgenetwork/v1.2.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/edgenetwork/v1.2.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgenetwork%2Fv1.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgenetwork%2Fv1.2.5/manifests"},{"name":"datacatalog/v1.25.1","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datacatalog/v1.25.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datacatalog/v1.25.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.25.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.25.1/manifests"},{"name":"functions/v1.19.5","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/functions/v1.19.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/functions/v1.19.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/functions%2Fv1.19.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/functions%2Fv1.19.5/manifests"},{"name":"dataplex/v1.25.0","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataplex/v1.25.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataplex/v1.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.25.0/manifests"},{"name":"networkmanagement/v1.19.0","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkmanagement/v1.19.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkmanagement/v1.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.19.0/manifests"},{"name":"artifactregistry/v1.17.0","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/artifactregistry/v1.17.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/artifactregistry/v1.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.17.0/manifests"},{"name":"workflows/v1.14.1","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/workflows/v1.14.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/workflows/v1.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.14.1/manifests"},{"name":"aiplatform/v1.82.0","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.82.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.82.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.82.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.82.0/manifests"},{"name":"parallelstore/v0.11.0","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parallelstore/v0.11.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parallelstore/v0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.11.0/manifests"},{"name":"webrisk/v1.11.0","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/webrisk/v1.11.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/webrisk/v1.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/webrisk%2Fv1.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/webrisk%2Fv1.11.0/manifests"},{"name":"release-please-11947","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11947","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11947","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11947","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11947/manifests"},{"name":"deploy/v1.27.0","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/deploy/v1.27.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/deploy/v1.27.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.27.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.27.0/manifests"},{"name":"iap/v1.11.0","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iap/v1.11.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iap/v1.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iap%2Fv1.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iap%2Fv1.11.0/manifests"},{"name":"shopping/v0.19.0","sha":"4aea9ca46298325ef7d8ee3a9199391ff435be58","kind":"commit","published_at":"2025-04-15T14:34:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.19.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.19.0/manifests"},{"name":"release-please-11922","sha":"81358cb855944bb08f2fb4374a3d9fc907b19d11","kind":"commit","published_at":"2025-04-14T20:28:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11922","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11922","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11922","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11922/manifests"},{"name":"v0.120.1","sha":"81358cb855944bb08f2fb4374a3d9fc907b19d11","kind":"commit","published_at":"2025-04-14T20:28:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/v0.120.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/v0.120.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.120.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.120.1/manifests"},{"name":"release-please-11900","sha":"59f877ab7bef60bba2e790c84cf19b788f8c95b9","kind":"commit","published_at":"2025-04-14T17:47:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11900","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11900","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11900","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11900/manifests"},{"name":"auth/v0.16.0","sha":"59f877ab7bef60bba2e790c84cf19b788f8c95b9","kind":"commit","published_at":"2025-04-14T17:47:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.16.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.16.0/manifests"},{"name":"release-please-11910","sha":"15af3fa9393c12f1341a02a01851a04537493f75","kind":"commit","published_at":"2025-04-08T05:31:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11910","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11910","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11910","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11910/manifests"},{"name":"spanner/v1.79.0","sha":"15af3fa9393c12f1341a02a01851a04537493f75","kind":"commit","published_at":"2025-04-08T05:31:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/spanner/v1.79.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/spanner/v1.79.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.79.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.79.0/manifests"},{"name":"release-please-11959","sha":"d8b61ac46a0120a42d077fcc4df64c7a57ac0a07","kind":"commit","published_at":"2025-04-07T20:13:32.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11959","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11959","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11959","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11959/manifests"},{"name":"pubsub/v1.49.0","sha":"d8b61ac46a0120a42d077fcc4df64c7a57ac0a07","kind":"commit","published_at":"2025-04-07T20:13:32.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/pubsub/v1.49.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/pubsub/v1.49.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.49.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.49.0/manifests"},{"name":"pubsub/v1.48.1","sha":"99bc72b20779654226392070a46e1371a89e73b0","kind":"commit","published_at":"2025-04-01T20:08:10.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/pubsub/v1.48.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/pubsub/v1.48.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.48.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.48.1/manifests"},{"name":"release-please-11844","sha":"99bc72b20779654226392070a46e1371a89e73b0","kind":"commit","published_at":"2025-04-01T20:08:10.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11844","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11844","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11844","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11844/manifests"},{"name":"release-please-11540","sha":"af88fb622962ca3a54f3d6e21cb96d15003b4087","kind":"commit","published_at":"2025-03-31T23:29:32.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11540","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11540","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11540","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11540/manifests"},{"name":"bigtable/v1.36.0","sha":"af88fb622962ca3a54f3d6e21cb96d15003b4087","kind":"commit","published_at":"2025-03-31T23:29:32.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/bigtable/v1.36.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/bigtable/v1.36.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigtable%2Fv1.36.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigtable%2Fv1.36.0/manifests"},{"name":"iam/v1.5.0","sha":"df2bd94282be1e30077ffe92c7ef362a7578c8ca","kind":"commit","published_at":"2025-03-31T20:43:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iam/v1.5.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iam/v1.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.5.0/manifests"},{"name":"texttospeech/v1.12.0","sha":"df2bd94282be1e30077ffe92c7ef362a7578c8ca","kind":"commit","published_at":"2025-03-31T20:43:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/texttospeech/v1.12.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/texttospeech/v1.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.12.0/manifests"},{"name":"release-please-11919","sha":"df2bd94282be1e30077ffe92c7ef362a7578c8ca","kind":"commit","published_at":"2025-03-31T20:43:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11919","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11919","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11919","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11919/manifests"},{"name":"aiplatform/v1.81.0","sha":"df2bd94282be1e30077ffe92c7ef362a7578c8ca","kind":"commit","published_at":"2025-03-31T20:43:06.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.81.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.81.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.81.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.81.0/manifests"},{"name":"dataplex/v1.24.0","sha":"0eaef29dacd338a5746f1d87fa9a77a29155b9e9","kind":"commit","published_at":"2025-03-27T17:29:13.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataplex/v1.24.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataplex/v1.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.24.0/manifests"},{"name":"aiplatform/v1.80.0","sha":"0eaef29dacd338a5746f1d87fa9a77a29155b9e9","kind":"commit","published_at":"2025-03-27T17:29:13.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.80.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.80.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.80.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.80.0/manifests"},{"name":"release-please-11905","sha":"0eaef29dacd338a5746f1d87fa9a77a29155b9e9","kind":"commit","published_at":"2025-03-27T17:29:13.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11905","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11905","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11905","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11905/manifests"},{"name":"datastream/v1.14.0","sha":"0eaef29dacd338a5746f1d87fa9a77a29155b9e9","kind":"commit","published_at":"2025-03-27T17:29:13.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datastream/v1.14.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datastream/v1.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.14.0/manifests"},{"name":"compute/v1.36.0","sha":"0eaef29dacd338a5746f1d87fa9a77a29155b9e9","kind":"commit","published_at":"2025-03-27T17:29:13.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.36.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.36.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.36.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.36.0/manifests"},{"name":"apphub/v0.3.0","sha":"0eaef29dacd338a5746f1d87fa9a77a29155b9e9","kind":"commit","published_at":"2025-03-27T17:29:13.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apphub/v0.3.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apphub/v0.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apphub%2Fv0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apphub%2Fv0.3.0/manifests"},{"name":"rapidmigrationassessment/v1.1.6","sha":"0eaef29dacd338a5746f1d87fa9a77a29155b9e9","kind":"commit","published_at":"2025-03-27T17:29:13.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/rapidmigrationassessment/v1.1.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/rapidmigrationassessment/v1.1.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/rapidmigrationassessment%2Fv1.1.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/rapidmigrationassessment%2Fv1.1.6/manifests"},{"name":"containeranalysis/v0.14.0","sha":"0eaef29dacd338a5746f1d87fa9a77a29155b9e9","kind":"commit","published_at":"2025-03-27T17:29:13.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/containeranalysis/v0.14.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/containeranalysis/v0.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/containeranalysis%2Fv0.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/containeranalysis%2Fv0.14.0/manifests"},{"name":"discoveryengine/v1.17.0","sha":"0eaef29dacd338a5746f1d87fa9a77a29155b9e9","kind":"commit","published_at":"2025-03-27T17:29:13.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/discoveryengine/v1.17.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/discoveryengine/v1.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/discoveryengine%2Fv1.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/discoveryengine%2Fv1.17.0/manifests"},{"name":"deploy/v1.26.4","sha":"8eb6e030e845a9ac20e4e2e5c464d8a31a184ac5","kind":"commit","published_at":"2025-03-25T17:40:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/deploy/v1.26.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/deploy/v1.26.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.26.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.26.4/manifests"},{"name":"networkconnectivity/v1.17.0","sha":"8eb6e030e845a9ac20e4e2e5c464d8a31a184ac5","kind":"commit","published_at":"2025-03-25T17:40:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkconnectivity/v1.17.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkconnectivity/v1.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.17.0/manifests"},{"name":"release-please-11899","sha":"8eb6e030e845a9ac20e4e2e5c464d8a31a184ac5","kind":"commit","published_at":"2025-03-25T17:40:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11899","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11899","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11899","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11899/manifests"},{"name":"aiplatform/v1.79.0","sha":"8eb6e030e845a9ac20e4e2e5c464d8a31a184ac5","kind":"commit","published_at":"2025-03-25T17:40:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.79.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.79.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.79.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.79.0/manifests"},{"name":"parametermanager/v0.2.0","sha":"8eb6e030e845a9ac20e4e2e5c464d8a31a184ac5","kind":"commit","published_at":"2025-03-25T17:40:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parametermanager/v0.2.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parametermanager/v0.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parametermanager%2Fv0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parametermanager%2Fv0.2.0/manifests"},{"name":"oracledatabase/v0.3.1","sha":"8eb6e030e845a9ac20e4e2e5c464d8a31a184ac5","kind":"commit","published_at":"2025-03-25T17:40:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oracledatabase/v0.3.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oracledatabase/v0.3.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.3.1/manifests"},{"name":"shopping/v0.18.1","sha":"8eb6e030e845a9ac20e4e2e5c464d8a31a184ac5","kind":"commit","published_at":"2025-03-25T17:40:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.18.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.18.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.18.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.18.1/manifests"},{"name":"release-please-11763","sha":"b6c2b32d697c8e8a017d6276e5c35ed4b8af0a4c","kind":"commit","published_at":"2025-03-25T04:54:52.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11763","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11763","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11763","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11763/manifests"},{"name":"spanner/v1.78.0","sha":"b6c2b32d697c8e8a017d6276e5c35ed4b8af0a4c","kind":"commit","published_at":"2025-03-25T04:54:52.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/spanner/v1.78.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/spanner/v1.78.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.78.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.78.0/manifests"},{"name":"release-please-11880","sha":"10ad0a8c21cad5f7ea0a41d74e0fe143df3d18f5","kind":"commit","published_at":"2025-03-20T16:11:04.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11880","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11880","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11880","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11880/manifests"},{"name":"v0.120.0","sha":"10ad0a8c21cad5f7ea0a41d74e0fe143df3d18f5","kind":"commit","published_at":"2025-03-20T16:11:04.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/v0.120.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/v0.120.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.120.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.120.0/manifests"},{"name":"auth/oauth2adapt/v0.2.8","sha":"7e600b964c1cae3ba47fc7d1d340a536723d18cb","kind":"commit","published_at":"2025-03-20T15:18:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/oauth2adapt/v0.2.8","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/oauth2adapt/v0.2.8","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Foauth2adapt%2Fv0.2.8","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Foauth2adapt%2Fv0.2.8/manifests"},{"name":"release-please-11843","sha":"7e600b964c1cae3ba47fc7d1d340a536723d18cb","kind":"commit","published_at":"2025-03-20T15:18:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11843","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11843","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11843","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11843/manifests"},{"name":"modelarmor/v0.1.0","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/modelarmor/v0.1.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/modelarmor/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/modelarmor%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/modelarmor%2Fv0.1.0/manifests"},{"name":"shopping/v0.18.0","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.18.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.18.0/manifests"},{"name":"workflows/v1.14.0","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/workflows/v1.14.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/workflows/v1.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.14.0/manifests"},{"name":"orchestration/v1.11.7","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orchestration/v1.11.7","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orchestration/v1.11.7","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.7/manifests"},{"name":"aiplatform/v1.78.0","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.78.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.78.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.78.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.78.0/manifests"},{"name":"dlp/v1.22.0","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dlp/v1.22.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dlp/v1.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dlp%2Fv1.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dlp%2Fv1.22.0/manifests"},{"name":"managedkafka/v0.5.0","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedkafka/v0.5.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedkafka/v0.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.5.0/manifests"},{"name":"oslogin/v1.14.5","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oslogin/v1.14.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oslogin/v1.14.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oslogin%2Fv1.14.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oslogin%2Fv1.14.5/manifests"},{"name":"compute/v1.35.0","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.35.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.35.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.35.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.35.0/manifests"},{"name":"alloydb/v1.15.0","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/alloydb/v1.15.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/alloydb/v1.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/alloydb%2Fv1.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/alloydb%2Fv1.15.0/manifests"},{"name":"oracledatabase/v0.3.0","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oracledatabase/v0.3.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oracledatabase/v0.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.3.0/manifests"},{"name":"networkmanagement/v1.18.2","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkmanagement/v1.18.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkmanagement/v1.18.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.18.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.18.2/manifests"},{"name":"datacatalog/v1.25.0","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datacatalog/v1.25.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datacatalog/v1.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.25.0/manifests"},{"name":"documentai/v1.36.0","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/documentai/v1.36.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/documentai/v1.36.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/documentai%2Fv1.36.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/documentai%2Fv1.36.0/manifests"},{"name":"release-please-11840","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11840","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11840","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11840","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11840/manifests"},{"name":"recaptchaenterprise/v2.20.2","sha":"31cd2720718549130beba36431b52fd1e17a62cd","kind":"commit","published_at":"2025-03-19T22:30:47.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.20.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.20.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.20.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.20.2/manifests"},{"name":"release-please-11667","sha":"aa91367ef8ddedb10f168f5919cb5be005e5884e","kind":"commit","published_at":"2025-03-14T19:48:50.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11667","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11667","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11667","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11667/manifests"},{"name":"bigquery/v1.67.0","sha":"aa91367ef8ddedb10f168f5919cb5be005e5884e","kind":"commit","published_at":"2025-03-14T19:48:50.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/bigquery/v1.67.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/bigquery/v1.67.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigquery%2Fv1.67.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigquery%2Fv1.67.0/manifests"},{"name":"config/v1.3.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/config/v1.3.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/config/v1.3.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/config%2Fv1.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/config%2Fv1.3.1/manifests"},{"name":"certificatemanager/v1.9.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/certificatemanager/v1.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/certificatemanager/v1.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/certificatemanager%2Fv1.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/certificatemanager%2Fv1.9.4/manifests"},{"name":"compute/v1.34.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.34.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.34.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.34.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.34.1/manifests"},{"name":"commerce/v1.2.3","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/commerce/v1.2.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/commerce/v1.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/commerce%2Fv1.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/commerce%2Fv1.2.3/manifests"},{"name":"channel/v1.19.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/channel/v1.19.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/channel/v1.19.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/channel%2Fv1.19.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/channel%2Fv1.19.4/manifests"},{"name":"binaryauthorization/v1.9.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/binaryauthorization/v1.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/binaryauthorization/v1.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/binaryauthorization%2Fv1.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/binaryauthorization%2Fv1.9.4/manifests"},{"name":"chat/v0.12.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/chat/v0.12.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/chat/v0.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.12.1/manifests"},{"name":"cloudbuild/v1.22.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudbuild/v1.22.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudbuild/v1.22.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.22.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.22.1/manifests"},{"name":"cloudcontrolspartner/v1.3.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudcontrolspartner/v1.3.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudcontrolspartner/v1.3.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudcontrolspartner%2Fv1.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudcontrolspartner%2Fv1.3.1/manifests"},{"name":"cloudquotas/v1.3.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudquotas/v1.3.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudquotas/v1.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.3.2/manifests"},{"name":"container/v1.42.3","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/container/v1.42.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/container/v1.42.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/container%2Fv1.42.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/container%2Fv1.42.3/manifests"},{"name":"cloudprofiler/v0.4.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudprofiler/v0.4.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudprofiler/v0.4.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudprofiler%2Fv0.4.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudprofiler%2Fv0.4.4/manifests"},{"name":"contactcenterinsights/v1.17.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/contactcenterinsights/v1.17.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/contactcenterinsights/v1.17.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/contactcenterinsights%2Fv1.17.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/contactcenterinsights%2Fv1.17.2/manifests"},{"name":"billing/v1.20.3","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/billing/v1.20.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/billing/v1.20.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/billing%2Fv1.20.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/billing%2Fv1.20.3/manifests"},{"name":"dataform/v0.11.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataform/v0.11.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataform/v0.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataform%2Fv0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataform%2Fv0.11.1/manifests"},{"name":"dataproc/v2.11.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataproc/v2.11.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataproc/v2.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataproc%2Fv2.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataproc%2Fv2.11.1/manifests"},{"name":"dataflow/v0.10.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataflow/v0.10.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataflow/v0.10.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataflow%2Fv0.10.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataflow%2Fv0.10.5/manifests"},{"name":"dialogflow/v1.68.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.68.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.68.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.68.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.68.1/manifests"},{"name":"developerconnect/v0.3.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/developerconnect/v0.3.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/developerconnect/v0.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/developerconnect%2Fv0.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/developerconnect%2Fv0.3.2/manifests"},{"name":"domains/v0.10.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/domains/v0.10.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/domains/v0.10.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/domains%2Fv0.10.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/domains%2Fv0.10.5/manifests"},{"name":"datacatalog/v1.24.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datacatalog/v1.24.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datacatalog/v1.24.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.24.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.24.5/manifests"},{"name":"essentialcontacts/v1.7.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/essentialcontacts/v1.7.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/essentialcontacts/v1.7.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/essentialcontacts%2Fv1.7.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/essentialcontacts%2Fv1.7.5/manifests"},{"name":"edgenetwork/v1.2.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/edgenetwork/v1.2.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/edgenetwork/v1.2.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgenetwork%2Fv1.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgenetwork%2Fv1.2.4/manifests"},{"name":"edgecontainer/v1.4.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/edgecontainer/v1.4.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/edgecontainer/v1.4.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgecontainer%2Fv1.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgecontainer%2Fv1.4.2/manifests"},{"name":"containeranalysis/v0.13.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/containeranalysis/v0.13.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/containeranalysis/v0.13.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/containeranalysis%2Fv0.13.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/containeranalysis%2Fv0.13.4/manifests"},{"name":"eventarc/v1.15.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/eventarc/v1.15.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/eventarc/v1.15.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.15.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.15.4/manifests"},{"name":"beyondcorp/v1.1.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/beyondcorp/v1.1.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/beyondcorp/v1.1.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/beyondcorp%2Fv1.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/beyondcorp%2Fv1.1.5/manifests"},{"name":"gkeconnect/v0.12.3","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkeconnect/v0.12.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkeconnect/v0.12.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkeconnect%2Fv0.12.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkeconnect%2Fv0.12.3/manifests"},{"name":"gkebackup/v1.6.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkebackup/v1.6.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkebackup/v1.6.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkebackup%2Fv1.6.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkebackup%2Fv1.6.4/manifests"},{"name":"gsuiteaddons/v1.7.6","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gsuiteaddons/v1.7.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gsuiteaddons/v1.7.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gsuiteaddons%2Fv1.7.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gsuiteaddons%2Fv1.7.6/manifests"},{"name":"financialservices/v0.1.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/financialservices/v0.1.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/financialservices/v0.1.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/financialservices%2Fv0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/financialservices%2Fv0.1.1/manifests"},{"name":"managedkafka/v0.4.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedkafka/v0.4.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedkafka/v0.4.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.4.2/manifests"},{"name":"ids/v1.5.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/ids/v1.5.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/ids/v1.5.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ids%2Fv1.5.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ids%2Fv1.5.5/manifests"},{"name":"functions/v1.19.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/functions/v1.19.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/functions/v1.19.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/functions%2Fv1.19.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/functions%2Fv1.19.4/manifests"},{"name":"backupdr/v1.3.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/backupdr/v1.3.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/backupdr/v1.3.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/backupdr%2Fv1.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/backupdr%2Fv1.3.1/manifests"},{"name":"asset/v1.20.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/asset/v1.20.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/asset/v1.20.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/asset%2Fv1.20.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/asset%2Fv1.20.5/manifests"},{"name":"filestore/v1.10.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/filestore/v1.10.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/filestore/v1.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/filestore%2Fv1.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/filestore%2Fv1.10.1/manifests"},{"name":"artifactregistry/v1.16.3","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/artifactregistry/v1.16.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/artifactregistry/v1.16.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.16.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.16.3/manifests"},{"name":"area120/v0.9.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/area120/v0.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/area120/v0.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/area120%2Fv0.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/area120%2Fv0.9.5/manifests"},{"name":"maps/v1.20.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/maps/v1.20.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/maps/v1.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.20.1/manifests"},{"name":"longrunning/v0.6.6","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/longrunning/v0.6.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/longrunning/v0.6.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/longrunning%2Fv0.6.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/longrunning%2Fv0.6.6/manifests"},{"name":"optimization/v1.7.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/optimization/v1.7.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/optimization/v1.7.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/optimization%2Fv1.7.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/optimization%2Fv1.7.5/manifests"},{"name":"memcache/v1.11.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/memcache/v1.11.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/memcache/v1.11.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memcache%2Fv1.11.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memcache%2Fv1.11.5/manifests"},{"name":"notebooks/v1.12.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/notebooks/v1.12.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/notebooks/v1.12.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/notebooks%2Fv1.12.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/notebooks%2Fv1.12.5/manifests"},{"name":"networkservices/v0.2.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkservices/v0.2.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkservices/v0.2.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkservices%2Fv0.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkservices%2Fv0.2.4/manifests"},{"name":"networksecurity/v0.10.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networksecurity/v0.10.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networksecurity/v0.10.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networksecurity%2Fv0.10.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networksecurity%2Fv0.10.5/manifests"},{"name":"dlp/v1.21.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dlp/v1.21.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dlp/v1.21.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dlp%2Fv1.21.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dlp%2Fv1.21.1/manifests"},{"name":"mediatranslation/v0.9.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/mediatranslation/v0.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/mediatranslation/v0.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/mediatranslation%2Fv0.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/mediatranslation%2Fv0.9.5/manifests"},{"name":"appengine/v1.9.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/appengine/v1.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/appengine/v1.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/appengine%2Fv1.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/appengine%2Fv1.9.5/manifests"},{"name":"networkmanagement/v1.18.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkmanagement/v1.18.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkmanagement/v1.18.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.18.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.18.1/manifests"},{"name":"parametermanager/v0.1.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parametermanager/v0.1.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parametermanager/v0.1.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parametermanager%2Fv0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parametermanager%2Fv0.1.1/manifests"},{"name":"parallelstore/v0.10.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parallelstore/v0.10.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parallelstore/v0.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.10.1/manifests"},{"name":"recommender/v1.13.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recommender/v1.13.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recommender/v1.13.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommender%2Fv1.13.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommender%2Fv1.13.4/manifests"},{"name":"redis/v1.18.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/redis/v1.18.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/redis/v1.18.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/redis%2Fv1.18.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/redis%2Fv1.18.1/manifests"},{"name":"recaptchaenterprise/v2.20.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.20.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.20.1/manifests"},{"name":"secretmanager/v1.14.6","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/secretmanager/v1.14.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/secretmanager/v1.14.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/secretmanager%2Fv1.14.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/secretmanager%2Fv1.14.6/manifests"},{"name":"resourcemanager/v1.10.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/resourcemanager/v1.10.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/resourcemanager/v1.10.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcemanager%2Fv1.10.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcemanager%2Fv1.10.5/manifests"},{"name":"securesourcemanager/v1.3.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securesourcemanager/v1.3.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securesourcemanager/v1.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securesourcemanager%2Fv1.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securesourcemanager%2Fv1.3.2/manifests"},{"name":"kms/v1.21.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/kms/v1.21.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/kms/v1.21.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.21.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.21.1/manifests"},{"name":"networkconnectivity/v1.16.3","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkconnectivity/v1.16.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkconnectivity/v1.16.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.16.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.16.3/manifests"},{"name":"securitycentermanagement/v1.1.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securitycentermanagement/v1.1.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securitycentermanagement/v1.1.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycentermanagement%2Fv1.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycentermanagement%2Fv1.1.4/manifests"},{"name":"policysimulator/v0.3.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/policysimulator/v0.3.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/policysimulator/v0.3.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policysimulator%2Fv0.3.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policysimulator%2Fv0.3.5/manifests"},{"name":"iot/v1.8.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iot/v1.8.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iot/v1.8.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iot%2Fv1.8.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iot%2Fv1.8.5/manifests"},{"name":"speech/v1.26.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/speech/v1.26.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/speech/v1.26.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/speech%2Fv1.26.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/speech%2Fv1.26.1/manifests"},{"name":"gkehub/v0.15.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkehub/v0.15.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkehub/v0.15.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkehub%2Fv0.15.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkehub%2Fv0.15.5/manifests"},{"name":"support/v1.1.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/support/v1.1.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/support/v1.1.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/support%2Fv1.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/support%2Fv1.1.5/manifests"},{"name":"servicedirectory/v1.12.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicedirectory/v1.12.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicedirectory/v1.12.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicedirectory%2Fv1.12.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicedirectory%2Fv1.12.5/manifests"},{"name":"orgpolicy/v1.14.3","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orgpolicy/v1.14.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orgpolicy/v1.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orgpolicy%2Fv1.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orgpolicy%2Fv1.14.3/manifests"},{"name":"grafeas/v0.3.15","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/grafeas/v0.3.15","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/grafeas/v0.3.15","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/grafeas%2Fv0.3.15","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/grafeas%2Fv0.3.15/manifests"},{"name":"clouddms/v1.8.6","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/clouddms/v1.8.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/clouddms/v1.8.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/clouddms%2Fv1.8.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/clouddms%2Fv1.8.6/manifests"},{"name":"telcoautomation/v1.1.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/telcoautomation/v1.1.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/telcoautomation/v1.1.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/telcoautomation%2Fv1.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/telcoautomation%2Fv1.1.4/manifests"},{"name":"texttospeech/v1.11.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/texttospeech/v1.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/texttospeech/v1.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.11.2/manifests"},{"name":"apps/v0.7.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apps/v0.7.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apps/v0.7.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apps%2Fv0.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apps%2Fv0.7.1/manifests"},{"name":"workstations/v1.1.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/workstations/v1.1.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/workstations/v1.1.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workstations%2Fv1.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workstations%2Fv1.1.4/manifests"},{"name":"visionai/v0.4.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/visionai/v0.4.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/visionai/v0.4.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/visionai%2Fv0.4.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/visionai%2Fv0.4.4/manifests"},{"name":"workflows/v1.13.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/workflows/v1.13.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/workflows/v1.13.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.13.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.13.5/manifests"},{"name":"netapp/v1.7.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/netapp/v1.7.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/netapp/v1.7.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.7.1/manifests"},{"name":"iam/v1.4.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iam/v1.4.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iam/v1.4.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.4.2/manifests"},{"name":"dataqna/v0.9.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataqna/v0.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataqna/v0.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataqna%2Fv0.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataqna%2Fv0.9.5/manifests"},{"name":"deploy/v1.26.3","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/deploy/v1.26.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/deploy/v1.26.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.26.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.26.3/manifests"},{"name":"discoveryengine/v1.16.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/discoveryengine/v1.16.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/discoveryengine/v1.16.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/discoveryengine%2Fv1.16.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/discoveryengine%2Fv1.16.2/manifests"},{"name":"recommendationengine/v0.9.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recommendationengine/v0.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recommendationengine/v0.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommendationengine%2Fv0.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommendationengine%2Fv0.9.5/manifests"},{"name":"dataplex/v1.23.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataplex/v1.23.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataplex/v1.23.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.23.1/manifests"},{"name":"policytroubleshooter/v1.11.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/policytroubleshooter/v1.11.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/policytroubleshooter/v1.11.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policytroubleshooter%2Fv1.11.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policytroubleshooter%2Fv1.11.5/manifests"},{"name":"oslogin/v1.14.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oslogin/v1.14.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oslogin/v1.14.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oslogin%2Fv1.14.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oslogin%2Fv1.14.4/manifests"},{"name":"phishingprotection/v0.9.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/phishingprotection/v0.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/phishingprotection/v0.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/phishingprotection%2Fv0.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/phishingprotection%2Fv0.9.5/manifests"},{"name":"documentai/v1.35.3","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/documentai/v1.35.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/documentai/v1.35.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/documentai%2Fv1.35.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/documentai%2Fv1.35.3/manifests"},{"name":"privatecatalog/v0.10.6","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/privatecatalog/v0.10.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/privatecatalog/v0.10.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privatecatalog%2Fv0.10.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privatecatalog%2Fv0.10.6/manifests"},{"name":"memorystore/v0.2.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/memorystore/v0.2.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/memorystore/v0.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memorystore%2Fv0.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memorystore%2Fv0.2.1/manifests"},{"name":"datafusion/v1.8.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datafusion/v1.8.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datafusion/v1.8.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datafusion%2Fv1.8.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datafusion%2Fv1.8.5/manifests"},{"name":"securitycenter/v1.36.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securitycenter/v1.36.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securitycenter/v1.36.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycenter%2Fv1.36.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycenter%2Fv1.36.1/manifests"},{"name":"retail/v1.19.3","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/retail/v1.19.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/retail/v1.19.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/retail%2Fv1.19.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/retail%2Fv1.19.3/manifests"},{"name":"orchestration/v1.11.6","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orchestration/v1.11.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orchestration/v1.11.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.6/manifests"},{"name":"scheduler/v1.11.6","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/scheduler/v1.11.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/scheduler/v1.11.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/scheduler%2Fv1.11.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/scheduler%2Fv1.11.6/manifests"},{"name":"run/v1.9.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/run/v1.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/run/v1.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.9.2/manifests"},{"name":"batch/v1.12.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/batch/v1.12.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/batch/v1.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.12.1/manifests"},{"name":"baremetalsolution/v1.3.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/baremetalsolution/v1.3.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/baremetalsolution/v1.3.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/baremetalsolution%2Fv1.3.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/baremetalsolution%2Fv1.3.5/manifests"},{"name":"managedidentities/v1.7.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedidentities/v1.7.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedidentities/v1.7.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedidentities%2Fv1.7.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedidentities%2Fv1.7.5/manifests"},{"name":"securityposture/v0.2.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securityposture/v0.2.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securityposture/v0.2.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securityposture%2Fv0.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securityposture%2Fv0.2.4/manifests"},{"name":"language/v1.14.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/language/v1.14.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/language/v1.14.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/language%2Fv1.14.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/language%2Fv1.14.4/manifests"},{"name":"accesscontextmanager/v1.9.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/accesscontextmanager/v1.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/accesscontextmanager/v1.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accesscontextmanager%2Fv1.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accesscontextmanager%2Fv1.9.5/manifests"},{"name":"websecurityscanner/v1.7.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/websecurityscanner/v1.7.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/websecurityscanner/v1.7.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/websecurityscanner%2Fv1.7.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/websecurityscanner%2Fv1.7.5/manifests"},{"name":"vmwareengine/v1.3.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vmwareengine/v1.3.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vmwareengine/v1.3.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmwareengine%2Fv1.3.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmwareengine%2Fv1.3.4/manifests"},{"name":"accessapproval/v1.8.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/accessapproval/v1.8.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/accessapproval/v1.8.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accessapproval%2Fv1.8.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accessapproval%2Fv1.8.5/manifests"},{"name":"video/v1.23.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/video/v1.23.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/video/v1.23.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/video%2Fv1.23.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/video%2Fv1.23.4/manifests"},{"name":"tpu/v1.8.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/tpu/v1.8.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/tpu/v1.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/tpu%2Fv1.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/tpu%2Fv1.8.2/manifests"},{"name":"apphub/v0.2.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apphub/v0.2.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apphub/v0.2.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apphub%2Fv0.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apphub%2Fv0.2.4/manifests"},{"name":"lifesciences/v0.10.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/lifesciences/v0.10.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/lifesciences/v0.10.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/lifesciences%2Fv0.10.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/lifesciences%2Fv0.10.5/manifests"},{"name":"iap/v1.10.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iap/v1.10.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iap/v1.10.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iap%2Fv1.10.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iap%2Fv1.10.5/manifests"},{"name":"assuredworkloads/v1.12.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/assuredworkloads/v1.12.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/assuredworkloads/v1.12.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/assuredworkloads%2Fv1.12.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/assuredworkloads%2Fv1.12.5/manifests"},{"name":"identitytoolkit/v0.2.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/identitytoolkit/v0.2.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/identitytoolkit/v0.2.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/identitytoolkit%2Fv0.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/identitytoolkit%2Fv0.2.4/manifests"},{"name":"cloudtasks/v1.13.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudtasks/v1.13.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudtasks/v1.13.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudtasks%2Fv1.13.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudtasks%2Fv1.13.5/manifests"},{"name":"servicemanagement/v1.10.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicemanagement/v1.10.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicemanagement/v1.10.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicemanagement%2Fv1.10.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicemanagement%2Fv1.10.5/manifests"},{"name":"gkemulticloud/v1.5.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkemulticloud/v1.5.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkemulticloud/v1.5.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkemulticloud%2Fv1.5.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkemulticloud%2Fv1.5.2/manifests"},{"name":"analytics/v0.27.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/analytics/v0.27.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/analytics/v0.27.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.27.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.27.1/manifests"},{"name":"alloydb/v1.14.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/alloydb/v1.14.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/alloydb/v1.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/alloydb%2Fv1.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/alloydb%2Fv1.14.2/manifests"},{"name":"aiplatform/v1.77.0","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.77.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.77.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.77.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.77.0/manifests"},{"name":"servicecontrol/v1.14.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicecontrol/v1.14.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicecontrol/v1.14.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicecontrol%2Fv1.14.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicecontrol%2Fv1.14.4/manifests"},{"name":"privilegedaccessmanager/v0.2.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/privilegedaccessmanager/v0.2.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/privilegedaccessmanager/v0.2.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privilegedaccessmanager%2Fv0.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privilegedaccessmanager%2Fv0.2.4/manifests"},{"name":"ai/v0.10.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/ai/v0.10.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/ai/v0.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ai%2Fv0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ai%2Fv0.10.1/manifests"},{"name":"security/v1.18.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/security/v1.18.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/security/v1.18.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/security%2Fv1.18.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/security%2Fv1.18.4/manifests"},{"name":"rapidmigrationassessment/v1.1.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/rapidmigrationassessment/v1.1.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/rapidmigrationassessment/v1.1.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/rapidmigrationassessment%2Fv1.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/rapidmigrationassessment%2Fv1.1.5/manifests"},{"name":"apigeeconnect/v1.7.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigeeconnect/v1.7.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigeeconnect/v1.7.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeconnect%2Fv1.7.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeconnect%2Fv1.7.5/manifests"},{"name":"confidentialcomputing/v1.9.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/confidentialcomputing/v1.9.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/confidentialcomputing/v1.9.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/confidentialcomputing%2Fv1.9.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/confidentialcomputing%2Fv1.9.1/manifests"},{"name":"release-please-11822","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11822","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11822","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11822","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11822/manifests"},{"name":"advisorynotifications/v1.5.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/advisorynotifications/v1.5.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/advisorynotifications/v1.5.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/advisorynotifications%2Fv1.5.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/advisorynotifications%2Fv1.5.4/manifests"},{"name":"apigateway/v1.7.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigateway/v1.7.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigateway/v1.7.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigateway%2Fv1.7.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigateway%2Fv1.7.5/manifests"},{"name":"metastore/v1.14.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/metastore/v1.14.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/metastore/v1.14.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/metastore%2Fv1.14.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/metastore%2Fv1.14.5/manifests"},{"name":"vpcaccess/v1.8.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vpcaccess/v1.8.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vpcaccess/v1.8.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vpcaccess%2Fv1.8.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vpcaccess%2Fv1.8.5/manifests"},{"name":"webrisk/v1.10.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/webrisk/v1.10.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/webrisk/v1.10.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/webrisk%2Fv1.10.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/webrisk%2Fv1.10.5/manifests"},{"name":"monitoring/v1.24.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/monitoring/v1.24.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/monitoring/v1.24.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.24.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.24.1/manifests"},{"name":"vision/v2.9.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vision/v2.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vision/v2.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vision%2Fv2.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vision%2Fv2.9.4/manifests"},{"name":"oracledatabase/v0.2.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oracledatabase/v0.2.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oracledatabase/v0.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.2.1/manifests"},{"name":"vmmigration/v1.8.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vmmigration/v1.8.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vmmigration/v1.8.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmmigration%2Fv1.8.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmmigration%2Fv1.8.5/manifests"},{"name":"videointelligence/v1.12.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/videointelligence/v1.12.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/videointelligence/v1.12.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/videointelligence%2Fv1.12.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/videointelligence%2Fv1.12.5/manifests"},{"name":"apikeys/v1.2.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apikeys/v1.2.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apikeys/v1.2.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apikeys%2Fv1.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apikeys%2Fv1.2.5/manifests"},{"name":"apihub/v0.1.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apihub/v0.1.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apihub/v0.1.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apihub%2Fv0.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apihub%2Fv0.1.4/manifests"},{"name":"automl/v1.14.6","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/automl/v1.14.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/automl/v1.14.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/automl%2Fv1.14.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/automl%2Fv1.14.6/manifests"},{"name":"migrationcenter/v1.1.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/migrationcenter/v1.1.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/migrationcenter/v1.1.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/migrationcenter%2Fv1.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/migrationcenter%2Fv1.1.4/manifests"},{"name":"trace/v1.11.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/trace/v1.11.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/trace/v1.11.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/trace%2Fv1.11.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/trace%2Fv1.11.5/manifests"},{"name":"servicehealth/v1.2.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicehealth/v1.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicehealth/v1.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicehealth%2Fv1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicehealth%2Fv1.2.2/manifests"},{"name":"streetview/v0.2.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/streetview/v0.2.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/streetview/v0.2.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/streetview%2Fv0.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/streetview%2Fv0.2.4/manifests"},{"name":"translate/v1.12.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/translate/v1.12.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/translate/v1.12.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/translate%2Fv1.12.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/translate%2Fv1.12.4/manifests"},{"name":"talent/v1.8.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/talent/v1.8.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/talent/v1.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/talent%2Fv1.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/talent%2Fv1.8.2/manifests"},{"name":"datalabeling/v0.9.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datalabeling/v0.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datalabeling/v0.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datalabeling%2Fv0.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datalabeling%2Fv0.9.5/manifests"},{"name":"datastream/v1.13.2","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datastream/v1.13.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datastream/v1.13.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.13.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.13.2/manifests"},{"name":"storagetransfer/v1.12.3","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storagetransfer/v1.12.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storagetransfer/v1.12.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storagetransfer%2Fv1.12.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storagetransfer%2Fv1.12.3/manifests"},{"name":"storageinsights/v1.1.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storageinsights/v1.1.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storageinsights/v1.1.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storageinsights%2Fv1.1.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storageinsights%2Fv1.1.5/manifests"},{"name":"shell/v1.8.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shell/v1.8.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shell/v1.8.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shell%2Fv1.8.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shell%2Fv1.8.5/manifests"},{"name":"serviceusage/v1.9.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/serviceusage/v1.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/serviceusage/v1.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/serviceusage%2Fv1.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/serviceusage%2Fv1.9.5/manifests"},{"name":"osconfig/v1.14.4","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/osconfig/v1.14.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/osconfig/v1.14.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/osconfig%2Fv1.14.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/osconfig%2Fv1.14.4/manifests"},{"name":"apigeeregistry/v0.9.5","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigeeregistry/v0.9.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigeeregistry/v0.9.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeregistry%2Fv0.9.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeregistry%2Fv0.9.5/manifests"},{"name":"shopping/v0.17.1","sha":"ae796a07b934b5ee24e8fa77e1816cc11a6325d5","kind":"commit","published_at":"2025-03-13T22:16:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.17.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.17.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.17.1/manifests"},{"name":"pubsub/v1.48.0","sha":"481e25bef09b7b21c90f7bc4adf3f4c8afc56e75","kind":"commit","published_at":"2025-03-13T01:11:40.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/pubsub/v1.48.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/pubsub/v1.48.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.48.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.48.0/manifests"},{"name":"release-please-11813","sha":"481e25bef09b7b21c90f7bc4adf3f4c8afc56e75","kind":"commit","published_at":"2025-03-13T01:11:40.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11813","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11813","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11813","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11813/manifests"},{"name":"storage/v1.51.0","sha":"640be05c744a8bd8f1a3e4ee0673409d707aa098","kind":"commit","published_at":"2025-03-12T21:31:11.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storage/v1.51.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storage/v1.51.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.51.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.51.0/manifests"},{"name":"analytics/v0.27.0","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/analytics/v0.27.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/analytics/v0.27.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.27.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.27.0/manifests"},{"name":"datacatalog/v1.24.4","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datacatalog/v1.24.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datacatalog/v1.24.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.24.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.24.4/manifests"},{"name":"cloudquotas/v1.3.1","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudquotas/v1.3.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudquotas/v1.3.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.3.1/manifests"},{"name":"chat/v0.12.0","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/chat/v0.12.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/chat/v0.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.12.0/manifests"},{"name":"dialogflow/v1.68.0","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.68.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.68.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.68.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.68.0/manifests"},{"name":"eventarc/v1.15.3","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/eventarc/v1.15.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/eventarc/v1.15.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.15.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.15.3/manifests"},{"name":"financialservices/v0.1.0","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/financialservices/v0.1.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/financialservices/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/financialservices%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/financialservices%2Fv0.1.0/manifests"},{"name":"release-please-11782","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11782","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11782","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11782","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11782/manifests"},{"name":"filestore/v1.10.0","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/filestore/v1.10.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/filestore/v1.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/filestore%2Fv1.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/filestore%2Fv1.10.0/manifests"},{"name":"shopping/v0.17.0","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.17.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.17.0/manifests"},{"name":"recaptchaenterprise/v2.20.0","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.20.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.20.0/manifests"},{"name":"orchestration/v1.11.5","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orchestration/v1.11.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orchestration/v1.11.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.5/manifests"},{"name":"aiplatform/v1.76.0","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.76.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.76.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.76.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.76.0/manifests"},{"name":"maps/v1.20.0","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/maps/v1.20.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/maps/v1.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.20.0/manifests"},{"name":"dataplex/v1.23.0","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataplex/v1.23.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataplex/v1.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.23.0/manifests"},{"name":"managedkafka/v0.4.1","sha":"7eaae0f5561cfafe73bcef8e7fecefc4e5742413","kind":"commit","published_at":"2025-03-12T21:07:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedkafka/v0.4.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedkafka/v0.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.4.1/manifests"},{"name":"v0.119.0","sha":"0f89fe22a2fb24a3355ca57a2e987d8bfcfc1054","kind":"commit","published_at":"2025-03-11T19:11:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/v0.119.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/v0.119.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.119.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.119.0/manifests"},{"name":"release-please-11783","sha":"0f89fe22a2fb24a3355ca57a2e987d8bfcfc1054","kind":"commit","published_at":"2025-03-11T19:11:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/release-please-11783","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/release-please-11783","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11783","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/release-please-11783/manifests"},{"name":"accesscontextmanager/v1.9.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/accesscontextmanager/v1.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/accesscontextmanager/v1.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accesscontextmanager%2Fv1.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accesscontextmanager%2Fv1.9.4/manifests"},{"name":"artifactregistry/v1.16.2","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/artifactregistry/v1.16.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/artifactregistry/v1.16.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.16.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.16.2/manifests"},{"name":"accessapproval/v1.8.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/accessapproval/v1.8.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/accessapproval/v1.8.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accessapproval%2Fv1.8.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accessapproval%2Fv1.8.4/manifests"},{"name":"automl/v1.14.5","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/automl/v1.14.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/automl/v1.14.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/automl%2Fv1.14.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/automl%2Fv1.14.5/manifests"},{"name":"cloudtasks/v1.13.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudtasks/v1.13.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudtasks/v1.13.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudtasks%2Fv1.13.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudtasks%2Fv1.13.4/manifests"},{"name":"clouddms/v1.8.5","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/clouddms/v1.8.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/clouddms/v1.8.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/clouddms%2Fv1.8.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/clouddms%2Fv1.8.5/manifests"},{"name":"dataqna/v0.9.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataqna/v0.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataqna/v0.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataqna%2Fv0.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataqna%2Fv0.9.4/manifests"},{"name":"domains/v0.10.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/domains/v0.10.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/domains/v0.10.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/domains%2Fv0.10.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/domains%2Fv0.10.4/manifests"},{"name":"datalabeling/v0.9.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datalabeling/v0.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datalabeling/v0.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datalabeling%2Fv0.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datalabeling%2Fv0.9.4/manifests"},{"name":"datafusion/v1.8.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datafusion/v1.8.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datafusion/v1.8.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datafusion%2Fv1.8.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datafusion%2Fv1.8.4/manifests"},{"name":"assuredworkloads/v1.12.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/assuredworkloads/v1.12.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/assuredworkloads/v1.12.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/assuredworkloads%2Fv1.12.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/assuredworkloads%2Fv1.12.4/manifests"},{"name":"ids/v1.5.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/ids/v1.5.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/ids/v1.5.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ids%2Fv1.5.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ids%2Fv1.5.4/manifests"},{"name":"grafeas/v0.3.14","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/grafeas/v0.3.14","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/grafeas/v0.3.14","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/grafeas%2Fv0.3.14","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/grafeas%2Fv0.3.14/manifests"},{"name":"iot/v1.8.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iot/v1.8.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iot/v1.8.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iot%2Fv1.8.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iot%2Fv1.8.4/manifests"},{"name":"memcache/v1.11.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/memcache/v1.11.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/memcache/v1.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memcache%2Fv1.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memcache%2Fv1.11.4/manifests"},{"name":"mediatranslation/v0.9.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/mediatranslation/v0.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/mediatranslation/v0.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/mediatranslation%2Fv0.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/mediatranslation%2Fv0.9.4/manifests"},{"name":"gkehub/v0.15.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkehub/v0.15.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkehub/v0.15.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkehub%2Fv0.15.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkehub%2Fv0.15.4/manifests"},{"name":"policytroubleshooter/v1.11.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/policytroubleshooter/v1.11.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/policytroubleshooter/v1.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policytroubleshooter%2Fv1.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policytroubleshooter%2Fv1.11.4/manifests"},{"name":"phishingprotection/v0.9.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/phishingprotection/v0.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/phishingprotection/v0.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/phishingprotection%2Fv0.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/phishingprotection%2Fv0.9.4/manifests"},{"name":"gkeconnect/v0.12.2","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkeconnect/v0.12.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkeconnect/v0.12.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkeconnect%2Fv0.12.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkeconnect%2Fv0.12.2/manifests"},{"name":"eventarc/v1.15.2","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/eventarc/v1.15.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/eventarc/v1.15.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.15.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.15.2/manifests"},{"name":"essentialcontacts/v1.7.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/essentialcontacts/v1.7.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/essentialcontacts/v1.7.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/essentialcontacts%2Fv1.7.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/essentialcontacts%2Fv1.7.4/manifests"},{"name":"run/v1.9.1","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/run/v1.9.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/run/v1.9.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.9.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.9.1/manifests"},{"name":"scheduler/v1.11.5","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/scheduler/v1.11.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/scheduler/v1.11.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/scheduler%2Fv1.11.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/scheduler%2Fv1.11.5/manifests"},{"name":"rapidmigrationassessment/v1.1.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/rapidmigrationassessment/v1.1.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/rapidmigrationassessment/v1.1.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/rapidmigrationassessment%2Fv1.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/rapidmigrationassessment%2Fv1.1.4/manifests"},{"name":"recommendationengine/v0.9.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recommendationengine/v0.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recommendationengine/v0.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommendationengine%2Fv0.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommendationengine%2Fv0.9.4/manifests"},{"name":"resourcemanager/v1.10.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/resourcemanager/v1.10.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/resourcemanager/v1.10.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcemanager%2Fv1.10.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcemanager%2Fv1.10.4/manifests"},{"name":"servicemanagement/v1.10.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicemanagement/v1.10.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicemanagement/v1.10.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicemanagement%2Fv1.10.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicemanagement%2Fv1.10.4/manifests"},{"name":"serviceusage/v1.9.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/serviceusage/v1.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/serviceusage/v1.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/serviceusage%2Fv1.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/serviceusage%2Fv1.9.4/manifests"},{"name":"servicedirectory/v1.12.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicedirectory/v1.12.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicedirectory/v1.12.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicedirectory%2Fv1.12.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicedirectory%2Fv1.12.4/manifests"},{"name":"privatecatalog/v0.10.5","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/privatecatalog/v0.10.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/privatecatalog/v0.10.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privatecatalog%2Fv0.10.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privatecatalog%2Fv0.10.5/manifests"},{"name":"apigeeregistry/v0.9.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigeeregistry/v0.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigeeregistry/v0.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeregistry%2Fv0.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeregistry%2Fv0.9.4/manifests"},{"name":"aiplatform/v1.75.0","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.75.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.75.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.75.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.75.0/manifests"},{"name":"storagetransfer/v1.12.2","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storagetransfer/v1.12.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storagetransfer/v1.12.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storagetransfer%2Fv1.12.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storagetransfer%2Fv1.12.2/manifests"},{"name":"managedidentities/v1.7.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedidentities/v1.7.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedidentities/v1.7.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedidentities%2Fv1.7.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedidentities%2Fv1.7.4/manifests"},{"name":"policysimulator/v0.3.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/policysimulator/v0.3.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/policysimulator/v0.3.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policysimulator%2Fv0.3.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policysimulator%2Fv0.3.4/manifests"},{"name":"support/v1.1.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/support/v1.1.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/support/v1.1.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/support%2Fv1.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/support%2Fv1.1.4/manifests"},{"name":"talent/v1.8.1","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/talent/v1.8.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/talent/v1.8.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/talent%2Fv1.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/talent%2Fv1.8.1/manifests"},{"name":"optimization/v1.7.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/optimization/v1.7.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/optimization/v1.7.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/optimization%2Fv1.7.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/optimization%2Fv1.7.4/manifests"},{"name":"metastore/v1.14.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/metastore/v1.14.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/metastore/v1.14.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/metastore%2Fv1.14.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/metastore%2Fv1.14.4/manifests"},{"name":"networkconnectivity/v1.16.2","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkconnectivity/v1.16.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkconnectivity/v1.16.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.16.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.16.2/manifests"},{"name":"notebooks/v1.12.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/notebooks/v1.12.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/notebooks/v1.12.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/notebooks%2Fv1.12.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/notebooks%2Fv1.12.4/manifests"},{"name":"trace/v1.11.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/trace/v1.11.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/trace/v1.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/trace%2Fv1.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/trace%2Fv1.11.4/manifests"},{"name":"tpu/v1.8.1","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/tpu/v1.8.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/tpu/v1.8.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/tpu%2Fv1.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/tpu%2Fv1.8.1/manifests"},{"name":"texttospeech/v1.11.1","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/texttospeech/v1.11.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/texttospeech/v1.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.11.1/manifests"},{"name":"lifesciences/v0.10.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/lifesciences/v0.10.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/lifesciences/v0.10.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/lifesciences%2Fv0.10.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/lifesciences%2Fv0.10.4/manifests"},{"name":"networksecurity/v0.10.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networksecurity/v0.10.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networksecurity/v0.10.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networksecurity%2Fv0.10.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networksecurity%2Fv0.10.4/manifests"},{"name":"iap/v1.10.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iap/v1.10.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iap/v1.10.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iap%2Fv1.10.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iap%2Fv1.10.4/manifests"},{"name":"websecurityscanner/v1.7.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/websecurityscanner/v1.7.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/websecurityscanner/v1.7.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/websecurityscanner%2Fv1.7.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/websecurityscanner%2Fv1.7.4/manifests"},{"name":"iam/v1.4.1","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iam/v1.4.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iam/v1.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.4.1/manifests"},{"name":"webrisk/v1.10.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/webrisk/v1.10.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/webrisk/v1.10.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/webrisk%2Fv1.10.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/webrisk%2Fv1.10.4/manifests"},{"name":"gsuiteaddons/v1.7.5","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gsuiteaddons/v1.7.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gsuiteaddons/v1.7.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gsuiteaddons%2Fv1.7.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gsuiteaddons%2Fv1.7.5/manifests"},{"name":"vpcaccess/v1.8.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vpcaccess/v1.8.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vpcaccess/v1.8.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vpcaccess%2Fv1.8.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vpcaccess%2Fv1.8.4/manifests"},{"name":"shell/v1.8.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shell/v1.8.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shell/v1.8.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shell%2Fv1.8.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shell%2Fv1.8.4/manifests"},{"name":"workflows/v1.13.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/workflows/v1.13.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/workflows/v1.13.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.13.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.13.4/manifests"},{"name":"vmmigration/v1.8.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vmmigration/v1.8.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vmmigration/v1.8.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmmigration%2Fv1.8.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmmigration%2Fv1.8.4/manifests"},{"name":"datastream/v1.13.1","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datastream/v1.13.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datastream/v1.13.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.13.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.13.1/manifests"},{"name":"dialogflow/v1.67.0","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.67.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.67.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.67.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.67.0/manifests"},{"name":"storageinsights/v1.1.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storageinsights/v1.1.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storageinsights/v1.1.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storageinsights%2Fv1.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storageinsights%2Fv1.1.4/manifests"},{"name":"longrunning/v0.6.5","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/longrunning/v0.6.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/longrunning/v0.6.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/longrunning%2Fv0.6.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/longrunning%2Fv0.6.5/manifests"},{"name":"beyondcorp/v1.1.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/beyondcorp/v1.1.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/beyondcorp/v1.1.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/beyondcorp%2Fv1.1.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/beyondcorp%2Fv1.1.4/manifests"},{"name":"baremetalsolution/v1.3.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/baremetalsolution/v1.3.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/baremetalsolution/v1.3.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/baremetalsolution%2Fv1.3.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/baremetalsolution%2Fv1.3.4/manifests"},{"name":"area120/v0.9.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/area120/v0.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/area120/v0.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/area120%2Fv0.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/area120%2Fv0.9.4/manifests"},{"name":"channel/v1.19.3","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/channel/v1.19.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/channel/v1.19.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/channel%2Fv1.19.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/channel%2Fv1.19.3/manifests"},{"name":"appengine/v1.9.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/appengine/v1.9.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/appengine/v1.9.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/appengine%2Fv1.9.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/appengine%2Fv1.9.4/manifests"},{"name":"apikeys/v1.2.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apikeys/v1.2.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apikeys/v1.2.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apikeys%2Fv1.2.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apikeys%2Fv1.2.4/manifests"},{"name":"dataflow/v0.10.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataflow/v0.10.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataflow/v0.10.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataflow%2Fv0.10.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataflow%2Fv0.10.4/manifests"},{"name":"apigateway/v1.7.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigateway/v1.7.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigateway/v1.7.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigateway%2Fv1.7.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigateway%2Fv1.7.4/manifests"},{"name":"dataform/v0.11.0","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataform/v0.11.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataform/v0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataform%2Fv0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataform%2Fv0.11.0/manifests"},{"name":"videointelligence/v1.12.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/videointelligence/v1.12.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/videointelligence/v1.12.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/videointelligence%2Fv1.12.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/videointelligence%2Fv1.12.4/manifests"},{"name":"apigeeconnect/v1.7.4","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigeeconnect/v1.7.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigeeconnect/v1.7.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeconnect%2Fv1.7.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeconnect%2Fv1.7.4/manifests"},{"name":"billing/v1.20.2","sha":"ad0414e2769269ea15aaa4635b7bed5ebabefc62","kind":"commit","published_at":"2025-03-06T22:22:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/billing/v1.20.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/billing/v1.20.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/billing%2Fv1.20.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/billing%2Fv1.20.2/manifests"},{"name":"spanner/v1.77.0","sha":"7cd251203fc35859882ecda532b7debaff378374","kind":"commit","published_at":"2025-03-06T08:33:44.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/spanner/v1.77.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/spanner/v1.77.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.77.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.77.0/manifests"},{"name":"dialogflow/v1.66.0","sha":"9e508d066bdaa7e41c251fa0ba7eb9b23587c3a0","kind":"commit","published_at":"2025-02-27T21:35:33.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.66.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.66.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.66.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.66.0/manifests"},{"name":"dataproc/v2.11.0","sha":"9e508d066bdaa7e41c251fa0ba7eb9b23587c3a0","kind":"commit","published_at":"2025-02-27T21:35:33.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataproc/v2.11.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataproc/v2.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataproc%2Fv2.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataproc%2Fv2.11.0/manifests"},{"name":"confidentialcomputing/v1.9.0","sha":"9e508d066bdaa7e41c251fa0ba7eb9b23587c3a0","kind":"commit","published_at":"2025-02-27T21:35:33.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/confidentialcomputing/v1.9.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/confidentialcomputing/v1.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/confidentialcomputing%2Fv1.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/confidentialcomputing%2Fv1.9.0/manifests"},{"name":"clouddms/v1.8.4","sha":"9e508d066bdaa7e41c251fa0ba7eb9b23587c3a0","kind":"commit","published_at":"2025-02-27T21:35:33.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/clouddms/v1.8.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/clouddms/v1.8.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/clouddms%2Fv1.8.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/clouddms%2Fv1.8.4/manifests"},{"name":"apps/v0.7.0","sha":"9e508d066bdaa7e41c251fa0ba7eb9b23587c3a0","kind":"commit","published_at":"2025-02-27T21:35:33.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apps/v0.7.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apps/v0.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apps%2Fv0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apps%2Fv0.7.0/manifests"},{"name":"aiplatform/v1.74.0","sha":"9e508d066bdaa7e41c251fa0ba7eb9b23587c3a0","kind":"commit","published_at":"2025-02-27T21:35:33.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.74.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.74.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.74.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.74.0/manifests"},{"name":"maps/v1.19.0","sha":"9e508d066bdaa7e41c251fa0ba7eb9b23587c3a0","kind":"commit","published_at":"2025-02-27T21:35:33.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/maps/v1.19.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/maps/v1.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.19.0/manifests"},{"name":"spanner/v1.76.1","sha":"e59ac00a0153d33e5d09e02a54606d3d6932c7fb","kind":"commit","published_at":"2025-02-21T08:22:15.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/spanner/v1.76.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/spanner/v1.76.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.76.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.76.1/manifests"},{"name":"chat/v0.11.0","sha":"93edc821d0e208f204c774a34e01e33e73e1745d","kind":"commit","published_at":"2025-02-20T19:40:33.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/chat/v0.11.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/chat/v0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.11.0/manifests"},{"name":"kms/v1.21.0","sha":"93edc821d0e208f204c774a34e01e33e73e1745d","kind":"commit","published_at":"2025-02-20T19:40:33.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/kms/v1.21.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/kms/v1.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.21.0/manifests"},{"name":"compute/v1.34.0","sha":"93edc821d0e208f204c774a34e01e33e73e1745d","kind":"commit","published_at":"2025-02-20T19:40:33.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.34.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.34.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.34.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.34.0/manifests"},{"name":"dlp/v1.21.0","sha":"93edc821d0e208f204c774a34e01e33e73e1745d","kind":"commit","published_at":"2025-02-20T19:40:33.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dlp/v1.21.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dlp/v1.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dlp%2Fv1.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dlp%2Fv1.21.0/manifests"},{"name":"v0.118.3","sha":"77c700f6dbe6618f042779d01f561c95a8b94ce2","kind":"commit","published_at":"2025-02-20T19:18:58.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/v0.118.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/v0.118.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.118.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.118.3/manifests"},{"name":"spanner/v1.76.0","sha":"243da70769b0ad6f401d11bfa637530823072eac","kind":"commit","published_at":"2025-02-20T18:26:10.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/spanner/v1.76.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/spanner/v1.76.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.76.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.76.0/manifests"},{"name":"auth/v0.15.0","sha":"f2d581c90e64dd7589b94178750e53f9edce661f","kind":"commit","published_at":"2025-02-20T16:54:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.15.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.15.0/manifests"},{"name":"parallelstore/v0.10.0","sha":"2f4b04a163f21743ee24485b0ee419124bc23a92","kind":"commit","published_at":"2025-02-14T02:23:11.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parallelstore/v0.10.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parallelstore/v0.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.10.0/manifests"},{"name":"cloudbuild/v1.22.0","sha":"2f4b04a163f21743ee24485b0ee419124bc23a92","kind":"commit","published_at":"2025-02-14T02:23:11.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudbuild/v1.22.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudbuild/v1.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.22.0/manifests"},{"name":"securitycenter/v1.36.0","sha":"2f4b04a163f21743ee24485b0ee419124bc23a92","kind":"commit","published_at":"2025-02-14T02:23:11.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securitycenter/v1.36.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securitycenter/v1.36.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycenter%2Fv1.36.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycenter%2Fv1.36.0/manifests"},{"name":"aiplatform/v1.73.0","sha":"d52ffc1a182efa09f5eec88a5da7cafba825217a","kind":"commit","published_at":"2025-02-12T20:10:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.73.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.73.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.73.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.73.0/manifests"},{"name":"deploy/v1.26.2","sha":"d52ffc1a182efa09f5eec88a5da7cafba825217a","kind":"commit","published_at":"2025-02-12T20:10:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/deploy/v1.26.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/deploy/v1.26.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.26.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.26.2/manifests"},{"name":"dataplex/v1.22.0","sha":"d52ffc1a182efa09f5eec88a5da7cafba825217a","kind":"commit","published_at":"2025-02-12T20:10:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataplex/v1.22.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataplex/v1.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.22.0/manifests"},{"name":"cloudbuild/v1.21.0","sha":"d52ffc1a182efa09f5eec88a5da7cafba825217a","kind":"commit","published_at":"2025-02-12T20:10:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudbuild/v1.21.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudbuild/v1.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.21.0/manifests"},{"name":"memorystore/v0.2.0","sha":"d52ffc1a182efa09f5eec88a5da7cafba825217a","kind":"commit","published_at":"2025-02-12T20:10:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/memorystore/v0.2.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/memorystore/v0.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memorystore%2Fv0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memorystore%2Fv0.2.0/manifests"},{"name":"dialogflow/v1.65.0","sha":"d52ffc1a182efa09f5eec88a5da7cafba825217a","kind":"commit","published_at":"2025-02-12T20:10:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.65.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.65.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.65.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.65.0/manifests"},{"name":"secretmanager/v1.14.5","sha":"d52ffc1a182efa09f5eec88a5da7cafba825217a","kind":"commit","published_at":"2025-02-12T20:10:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/secretmanager/v1.14.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/secretmanager/v1.14.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/secretmanager%2Fv1.14.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/secretmanager%2Fv1.14.5/manifests"},{"name":"chat/v0.10.1","sha":"d52ffc1a182efa09f5eec88a5da7cafba825217a","kind":"commit","published_at":"2025-02-12T20:10:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/chat/v0.10.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/chat/v0.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.10.1/manifests"},{"name":"batch/v1.12.0","sha":"d52ffc1a182efa09f5eec88a5da7cafba825217a","kind":"commit","published_at":"2025-02-12T20:10:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/batch/v1.12.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/batch/v1.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.12.0/manifests"},{"name":"documentai/v1.35.2","sha":"d52ffc1a182efa09f5eec88a5da7cafba825217a","kind":"commit","published_at":"2025-02-12T20:10:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/documentai/v1.35.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/documentai/v1.35.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/documentai%2Fv1.35.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/documentai%2Fv1.35.2/manifests"},{"name":"iam/v1.4.0","sha":"d52ffc1a182efa09f5eec88a5da7cafba825217a","kind":"commit","published_at":"2025-02-12T20:10:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iam/v1.4.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iam/v1.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.4.0/manifests"},{"name":"v0.118.2","sha":"c7d309ed48173ce8e08e32791697faad8600fea7","kind":"commit","published_at":"2025-02-06T22:11:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/v0.118.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/v0.118.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.118.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.118.2/manifests"},{"name":"run/v1.9.0","sha":"b1e3ce67d97275c7883e2b23617d070981d46bf7","kind":"commit","published_at":"2025-02-05T21:01:03.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/run/v1.9.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/run/v1.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.9.0/manifests"},{"name":"netapp/v1.7.0","sha":"b1e3ce67d97275c7883e2b23617d070981d46bf7","kind":"commit","published_at":"2025-02-05T21:01:03.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/netapp/v1.7.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/netapp/v1.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.7.0/manifests"},{"name":"monitoring/v1.24.0","sha":"b1e3ce67d97275c7883e2b23617d070981d46bf7","kind":"commit","published_at":"2025-02-05T21:01:03.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/monitoring/v1.24.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/monitoring/v1.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.24.0/manifests"},{"name":"compute/v1.33.0","sha":"b1e3ce67d97275c7883e2b23617d070981d46bf7","kind":"commit","published_at":"2025-02-05T21:01:03.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.33.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.33.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.33.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.33.0/manifests"},{"name":"aiplatform/v1.72.0","sha":"b1e3ce67d97275c7883e2b23617d070981d46bf7","kind":"commit","published_at":"2025-02-05T21:01:03.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.72.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.72.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.72.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.72.0/manifests"},{"name":"bigquery/v1.66.2","sha":"f3483963999b7fb7b9ac6364f3a6392d5a27d392","kind":"commit","published_at":"2025-02-04T21:26:46.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/bigquery/v1.66.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/bigquery/v1.66.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigquery%2Fv1.66.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigquery%2Fv1.66.2/manifests"},{"name":"bigquery/v1.66.1","sha":"2153d8691abc43778be3dc6ebb59cb44756ab749","kind":"commit","published_at":"2025-02-04T00:23:18.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/bigquery/v1.66.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/bigquery/v1.66.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigquery%2Fv1.66.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigquery%2Fv1.66.1/manifests"},{"name":"spanner/v1.75.0","sha":"9cde8abdebc891178d811539af9d165b85993d1c","kind":"commit","published_at":"2025-02-03T18:31:41.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/spanner/v1.75.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/spanner/v1.75.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.75.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.75.0/manifests"},{"name":"pubsub/v1.47.0","sha":"bfb6c05baed4e9a22a84d600700e5954cc5fc55a","kind":"commit","published_at":"2025-01-31T20:44:36.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/pubsub/v1.47.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/pubsub/v1.47.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.47.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.47.0/manifests"},{"name":"parametermanager/v0.1.0","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parametermanager/v0.1.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parametermanager/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parametermanager%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parametermanager%2Fv0.1.0/manifests"},{"name":"analytics/v0.26.0","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/analytics/v0.26.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/analytics/v0.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.26.0/manifests"},{"name":"scheduler/v1.11.4","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/scheduler/v1.11.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/scheduler/v1.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/scheduler%2Fv1.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/scheduler%2Fv1.11.4/manifests"},{"name":"maps/v1.18.0","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/maps/v1.18.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/maps/v1.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.18.0/manifests"},{"name":"gsuiteaddons/v1.7.4","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gsuiteaddons/v1.7.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gsuiteaddons/v1.7.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gsuiteaddons%2Fv1.7.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gsuiteaddons%2Fv1.7.4/manifests"},{"name":"datastream/v1.13.0","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datastream/v1.13.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datastream/v1.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.13.0/manifests"},{"name":"container/v1.42.2","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/container/v1.42.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/container/v1.42.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/container%2Fv1.42.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/container%2Fv1.42.2/manifests"},{"name":"secretmanager/v1.14.4","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/secretmanager/v1.14.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/secretmanager/v1.14.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/secretmanager%2Fv1.14.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/secretmanager%2Fv1.14.4/manifests"},{"name":"compute/v1.32.0","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.32.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.32.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.32.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.32.0/manifests"},{"name":"redis/v1.18.0","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/redis/v1.18.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/redis/v1.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/redis%2Fv1.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/redis%2Fv1.18.0/manifests"},{"name":"cloudcontrolspartner/v1.3.0","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudcontrolspartner/v1.3.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudcontrolspartner/v1.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudcontrolspartner%2Fv1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudcontrolspartner%2Fv1.3.0/manifests"},{"name":"chat/v0.10.0","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/chat/v0.10.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/chat/v0.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.10.0/manifests"},{"name":"aiplatform/v1.71.0","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.71.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.71.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.71.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.71.0/manifests"},{"name":"apps/v0.6.0","sha":"1a214c9742b7e394874c6a5fe1177994f19c68bd","kind":"commit","published_at":"2025-01-30T19:52:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apps/v0.6.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apps/v0.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apps%2Fv0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apps%2Fv0.6.0/manifests"},{"name":"v0.118.1","sha":"24b3a20f14b6b220713df35177152462ad238a2a","kind":"commit","published_at":"2025-01-30T18:28:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/v0.118.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/v0.118.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.118.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.118.1/manifests"},{"name":"pubsub/v1.46.0","sha":"a299db240f280d520abc8896a605e3555dc895b6","kind":"commit","published_at":"2025-01-30T00:43:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/pubsub/v1.46.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/pubsub/v1.46.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.46.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.46.0/manifests"},{"name":"spanner/v1.74.0","sha":"8500e9eb4ec11530dce02573a79cec98361e2d7b","kind":"commit","published_at":"2025-01-29T17:18:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/spanner/v1.74.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/spanner/v1.74.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.74.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.74.0/manifests"},{"name":"auth/v0.14.1","sha":"9b9e87adb8c19ea44b08e645b068d3ed7269da7e","kind":"commit","published_at":"2025-01-27T22:44:05.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.14.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.14.1/manifests"},{"name":"bigtable/v1.35.0","sha":"a2a926df08fa129ce3ea0513f23acf23ef12f6ac","kind":"commit","published_at":"2025-01-22T22:09:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/bigtable/v1.35.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/bigtable/v1.35.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigtable%2Fv1.35.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigtable%2Fv1.35.0/manifests"},{"name":"bigquery/v1.66.0","sha":"93724426e616c8570ca6e6e71249fb5e22a8c8ed","kind":"commit","published_at":"2025-01-21T16:23:15.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/bigquery/v1.66.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/bigquery/v1.66.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigquery%2Fv1.66.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigquery%2Fv1.66.0/manifests"},{"name":"tpu/v1.8.0","sha":"0a81f8f911fd407674e05467a4cb5de892c30098","kind":"commit","published_at":"2025-01-15T20:21:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/tpu/v1.8.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/tpu/v1.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/tpu%2Fv1.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/tpu%2Fv1.8.0/manifests"},{"name":"gkemulticloud/v1.5.1","sha":"0a81f8f911fd407674e05467a4cb5de892c30098","kind":"commit","published_at":"2025-01-15T20:21:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkemulticloud/v1.5.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkemulticloud/v1.5.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkemulticloud%2Fv1.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkemulticloud%2Fv1.5.1/manifests"},{"name":"monitoring/v1.23.0","sha":"0a81f8f911fd407674e05467a4cb5de892c30098","kind":"commit","published_at":"2025-01-15T20:21:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/monitoring/v1.23.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/monitoring/v1.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.23.0/manifests"},{"name":"cloudbuild/v1.20.0","sha":"0a81f8f911fd407674e05467a4cb5de892c30098","kind":"commit","published_at":"2025-01-15T20:21:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudbuild/v1.20.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudbuild/v1.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.20.0/manifests"},{"name":"backupdr/v1.3.0","sha":"0a81f8f911fd407674e05467a4cb5de892c30098","kind":"commit","published_at":"2025-01-15T20:21:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/backupdr/v1.3.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/backupdr/v1.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/backupdr%2Fv1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/backupdr%2Fv1.3.0/manifests"},{"name":"recaptchaenterprise/v2.19.4","sha":"0a81f8f911fd407674e05467a4cb5de892c30098","kind":"commit","published_at":"2025-01-15T20:21:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.19.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.19.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.19.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.19.4/manifests"},{"name":"orchestration/v1.11.4","sha":"0a81f8f911fd407674e05467a4cb5de892c30098","kind":"commit","published_at":"2025-01-15T20:21:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orchestration/v1.11.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orchestration/v1.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.4/manifests"},{"name":"networkmanagement/v1.18.0","sha":"0a81f8f911fd407674e05467a4cb5de892c30098","kind":"commit","published_at":"2025-01-15T20:21:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkmanagement/v1.18.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkmanagement/v1.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.18.0/manifests"},{"name":"auth/oauth2adapt/v0.2.7","sha":"8c89cf79e88ced24319d74555f8170dab3071c67","kind":"commit","published_at":"2025-01-09T15:02:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/oauth2adapt/v0.2.7","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/oauth2adapt/v0.2.7","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Foauth2adapt%2Fv0.2.7","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Foauth2adapt%2Fv0.2.7/manifests"},{"name":"storage/v1.50.0","sha":"7460f70aa3f519d9a18866ba3063fb9e4f2cc57a","kind":"commit","published_at":"2025-01-09T03:38:57.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storage/v1.50.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storage/v1.50.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.50.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.50.0/manifests"},{"name":"ai/v0.10.0","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/ai/v0.10.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/ai/v0.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ai%2Fv0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ai%2Fv0.10.0/manifests"},{"name":"aiplatform/v1.70.0","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.70.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.70.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.70.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.70.0/manifests"},{"name":"cloudquotas/v1.3.0","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudquotas/v1.3.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudquotas/v1.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.3.0/manifests"},{"name":"kms/v1.20.5","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/kms/v1.20.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/kms/v1.20.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.20.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.20.5/manifests"},{"name":"datacatalog/v1.24.3","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datacatalog/v1.24.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datacatalog/v1.24.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.24.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.24.3/manifests"},{"name":"config/v1.3.0","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/config/v1.3.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/config/v1.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/config%2Fv1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/config%2Fv1.3.0/manifests"},{"name":"privatecatalog/v0.10.4","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/privatecatalog/v0.10.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/privatecatalog/v0.10.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privatecatalog%2Fv0.10.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privatecatalog%2Fv0.10.4/manifests"},{"name":"recaptchaenterprise/v2.19.3","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.19.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.19.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.19.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.19.3/manifests"},{"name":"parallelstore/v0.9.2","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parallelstore/v0.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parallelstore/v0.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.9.2/manifests"},{"name":"oracledatabase/v0.2.0","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oracledatabase/v0.2.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oracledatabase/v0.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.2.0/manifests"},{"name":"shopping/v0.16.0","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.16.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.16.0/manifests"},{"name":"texttospeech/v1.11.0","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/texttospeech/v1.11.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/texttospeech/v1.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.11.0/manifests"},{"name":"netapp/v1.6.0","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/netapp/v1.6.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/netapp/v1.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.6.0/manifests"},{"name":"talent/v1.8.0","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/talent/v1.8.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/talent/v1.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/talent%2Fv1.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/talent%2Fv1.8.0/manifests"},{"name":"managedkafka/v0.4.0","sha":"0ddf33831c5f0bed7072d988795de353956f22db","kind":"commit","published_at":"2025-01-08T22:46:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedkafka/v0.4.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedkafka/v0.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.4.0/manifests"},{"name":"auth/v0.14.0","sha":"b9d92ad02627cb4fb0a0662b7cf7eaac9050c310","kind":"commit","published_at":"2025-01-08T22:34:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.14.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.14.0/manifests"},{"name":"bigtable/v1.34.0","sha":"5ebdb1dfe891946793c51a314979a19a520a5f90","kind":"commit","published_at":"2025-01-03T01:17:43.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/bigtable/v1.34.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/bigtable/v1.34.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigtable%2Fv1.34.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigtable%2Fv1.34.0/manifests"},{"name":"firestore/v1.18.0","sha":"03a579095fc75a42feb57a34a08208d43dcb9aaf","kind":"commit","published_at":"2025-01-02T21:17:52.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/firestore/v1.18.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/firestore/v1.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/firestore%2Fv1.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/firestore%2Fv1.18.0/manifests"},{"name":"datacatalog/v1.24.2","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datacatalog/v1.24.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datacatalog/v1.24.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.24.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.24.2/manifests"},{"name":"dataform/v0.10.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataform/v0.10.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataform/v0.10.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataform%2Fv0.10.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataform%2Fv0.10.3/manifests"},{"name":"datafusion/v1.8.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datafusion/v1.8.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datafusion/v1.8.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datafusion%2Fv1.8.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datafusion%2Fv1.8.3/manifests"},{"name":"datalabeling/v0.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datalabeling/v0.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datalabeling/v0.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datalabeling%2Fv0.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datalabeling%2Fv0.9.3/manifests"},{"name":"dataproc/v2.10.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataproc/v2.10.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataproc/v2.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataproc%2Fv2.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataproc%2Fv2.10.1/manifests"},{"name":"containeranalysis/v0.13.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/containeranalysis/v0.13.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/containeranalysis/v0.13.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/containeranalysis%2Fv0.13.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/containeranalysis%2Fv0.13.3/manifests"},{"name":"dataplex/v1.21.0","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataplex/v1.21.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataplex/v1.21.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.21.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.21.0/manifests"},{"name":"dialogflow/v1.64.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.64.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.64.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.64.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.64.1/manifests"},{"name":"developerconnect/v0.3.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/developerconnect/v0.3.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/developerconnect/v0.3.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/developerconnect%2Fv0.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/developerconnect%2Fv0.3.1/manifests"},{"name":"deploy/v1.26.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/deploy/v1.26.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/deploy/v1.26.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.26.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.26.1/manifests"},{"name":"datastream/v1.12.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datastream/v1.12.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datastream/v1.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.12.1/manifests"},{"name":"discoveryengine/v1.16.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/discoveryengine/v1.16.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/discoveryengine/v1.16.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/discoveryengine%2Fv1.16.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/discoveryengine%2Fv1.16.1/manifests"},{"name":"dlp/v1.20.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dlp/v1.20.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dlp/v1.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dlp%2Fv1.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dlp%2Fv1.20.1/manifests"},{"name":"dataqna/v0.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataqna/v0.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataqna/v0.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataqna%2Fv0.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataqna%2Fv0.9.3/manifests"},{"name":"container/v1.42.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/container/v1.42.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/container/v1.42.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/container%2Fv1.42.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/container%2Fv1.42.1/manifests"},{"name":"documentai/v1.35.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/documentai/v1.35.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/documentai/v1.35.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/documentai%2Fv1.35.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/documentai%2Fv1.35.1/manifests"},{"name":"contactcenterinsights/v1.17.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/contactcenterinsights/v1.17.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/contactcenterinsights/v1.17.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/contactcenterinsights%2Fv1.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/contactcenterinsights%2Fv1.17.1/manifests"},{"name":"filestore/v1.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/filestore/v1.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/filestore/v1.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/filestore%2Fv1.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/filestore%2Fv1.9.3/manifests"},{"name":"functions/v1.19.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/functions/v1.19.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/functions/v1.19.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/functions%2Fv1.19.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/functions%2Fv1.19.3/manifests"},{"name":"eventarc/v1.15.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/eventarc/v1.15.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/eventarc/v1.15.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.15.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.15.1/manifests"},{"name":"gkebackup/v1.6.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkebackup/v1.6.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkebackup/v1.6.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkebackup%2Fv1.6.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkebackup%2Fv1.6.3/manifests"},{"name":"essentialcontacts/v1.7.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/essentialcontacts/v1.7.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/essentialcontacts/v1.7.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/essentialcontacts%2Fv1.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/essentialcontacts%2Fv1.7.3/manifests"},{"name":"gkemulticloud/v1.5.0","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkemulticloud/v1.5.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkemulticloud/v1.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkemulticloud%2Fv1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkemulticloud%2Fv1.5.0/manifests"},{"name":"grafeas/v0.3.13","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/grafeas/v0.3.13","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/grafeas/v0.3.13","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/grafeas%2Fv0.3.13","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/grafeas%2Fv0.3.13/manifests"},{"name":"edgecontainer/v1.4.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/edgecontainer/v1.4.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/edgecontainer/v1.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgecontainer%2Fv1.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgecontainer%2Fv1.4.1/manifests"},{"name":"gsuiteaddons/v1.7.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gsuiteaddons/v1.7.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gsuiteaddons/v1.7.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gsuiteaddons%2Fv1.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gsuiteaddons%2Fv1.7.3/manifests"},{"name":"gkehub/v0.15.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkehub/v0.15.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkehub/v0.15.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkehub%2Fv0.15.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkehub%2Fv0.15.3/manifests"},{"name":"gkeconnect/v0.12.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkeconnect/v0.12.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkeconnect/v0.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkeconnect%2Fv0.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkeconnect%2Fv0.12.1/manifests"},{"name":"iam/v1.3.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iam/v1.3.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iam/v1.3.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.3.1/manifests"},{"name":"edgenetwork/v1.2.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/edgenetwork/v1.2.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/edgenetwork/v1.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgenetwork%2Fv1.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgenetwork%2Fv1.2.3/manifests"},{"name":"iap/v1.10.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iap/v1.10.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iap/v1.10.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iap%2Fv1.10.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iap%2Fv1.10.3/manifests"},{"name":"domains/v0.10.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/domains/v0.10.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/domains/v0.10.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/domains%2Fv0.10.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/domains%2Fv0.10.3/manifests"},{"name":"clouddms/v1.8.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/clouddms/v1.8.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/clouddms/v1.8.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/clouddms%2Fv1.8.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/clouddms%2Fv1.8.3/manifests"},{"name":"config/v1.2.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/config/v1.2.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/config/v1.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/config%2Fv1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/config%2Fv1.2.1/manifests"},{"name":"accessapproval/v1.8.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/accessapproval/v1.8.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/accessapproval/v1.8.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accessapproval%2Fv1.8.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accessapproval%2Fv1.8.3/manifests"},{"name":"accesscontextmanager/v1.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/accesscontextmanager/v1.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/accesscontextmanager/v1.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accesscontextmanager%2Fv1.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accesscontextmanager%2Fv1.9.3/manifests"},{"name":"alloydb/v1.14.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/alloydb/v1.14.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/alloydb/v1.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/alloydb%2Fv1.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/alloydb%2Fv1.14.1/manifests"},{"name":"advisorynotifications/v1.5.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/advisorynotifications/v1.5.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/advisorynotifications/v1.5.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/advisorynotifications%2Fv1.5.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/advisorynotifications%2Fv1.5.3/manifests"},{"name":"apigeeconnect/v1.7.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigeeconnect/v1.7.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigeeconnect/v1.7.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeconnect%2Fv1.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeconnect%2Fv1.7.3/manifests"},{"name":"apikeys/v1.2.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apikeys/v1.2.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apikeys/v1.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apikeys%2Fv1.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apikeys%2Fv1.2.3/manifests"},{"name":"area120/v0.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/area120/v0.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/area120/v0.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/area120%2Fv0.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/area120%2Fv0.9.3/manifests"},{"name":"apps/v0.5.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apps/v0.5.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apps/v0.5.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apps%2Fv0.5.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apps%2Fv0.5.3/manifests"},{"name":"apihub/v0.1.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apihub/v0.1.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apihub/v0.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apihub%2Fv0.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apihub%2Fv0.1.3/manifests"},{"name":"ids/v1.5.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/ids/v1.5.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/ids/v1.5.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ids%2Fv1.5.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ids%2Fv1.5.3/manifests"},{"name":"cloudprofiler/v0.4.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudprofiler/v0.4.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudprofiler/v0.4.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudprofiler%2Fv0.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudprofiler%2Fv0.4.3/manifests"},{"name":"apigeeregistry/v0.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigeeregistry/v0.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigeeregistry/v0.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeregistry%2Fv0.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeregistry%2Fv0.9.3/manifests"},{"name":"artifactregistry/v1.16.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/artifactregistry/v1.16.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/artifactregistry/v1.16.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.16.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.16.1/manifests"},{"name":"managedidentities/v1.7.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedidentities/v1.7.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedidentities/v1.7.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedidentities%2Fv1.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedidentities%2Fv1.7.3/manifests"},{"name":"longrunning/v0.6.4","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/longrunning/v0.6.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/longrunning/v0.6.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/longrunning%2Fv0.6.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/longrunning%2Fv0.6.4/manifests"},{"name":"dataflow/v0.10.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataflow/v0.10.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataflow/v0.10.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataflow%2Fv0.10.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataflow%2Fv0.10.3/manifests"},{"name":"managedkafka/v0.3.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedkafka/v0.3.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedkafka/v0.3.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.3.1/manifests"},{"name":"maps/v1.17.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/maps/v1.17.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/maps/v1.17.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.17.1/manifests"},{"name":"metastore/v1.14.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/metastore/v1.14.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/metastore/v1.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/metastore%2Fv1.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/metastore%2Fv1.14.3/manifests"},{"name":"memorystore/v0.1.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/memorystore/v0.1.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/memorystore/v0.1.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memorystore%2Fv0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memorystore%2Fv0.1.1/manifests"},{"name":"memcache/v1.11.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/memcache/v1.11.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/memcache/v1.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memcache%2Fv1.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memcache%2Fv1.11.3/manifests"},{"name":"migrationcenter/v1.1.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/migrationcenter/v1.1.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/migrationcenter/v1.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/migrationcenter%2Fv1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/migrationcenter%2Fv1.1.3/manifests"},{"name":"networkconnectivity/v1.16.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkconnectivity/v1.16.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkconnectivity/v1.16.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.16.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.16.1/manifests"},{"name":"netapp/v1.5.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/netapp/v1.5.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/netapp/v1.5.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.5.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.5.1/manifests"},{"name":"monitoring/v1.22.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/monitoring/v1.22.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/monitoring/v1.22.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.22.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.22.1/manifests"},{"name":"apphub/v0.2.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apphub/v0.2.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apphub/v0.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apphub%2Fv0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apphub%2Fv0.2.3/manifests"},{"name":"appengine/v1.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/appengine/v1.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/appengine/v1.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/appengine%2Fv1.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/appengine%2Fv1.9.3/manifests"},{"name":"mediatranslation/v0.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/mediatranslation/v0.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/mediatranslation/v0.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/mediatranslation%2Fv0.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/mediatranslation%2Fv0.9.3/manifests"},{"name":"lifesciences/v0.10.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/lifesciences/v0.10.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/lifesciences/v0.10.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/lifesciences%2Fv0.10.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/lifesciences%2Fv0.10.3/manifests"},{"name":"apigateway/v1.7.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigateway/v1.7.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigateway/v1.7.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigateway%2Fv1.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigateway%2Fv1.7.3/manifests"},{"name":"analytics/v0.25.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/analytics/v0.25.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/analytics/v0.25.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.25.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.25.3/manifests"},{"name":"optimization/v1.7.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/optimization/v1.7.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/optimization/v1.7.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/optimization%2Fv1.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/optimization%2Fv1.7.3/manifests"},{"name":"notebooks/v1.12.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/notebooks/v1.12.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/notebooks/v1.12.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/notebooks%2Fv1.12.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/notebooks%2Fv1.12.3/manifests"},{"name":"oracledatabase/v0.1.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oracledatabase/v0.1.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oracledatabase/v0.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.1.3/manifests"},{"name":"networkservices/v0.2.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkservices/v0.2.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkservices/v0.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkservices%2Fv0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkservices%2Fv0.2.3/manifests"},{"name":"osconfig/v1.14.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/osconfig/v1.14.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/osconfig/v1.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/osconfig%2Fv1.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/osconfig%2Fv1.14.3/manifests"},{"name":"orgpolicy/v1.14.2","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orgpolicy/v1.14.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orgpolicy/v1.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orgpolicy%2Fv1.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orgpolicy%2Fv1.14.2/manifests"},{"name":"orchestration/v1.11.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orchestration/v1.11.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orchestration/v1.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.3/manifests"},{"name":"networksecurity/v0.10.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networksecurity/v0.10.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networksecurity/v0.10.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networksecurity%2Fv0.10.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networksecurity%2Fv0.10.3/manifests"},{"name":"policysimulator/v0.3.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/policysimulator/v0.3.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/policysimulator/v0.3.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policysimulator%2Fv0.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policysimulator%2Fv0.3.3/manifests"},{"name":"policytroubleshooter/v1.11.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/policytroubleshooter/v1.11.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/policytroubleshooter/v1.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policytroubleshooter%2Fv1.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policytroubleshooter%2Fv1.11.3/manifests"},{"name":"phishingprotection/v0.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/phishingprotection/v0.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/phishingprotection/v0.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/phishingprotection%2Fv0.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/phishingprotection%2Fv0.9.3/manifests"},{"name":"parallelstore/v0.9.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parallelstore/v0.9.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parallelstore/v0.9.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.9.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.9.1/manifests"},{"name":"privatecatalog/v0.10.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/privatecatalog/v0.10.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/privatecatalog/v0.10.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privatecatalog%2Fv0.10.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privatecatalog%2Fv0.10.3/manifests"},{"name":"privilegedaccessmanager/v0.2.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/privilegedaccessmanager/v0.2.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/privilegedaccessmanager/v0.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privilegedaccessmanager%2Fv0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privilegedaccessmanager%2Fv0.2.3/manifests"},{"name":"oslogin/v1.14.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oslogin/v1.14.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oslogin/v1.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oslogin%2Fv1.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oslogin%2Fv1.14.3/manifests"},{"name":"language/v1.14.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/language/v1.14.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/language/v1.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/language%2Fv1.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/language%2Fv1.14.3/manifests"},{"name":"networkmanagement/v1.17.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkmanagement/v1.17.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkmanagement/v1.17.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.17.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.17.1/manifests"},{"name":"resourcemanager/v1.10.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/resourcemanager/v1.10.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/resourcemanager/v1.10.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcemanager%2Fv1.10.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcemanager%2Fv1.10.3/manifests"},{"name":"redis/v1.17.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/redis/v1.17.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/redis/v1.17.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/redis%2Fv1.17.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/redis%2Fv1.17.3/manifests"},{"name":"recommender/v1.13.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recommender/v1.13.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recommender/v1.13.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommender%2Fv1.13.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommender%2Fv1.13.3/manifests"},{"name":"resourcesettings/v1.8.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/resourcesettings/v1.8.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/resourcesettings/v1.8.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcesettings%2Fv1.8.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcesettings%2Fv1.8.3/manifests"},{"name":"recommendationengine/v0.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recommendationengine/v0.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recommendationengine/v0.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommendationengine%2Fv0.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommendationengine%2Fv0.9.3/manifests"},{"name":"retail/v1.19.2","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/retail/v1.19.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/retail/v1.19.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/retail%2Fv1.19.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/retail%2Fv1.19.2/manifests"},{"name":"securesourcemanager/v1.3.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securesourcemanager/v1.3.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securesourcemanager/v1.3.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securesourcemanager%2Fv1.3.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securesourcemanager%2Fv1.3.1/manifests"},{"name":"security/v1.18.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/security/v1.18.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/security/v1.18.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/security%2Fv1.18.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/security%2Fv1.18.3/manifests"},{"name":"secretmanager/v1.14.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/secretmanager/v1.14.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/secretmanager/v1.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/secretmanager%2Fv1.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/secretmanager%2Fv1.14.3/manifests"},{"name":"scheduler/v1.11.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/scheduler/v1.11.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/scheduler/v1.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/scheduler%2Fv1.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/scheduler%2Fv1.11.3/manifests"},{"name":"securitycenter/v1.35.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securitycenter/v1.35.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securitycenter/v1.35.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycenter%2Fv1.35.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycenter%2Fv1.35.3/manifests"},{"name":"servicecontrol/v1.14.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicecontrol/v1.14.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicecontrol/v1.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicecontrol%2Fv1.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicecontrol%2Fv1.14.3/manifests"},{"name":"securityposture/v0.2.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securityposture/v0.2.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securityposture/v0.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securityposture%2Fv0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securityposture%2Fv0.2.3/manifests"},{"name":"run/v1.8.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/run/v1.8.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/run/v1.8.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.8.1/manifests"},{"name":"securitycentermanagement/v1.1.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securitycentermanagement/v1.1.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securitycentermanagement/v1.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycentermanagement%2Fv1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycentermanagement%2Fv1.1.3/manifests"},{"name":"recaptchaenterprise/v2.19.2","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.19.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.19.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.19.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.19.2/manifests"},{"name":"shell/v1.8.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shell/v1.8.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shell/v1.8.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shell%2Fv1.8.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shell%2Fv1.8.3/manifests"},{"name":"serviceusage/v1.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/serviceusage/v1.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/serviceusage/v1.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/serviceusage%2Fv1.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/serviceusage%2Fv1.9.3/manifests"},{"name":"speech/v1.26.0","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/speech/v1.26.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/speech/v1.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/speech%2Fv1.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/speech%2Fv1.26.0/manifests"},{"name":"shopping/v0.15.0","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.15.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.15.0/manifests"},{"name":"servicemanagement/v1.10.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicemanagement/v1.10.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicemanagement/v1.10.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicemanagement%2Fv1.10.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicemanagement%2Fv1.10.3/manifests"},{"name":"streetview/v0.2.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/streetview/v0.2.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/streetview/v0.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/streetview%2Fv0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/streetview%2Fv0.2.3/manifests"},{"name":"support/v1.1.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/support/v1.1.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/support/v1.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/support%2Fv1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/support%2Fv1.1.3/manifests"},{"name":"storagetransfer/v1.12.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storagetransfer/v1.12.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storagetransfer/v1.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storagetransfer%2Fv1.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storagetransfer%2Fv1.12.1/manifests"},{"name":"storageinsights/v1.1.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storageinsights/v1.1.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storageinsights/v1.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storageinsights%2Fv1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storageinsights%2Fv1.1.3/manifests"},{"name":"talent/v1.7.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/talent/v1.7.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/talent/v1.7.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/talent%2Fv1.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/talent%2Fv1.7.3/manifests"},{"name":"servicehealth/v1.2.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicehealth/v1.2.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicehealth/v1.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicehealth%2Fv1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicehealth%2Fv1.2.1/manifests"},{"name":"trace/v1.11.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/trace/v1.11.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/trace/v1.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/trace%2Fv1.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/trace%2Fv1.11.3/manifests"},{"name":"translate/v1.12.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/translate/v1.12.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/translate/v1.12.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/translate%2Fv1.12.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/translate%2Fv1.12.3/manifests"},{"name":"tpu/v1.7.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/tpu/v1.7.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/tpu/v1.7.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/tpu%2Fv1.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/tpu%2Fv1.7.3/manifests"},{"name":"rapidmigrationassessment/v1.1.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/rapidmigrationassessment/v1.1.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/rapidmigrationassessment/v1.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/rapidmigrationassessment%2Fv1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/rapidmigrationassessment%2Fv1.1.3/manifests"},{"name":"texttospeech/v1.10.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/texttospeech/v1.10.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/texttospeech/v1.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.10.1/manifests"},{"name":"telcoautomation/v1.1.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/telcoautomation/v1.1.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/telcoautomation/v1.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/telcoautomation%2Fv1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/telcoautomation%2Fv1.1.3/manifests"},{"name":"kms/v1.20.4","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/kms/v1.20.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/kms/v1.20.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.20.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.20.4/manifests"},{"name":"servicedirectory/v1.12.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicedirectory/v1.12.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicedirectory/v1.12.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicedirectory%2Fv1.12.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicedirectory%2Fv1.12.3/manifests"},{"name":"vmmigration/v1.8.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vmmigration/v1.8.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vmmigration/v1.8.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmmigration%2Fv1.8.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmmigration%2Fv1.8.3/manifests"},{"name":"vmwareengine/v1.3.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vmwareengine/v1.3.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vmwareengine/v1.3.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmwareengine%2Fv1.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmwareengine%2Fv1.3.3/manifests"},{"name":"websecurityscanner/v1.7.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/websecurityscanner/v1.7.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/websecurityscanner/v1.7.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/websecurityscanner%2Fv1.7.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/websecurityscanner%2Fv1.7.3/manifests"},{"name":"webrisk/v1.10.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/webrisk/v1.10.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/webrisk/v1.10.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/webrisk%2Fv1.10.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/webrisk%2Fv1.10.3/manifests"},{"name":"visionai/v0.4.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/visionai/v0.4.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/visionai/v0.4.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/visionai%2Fv0.4.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/visionai%2Fv0.4.3/manifests"},{"name":"vpcaccess/v1.8.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vpcaccess/v1.8.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vpcaccess/v1.8.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vpcaccess%2Fv1.8.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vpcaccess%2Fv1.8.3/manifests"},{"name":"workstations/v1.1.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/workstations/v1.1.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/workstations/v1.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workstations%2Fv1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workstations%2Fv1.1.3/manifests"},{"name":"vision/v2.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vision/v2.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vision/v2.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vision%2Fv2.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vision%2Fv2.9.3/manifests"},{"name":"workflows/v1.13.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/workflows/v1.13.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/workflows/v1.13.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.13.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.13.3/manifests"},{"name":"videointelligence/v1.12.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/videointelligence/v1.12.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/videointelligence/v1.12.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/videointelligence%2Fv1.12.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/videointelligence%2Fv1.12.3/manifests"},{"name":"iot/v1.8.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iot/v1.8.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iot/v1.8.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iot%2Fv1.8.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iot%2Fv1.8.3/manifests"},{"name":"video/v1.23.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/video/v1.23.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/video/v1.23.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/video%2Fv1.23.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/video%2Fv1.23.3/manifests"},{"name":"compute/v1.31.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.31.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.31.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.31.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.31.1/manifests"},{"name":"identitytoolkit/v0.2.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/identitytoolkit/v0.2.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/identitytoolkit/v0.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/identitytoolkit%2Fv0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/identitytoolkit%2Fv0.2.3/manifests"},{"name":"backupdr/v1.2.2","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/backupdr/v1.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/backupdr/v1.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/backupdr%2Fv1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/backupdr%2Fv1.2.2/manifests"},{"name":"confidentialcomputing/v1.8.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/confidentialcomputing/v1.8.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/confidentialcomputing/v1.8.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/confidentialcomputing%2Fv1.8.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/confidentialcomputing%2Fv1.8.1/manifests"},{"name":"binaryauthorization/v1.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/binaryauthorization/v1.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/binaryauthorization/v1.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/binaryauthorization%2Fv1.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/binaryauthorization%2Fv1.9.3/manifests"},{"name":"billing/v1.20.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/billing/v1.20.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/billing/v1.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/billing%2Fv1.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/billing%2Fv1.20.1/manifests"},{"name":"beyondcorp/v1.1.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/beyondcorp/v1.1.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/beyondcorp/v1.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/beyondcorp%2Fv1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/beyondcorp%2Fv1.1.3/manifests"},{"name":"certificatemanager/v1.9.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/certificatemanager/v1.9.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/certificatemanager/v1.9.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/certificatemanager%2Fv1.9.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/certificatemanager%2Fv1.9.3/manifests"},{"name":"batch/v1.11.5","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/batch/v1.11.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/batch/v1.11.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.11.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.11.5/manifests"},{"name":"chat/v0.9.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/chat/v0.9.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/chat/v0.9.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.9.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.9.1/manifests"},{"name":"channel/v1.19.2","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/channel/v1.19.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/channel/v1.19.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/channel%2Fv1.19.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/channel%2Fv1.19.2/manifests"},{"name":"cloudtasks/v1.13.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudtasks/v1.13.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudtasks/v1.13.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudtasks%2Fv1.13.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudtasks%2Fv1.13.3/manifests"},{"name":"commerce/v1.2.2","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/commerce/v1.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/commerce/v1.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/commerce%2Fv1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/commerce%2Fv1.2.2/manifests"},{"name":"cloudquotas/v1.2.1","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudquotas/v1.2.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudquotas/v1.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.2.1/manifests"},{"name":"baremetalsolution/v1.3.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/baremetalsolution/v1.3.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/baremetalsolution/v1.3.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/baremetalsolution%2Fv1.3.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/baremetalsolution%2Fv1.3.3/manifests"},{"name":"cloudcontrolspartner/v1.2.2","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudcontrolspartner/v1.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudcontrolspartner/v1.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudcontrolspartner%2Fv1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudcontrolspartner%2Fv1.2.2/manifests"},{"name":"assuredworkloads/v1.12.3","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/assuredworkloads/v1.12.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/assuredworkloads/v1.12.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/assuredworkloads%2Fv1.12.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/assuredworkloads%2Fv1.12.3/manifests"},{"name":"asset/v1.20.4","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/asset/v1.20.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/asset/v1.20.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/asset%2Fv1.20.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/asset%2Fv1.20.4/manifests"},{"name":"cloudbuild/v1.19.2","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudbuild/v1.19.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudbuild/v1.19.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.19.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.19.2/manifests"},{"name":"automl/v1.14.4","sha":"b7a7787ebf5e1521d2dab685a3a37bb0ea7732d8","kind":"commit","published_at":"2025-01-02T19:03:39.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/automl/v1.14.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/automl/v1.14.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/automl%2Fv1.14.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/automl%2Fv1.14.4/manifests"},{"name":"v0.118.0","sha":"00c6c0b02afce520a71a455c44d12be5991103cf","kind":"commit","published_at":"2025-01-02T18:25:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/v0.118.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/v0.118.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.118.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.118.0/manifests"},{"name":"logging/v1.13.0","sha":"e904ee645048f31d484dd4dc2ef29803c21a6f9b","kind":"commit","published_at":"2025-01-02T16:11:49.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/logging/v1.13.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/logging/v1.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/logging%2Fv1.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/logging%2Fv1.13.0/manifests"},{"name":"storage/v1.49.0","sha":"7cbffad749a0f8917658406dae73c7fb7151b55d","kind":"commit","published_at":"2024-12-21T00:48:17.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storage/v1.49.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storage/v1.49.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.49.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.49.0/manifests"},{"name":"vertexai/v0.13.3","sha":"650b89e15de32f6c3fdaba4893905611a8822736","kind":"commit","published_at":"2024-12-20T00:56:15.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vertexai/v0.13.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vertexai/v0.13.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vertexai%2Fv0.13.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vertexai%2Fv0.13.3/manifests"},{"name":"kms/v1.20.3","sha":"5f985abe26c7e96fe51dd0d106a05589f5c1ff3f","kind":"commit","published_at":"2024-12-18T21:21:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/kms/v1.20.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/kms/v1.20.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.20.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.20.3/manifests"},{"name":"dialogflow/v1.64.0","sha":"5f985abe26c7e96fe51dd0d106a05589f5c1ff3f","kind":"commit","published_at":"2024-12-18T21:21:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.64.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.64.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.64.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.64.0/manifests"},{"name":"datacatalog/v1.24.1","sha":"5f985abe26c7e96fe51dd0d106a05589f5c1ff3f","kind":"commit","published_at":"2024-12-18T21:21:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datacatalog/v1.24.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datacatalog/v1.24.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.24.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.24.1/manifests"},{"name":"memorystore/v0.1.0","sha":"5f985abe26c7e96fe51dd0d106a05589f5c1ff3f","kind":"commit","published_at":"2024-12-18T21:21:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/memorystore/v0.1.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/memorystore/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memorystore%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memorystore%2Fv0.1.0/manifests"},{"name":"contactcenterinsights/v1.17.0","sha":"5f985abe26c7e96fe51dd0d106a05589f5c1ff3f","kind":"commit","published_at":"2024-12-18T21:21:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/contactcenterinsights/v1.17.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/contactcenterinsights/v1.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/contactcenterinsights%2Fv1.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/contactcenterinsights%2Fv1.17.0/manifests"},{"name":"shopping/v0.14.0","sha":"5f985abe26c7e96fe51dd0d106a05589f5c1ff3f","kind":"commit","published_at":"2024-12-18T21:21:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.14.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.14.0/manifests"},{"name":"storagetransfer/v1.12.0","sha":"5f985abe26c7e96fe51dd0d106a05589f5c1ff3f","kind":"commit","published_at":"2024-12-18T21:21:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storagetransfer/v1.12.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storagetransfer/v1.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storagetransfer%2Fv1.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storagetransfer%2Fv1.12.0/manifests"},{"name":"v0.117.0","sha":"47eee33d21422b73dab95ecffb44278a65d7da13","kind":"commit","published_at":"2024-12-16T16:36:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/v0.117.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/v0.117.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.117.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/v0.117.0/manifests"},{"name":"auth/v0.13.0","sha":"7d93114551b5ffd7953e54be0f4f1a8546a2af53","kind":"commit","published_at":"2024-12-16T15:03:38.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.13.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.13.0/manifests"},{"name":"compute/metadata/v0.6.0","sha":"c33cc6112a45ef9cbb0a8940bc49e3126a92f22f","kind":"commit","published_at":"2024-12-13T18:08:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/metadata/v0.6.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/metadata/v0.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fmetadata%2Fv0.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fmetadata%2Fv0.6.0/manifests"},{"name":"config/v1.2.0","sha":"c33cc6112a45ef9cbb0a8940bc49e3126a92f22f","kind":"commit","published_at":"2024-12-13T18:08:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/config/v1.2.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/config/v1.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/config%2Fv1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/config%2Fv1.2.0/manifests"},{"name":"compute/v1.31.0","sha":"c33cc6112a45ef9cbb0a8940bc49e3126a92f22f","kind":"commit","published_at":"2024-12-13T18:08:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.31.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.31.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.31.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.31.0/manifests"},{"name":"cloudbuild/v1.19.1","sha":"416ed781008083f1ac7c39944eb2151aa83ac389","kind":"commit","published_at":"2024-12-12T20:54:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudbuild/v1.19.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudbuild/v1.19.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.19.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.19.1/manifests"},{"name":"chat/v0.9.0","sha":"416ed781008083f1ac7c39944eb2151aa83ac389","kind":"commit","published_at":"2024-12-12T20:54:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/chat/v0.9.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/chat/v0.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.9.0/manifests"},{"name":"automl/v1.14.3","sha":"416ed781008083f1ac7c39944eb2151aa83ac389","kind":"commit","published_at":"2024-12-12T20:54:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/automl/v1.14.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/automl/v1.14.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/automl%2Fv1.14.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/automl%2Fv1.14.3/manifests"},{"name":"batch/v1.11.4","sha":"416ed781008083f1ac7c39944eb2151aa83ac389","kind":"commit","published_at":"2024-12-12T20:54:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/batch/v1.11.4","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/batch/v1.11.4","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.11.4","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.11.4/manifests"},{"name":"oracledatabase/v0.1.2","sha":"416ed781008083f1ac7c39944eb2151aa83ac389","kind":"commit","published_at":"2024-12-12T20:54:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oracledatabase/v0.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oracledatabase/v0.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.1.2/manifests"},{"name":"maps/v1.17.0","sha":"416ed781008083f1ac7c39944eb2151aa83ac389","kind":"commit","published_at":"2024-12-12T20:54:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/maps/v1.17.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/maps/v1.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.17.0/manifests"},{"name":"dialogflow/v1.63.0","sha":"416ed781008083f1ac7c39944eb2151aa83ac389","kind":"commit","published_at":"2024-12-12T20:54:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.63.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.63.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.63.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.63.0/manifests"},{"name":"compute/v1.30.0","sha":"416ed781008083f1ac7c39944eb2151aa83ac389","kind":"commit","published_at":"2024-12-12T20:54:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.30.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.30.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.30.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.30.0/manifests"},{"name":"shopping/v0.13.0","sha":"416ed781008083f1ac7c39944eb2151aa83ac389","kind":"commit","published_at":"2024-12-12T20:54:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.13.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.13.0/manifests"},{"name":"parallelstore/v0.9.0","sha":"416ed781008083f1ac7c39944eb2151aa83ac389","kind":"commit","published_at":"2024-12-12T20:54:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parallelstore/v0.9.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parallelstore/v0.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.9.0/manifests"},{"name":"orchestration/v1.11.2","sha":"416ed781008083f1ac7c39944eb2151aa83ac389","kind":"commit","published_at":"2024-12-12T20:54:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orchestration/v1.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orchestration/v1.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.2/manifests"},{"name":"errorreporting/v0.3.2","sha":"bf1ea64c7eacf61413f1831429da57a7fa2c3227","kind":"commit","published_at":"2024-12-10T16:24:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/errorreporting/v0.3.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/errorreporting/v0.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/errorreporting%2Fv0.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/errorreporting%2Fv0.3.2/manifests"},{"name":"profiler/v0.4.2","sha":"b209f6637e2dabe6ede9c93145941173e3f0762b","kind":"commit","published_at":"2024-12-10T16:14:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/profiler/v0.4.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/profiler/v0.4.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/profiler%2Fv0.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/profiler%2Fv0.4.2/manifests"},{"name":"auth/v0.12.1","sha":"7d7fb033ebd8ae9801905bfbe9f08967c2ed361f","kind":"commit","published_at":"2024-12-10T15:12:22.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.12.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.12.1/manifests"},{"name":"storage/v1.48.0","sha":"d95c86d30f45d6d54b438579dbca20e699e51daa","kind":"commit","published_at":"2024-12-05T21:39:28.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storage/v1.48.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storage/v1.48.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.48.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.48.0/manifests"},{"name":"bigquery/v1.65.0","sha":"07705a45b23bb9e3dcf634908c993a4cf0cb209b","kind":"commit","published_at":"2024-12-05T18:19:26.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/bigquery/v1.65.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/bigquery/v1.65.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigquery%2Fv1.65.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigquery%2Fv1.65.0/manifests"},{"name":"pubsub/v1.45.3","sha":"002f45c6b15356f163456b617f4aa3e2a1da38cc","kind":"commit","published_at":"2024-12-04T23:50:31.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/pubsub/v1.45.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/pubsub/v1.45.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.45.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.45.3/manifests"},{"name":"kms/v1.20.2","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/kms/v1.20.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/kms/v1.20.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.20.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.20.2/manifests"},{"name":"managedkafka/v0.3.0","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedkafka/v0.3.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedkafka/v0.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.3.0/manifests"},{"name":"confidentialcomputing/v1.8.0","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/confidentialcomputing/v1.8.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/confidentialcomputing/v1.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/confidentialcomputing%2Fv1.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/confidentialcomputing%2Fv1.8.0/manifests"},{"name":"batch/v1.11.3","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/batch/v1.11.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/batch/v1.11.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.11.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.11.3/manifests"},{"name":"chat/v0.8.0","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/chat/v0.8.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/chat/v0.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.8.0/manifests"},{"name":"billing/v1.20.0","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/billing/v1.20.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/billing/v1.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/billing%2Fv1.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/billing%2Fv1.20.0/manifests"},{"name":"iam/v1.3.0","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iam/v1.3.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iam/v1.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.3.0/manifests"},{"name":"dialogflow/v1.62.0","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.62.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.62.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.62.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.62.0/manifests"},{"name":"maps/v1.16.0","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/maps/v1.16.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/maps/v1.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.16.0/manifests"},{"name":"deploy/v1.26.0","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/deploy/v1.26.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/deploy/v1.26.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.26.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.26.0/manifests"},{"name":"servicehealth/v1.2.0","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicehealth/v1.2.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicehealth/v1.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicehealth%2Fv1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicehealth%2Fv1.2.0/manifests"},{"name":"recaptchaenterprise/v2.19.1","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.19.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.19.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.19.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.19.1/manifests"},{"name":"networkconnectivity/v1.16.0","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkconnectivity/v1.16.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkconnectivity/v1.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.16.0/manifests"},{"name":"netapp/v1.5.0","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/netapp/v1.5.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/netapp/v1.5.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.5.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.5.0/manifests"},{"name":"monitoring/v1.22.0","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/monitoring/v1.22.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/monitoring/v1.22.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.22.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.22.0/manifests"},{"name":"shopping/v0.12.1","sha":"63b704e048dcdf1e7ed51604beb37064bbc704e5","kind":"commit","published_at":"2024-12-04T17:38:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.12.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.12.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.12.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.12.1/manifests"},{"name":"auth/v0.12.0","sha":"481f97b632146e3e23f43f51575ca5dec7d75285","kind":"commit","published_at":"2024-12-04T17:10:29.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.12.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.12.0/manifests"},{"name":"pubsub/v1.45.2","sha":"ab75177e59ce19b85be5878d2c24be302984b3cd","kind":"commit","published_at":"2024-12-03T18:42:38.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/pubsub/v1.45.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/pubsub/v1.45.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.45.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.45.2/manifests"},{"name":"auth/oauth2adapt/v0.2.6","sha":"9fe6199c1409eefeebc7b34728f2bcb0d92c55a3","kind":"commit","published_at":"2024-11-21T23:27:05.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/oauth2adapt/v0.2.6","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/oauth2adapt/v0.2.6","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Foauth2adapt%2Fv0.2.6","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Foauth2adapt%2Fv0.2.6/manifests"},{"name":"auth/v0.11.0","sha":"59fc9da8e90ec216f79680d3399dd1b56879494e","kind":"commit","published_at":"2024-11-21T23:07:07.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.11.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.11.0/manifests"},{"name":"deploy/v1.25.1","sha":"b5a182f4a1a6eb1ec9fb9207ea117eaf558da6ea","kind":"commit","published_at":"2024-11-21T22:34:03.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/deploy/v1.25.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/deploy/v1.25.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.25.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.25.1/manifests"},{"name":"datastream/v1.12.0","sha":"b5a182f4a1a6eb1ec9fb9207ea117eaf558da6ea","kind":"commit","published_at":"2024-11-21T22:34:03.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datastream/v1.12.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datastream/v1.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.12.0/manifests"},{"name":"datacatalog/v1.24.0","sha":"b5a182f4a1a6eb1ec9fb9207ea117eaf558da6ea","kind":"commit","published_at":"2024-11-21T22:34:03.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datacatalog/v1.24.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datacatalog/v1.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.24.0/manifests"},{"name":"dataplex/v1.20.0","sha":"8d58b7813e6befd5e46765e604a0df4ad474abd0","kind":"commit","published_at":"2024-11-19T19:14:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataplex/v1.20.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataplex/v1.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.20.0/manifests"},{"name":"contactcenterinsights/v1.16.0","sha":"8d58b7813e6befd5e46765e604a0df4ad474abd0","kind":"commit","published_at":"2024-11-19T19:14:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/contactcenterinsights/v1.16.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/contactcenterinsights/v1.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/contactcenterinsights%2Fv1.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/contactcenterinsights%2Fv1.16.0/manifests"},{"name":"managedkafka/v0.2.3","sha":"8d58b7813e6befd5e46765e604a0df4ad474abd0","kind":"commit","published_at":"2024-11-19T19:14:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedkafka/v0.2.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedkafka/v0.2.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.2.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.2.3/manifests"},{"name":"longrunning/v0.6.3","sha":"8d58b7813e6befd5e46765e604a0df4ad474abd0","kind":"commit","published_at":"2024-11-19T19:14:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/longrunning/v0.6.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/longrunning/v0.6.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/longrunning%2Fv0.6.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/longrunning%2Fv0.6.3/manifests"},{"name":"run/v1.8.0","sha":"8d58b7813e6befd5e46765e604a0df4ad474abd0","kind":"commit","published_at":"2024-11-19T19:14:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/run/v1.8.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/run/v1.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.8.0/manifests"},{"name":"dialogflow/v1.61.0","sha":"8d58b7813e6befd5e46765e604a0df4ad474abd0","kind":"commit","published_at":"2024-11-19T19:14:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.61.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.61.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.61.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.61.0/manifests"},{"name":"networkmanagement/v1.17.0","sha":"8d58b7813e6befd5e46765e604a0df4ad474abd0","kind":"commit","published_at":"2024-11-19T19:14:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkmanagement/v1.17.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkmanagement/v1.17.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.17.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.17.0/manifests"},{"name":"developerconnect/v0.3.0","sha":"8d58b7813e6befd5e46765e604a0df4ad474abd0","kind":"commit","published_at":"2024-11-19T19:14:21.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/developerconnect/v0.3.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/developerconnect/v0.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/developerconnect%2Fv0.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/developerconnect%2Fv0.3.0/manifests"},{"name":"alloydb/v1.14.0","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/alloydb/v1.14.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/alloydb/v1.14.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/alloydb%2Fv1.14.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/alloydb%2Fv1.14.0/manifests"},{"name":"cloudquotas/v1.2.0","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudquotas/v1.2.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudquotas/v1.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.2.0/manifests"},{"name":"datacatalog/v1.23.0","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datacatalog/v1.23.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datacatalog/v1.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.23.0/manifests"},{"name":"container/v1.42.0","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/container/v1.42.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/container/v1.42.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/container%2Fv1.42.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/container%2Fv1.42.0/manifests"},{"name":"compute/v1.29.0","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.29.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.29.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.29.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.29.0/manifests"},{"name":"dialogflow/v1.60.0","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.60.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.60.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.60.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.60.0/manifests"},{"name":"deploy/v1.25.0","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/deploy/v1.25.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/deploy/v1.25.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.25.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.25.0/manifests"},{"name":"servicehealth/v1.1.3","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicehealth/v1.1.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicehealth/v1.1.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicehealth%2Fv1.1.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicehealth%2Fv1.1.3/manifests"},{"name":"run/v1.7.0","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/run/v1.7.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/run/v1.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.7.0/manifests"},{"name":"recaptchaenterprise/v2.19.0","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.19.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.19.0/manifests"},{"name":"networkmanagement/v1.16.0","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkmanagement/v1.16.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkmanagement/v1.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.16.0/manifests"},{"name":"maps/v1.15.0","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/maps/v1.15.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/maps/v1.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.15.0/manifests"},{"name":"gkeconnect/v0.12.0","sha":"d4cacdeadc76d5e202d1e5fc1ff24108d281c88b","kind":"commit","published_at":"2024-11-14T23:42:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkeconnect/v0.12.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkeconnect/v0.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkeconnect%2Fv0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkeconnect%2Fv0.12.0/manifests"},{"name":"storage/v1.47.0","sha":"d201c6a21511c10dd481254df201286e72e12b67","kind":"commit","published_at":"2024-11-14T22:17:52.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storage/v1.47.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storage/v1.47.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.47.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.47.0/manifests"},{"name":"spanner/v1.73.0","sha":"f06a55a5680e588241315d760b95d9402452a288","kind":"commit","published_at":"2024-11-14T10:04:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/spanner/v1.73.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/spanner/v1.73.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.73.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.73.0/manifests"},{"name":"ai/v0.9.0","sha":"b6b12e366e89e3dd0606c5bc300bfb7c113711d7","kind":"commit","published_at":"2024-11-13T15:18:20.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/ai/v0.9.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/ai/v0.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ai%2Fv0.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ai%2Fv0.9.0/manifests"},{"name":"aiplatform/v1.69.0","sha":"d5d5320357dd65ca829d62f6b694028ee4b03a24","kind":"commit","published_at":"2024-11-13T15:02:16.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/aiplatform/v1.69.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/aiplatform/v1.69.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.69.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/aiplatform%2Fv1.69.0/manifests"},{"name":"auth/v0.10.2","sha":"c6955d001da1ed7f84b9039bc1a3ffd59456a31b","kind":"commit","published_at":"2024-11-12T20:56:19.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.10.2/manifests"},{"name":"spanner/v1.72.0","sha":"f32d0d9d6ab02f26bd2b4a59a1c5176261b3b122","kind":"commit","published_at":"2024-11-08T13:38:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/spanner/v1.72.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/spanner/v1.72.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.72.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.72.0/manifests"},{"name":"texttospeech/v1.10.0","sha":"c702b7155c9433c602e23c4e0b8910e2aa8790c3","kind":"commit","published_at":"2024-11-06T22:57:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/texttospeech/v1.10.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/texttospeech/v1.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.10.0/manifests"},{"name":"parallelstore/v0.8.0","sha":"c702b7155c9433c602e23c4e0b8910e2aa8790c3","kind":"commit","published_at":"2024-11-06T22:57:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parallelstore/v0.8.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parallelstore/v0.8.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.8.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.8.0/manifests"},{"name":"artifactregistry/v1.16.0","sha":"c702b7155c9433c602e23c4e0b8910e2aa8790c3","kind":"commit","published_at":"2024-11-06T22:57:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/artifactregistry/v1.16.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/artifactregistry/v1.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.16.0/manifests"},{"name":"edgecontainer/v1.4.0","sha":"c702b7155c9433c602e23c4e0b8910e2aa8790c3","kind":"commit","published_at":"2024-11-06T22:57:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/edgecontainer/v1.4.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/edgecontainer/v1.4.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgecontainer%2Fv1.4.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgecontainer%2Fv1.4.0/manifests"},{"name":"discoveryengine/v1.16.0","sha":"c702b7155c9433c602e23c4e0b8910e2aa8790c3","kind":"commit","published_at":"2024-11-06T22:57:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/discoveryengine/v1.16.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/discoveryengine/v1.16.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/discoveryengine%2Fv1.16.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/discoveryengine%2Fv1.16.0/manifests"},{"name":"dialogflow/v1.59.0","sha":"c702b7155c9433c602e23c4e0b8910e2aa8790c3","kind":"commit","published_at":"2024-11-06T22:57:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.59.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.59.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.59.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.59.0/manifests"},{"name":"eventarc/v1.15.0","sha":"c702b7155c9433c602e23c4e0b8910e2aa8790c3","kind":"commit","published_at":"2024-11-06T22:57:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/eventarc/v1.15.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/eventarc/v1.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.15.0/manifests"},{"name":"shopping/v0.12.0","sha":"c702b7155c9433c602e23c4e0b8910e2aa8790c3","kind":"commit","published_at":"2024-11-06T22:57:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.12.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.12.0/manifests"},{"name":"deploy/v1.24.0","sha":"c702b7155c9433c602e23c4e0b8910e2aa8790c3","kind":"commit","published_at":"2024-11-06T22:57:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/deploy/v1.24.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/deploy/v1.24.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.24.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.24.0/manifests"},{"name":"recaptchaenterprise/v2.18.0","sha":"c702b7155c9433c602e23c4e0b8910e2aa8790c3","kind":"commit","published_at":"2024-11-06T22:57:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.18.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.18.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.18.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.18.0/manifests"},{"name":"compute/v1.28.3","sha":"c702b7155c9433c602e23c4e0b8910e2aa8790c3","kind":"commit","published_at":"2024-11-06T22:57:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.28.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.28.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.28.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.28.3/manifests"},{"name":"cloudbuild/v1.19.0","sha":"c702b7155c9433c602e23c4e0b8910e2aa8790c3","kind":"commit","published_at":"2024-11-06T22:57:02.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudbuild/v1.19.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudbuild/v1.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.19.0/manifests"},{"name":"auth/v0.10.1","sha":"cf8cc930553447c3fb9f65c5e57a46f92eef2f62","kind":"commit","published_at":"2024-11-06T20:22:00.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.10.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.10.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.10.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.10.1/manifests"},{"name":"vertexai/v0.13.2","sha":"9586931400a389292c6fa0721900ee41030c5120","kind":"commit","published_at":"2024-11-04T21:28:19.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vertexai/v0.13.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vertexai/v0.13.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vertexai%2Fv0.13.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vertexai%2Fv0.13.2/manifests"},{"name":"spanner/v1.71.0","sha":"36c1280f82b062f120fcfb223fa80d1c50db500e","kind":"commit","published_at":"2024-11-01T13:03:58.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/spanner/v1.71.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/spanner/v1.71.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.71.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.71.0/manifests"},{"name":"storage/v1.46.0","sha":"1e27b43614c8b12f07e2df56e5940c34cd6639b5","kind":"commit","published_at":"2024-10-31T21:35:37.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storage/v1.46.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storage/v1.46.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.46.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.46.0/manifests"},{"name":"bigquery/v1.64.0","sha":"6c6a6a1f9927e4cfab1e520754b65ee82a4d6261","kind":"commit","published_at":"2024-10-30T17:32:24.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/bigquery/v1.64.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/bigquery/v1.64.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigquery%2Fv1.64.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/bigquery%2Fv1.64.0/manifests"},{"name":"auth/oauth2adapt/v0.2.5","sha":"16a1f950cce90759ab8c93270d909a5db2b907b1","kind":"commit","published_at":"2024-10-30T15:36:54.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/oauth2adapt/v0.2.5","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/oauth2adapt/v0.2.5","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Foauth2adapt%2Fv0.2.5","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Foauth2adapt%2Fv0.2.5/manifests"},{"name":"auth/v0.10.0","sha":"803ca7662417c17da458e143b4863c9cbceb3f89","kind":"commit","published_at":"2024-10-30T15:28:27.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.10.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.10.0/manifests"},{"name":"datastore/v1.20.0","sha":"93e313d90a2345c1ead1c1fe9149643d310bfa17","kind":"commit","published_at":"2024-10-29T18:27:30.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datastore/v1.20.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datastore/v1.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastore%2Fv1.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastore%2Fv1.20.0/manifests"},{"name":"pubsub/v1.45.1","sha":"7e7c03e23c4dc51310ac8353d9c5137e2d9ff401","kind":"commit","published_at":"2024-10-25T17:11:08.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/pubsub/v1.45.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/pubsub/v1.45.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.45.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.45.1/manifests"},{"name":"accessapproval/v1.8.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/accessapproval/v1.8.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/accessapproval/v1.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accessapproval%2Fv1.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accessapproval%2Fv1.8.2/manifests"},{"name":"accesscontextmanager/v1.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/accesscontextmanager/v1.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/accesscontextmanager/v1.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accesscontextmanager%2Fv1.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/accesscontextmanager%2Fv1.9.2/manifests"},{"name":"apigeeregistry/v0.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigeeregistry/v0.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigeeregistry/v0.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeregistry%2Fv0.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeregistry%2Fv0.9.2/manifests"},{"name":"apigeeconnect/v1.7.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigeeconnect/v1.7.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigeeconnect/v1.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeconnect%2Fv1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigeeconnect%2Fv1.7.2/manifests"},{"name":"apihub/v0.1.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apihub/v0.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apihub/v0.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apihub%2Fv0.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apihub%2Fv0.1.2/manifests"},{"name":"apigateway/v1.7.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apigateway/v1.7.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apigateway/v1.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigateway%2Fv1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apigateway%2Fv1.7.2/manifests"},{"name":"apphub/v0.2.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apphub/v0.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apphub/v0.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apphub%2Fv0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apphub%2Fv0.2.2/manifests"},{"name":"appengine/v1.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/appengine/v1.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/appengine/v1.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/appengine%2Fv1.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/appengine%2Fv1.9.2/manifests"},{"name":"analytics/v0.25.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/analytics/v0.25.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/analytics/v0.25.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.25.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/analytics%2Fv0.25.2/manifests"},{"name":"apikeys/v1.2.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apikeys/v1.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apikeys/v1.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apikeys%2Fv1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apikeys%2Fv1.2.2/manifests"},{"name":"asset/v1.20.3","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/asset/v1.20.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/asset/v1.20.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/asset%2Fv1.20.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/asset%2Fv1.20.3/manifests"},{"name":"artifactregistry/v1.15.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/artifactregistry/v1.15.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/artifactregistry/v1.15.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.15.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/artifactregistry%2Fv1.15.2/manifests"},{"name":"area120/v0.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/area120/v0.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/area120/v0.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/area120%2Fv0.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/area120%2Fv0.9.2/manifests"},{"name":"assuredworkloads/v1.12.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/assuredworkloads/v1.12.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/assuredworkloads/v1.12.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/assuredworkloads%2Fv1.12.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/assuredworkloads%2Fv1.12.2/manifests"},{"name":"backupdr/v1.2.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/backupdr/v1.2.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/backupdr/v1.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/backupdr%2Fv1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/backupdr%2Fv1.2.1/manifests"},{"name":"apps/v0.5.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/apps/v0.5.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/apps/v0.5.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apps%2Fv0.5.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/apps%2Fv0.5.2/manifests"},{"name":"automl/v1.14.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/automl/v1.14.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/automl/v1.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/automl%2Fv1.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/automl%2Fv1.14.2/manifests"},{"name":"alloydb/v1.13.0","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/alloydb/v1.13.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/alloydb/v1.13.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/alloydb%2Fv1.13.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/alloydb%2Fv1.13.0/manifests"},{"name":"binaryauthorization/v1.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/binaryauthorization/v1.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/binaryauthorization/v1.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/binaryauthorization%2Fv1.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/binaryauthorization%2Fv1.9.2/manifests"},{"name":"billing/v1.19.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/billing/v1.19.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/billing/v1.19.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/billing%2Fv1.19.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/billing%2Fv1.19.2/manifests"},{"name":"certificatemanager/v1.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/certificatemanager/v1.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/certificatemanager/v1.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/certificatemanager%2Fv1.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/certificatemanager%2Fv1.9.2/manifests"},{"name":"beyondcorp/v1.1.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/beyondcorp/v1.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/beyondcorp/v1.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/beyondcorp%2Fv1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/beyondcorp%2Fv1.1.2/manifests"},{"name":"cloudbuild/v1.18.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudbuild/v1.18.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudbuild/v1.18.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.18.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudbuild%2Fv1.18.1/manifests"},{"name":"chat/v0.7.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/chat/v0.7.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/chat/v0.7.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.7.1/manifests"},{"name":"channel/v1.19.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/channel/v1.19.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/channel/v1.19.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/channel%2Fv1.19.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/channel%2Fv1.19.1/manifests"},{"name":"batch/v1.11.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/batch/v1.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/batch/v1.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/batch%2Fv1.11.2/manifests"},{"name":"vpcaccess/v1.8.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vpcaccess/v1.8.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vpcaccess/v1.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vpcaccess%2Fv1.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vpcaccess%2Fv1.8.2/manifests"},{"name":"cloudprofiler/v0.4.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudprofiler/v0.4.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudprofiler/v0.4.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudprofiler%2Fv0.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudprofiler%2Fv0.4.2/manifests"},{"name":"clouddms/v1.8.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/clouddms/v1.8.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/clouddms/v1.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/clouddms%2Fv1.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/clouddms%2Fv1.8.2/manifests"},{"name":"advisorynotifications/v1.5.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/advisorynotifications/v1.5.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/advisorynotifications/v1.5.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/advisorynotifications%2Fv1.5.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/advisorynotifications%2Fv1.5.2/manifests"},{"name":"cloudcontrolspartner/v1.2.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudcontrolspartner/v1.2.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudcontrolspartner/v1.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudcontrolspartner%2Fv1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudcontrolspartner%2Fv1.2.1/manifests"},{"name":"baremetalsolution/v1.3.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/baremetalsolution/v1.3.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/baremetalsolution/v1.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/baremetalsolution%2Fv1.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/baremetalsolution%2Fv1.3.2/manifests"},{"name":"container/v1.41.0","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/container/v1.41.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/container/v1.41.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/container%2Fv1.41.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/container%2Fv1.41.0/manifests"},{"name":"contactcenterinsights/v1.15.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/contactcenterinsights/v1.15.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/contactcenterinsights/v1.15.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/contactcenterinsights%2Fv1.15.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/contactcenterinsights%2Fv1.15.1/manifests"},{"name":"containeranalysis/v0.13.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/containeranalysis/v0.13.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/containeranalysis/v0.13.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/containeranalysis%2Fv0.13.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/containeranalysis%2Fv0.13.2/manifests"},{"name":"config/v1.1.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/config/v1.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/config/v1.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/config%2Fv1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/config%2Fv1.1.2/manifests"},{"name":"dataform/v0.10.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataform/v0.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataform/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataform%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataform%2Fv0.10.2/manifests"},{"name":"dataflow/v0.10.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataflow/v0.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataflow/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataflow%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataflow%2Fv0.10.2/manifests"},{"name":"datacatalog/v1.22.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datacatalog/v1.22.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datacatalog/v1.22.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.22.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datacatalog%2Fv1.22.2/manifests"},{"name":"confidentialcomputing/v1.7.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/confidentialcomputing/v1.7.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/confidentialcomputing/v1.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/confidentialcomputing%2Fv1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/confidentialcomputing%2Fv1.7.2/manifests"},{"name":"dataproc/v2.10.0","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataproc/v2.10.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataproc/v2.10.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataproc%2Fv2.10.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataproc%2Fv2.10.0/manifests"},{"name":"dataplex/v1.19.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataplex/v1.19.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataplex/v1.19.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.19.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataplex%2Fv1.19.2/manifests"},{"name":"datafusion/v1.8.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datafusion/v1.8.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datafusion/v1.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datafusion%2Fv1.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datafusion%2Fv1.8.2/manifests"},{"name":"datalabeling/v0.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datalabeling/v0.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datalabeling/v0.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datalabeling%2Fv0.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datalabeling%2Fv0.9.2/manifests"},{"name":"dataqna/v0.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dataqna/v0.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dataqna/v0.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataqna%2Fv0.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dataqna%2Fv0.9.2/manifests"},{"name":"deploy/v1.23.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/deploy/v1.23.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/deploy/v1.23.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.23.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.23.1/manifests"},{"name":"compute/v1.28.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/compute/v1.28.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/compute/v1.28.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.28.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/compute%2Fv1.28.2/manifests"},{"name":"datastream/v1.11.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/datastream/v1.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/datastream/v1.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/datastream%2Fv1.11.2/manifests"},{"name":"documentai/v1.35.0","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/documentai/v1.35.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/documentai/v1.35.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/documentai%2Fv1.35.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/documentai%2Fv1.35.0/manifests"},{"name":"dlp/v1.20.0","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dlp/v1.20.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dlp/v1.20.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dlp%2Fv1.20.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dlp%2Fv1.20.0/manifests"},{"name":"discoveryengine/v1.15.0","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/discoveryengine/v1.15.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/discoveryengine/v1.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/discoveryengine%2Fv1.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/discoveryengine%2Fv1.15.0/manifests"},{"name":"domains/v0.10.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/domains/v0.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/domains/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/domains%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/domains%2Fv0.10.2/manifests"},{"name":"essentialcontacts/v1.7.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/essentialcontacts/v1.7.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/essentialcontacts/v1.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/essentialcontacts%2Fv1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/essentialcontacts%2Fv1.7.2/manifests"},{"name":"edgenetwork/v1.2.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/edgenetwork/v1.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/edgenetwork/v1.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgenetwork%2Fv1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgenetwork%2Fv1.2.2/manifests"},{"name":"dialogflow/v1.58.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/dialogflow/v1.58.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/dialogflow/v1.58.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.58.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/dialogflow%2Fv1.58.1/manifests"},{"name":"edgecontainer/v1.3.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/edgecontainer/v1.3.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/edgecontainer/v1.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgecontainer%2Fv1.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/edgecontainer%2Fv1.3.2/manifests"},{"name":"gkebackup/v1.6.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkebackup/v1.6.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkebackup/v1.6.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkebackup%2Fv1.6.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkebackup%2Fv1.6.2/manifests"},{"name":"functions/v1.19.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/functions/v1.19.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/functions/v1.19.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/functions%2Fv1.19.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/functions%2Fv1.19.2/manifests"},{"name":"gkeconnect/v0.11.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkeconnect/v0.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkeconnect/v0.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkeconnect%2Fv0.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkeconnect%2Fv0.11.2/manifests"},{"name":"gkehub/v0.15.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkehub/v0.15.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkehub/v0.15.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkehub%2Fv0.15.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkehub%2Fv0.15.2/manifests"},{"name":"filestore/v1.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/filestore/v1.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/filestore/v1.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/filestore%2Fv1.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/filestore%2Fv1.9.2/manifests"},{"name":"commerce/v1.2.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/commerce/v1.2.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/commerce/v1.2.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/commerce%2Fv1.2.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/commerce%2Fv1.2.1/manifests"},{"name":"eventarc/v1.14.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/eventarc/v1.14.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/eventarc/v1.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/eventarc%2Fv1.14.2/manifests"},{"name":"developerconnect/v0.2.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/developerconnect/v0.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/developerconnect/v0.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/developerconnect%2Fv0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/developerconnect%2Fv0.2.2/manifests"},{"name":"identitytoolkit/v0.2.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/identitytoolkit/v0.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/identitytoolkit/v0.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/identitytoolkit%2Fv0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/identitytoolkit%2Fv0.2.2/manifests"},{"name":"iap/v1.10.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iap/v1.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iap/v1.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iap%2Fv1.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iap%2Fv1.10.2/manifests"},{"name":"ids/v1.5.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/ids/v1.5.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/ids/v1.5.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ids%2Fv1.5.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/ids%2Fv1.5.2/manifests"},{"name":"iam/v1.2.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iam/v1.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iam/v1.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iam%2Fv1.2.2/manifests"},{"name":"kms/v1.20.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/kms/v1.20.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/kms/v1.20.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.20.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/kms%2Fv1.20.1/manifests"},{"name":"gsuiteaddons/v1.7.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gsuiteaddons/v1.7.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gsuiteaddons/v1.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gsuiteaddons%2Fv1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gsuiteaddons%2Fv1.7.2/manifests"},{"name":"iot/v1.8.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/iot/v1.8.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/iot/v1.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iot%2Fv1.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/iot%2Fv1.8.2/manifests"},{"name":"managedidentities/v1.7.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedidentities/v1.7.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedidentities/v1.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedidentities%2Fv1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedidentities%2Fv1.7.2/manifests"},{"name":"longrunning/v0.6.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/longrunning/v0.6.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/longrunning/v0.6.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/longrunning%2Fv0.6.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/longrunning%2Fv0.6.2/manifests"},{"name":"lifesciences/v0.10.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/lifesciences/v0.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/lifesciences/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/lifesciences%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/lifesciences%2Fv0.10.2/manifests"},{"name":"managedkafka/v0.2.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/managedkafka/v0.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/managedkafka/v0.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/managedkafka%2Fv0.2.2/manifests"},{"name":"language/v1.14.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/language/v1.14.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/language/v1.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/language%2Fv1.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/language%2Fv1.14.2/manifests"},{"name":"mediatranslation/v0.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/mediatranslation/v0.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/mediatranslation/v0.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/mediatranslation%2Fv0.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/mediatranslation%2Fv0.9.2/manifests"},{"name":"cloudtasks/v1.13.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudtasks/v1.13.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudtasks/v1.13.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudtasks%2Fv1.13.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudtasks%2Fv1.13.2/manifests"},{"name":"grafeas/v0.3.12","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/grafeas/v0.3.12","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/grafeas/v0.3.12","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/grafeas%2Fv0.3.12","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/grafeas%2Fv0.3.12/manifests"},{"name":"maps/v1.14.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/maps/v1.14.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/maps/v1.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/maps%2Fv1.14.1/manifests"},{"name":"netapp/v1.4.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/netapp/v1.4.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/netapp/v1.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/netapp%2Fv1.4.1/manifests"},{"name":"monitoring/v1.21.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/monitoring/v1.21.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/monitoring/v1.21.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.21.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/monitoring%2Fv1.21.2/manifests"},{"name":"networkconnectivity/v1.15.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkconnectivity/v1.15.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkconnectivity/v1.15.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.15.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkconnectivity%2Fv1.15.2/manifests"},{"name":"networkmanagement/v1.15.0","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkmanagement/v1.15.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkmanagement/v1.15.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.15.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkmanagement%2Fv1.15.0/manifests"},{"name":"migrationcenter/v1.1.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/migrationcenter/v1.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/migrationcenter/v1.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/migrationcenter%2Fv1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/migrationcenter%2Fv1.1.2/manifests"},{"name":"notebooks/v1.12.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/notebooks/v1.12.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/notebooks/v1.12.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/notebooks%2Fv1.12.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/notebooks%2Fv1.12.2/manifests"},{"name":"networkservices/v0.2.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networkservices/v0.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networkservices/v0.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkservices%2Fv0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networkservices%2Fv0.2.2/manifests"},{"name":"networksecurity/v0.10.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/networksecurity/v0.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/networksecurity/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networksecurity%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/networksecurity%2Fv0.10.2/manifests"},{"name":"metastore/v1.14.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/metastore/v1.14.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/metastore/v1.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/metastore%2Fv1.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/metastore%2Fv1.14.2/manifests"},{"name":"osconfig/v1.14.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/osconfig/v1.14.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/osconfig/v1.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/osconfig%2Fv1.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/osconfig%2Fv1.14.2/manifests"},{"name":"orgpolicy/v1.14.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orgpolicy/v1.14.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orgpolicy/v1.14.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orgpolicy%2Fv1.14.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orgpolicy%2Fv1.14.1/manifests"},{"name":"orchestration/v1.11.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/orchestration/v1.11.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/orchestration/v1.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/orchestration%2Fv1.11.1/manifests"},{"name":"websecurityscanner/v1.7.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/websecurityscanner/v1.7.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/websecurityscanner/v1.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/websecurityscanner%2Fv1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/websecurityscanner%2Fv1.7.2/manifests"},{"name":"oracledatabase/v0.1.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oracledatabase/v0.1.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oracledatabase/v0.1.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.1.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.1.1/manifests"},{"name":"gkemulticloud/v1.4.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/gkemulticloud/v1.4.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/gkemulticloud/v1.4.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkemulticloud%2Fv1.4.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/gkemulticloud%2Fv1.4.1/manifests"},{"name":"memcache/v1.11.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/memcache/v1.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/memcache/v1.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memcache%2Fv1.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/memcache%2Fv1.11.2/manifests"},{"name":"optimization/v1.7.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/optimization/v1.7.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/optimization/v1.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/optimization%2Fv1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/optimization%2Fv1.7.2/manifests"},{"name":"privilegedaccessmanager/v0.2.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/privilegedaccessmanager/v0.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/privilegedaccessmanager/v0.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privilegedaccessmanager%2Fv0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privilegedaccessmanager%2Fv0.2.2/manifests"},{"name":"privatecatalog/v0.10.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/privatecatalog/v0.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/privatecatalog/v0.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privatecatalog%2Fv0.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/privatecatalog%2Fv0.10.2/manifests"},{"name":"policytroubleshooter/v1.11.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/policytroubleshooter/v1.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/policytroubleshooter/v1.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policytroubleshooter%2Fv1.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policytroubleshooter%2Fv1.11.2/manifests"},{"name":"rapidmigrationassessment/v1.1.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/rapidmigrationassessment/v1.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/rapidmigrationassessment/v1.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/rapidmigrationassessment%2Fv1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/rapidmigrationassessment%2Fv1.1.2/manifests"},{"name":"recommender/v1.13.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recommender/v1.13.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recommender/v1.13.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommender%2Fv1.13.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommender%2Fv1.13.2/manifests"},{"name":"recommendationengine/v0.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recommendationengine/v0.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recommendationengine/v0.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommendationengine%2Fv0.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recommendationengine%2Fv0.9.2/manifests"},{"name":"policysimulator/v0.3.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/policysimulator/v0.3.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/policysimulator/v0.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policysimulator%2Fv0.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/policysimulator%2Fv0.3.2/manifests"},{"name":"recaptchaenterprise/v2.17.3","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.17.3","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.17.3","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.17.3","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.17.3/manifests"},{"name":"retail/v1.19.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/retail/v1.19.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/retail/v1.19.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/retail%2Fv1.19.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/retail%2Fv1.19.1/manifests"},{"name":"resourcesettings/v1.8.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/resourcesettings/v1.8.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/resourcesettings/v1.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcesettings%2Fv1.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcesettings%2Fv1.8.2/manifests"},{"name":"resourcemanager/v1.10.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/resourcemanager/v1.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/resourcemanager/v1.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcemanager%2Fv1.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/resourcemanager%2Fv1.10.2/manifests"},{"name":"run/v1.6.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/run/v1.6.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/run/v1.6.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.6.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.6.1/manifests"},{"name":"secretmanager/v1.14.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/secretmanager/v1.14.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/secretmanager/v1.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/secretmanager%2Fv1.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/secretmanager%2Fv1.14.2/manifests"},{"name":"phishingprotection/v0.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/phishingprotection/v0.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/phishingprotection/v0.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/phishingprotection%2Fv0.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/phishingprotection%2Fv0.9.2/manifests"},{"name":"scheduler/v1.11.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/scheduler/v1.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/scheduler/v1.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/scheduler%2Fv1.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/scheduler%2Fv1.11.2/manifests"},{"name":"redis/v1.17.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/redis/v1.17.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/redis/v1.17.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/redis%2Fv1.17.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/redis%2Fv1.17.2/manifests"},{"name":"securityposture/v0.2.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securityposture/v0.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securityposture/v0.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securityposture%2Fv0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securityposture%2Fv0.2.2/manifests"},{"name":"securitycentermanagement/v1.1.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securitycentermanagement/v1.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securitycentermanagement/v1.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycentermanagement%2Fv1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycentermanagement%2Fv1.1.2/manifests"},{"name":"servicecontrol/v1.14.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicecontrol/v1.14.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicecontrol/v1.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicecontrol%2Fv1.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicecontrol%2Fv1.14.2/manifests"},{"name":"servicehealth/v1.1.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicehealth/v1.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicehealth/v1.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicehealth%2Fv1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicehealth%2Fv1.1.2/manifests"},{"name":"servicedirectory/v1.12.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicedirectory/v1.12.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicedirectory/v1.12.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicedirectory%2Fv1.12.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicedirectory%2Fv1.12.2/manifests"},{"name":"securitycenter/v1.35.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securitycenter/v1.35.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securitycenter/v1.35.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycenter%2Fv1.35.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securitycenter%2Fv1.35.2/manifests"},{"name":"security/v1.18.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/security/v1.18.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/security/v1.18.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/security%2Fv1.18.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/security%2Fv1.18.2/manifests"},{"name":"parallelstore/v0.7.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parallelstore/v0.7.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parallelstore/v0.7.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.7.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.7.1/manifests"},{"name":"securesourcemanager/v1.3.0","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/securesourcemanager/v1.3.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/securesourcemanager/v1.3.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securesourcemanager%2Fv1.3.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/securesourcemanager%2Fv1.3.0/manifests"},{"name":"cloudquotas/v1.1.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/cloudquotas/v1.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/cloudquotas/v1.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/cloudquotas%2Fv1.1.2/manifests"},{"name":"oslogin/v1.14.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oslogin/v1.14.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oslogin/v1.14.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oslogin%2Fv1.14.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oslogin%2Fv1.14.2/manifests"},{"name":"storageinsights/v1.1.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storageinsights/v1.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storageinsights/v1.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storageinsights%2Fv1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storageinsights%2Fv1.1.2/manifests"},{"name":"speech/v1.25.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/speech/v1.25.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/speech/v1.25.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/speech%2Fv1.25.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/speech%2Fv1.25.2/manifests"},{"name":"shopping/v0.11.1","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.11.1","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.11.1","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.11.1","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.11.1/manifests"},{"name":"storagetransfer/v1.11.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storagetransfer/v1.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storagetransfer/v1.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storagetransfer%2Fv1.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storagetransfer%2Fv1.11.2/manifests"},{"name":"streetview/v0.2.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/streetview/v0.2.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/streetview/v0.2.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/streetview%2Fv0.2.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/streetview%2Fv0.2.2/manifests"},{"name":"shell/v1.8.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shell/v1.8.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shell/v1.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shell%2Fv1.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shell%2Fv1.8.2/manifests"},{"name":"talent/v1.7.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/talent/v1.7.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/talent/v1.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/talent%2Fv1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/talent%2Fv1.7.2/manifests"},{"name":"support/v1.1.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/support/v1.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/support/v1.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/support%2Fv1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/support%2Fv1.1.2/manifests"},{"name":"serviceusage/v1.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/serviceusage/v1.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/serviceusage/v1.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/serviceusage%2Fv1.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/serviceusage%2Fv1.9.2/manifests"},{"name":"translate/v1.12.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/translate/v1.12.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/translate/v1.12.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/translate%2Fv1.12.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/translate%2Fv1.12.2/manifests"},{"name":"trace/v1.11.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/trace/v1.11.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/trace/v1.11.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/trace%2Fv1.11.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/trace%2Fv1.11.2/manifests"},{"name":"servicemanagement/v1.10.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/servicemanagement/v1.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/servicemanagement/v1.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicemanagement%2Fv1.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/servicemanagement%2Fv1.10.2/manifests"},{"name":"tpu/v1.7.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/tpu/v1.7.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/tpu/v1.7.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/tpu%2Fv1.7.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/tpu%2Fv1.7.2/manifests"},{"name":"video/v1.23.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/video/v1.23.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/video/v1.23.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/video%2Fv1.23.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/video%2Fv1.23.2/manifests"},{"name":"videointelligence/v1.12.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/videointelligence/v1.12.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/videointelligence/v1.12.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/videointelligence%2Fv1.12.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/videointelligence%2Fv1.12.2/manifests"},{"name":"visionai/v0.4.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/visionai/v0.4.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/visionai/v0.4.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/visionai%2Fv0.4.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/visionai%2Fv0.4.2/manifests"},{"name":"vision/v2.9.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vision/v2.9.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vision/v2.9.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vision%2Fv2.9.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vision%2Fv2.9.2/manifests"},{"name":"texttospeech/v1.9.0","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/texttospeech/v1.9.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/texttospeech/v1.9.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.9.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/texttospeech%2Fv1.9.0/manifests"},{"name":"workflows/v1.13.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/workflows/v1.13.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/workflows/v1.13.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.13.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workflows%2Fv1.13.2/manifests"},{"name":"webrisk/v1.10.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/webrisk/v1.10.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/webrisk/v1.10.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/webrisk%2Fv1.10.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/webrisk%2Fv1.10.2/manifests"},{"name":"workstations/v1.1.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/workstations/v1.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/workstations/v1.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workstations%2Fv1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/workstations%2Fv1.1.2/manifests"},{"name":"vmwareengine/v1.3.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vmwareengine/v1.3.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vmwareengine/v1.3.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmwareengine%2Fv1.3.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmwareengine%2Fv1.3.2/manifests"},{"name":"vmmigration/v1.8.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/vmmigration/v1.8.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/vmmigration/v1.8.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmmigration%2Fv1.8.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/vmmigration%2Fv1.8.2/manifests"},{"name":"telcoautomation/v1.1.2","sha":"47bb902e48695e5f0c46f7bee00d72ae5f794e1e","kind":"commit","published_at":"2024-10-23T21:37:34.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/telcoautomation/v1.1.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/telcoautomation/v1.1.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/telcoautomation%2Fv1.1.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/telcoautomation%2Fv1.1.2/manifests"},{"name":"auth/v0.9.9","sha":"1d7ee9f526fdb4d8e2210cc41030effe2c8d36e7","kind":"commit","published_at":"2024-10-22T16:50:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/auth/v0.9.9","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/auth/v0.9.9","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.9.9","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/auth%2Fv0.9.9/manifests"},{"name":"pubsub/v1.45.0","sha":"87da3b6b13509005d487dc81ccf0ea417336decd","kind":"commit","published_at":"2024-10-22T00:43:31.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/pubsub/v1.45.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/pubsub/v1.45.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.45.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/pubsub%2Fv1.45.0/manifests"},{"name":"storage/v1.45.0","sha":"a273aab6c780dc42fb8725e0d7b29e0ad02b32ac","kind":"commit","published_at":"2024-10-17T22:54:14.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/storage/v1.45.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/storage/v1.45.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.45.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/storage%2Fv1.45.0/manifests"},{"name":"logging/v1.12.0","sha":"2d31f0037d984a1b46ebf1607e24a37aa545df0c","kind":"commit","published_at":"2024-10-16T17:30:19.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/logging/v1.12.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/logging/v1.12.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/logging%2Fv1.12.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/logging%2Fv1.12.0/manifests"},{"name":"spanner/v1.70.0","sha":"047149b11bcc663d165dbb1dfb28c9ccad110036","kind":"commit","published_at":"2024-10-14T05:55:53.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/spanner/v1.70.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/spanner/v1.70.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.70.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/spanner%2Fv1.70.0/manifests"},{"name":"shopping/v0.11.0","sha":"01083aac773e82e2c54137204e8f40598289cf8f","kind":"commit","published_at":"2024-10-10T02:32:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/shopping/v0.11.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/shopping/v0.11.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.11.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/shopping%2Fv0.11.0/manifests"},{"name":"run/v1.6.0","sha":"01083aac773e82e2c54137204e8f40598289cf8f","kind":"commit","published_at":"2024-10-10T02:32:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/run/v1.6.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/run/v1.6.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.6.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/run%2Fv1.6.0/manifests"},{"name":"retail/v1.19.0","sha":"01083aac773e82e2c54137204e8f40598289cf8f","kind":"commit","published_at":"2024-10-10T02:32:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/retail/v1.19.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/retail/v1.19.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/retail%2Fv1.19.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/retail%2Fv1.19.0/manifests"},{"name":"commerce/v1.2.0","sha":"01083aac773e82e2c54137204e8f40598289cf8f","kind":"commit","published_at":"2024-10-10T02:32:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/commerce/v1.2.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/commerce/v1.2.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/commerce%2Fv1.2.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/commerce%2Fv1.2.0/manifests"},{"name":"chat/v0.7.0","sha":"01083aac773e82e2c54137204e8f40598289cf8f","kind":"commit","published_at":"2024-10-10T02:32:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/chat/v0.7.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/chat/v0.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/chat%2Fv0.7.0/manifests"},{"name":"parallelstore/v0.7.0","sha":"01083aac773e82e2c54137204e8f40598289cf8f","kind":"commit","published_at":"2024-10-10T02:32:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/parallelstore/v0.7.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/parallelstore/v0.7.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.7.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/parallelstore%2Fv0.7.0/manifests"},{"name":"oracledatabase/v0.1.0","sha":"01083aac773e82e2c54137204e8f40598289cf8f","kind":"commit","published_at":"2024-10-10T02:32:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/oracledatabase/v0.1.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/oracledatabase/v0.1.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.1.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/oracledatabase%2Fv0.1.0/manifests"},{"name":"deploy/v1.23.0","sha":"01083aac773e82e2c54137204e8f40598289cf8f","kind":"commit","published_at":"2024-10-10T02:32:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/deploy/v1.23.0","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/deploy/v1.23.0","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.23.0","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/deploy%2Fv1.23.0/manifests"},{"name":"recaptchaenterprise/v2.17.2","sha":"01083aac773e82e2c54137204e8f40598289cf8f","kind":"commit","published_at":"2024-10-10T02:32:25.000Z","download_url":"https://codeload.github.com/googleapis/google-cloud-go/tar.gz/recaptchaenterprise/v2.17.2","html_url":"https://github.com/googleapis/google-cloud-go/releases/tag/recaptchaenterprise/v2.17.2","dependencies_parsed_at":null,"dependency_job_id":null,"tag_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.17.2","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/googleapis%2Fgoogle-cloud-go/tags/recaptchaenterprise%2Fv2.17.2/manifests"}]},"repo_metadata_updated_at":"2025-05-01T11:32:20.719Z","dependent_packages_count":10001,"downloads":null,"downloads_period":null,"dependent_repos_count":100575,"rankings":{"downloads":null,"dependent_repos_count":0.010762953912632718,"dependent_packages_count":0.023220076496698366,"stargazers_count":1.1557220048592745,"forks_count":0.7139426095379703,"docker_downloads_count":0.023618704419388466,"average":0.38545326984519285},"purl":"pkg:golang/cloud.google.com/go/storage","advisories":[],"docker_usage_url":"https://docker.ecosyste.ms/usage/go/cloud.google.com/go/storage","docker_dependents_count":4966,"docker_downloads_count":16249501616,"usage_url":"https://repos.ecosyste.ms/usage/go/cloud.google.com/go/storage","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/go/cloud.google.com/go/storage/dependencies","status":null,"funding_links":[],"critical":true,"versions_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/cloud.google.com%2Fgo%2Fstorage/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/cloud.google.com%2Fgo%2Fstorage/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/cloud.google.com%2Fgo%2Fstorage/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/cloud.google.com%2Fgo%2Fstorage/related_packages","maintainers":[],"registry":{"name":"proxy.golang.org","url":"https://proxy.golang.org","ecosystem":"go","default":true,"packages_count":1882879,"maintainers_count":0,"namespaces_count":723926,"keywords_count":97872,"github":"golang","metadata":{"funded_packages_count":39346},"icon_url":"https://github.com/golang.png","created_at":"2022-04-04T15:19:22.939Z","updated_at":"2025-06-06T05:22:27.920Z","packages_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages","maintainers_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/maintainers","namespaces_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/namespaces"}},"unique_repositories_count":310,"unique_repositories_count_past_30_days":17,"recent_issues":[{"uuid":"4668446613","node_id":"PR_kwDOQSoXl87mtaqu","number":238,"state":"closed","title":"deps(deps): Bump cloud.google.com/go/storage from 1.62.2 to 1.62.3","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":"2026-06-15T19:59:52.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-15T19:58:33.000Z","updated_at":"2026-06-15T20:05:17.000Z","time_to_close":79,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps(deps): Bump","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.2 to 1.62.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.2\u0026new-version=1.62.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/higakikeita/tfdrift-falco/pull/238","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/higakikeita%2Ftfdrift-falco/issues/238","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/238/packages"},{"uuid":"4659410131","node_id":"PR_kwDOCxT7Ss7mQGIr","number":718,"state":"closed","title":"build(deps): bump the common-golang-dependencies group across 1 directory with 10 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-16T01:13:17.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-14T14:23:01.000Z","updated_at":"2026-06-16T01:13:19.000Z","time_to_close":125416,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps): bump","group_name":"common-golang-dependencies","update_count":10,"packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/Azure/azure-sdk-for-go/sdk/azcore","old_version":"1.21.1","new_version":"1.22.0","repository_url":"https://github.com/Azure/azure-sdk-for-go"},{"name":"golang.org/x/crypto","old_version":"0.52.0","new_version":"0.53.0","repository_url":"https://github.com/golang/crypto"},{"name":"golang.org/x/mod","old_version":"0.36.0","new_version":"0.37.0","repository_url":"https://github.com/golang/mod"},{"name":"golang.org/x/net","old_version":"0.55.0","new_version":"0.56.0","repository_url":"https://github.com/golang/net"},{"name":"google.golang.org/api","old_version":"0.282.0","new_version":"0.284.0","repository_url":"https://github.com/googleapis/google-api-go-client"}],"path":null,"ecosystem":"go"},"body":"Bumps the common-golang-dependencies group with 6 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.2` | `1.62.3` |\n| [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://github.com/Azure/azure-sdk-for-go) | `1.21.1` | `1.22.0` |\n| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.52.0` | `0.53.0` |\n| [golang.org/x/mod](https://github.com/golang/mod) | `0.36.0` | `0.37.0` |\n| [golang.org/x/net](https://github.com/golang/net) | `0.55.0` | `0.56.0` |\n| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.282.0` | `0.284.0` |\n\n\nUpdates `cloud.google.com/go/storage` from 1.62.2 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/Azure/azure-sdk-for-go/sdk/azcore` from 1.21.1 to 1.22.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/Azure/azure-sdk-for-go/releases\"\u003egithub.com/Azure/azure-sdk-for-go/sdk/azcore's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003esdk/azcore/v1.22.0\u003c/h2\u003e\n\u003ch2\u003e1.22.0 (2026-06-04)\u003c/h2\u003e\n\u003ch3\u003eFeatures Added\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded type \u003ccode\u003edatetime.RFC7231\u003c/code\u003e for date/time values in RFC 1123 format with a fixed GMT timezone.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther Changes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpgraded dependencies.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/a19f613b0e6ecb3d5d71a22980a82d61e7f9fda5\"\u003e\u003ccode\u003ea19f613\u003c/code\u003e\u003c/a\u003e Prep azcore@v1.22.0 for release (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26926\"\u003e#26926\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/5803c0ee4e3519507cc5cd53cee73ffb6eeb2db8\"\u003e\u003ccode\u003e5803c0e\u003c/code\u003e\u003c/a\u003e Increment package version after release of storage/azblob (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26935\"\u003e#26935\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26943\"\u003e#26943\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/9a979ffe0fca4489633b587ab12464c3d66d6988\"\u003e\u003ccode\u003e9a979ff\u003c/code\u003e\u003c/a\u003e [Automation] Regenerate SDK based on typespec-go branch main 【batch 6】 (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26939\"\u003e#26939\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/711094d6e2aa4b4430f9012b95fe30bab5236250\"\u003e\u003ccode\u003e711094d\u003c/code\u003e\u003c/a\u003e eng/tools/generator: release v0.4.14 (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26934\"\u003e#26934\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/20bd67791ff45e58f876a6ed6a903df75c8b4f38\"\u003e\u003ccode\u003e20bd677\u003c/code\u003e\u003c/a\u003e Deprecate Change Analysis SDK (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26913\"\u003e#26913\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/92a31ec5d094c6d6572317a33c913382b4d2e597\"\u003e\u003ccode\u003e92a31ec\u003c/code\u003e\u003c/a\u003e [Automation] Regenerate SDK based on typespec-go branch main 【batch 5】 (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26932\"\u003e#26932\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/768459d1788ea7c9649383053dee10235fd5e405\"\u003e\u003ccode\u003e768459d\u003c/code\u003e\u003c/a\u003e azcertificates: live recording for PlatformManaged + review fixes (follow-up ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/e845f721e72a18d094f0e07969dbea9bc374f22b\"\u003e\u003ccode\u003ee845f72\u003c/code\u003e\u003c/a\u003e Update codeowners (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26918\"\u003e#26918\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/118bb357a68bb51960b061f0a911d4f8f4cef2bb\"\u003e\u003ccode\u003e118bb35\u003c/code\u003e\u003c/a\u003e eng/tools/internal/exports: handle untyped const with selector expr value (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/2\"\u003e#2\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/2b3767bcef06a057a3139784d5ee94c305dc4790\"\u003e\u003ccode\u003e2b3767b\u003c/code\u003e\u003c/a\u003e Configurations:  'specification/containerservice/resource-manager/Microsoft.C...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/Azure/azure-sdk-for-go/compare/sdk/azcore/v1.21.1...sdk/azcore/v1.22.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/crypto` from 0.52.0 to 0.53.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/45460e079737ecb64f30d79d3d6fc2914494fa66\"\u003e\u003ccode\u003e45460e0\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/d37c95e27de65576f42440cdfbc261d810506841\"\u003e\u003ccode\u003ed37c95e\u003c/code\u003e\u003c/a\u003e pkcs12: limit PBKDF iteration count to prevent CPU exhaustion\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/e2ffffe738fb46531cd8924bab497bdc77d9ecc8\"\u003e\u003ccode\u003ee2ffffe\u003c/code\u003e\u003c/a\u003e ssh: reject incomplete gssapi-with-mic configurations\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/60e158ad30c226555794539d96f0f104f43395f7\"\u003e\u003ccode\u003e60e158a\u003c/code\u003e\u003c/a\u003e ssh/test: isolate CLI tests from user SSH config and agent\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/1b77d23dc8afb26a494e331a3c637b6de88398d2\"\u003e\u003ccode\u003e1b77d23\u003c/code\u003e\u003c/a\u003e ssh/knownhosts: reject lines with multiple or unknown markers\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/3872a2bc69f464352dea49c2856955ef7c5d5851\"\u003e\u003ccode\u003e3872a2b\u003c/code\u003e\u003c/a\u003e ssh/knownhosts: verify declared key type matches decoded key\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/9f72eccdf6fa09a7c68448a7fdc333dd2deb7d9d\"\u003e\u003ccode\u003e9f72ecc\u003c/code\u003e\u003c/a\u003e ssh/knownhosts: treat only ASCII space and tab as whitespace\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/8f405a4109d7ce87a44f89185bdc385914ce5c13\"\u003e\u003ccode\u003e8f405a4\u003c/code\u003e\u003c/a\u003e ssh: validate ECDSA curve matches expected algorithm\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/bb41b3dbe630c21c78e3aeb0ebdd8d06a3a34fcf\"\u003e\u003ccode\u003ebb41b3d\u003c/code\u003e\u003c/a\u003e ssh: improve DH GEX group selection using PreferredBits\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/e04e7219970912a40f80c4b13029416fdf960eeb\"\u003e\u003ccode\u003ee04e721\u003c/code\u003e\u003c/a\u003e ssh/agent: validate ed25519 private key length in Add\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/crypto/compare/v0.52.0...v0.53.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/mod` from 0.36.0 to 0.37.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/mod/commit/deb1dfcdb7c7fd98fb5afddc3e95dd36d5880874\"\u003e\u003ccode\u003edeb1dfc\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/mod/commit/087f6515dd3ba3e8b06918fa425ffe7732321a7a\"\u003e\u003ccode\u003e087f651\u003c/code\u003e\u003c/a\u003e modfile: use slices.Backward\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/mod/commit/343ee60345a1f2ff0692be9dd068c0778dba985c\"\u003e\u003ccode\u003e343ee60\u003c/code\u003e\u003c/a\u003e x/mod: allow for aggressively conslidating requires\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/mod/compare/v0.36.0...v0.37.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/net` from 0.55.0 to 0.56.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/9e7fdbfadb32b0cc7524100014c5cf9b6adc7729\"\u003e\u003ccode\u003e9e7fdbf\u003c/code\u003e\u003c/a\u003e internal/http3: fix wrong argument being given when validating header value\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/b686e5f3573e5f55120d664fc283ed7e80c1af3c\"\u003e\u003ccode\u003eb686e5f\u003c/code\u003e\u003c/a\u003e internal/http3: add gzip support to transport\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/8a348850ed6818306667722af2b42a6fc63473e0\"\u003e\u003ccode\u003e8a34885\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/72eaf98743302f6e0ad10883163dfc46dc8e8183\"\u003e\u003ccode\u003e72eaf98\u003c/code\u003e\u003c/a\u003e dns/dnsmessage: correctly validate SVCB record parameter order\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/82e7868a02167540748b74780b0bf825985256f7\"\u003e\u003ccode\u003e82e7868\u003c/code\u003e\u003c/a\u003e dns/dnsmessage: avoid panic when parsing SVCB record with truncated data\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/b64f1fa4c615965246e5b9e5c9d614916fa8967d\"\u003e\u003ccode\u003eb64f1fa\u003c/code\u003e\u003c/a\u003e internal/http3: add server support for \u0026quot;Trailer:\u0026quot; magic prefix\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/2707ee21efea70599446dd35979b1d1aedf44ada\"\u003e\u003ccode\u003e2707ee2\u003c/code\u003e\u003c/a\u003e internal/http3: implement HTTP/3 clientConn methods\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/31358cc259a764905194e3d6c597375b0ff366c1\"\u003e\u003ccode\u003e31358cc\u003c/code\u003e\u003c/a\u003e internal/http3: snapshot response headers at WriteHeader time\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/8ecbaa95fea823c19fa74c5c3b53e0bccd473828\"\u003e\u003ccode\u003e8ecbaa9\u003c/code\u003e\u003c/a\u003e html: don't adjust xml:base\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/8ae811abe5c2daa55c68d51a101af1c5751a4d55\"\u003e\u003ccode\u003e8ae811a\u003c/code\u003e\u003c/a\u003e html: properly handle end script tag in fragment mode\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/net/compare/v0.55.0...v0.56.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/sync` from 0.20.0 to 0.21.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/5071ed6a9f1617117556b66384f765c934de3698\"\u003e\u003ccode\u003e5071ed6\u003c/code\u003e\u003c/a\u003e all: fix some comments to improve readability\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/sync/compare/v0.20.0...v0.21.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/sys` from 0.45.0 to 0.46.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/d58dcfa8a74514c0ef0fc401259156c5e2fc9ff5\"\u003e\u003ccode\u003ed58dcfa\u003c/code\u003e\u003c/a\u003e unix: add GPIO constants and structs\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/sys/compare/v0.45.0...v0.46.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/term` from 0.43.0 to 0.44.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/3b43943a9e7de876a5d5e1f5e7da7cdeae0f542a\"\u003e\u003ccode\u003e3b43943\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/term/compare/v0.43.0...v0.44.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/text` from 0.37.0 to 0.38.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/text/commit/f4bb6328041b090f85b93014bd369edfcd24bdef\"\u003e\u003ccode\u003ef4bb632\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/text/compare/v0.37.0...v0.38.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/api` from 0.282.0 to 0.284.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/releases\"\u003egoogle.golang.org/api's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.284.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.283.0...v0.284.0\"\u003e0.284.0\u003c/a\u003e (2026-06-09)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3613\"\u003e#3613\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/5f021536107adde3063487a75aa9f46078490191\"\u003e5f02153\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3616\"\u003e#3616\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/25b429a5431a77dd95eb00466661c1447eab6d16\"\u003e25b429a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3617\"\u003e#3617\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/1ef362535b2f2f3afbc1408adbf6d3b69e58ad26\"\u003e1ef3625\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.283.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.282.0...v0.283.0\"\u003e0.283.0\u003c/a\u003e (2026-06-01)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3609\"\u003e#3609\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ed84bb800c56d3f7fee4c11f96673114e94a8cc2\"\u003eed84bb8\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3611\"\u003e#3611\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3855346eda7f4ba6c844d86de5de493d3e395f00\"\u003e3855346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3612\"\u003e#3612\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/32624d32240ec8e5997810fb9cb54f8000b6c7f8\"\u003e32624d3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md\"\u003egoogle.golang.org/api's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.283.0...v0.284.0\"\u003e0.284.0\u003c/a\u003e (2026-06-09)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3613\"\u003e#3613\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/5f021536107adde3063487a75aa9f46078490191\"\u003e5f02153\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3616\"\u003e#3616\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/25b429a5431a77dd95eb00466661c1447eab6d16\"\u003e25b429a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3617\"\u003e#3617\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/1ef362535b2f2f3afbc1408adbf6d3b69e58ad26\"\u003e1ef3625\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.282.0...v0.283.0\"\u003e0.283.0\u003c/a\u003e (2026-06-01)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3609\"\u003e#3609\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ed84bb800c56d3f7fee4c11f96673114e94a8cc2\"\u003eed84bb8\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3611\"\u003e#3611\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3855346eda7f4ba6c844d86de5de493d3e395f00\"\u003e3855346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3612\"\u003e#3612\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/32624d32240ec8e5997810fb9cb54f8000b6c7f8\"\u003e32624d3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/5c6a0b03b25a64955922133a4486f9632f381e88\"\u003e\u003ccode\u003e5c6a0b0\u003c/code\u003e\u003c/a\u003e chore(main): release 0.284.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3614\"\u003e#3614\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/1ef362535b2f2f3afbc1408adbf6d3b69e58ad26\"\u003e\u003ccode\u003e1ef3625\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3617\"\u003e#3617\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4dd580d53ff4585321810eaddf5c65d6d6b9d893\"\u003e\u003ccode\u003e4dd580d\u003c/code\u003e\u003c/a\u003e chore(all): update all (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3615\"\u003e#3615\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/25b429a5431a77dd95eb00466661c1447eab6d16\"\u003e\u003ccode\u003e25b429a\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3616\"\u003e#3616\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/5f021536107adde3063487a75aa9f46078490191\"\u003e\u003ccode\u003e5f02153\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3613\"\u003e#3613\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f6726366ff2f0b8fc82cec6f063dc9beb3ab1377\"\u003e\u003ccode\u003ef672636\u003c/code\u003e\u003c/a\u003e chore(main): release 0.283.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3610\"\u003e#3610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/32624d32240ec8e5997810fb9cb54f8000b6c7f8\"\u003e\u003ccode\u003e32624d3\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3612\"\u003e#3612\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3855346eda7f4ba6c844d86de5de493d3e395f00\"\u003e\u003ccode\u003e3855346\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3611\"\u003e#3611\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ed84bb800c56d3f7fee4c11f96673114e94a8cc2\"\u003e\u003ccode\u003eed84bb8\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3609\"\u003e#3609\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.282.0...v0.284.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/jkowalski/kopia/pull/718","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkowalski%2Fkopia/issues/718","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/718/packages"},{"uuid":"4610130261","node_id":"PR_kwDODD8zz87jwoqO","number":996,"state":"open","title":"chore(deps): Bump the gomod group with 10 updates","user":"dependabot[bot]","labels":["dco-signoff: yes","size/L","dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T04:56:14.000Z","updated_at":"2026-06-08T04:56:31.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): Bump","group_name":"gomod","update_count":10,"packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.41.7","new_version":"1.41.12","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.32.17","new_version":"1.32.23","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/docker/cli","old_version":"29.5.2+incompatible","new_version":"29.5.3+incompatible","repository_url":"https://github.com/docker/cli"},{"name":"github.com/google/go-containerregistry","old_version":"0.21.5","new_version":"0.21.6","repository_url":"https://github.com/google/go-containerregistry"},{"name":"github.com/sigstore/sigstore","old_version":"1.10.6","new_version":"1.10.8","repository_url":"https://github.com/sigstore/sigstore"},{"name":"github.com/sigstore/sigstore/pkg/signature/kms/aws","old_version":"1.10.6","new_version":"1.10.8","repository_url":"https://github.com/sigstore/sigstore"},{"name":"github.com/sigstore/sigstore/pkg/signature/kms/azure","old_version":"1.10.6","new_version":"1.10.8","repository_url":"https://github.com/sigstore/sigstore"},{"name":"github.com/sigstore/sigstore/pkg/signature/kms/gcp","old_version":"1.10.6","new_version":"1.10.8","repository_url":"https://github.com/sigstore/sigstore"},{"name":"github.com/sigstore/sigstore/pkg/signature/kms/hashivault","old_version":"1.10.6","new_version":"1.10.8","repository_url":"https://github.com/sigstore/sigstore"}],"path":null,"ecosystem":"go"},"body":"Bumps the gomod group with 10 updates:\n\n| Package | From | To |\n| --- | --- | --- |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.1` | `1.62.3` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.7` | `1.41.12` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.17` | `1.32.23` |\n| [github.com/docker/cli](https://github.com/docker/cli) | `29.5.2+incompatible` | `29.5.3+incompatible` |\n| [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry) | `0.21.5` | `0.21.6` |\n| [github.com/sigstore/sigstore](https://github.com/sigstore/sigstore) | `1.10.6` | `1.10.8` |\n| [github.com/sigstore/sigstore/pkg/signature/kms/aws](https://github.com/sigstore/sigstore) | `1.10.6` | `1.10.8` |\n| [github.com/sigstore/sigstore/pkg/signature/kms/azure](https://github.com/sigstore/sigstore) | `1.10.6` | `1.10.8` |\n| [github.com/sigstore/sigstore/pkg/signature/kms/gcp](https://github.com/sigstore/sigstore) | `1.10.6` | `1.10.8` |\n| [github.com/sigstore/sigstore/pkg/signature/kms/hashivault](https://github.com/sigstore/sigstore) | `1.10.6` | `1.10.8` |\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2` from 1.41.7 to 1.41.12\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7146c2b4007293f0acc9b2e8b92ffa7a30841df0\"\u003e\u003ccode\u003e7146c2b\u003c/code\u003e\u003c/a\u003e Release 2026-06-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5aef2fd8a4027ecf34eb5e32a28ff4a955b353d6\"\u003e\u003ccode\u003e5aef2fd\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f94c04478d36a4ffb777221761459fb4b1d20cba\"\u003e\u003ccode\u003ef94c044\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f00b205128286d6431115dd078da3c36197999f4\"\u003e\u003ccode\u003ef00b205\u003c/code\u003e\u003c/a\u003e bump to smithy-go v1.27.1 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3434\"\u003e#3434\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c4ad7dee6ebd9a3e1c7ee208f77e4ac8532b17c9\"\u003e\u003ccode\u003ec4ad7de\u003c/code\u003e\u003c/a\u003e drop service/internal/benchmark (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3433\"\u003e#3433\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/91eca463daf932474778dc4a984c41ecfcd9dc3c\"\u003e\u003ccode\u003e91eca46\u003c/code\u003e\u003c/a\u003e Release 2026-06-03.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e9d9e156c352b4956ed0b3d57614467d1f79c62b\"\u003e\u003ccode\u003ee9d9e15\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/def6a3a4bb06c199a4843c501d84730d8235cab4\"\u003e\u003ccode\u003edef6a3a\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fa369bd7bb9576e85ac094a43a15e8372a3d0129\"\u003e\u003ccode\u003efa369bd\u003c/code\u003e\u003c/a\u003e Release 2026-06-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/960ee4dc8380a46ded94f3976e073242d42bf8ed\"\u003e\u003ccode\u003e960ee4d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.41.7...v1.41.12\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/config` from 1.32.17 to 1.32.23\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7146c2b4007293f0acc9b2e8b92ffa7a30841df0\"\u003e\u003ccode\u003e7146c2b\u003c/code\u003e\u003c/a\u003e Release 2026-06-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5aef2fd8a4027ecf34eb5e32a28ff4a955b353d6\"\u003e\u003ccode\u003e5aef2fd\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f94c04478d36a4ffb777221761459fb4b1d20cba\"\u003e\u003ccode\u003ef94c044\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f00b205128286d6431115dd078da3c36197999f4\"\u003e\u003ccode\u003ef00b205\u003c/code\u003e\u003c/a\u003e bump to smithy-go v1.27.1 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3434\"\u003e#3434\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c4ad7dee6ebd9a3e1c7ee208f77e4ac8532b17c9\"\u003e\u003ccode\u003ec4ad7de\u003c/code\u003e\u003c/a\u003e drop service/internal/benchmark (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3433\"\u003e#3433\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/91eca463daf932474778dc4a984c41ecfcd9dc3c\"\u003e\u003ccode\u003e91eca46\u003c/code\u003e\u003c/a\u003e Release 2026-06-03.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e9d9e156c352b4956ed0b3d57614467d1f79c62b\"\u003e\u003ccode\u003ee9d9e15\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/def6a3a4bb06c199a4843c501d84730d8235cab4\"\u003e\u003ccode\u003edef6a3a\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fa369bd7bb9576e85ac094a43a15e8372a3d0129\"\u003e\u003ccode\u003efa369bd\u003c/code\u003e\u003c/a\u003e Release 2026-06-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/960ee4dc8380a46ded94f3976e073242d42bf8ed\"\u003e\u003ccode\u003e960ee4d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.32.17...config/v1.32.23\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/docker/cli` from 29.5.2+incompatible to 29.5.3+incompatible\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/d1c06ef6b41d88d76866aea43c246cd7c63d04fa\"\u003e\u003ccode\u003ed1c06ef\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/7022\"\u003e#7022\u003c/a\u003e from mickael-docker/docs-request-field\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/7dd053b1d1d66bec5f793d090dba7e81240afadd\"\u003e\u003ccode\u003e7dd053b\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/7003\"\u003e#7003\u003c/a\u003e from thaJeztah/logs_links\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/37c3d316cc76fa9ad27e3897fa7e60c5a3b66d1f\"\u003e\u003ccode\u003e37c3d31\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/7024\"\u003e#7024\u003c/a\u003e from thaJeztah/add_zizmor\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/45f10f226e8e6eba41064a7819bec986ac850288\"\u003e\u003ccode\u003e45f10f2\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/7025\"\u003e#7025\u003c/a\u003e from vvoland/update-go\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/b458dc9e81e732fdaa66dac672db36ff28d6b6c5\"\u003e\u003ccode\u003eb458dc9\u003c/code\u003e\u003c/a\u003e update to go1.26.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/1953194bd5a44b1a991eea79c4f0aacfb6c74aab\"\u003e\u003ccode\u003e1953194\u003c/code\u003e\u003c/a\u003e gha: apply zizmor fixes\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/ac0419ea90d1177eb11655a5ee9795126e8deb7a\"\u003e\u003ccode\u003eac0419e\u003c/code\u003e\u003c/a\u003e gha: add zizmor workflow\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/1aa0416b8a5973bc5f605a42d13f1926ab01f2ac\"\u003e\u003ccode\u003e1aa0416\u003c/code\u003e\u003c/a\u003e docs: recommend default deny and clarify requesturi field\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/3a8595298407d5ab67d0ed13d57819dddf561d98\"\u003e\u003ccode\u003e3a85952\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/7020\"\u003e#7020\u003c/a\u003e from thaJeztah/full_semver\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/8d3fbdf5707f6cd6b3157eef5aeba8af2f436f9d\"\u003e\u003ccode\u003e8d3fbdf\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/7019\"\u003e#7019\u003c/a\u003e from thaJeztah/dependabot_labels\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/cli/compare/v29.5.2...v29.5.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/google/go-containerregistry` from 0.21.5 to 0.21.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/go-containerregistry/releases\"\u003egithub.com/google/go-containerregistry's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.21.6\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: update dependencies to use new azure sdk components by \u003ca href=\"https://github.com/gaganhr94\"\u003e\u003ccode\u003e@​gaganhr94\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2262\"\u003egoogle/go-containerregistry#2262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: restore resp.Body in retryError so CheckError can parse it by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2264\"\u003egoogle/go-containerregistry#2264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/registry: return 202 Accepted for PATCH chunk uploads by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2265\"\u003egoogle/go-containerregistry#2265\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFollow OCI distribution spec for artifactType and annotations by \u003ca href=\"https://github.com/malt3\"\u003e\u003ccode\u003e@​malt3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2269\"\u003egoogle/go-containerregistry#2269\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eactions: attach Codecov token to coverage tests on main by \u003ca href=\"https://github.com/Subserial\"\u003e\u003ccode\u003e@​Subserial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2270\"\u003egoogle/go-containerregistry#2270\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: use DeleteScope (with \u0026quot;delete\u0026quot; action) for manifest deletion by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2266\"\u003egoogle/go-containerregistry#2266\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: limit concurrent layer pulls by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2271\"\u003egoogle/go-containerregistry#2271\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/registry: reject corrupt disk blobs by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2272\"\u003egoogle/go-containerregistry#2272\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emutate: close layer readers during export by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2277\"\u003egoogle/go-containerregistry#2277\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ecrane/flatten: preserve image media type when flattening by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2267\"\u003egoogle/go-containerregistry#2267\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump goreleaser/goreleaser-action from 7.0.0 to 7.2.1 in the actions group across 1 directory by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2273\"\u003egoogle/go-containerregistry#2273\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump go.opentelemetry.io/otel from 1.36.0 to 1.41.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2278\"\u003egoogle/go-containerregistry#2278\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump the go-deps group across 3 directories with 6 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2280\"\u003egoogle/go-containerregistry#2280\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReplace go-homedir with os.UserHomeDir by \u003ca href=\"https://github.com/jammie-jelly\"\u003e\u003ccode\u003e@​jammie-jelly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2282\"\u003egoogle/go-containerregistry#2282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/name: only treat .localhost as non-HTTPS, not .local by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2281\"\u003egoogle/go-containerregistry#2281\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: block unspecified IPs (0.0.0.0, ::) in validateRealmURL by \u003ca href=\"https://github.com/marwan9696\"\u003e\u003ccode\u003e@​marwan9696\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2285\"\u003egoogle/go-containerregistry#2285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest(mutate): add Extract round-trip test for filesystem object preservation by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2283\"\u003egoogle/go-containerregistry#2283\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexperiments: remove deprecated support for estargz by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2288\"\u003egoogle/go-containerregistry#2288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump aws-actions/configure-aws-credentials from 6.1.0 to 6.1.1 in the actions group by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2289\"\u003egoogle/go-containerregistry#2289\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: limit HTTP response body reads to prevent OOM by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2296\"\u003egoogle/go-containerregistry#2296\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump the go-deps group across 3 directories with 6 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2297\"\u003egoogle/go-containerregistry#2297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: block redirects from token server to private/link-local addresses (SSRF fix) by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2292\"\u003egoogle/go-containerregistry#2292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/v1/mutate: preserve relative symlinks that stay within rootfs in Extract by \u003ca href=\"https://github.com/anishesg\"\u003e\u003ccode\u003e@​anishesg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2279\"\u003egoogle/go-containerregistry#2279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003evalidate: skip non-layer layers by \u003ca href=\"https://github.com/imjasonh\"\u003e\u003ccode\u003e@​imjasonh\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2298\"\u003egoogle/go-containerregistry#2298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: validate foreign layer URLs to prevent SSRF (fixes \u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2259\"\u003e#2259\u003c/a\u003e) by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2293\"\u003egoogle/go-containerregistry#2293\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: block SSRF via private-IP Location headers in blob uploads by \u003ca href=\"https://github.com/adilburaksen\"\u003e\u003ccode\u003e@​adilburaksen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2295\"\u003egoogle/go-containerregistry#2295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(mutate): preserve config blob and layers for non-Docker OCI artifacts by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2286\"\u003egoogle/go-containerregistry#2286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: preserve per-occurrence layer identity in mutate.Image.Layers() by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2299\"\u003egoogle/go-containerregistry#2299\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: retry HTTP 429 (Too Many Requests) by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2301\"\u003egoogle/go-containerregistry#2301\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: allow bearer realm at same host:port as registry by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2302\"\u003egoogle/go-containerregistry#2302\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate go version to 1.26.3 by \u003ca href=\"https://github.com/Subserial\"\u003e\u003ccode\u003e@​Subserial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2300\"\u003egoogle/go-containerregistry#2300\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/gaganhr94\"\u003e\u003ccode\u003e@​gaganhr94\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2262\"\u003egoogle/go-containerregistry#2262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2264\"\u003egoogle/go-containerregistry#2264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/malt3\"\u003e\u003ccode\u003e@​malt3\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2269\"\u003egoogle/go-containerregistry#2269\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2271\"\u003egoogle/go-containerregistry#2271\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2281\"\u003egoogle/go-containerregistry#2281\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/marwan9696\"\u003e\u003ccode\u003e@​marwan9696\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2285\"\u003egoogle/go-containerregistry#2285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anishesg\"\u003e\u003ccode\u003e@​anishesg\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2279\"\u003egoogle/go-containerregistry#2279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/adilburaksen\"\u003e\u003ccode\u003e@​adilburaksen\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2295\"\u003egoogle/go-containerregistry#2295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2299\"\u003egoogle/go-containerregistry#2299\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\"\u003ehttps://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/53f7e39e15bfd6aeea6a5f733ee1a8fcf54c15cf\"\u003e\u003ccode\u003e53f7e39\u003c/code\u003e\u003c/a\u003e Update go version to 1.26.3 (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2300\"\u003e#2300\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/bf87c3bfe4cc3218ac0baa364545d72729d2906d\"\u003e\u003ccode\u003ebf87c3b\u003c/code\u003e\u003c/a\u003e transport: allow bearer realm at same host:port as registry (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2302\"\u003e#2302\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/c55facddfbd7fc3d648c6fdda9860b350b013a76\"\u003e\u003ccode\u003ec55facd\u003c/code\u003e\u003c/a\u003e transport: retry HTTP 429 (Too Many Requests) (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2301\"\u003e#2301\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/68a569e4a0eb927d36ccb0fcdf4578425c03b5a2\"\u003e\u003ccode\u003e68a569e\u003c/code\u003e\u003c/a\u003e fix: preserve per-occurrence layer identity in Layers() (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2299\"\u003e#2299\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/35b354b436879457221028f05a580fe1c0deccbc\"\u003e\u003ccode\u003e35b354b\u003c/code\u003e\u003c/a\u003e fix(mutate): preserve config blob and layers for non-Docker OCI artifacts (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2\"\u003e#2\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/e5983f2a67ec46b76984ce6de85de08a44eee955\"\u003e\u003ccode\u003ee5983f2\u003c/code\u003e\u003c/a\u003e remote: block SSRF via private-IP Location headers in blob uploads (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2295\"\u003e#2295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/6dad820da7de0d619f1127c46914f2eaf58e3b46\"\u003e\u003ccode\u003e6dad820\u003c/code\u003e\u003c/a\u003e remote: validate foreign layer URLs to prevent SSRF (fixes \u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2259\"\u003e#2259\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2293\"\u003e#2293\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/78bdf1b7e2105cdfcd8f23509992c78357ce16ed\"\u003e\u003ccode\u003e78bdf1b\u003c/code\u003e\u003c/a\u003e validate: skip non-layer layers (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2298\"\u003e#2298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/c29d91cdc394cb288270f4dd04a31f81054946f4\"\u003e\u003ccode\u003ec29d91c\u003c/code\u003e\u003c/a\u003e pkg/v1/mutate: preserve relative symlinks that stay within rootfs in Extract ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/a70d75a6915ed3137792206dac4bca21d1924959\"\u003e\u003ccode\u003ea70d75a\u003c/code\u003e\u003c/a\u003e transport: block redirects from token server to private/link-local addresses ...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/sigstore/sigstore` from 1.10.6 to 1.10.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/sigstore/sigstore/releases\"\u003egithub.com/sigstore/sigstore's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.8\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport standard PKCS#8 encrypted private key decryption in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2333\"\u003esigstore/sigstore#2333\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.10.7\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd functional options to DSSE to improve memory usage, validation in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2326\"\u003esigstore/sigstore#2326\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExtend PEM private key unmarshalling to support legacy format in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2332\"\u003esigstore/sigstore#2332\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/c761681120b37d9c4b1410cf5720571582ab090a\"\u003e\u003ccode\u003ec761681\u003c/code\u003e\u003c/a\u003e Support standard PKCS#8 encrypted private key decryption (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2333\"\u003e#2333\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/005faf920b7c695a89b68cf226f95d88a468deb8\"\u003e\u003ccode\u003e005faf9\u003c/code\u003e\u003c/a\u003e Extend PEM private key unmarshalling to support legacy format (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2332\"\u003e#2332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/e70e4ed4219b8017e5462886cd1c06df23e8b3cf\"\u003e\u003ccode\u003ee70e4ed\u003c/code\u003e\u003c/a\u003e add functional options to DSSE to improve memory usage, validation (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2326\"\u003e#2326\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/899684dc4056768cda4f2523842cd90de4edbfcf\"\u003e\u003ccode\u003e899684d\u003c/code\u003e\u003c/a\u003e build(deps): Bump github.com/letsencrypt/boulder (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2307\"\u003e#2307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/181dc40b3141c75dde47e3871b2174e3dcfda9e0\"\u003e\u003ccode\u003e181dc40\u003c/code\u003e\u003c/a\u003e build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2308\"\u003e#2308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2c141a745b811348a0dbea4447e0c8b2f3092d2f\"\u003e\u003ccode\u003e2c141a7\u003c/code\u003e\u003c/a\u003e build(deps): Bump golangci/golangci-lint-action in the all group (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/b6c02147eb2755eb8ff78ec96c97835d3742821d\"\u003e\u003ccode\u003eb6c0214\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.1 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2329\"\u003e#2329\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2ff50c9b56fecfa71e05edd7aa5e258d45c78a47\"\u003e\u003ccode\u003e2ff50c9\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/dependency-review-action from 4.8.3 to 5.0.0 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2330\"\u003e#2330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/d0204c36ab40cfc854fa3689f7f472a98c83fea2\"\u003e\u003ccode\u003ed0204c3\u003c/code\u003e\u003c/a\u003e build(deps): Bump hashicorp/vault from 1.21.4 to 2.0.1 in /test/e2e (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2331\"\u003e#2331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/afdf89749d49660ba76eb59a410352e4e33225cb\"\u003e\u003ccode\u003eafdf897\u003c/code\u003e\u003c/a\u003e build(deps): Bump google.golang.org/grpc in /pkg/signature/kms/gcp (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2312\"\u003e#2312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.8\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/sigstore/sigstore/pkg/signature/kms/aws` from 1.10.6 to 1.10.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/sigstore/sigstore/releases\"\u003egithub.com/sigstore/sigstore/pkg/signature/kms/aws's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.8\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport standard PKCS#8 encrypted private key decryption in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2333\"\u003esigstore/sigstore#2333\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.10.7\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd functional options to DSSE to improve memory usage, validation in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2326\"\u003esigstore/sigstore#2326\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExtend PEM private key unmarshalling to support legacy format in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2332\"\u003esigstore/sigstore#2332\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/c761681120b37d9c4b1410cf5720571582ab090a\"\u003e\u003ccode\u003ec761681\u003c/code\u003e\u003c/a\u003e Support standard PKCS#8 encrypted private key decryption (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2333\"\u003e#2333\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/005faf920b7c695a89b68cf226f95d88a468deb8\"\u003e\u003ccode\u003e005faf9\u003c/code\u003e\u003c/a\u003e Extend PEM private key unmarshalling to support legacy format (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2332\"\u003e#2332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/e70e4ed4219b8017e5462886cd1c06df23e8b3cf\"\u003e\u003ccode\u003ee70e4ed\u003c/code\u003e\u003c/a\u003e add functional options to DSSE to improve memory usage, validation (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2326\"\u003e#2326\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/899684dc4056768cda4f2523842cd90de4edbfcf\"\u003e\u003ccode\u003e899684d\u003c/code\u003e\u003c/a\u003e build(deps): Bump github.com/letsencrypt/boulder (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2307\"\u003e#2307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/181dc40b3141c75dde47e3871b2174e3dcfda9e0\"\u003e\u003ccode\u003e181dc40\u003c/code\u003e\u003c/a\u003e build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2308\"\u003e#2308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2c141a745b811348a0dbea4447e0c8b2f3092d2f\"\u003e\u003ccode\u003e2c141a7\u003c/code\u003e\u003c/a\u003e build(deps): Bump golangci/golangci-lint-action in the all group (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/b6c02147eb2755eb8ff78ec96c97835d3742821d\"\u003e\u003ccode\u003eb6c0214\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.1 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2329\"\u003e#2329\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2ff50c9b56fecfa71e05edd7aa5e258d45c78a47\"\u003e\u003ccode\u003e2ff50c9\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/dependency-review-action from 4.8.3 to 5.0.0 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2330\"\u003e#2330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/d0204c36ab40cfc854fa3689f7f472a98c83fea2\"\u003e\u003ccode\u003ed0204c3\u003c/code\u003e\u003c/a\u003e build(deps): Bump hashicorp/vault from 1.21.4 to 2.0.1 in /test/e2e (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2331\"\u003e#2331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/afdf89749d49660ba76eb59a410352e4e33225cb\"\u003e\u003ccode\u003eafdf897\u003c/code\u003e\u003c/a\u003e build(deps): Bump google.golang.org/grpc in /pkg/signature/kms/gcp (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2312\"\u003e#2312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.8\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/sigstore/sigstore/pkg/signature/kms/azure` from 1.10.6 to 1.10.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/sigstore/sigstore/releases\"\u003egithub.com/sigstore/sigstore/pkg/signature/kms/azure's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.8\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport standard PKCS#8 encrypted private key decryption in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2333\"\u003esigstore/sigstore#2333\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.10.7\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd functional options to DSSE to improve memory usage, validation in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2326\"\u003esigstore/sigstore#2326\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExtend PEM private key unmarshalling to support legacy format in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2332\"\u003esigstore/sigstore#2332\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/c761681120b37d9c4b1410cf5720571582ab090a\"\u003e\u003ccode\u003ec761681\u003c/code\u003e\u003c/a\u003e Support standard PKCS#8 encrypted private key decryption (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2333\"\u003e#2333\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/005faf920b7c695a89b68cf226f95d88a468deb8\"\u003e\u003ccode\u003e005faf9\u003c/code\u003e\u003c/a\u003e Extend PEM private key unmarshalling to support legacy format (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2332\"\u003e#2332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/e70e4ed4219b8017e5462886cd1c06df23e8b3cf\"\u003e\u003ccode\u003ee70e4ed\u003c/code\u003e\u003c/a\u003e add functional options to DSSE to improve memory usage, validation (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2326\"\u003e#2326\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/899684dc4056768cda4f2523842cd90de4edbfcf\"\u003e\u003ccode\u003e899684d\u003c/code\u003e\u003c/a\u003e build(deps): Bump github.com/letsencrypt/boulder (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2307\"\u003e#2307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/181dc40b3141c75dde47e3871b2174e3dcfda9e0\"\u003e\u003ccode\u003e181dc40\u003c/code\u003e\u003c/a\u003e build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2308\"\u003e#2308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2c141a745b811348a0dbea4447e0c8b2f3092d2f\"\u003e\u003ccode\u003e2c141a7\u003c/code\u003e\u003c/a\u003e build(deps): Bump golangci/golangci-lint-action in the all group (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/b6c02147eb2755eb8ff78ec96c97835d3742821d\"\u003e\u003ccode\u003eb6c0214\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.1 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2329\"\u003e#2329\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2ff50c9b56fecfa71e05edd7aa5e258d45c78a47\"\u003e\u003ccode\u003e2ff50c9\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/dependency-review-action from 4.8.3 to 5.0.0 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2330\"\u003e#2330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/d0204c36ab40cfc854fa3689f7f472a98c83fea2\"\u003e\u003ccode\u003ed0204c3\u003c/code\u003e\u003c/a\u003e build(deps): Bump hashicorp/vault from 1.21.4 to 2.0.1 in /test/e2e (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2331\"\u003e#2331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/afdf89749d49660ba76eb59a410352e4e33225cb\"\u003e\u003ccode\u003eafdf897\u003c/code\u003e\u003c/a\u003e build(deps): Bump google.golang.org/grpc in /pkg/signature/kms/gcp (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2312\"\u003e#2312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.8\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/sigstore/sigstore/pkg/signature/kms/gcp` from 1.10.6 to 1.10.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/sigstore/sigstore/releases\"\u003egithub.com/sigstore/sigstore/pkg/signature/kms/gcp's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.8\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport standard PKCS#8 encrypted private key decryption in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2333\"\u003esigstore/sigstore#2333\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.10.7\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd functional options to DSSE to improve memory usage, validation in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2326\"\u003esigstore/sigstore#2326\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExtend PEM private key unmarshalling to support legacy format in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2332\"\u003esigstore/sigstore#2332\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/c761681120b37d9c4b1410cf5720571582ab090a\"\u003e\u003ccode\u003ec761681\u003c/code\u003e\u003c/a\u003e Support standard PKCS#8 encrypted private key decryption (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2333\"\u003e#2333\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/005faf920b7c695a89b68cf226f95d88a468deb8\"\u003e\u003ccode\u003e005faf9\u003c/code\u003e\u003c/a\u003e Extend PEM private key unmarshalling to support legacy format (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2332\"\u003e#2332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/e70e4ed4219b8017e5462886cd1c06df23e8b3cf\"\u003e\u003ccode\u003ee70e4ed\u003c/code\u003e\u003c/a\u003e add functional options to DSSE to improve memory usage, validation (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2326\"\u003e#2326\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/899684dc4056768cda4f2523842cd90de4edbfcf\"\u003e\u003ccode\u003e899684d\u003c/code\u003e\u003c/a\u003e build(deps): Bump github.com/letsencrypt/boulder (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2307\"\u003e#2307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/181dc40b3141c75dde47e3871b2174e3dcfda9e0\"\u003e\u003ccode\u003e181dc40\u003c/code\u003e\u003c/a\u003e build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2308\"\u003e#2308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2c141a745b811348a0dbea4447e0c8b2f3092d2f\"\u003e\u003ccode\u003e2c141a7\u003c/code\u003e\u003c/a\u003e build(deps): Bump golangci/golangci-lint-action in the all group (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/b6c02147eb2755eb8ff78ec96c97835d3742821d\"\u003e\u003ccode\u003eb6c0214\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.1 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2329\"\u003e#2329\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2ff50c9b56fecfa71e05edd7aa5e258d45c78a47\"\u003e\u003ccode\u003e2ff50c9\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/dependency-review-action from 4.8.3 to 5.0.0 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2330\"\u003e#2330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/d0204c36ab40cfc854fa3689f7f472a98c83fea2\"\u003e\u003ccode\u003ed0204c3\u003c/code\u003e\u003c/a\u003e build(deps): Bump hashicorp/vault from 1.21.4 to 2.0.1 in /test/e2e (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2331\"\u003e#2331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/afdf89749d49660ba76eb59a410352e4e33225cb\"\u003e\u003ccode\u003eafdf897\u003c/code\u003e\u003c/a\u003e build(deps): Bump google.golang.org/grpc in /pkg/signature/kms/gcp (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2312\"\u003e#2312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.8\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/sigstore/sigstore/pkg/signature/kms/hashivault` from 1.10.6 to 1.10.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/sigstore/sigstore/releases\"\u003egithub.com/sigstore/sigstore/pkg/signature/kms/hashivault's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.8\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport standard PKCS#8 encrypted private key decryption in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2333\"\u003esigstore/sigstore#2333\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.10.7\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd functional options to DSSE to improve memory usage, validation in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2326\"\u003esigstore/sigstore#2326\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExtend PEM private key unmarshalling to support legacy format in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2332\"\u003esigstore/sigstore#2332\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/c761681120b37d9c4b1410cf5720571582ab090a\"\u003e\u003ccode\u003ec761681\u003c/code\u003e\u003c/a\u003e Support standard PKCS#8 encrypted private key decryption (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2333\"\u003e#2333\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/005faf920b7c695a89b68cf226f95d88a468deb8\"\u003e\u003ccode\u003e005faf9\u003c/code\u003e\u003c/a\u003e Extend PEM private key unmarshalling to support legacy format (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2332\"\u003e#2332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/e70e4ed4219b8017e5462886cd1c06df23e8b3cf\"\u003e\u003ccode\u003ee70e4ed\u003c/code\u003e\u003c/a\u003e add functional options to DSSE to improve memory usage, validation (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2326\"\u003e#2326\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/899684dc4056768cda4f2523842cd90de4edbfcf\"\u003e\u003ccode\u003e899684d\u003c/code\u003e\u003c/a\u003e build(deps): Bump github.com/letsencrypt/boulder (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2307\"\u003e#2307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/181dc40b3141c75dde47e3871b2174e3dcfda9e0\"\u003e\u003ccode\u003e181dc40\u003c/code\u003e\u003c/a\u003e build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2308\"\u003e#2308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2c141a745b811348a0dbea4447e0c8b2f3092d2f\"\u003e\u003ccode\u003e2c141a7\u003c/code\u003e\u003c/a\u003e build(deps): Bump golangci/golangci-lint-action in the all group (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/b6c02147eb2755eb8ff78ec96c97835d3742821d\"\u003e\u003ccode\u003eb6c0214\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.1 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2329\"\u003e#2329\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2ff50c9b56fecfa71e05edd7aa5e258d45c78a47\"\u003e\u003ccode\u003e2ff50c9\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/dependency-review-action from 4.8.3 to 5.0.0 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2330\"\u003e#2330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/d0204c36ab40cfc854fa3689f7f472a98c83fea2\"\u003e\u003ccode\u003ed0204c3\u003c/code\u003e\u003c/a\u003e build(deps): Bump hashicorp/vault from 1.21.4 to 2.0.1 in /test/e2e (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2331\"\u003e#2331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/afdf89749d49660ba76eb59a410352e4e33225cb\"\u003e\u003ccode\u003eafdf897\u003c/code\u003e\u003c/a\u003e build(deps): Bump google.golang.org/grpc in /pkg/signature/kms/gcp (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2312\"\u003e#2312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.8\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/falcosecurity/falcoctl/pull/996","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/falcosecurity%2Ffalcoctl/issues/996","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/996/packages"},{"uuid":"4593382983","node_id":"PR_kwDOBSC9Os7i6wEH","number":12005,"state":"open","title":"chore: bump cloud.google.com/go/storage from 1.62.2 to 1.62.3 in /core","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-05T01:24:38.000Z","updated_at":"2026-06-05T01:30:52.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":"/core","ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.2 to 1.62.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.2\u0026new-version=1.62.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/wandb/wandb/pull/12005","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/wandb%2Fwandb/issues/12005","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/12005/packages"},{"uuid":"4588670830","node_id":"PR_kwDODjgJwc7irJOk","number":4739,"state":"closed","title":"chore(deps): bump the google-cloud-modules group across 3 directories with 2 updates","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-05T05:11:02.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-04T12:26:39.000Z","updated_at":"2026-06-05T05:11:04.000Z","time_to_close":60263,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"google-cloud-modules","update_count":2,"packages":[{"name":"cloud.google.com/go/longrunning","old_version":"0.13.0","new_version":"1.0.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/longrunning","old_version":"0.13.0","new_version":"1.0.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/longrunning","old_version":"0.13.0","new_version":"1.0.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/longrunning","old_version":"0.13.0","new_version":"1.0.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps the google-cloud-modules group with 2 updates in the /firebase-auth directory: [cloud.google.com/go/longrunning](https://github.com/googleapis/google-cloud-go) and [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go).\nBumps the google-cloud-modules group with 2 updates in the /firebase-functions directory: [cloud.google.com/go/longrunning](https://github.com/googleapis/google-cloud-go) and [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go).\nBumps the google-cloud-modules group with 2 updates in the /gcloud-firebase directory: [cloud.google.com/go/longrunning](https://github.com/googleapis/google-cloud-go) and [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go).\n\nUpdates `cloud.google.com/go/longrunning` from 0.13.0 to 1.0.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/longrunning's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eai: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ai/v0.20.0...ai/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapigeeregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apigeeregistry/v0.15.0...apigeeregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapihub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apihub/v0.7.0...apihub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapiregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apiregistry/v0.7.0...apiregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapphub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apphub/v0.9.0...apphub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapps: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apps/v0.13.0...apps/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eauditmanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/auditmanager/v0.7.0...auditmanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ebiglake: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/biglake/v0.5.0...biglake/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eces: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ces/v0.9.0...ces/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echat: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chat/v0.23.0...chat/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echronicle: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chronicle/v0.7.0...chronicle/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudprofiler: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudprofiler/v0.9.0...cloudprofiler/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudsecuritycompliance: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudsecuritycompliance/v0.6.0...cloudsecuritycompliance/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003econfigdelivery: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/configdelivery/v0.6.0...configdelivery/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edataform: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/dataform/v0.19.0...dataform/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edatamanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/datamanager/v0.8.0...datamanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edeveloperconnect: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/developerconnect/v0.10.0...developerconnect/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md\"\u003ecloud.google.com/go/longrunning's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChanges\u003c/h1\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.122.0...v0.123.0\"\u003e0.123.0\u003c/a\u003e (2025-09-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/stategen:\u003c/strong\u003e Populate the latest googleapis commit (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12880\"\u003e#12880\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/7b017a083ddd322b21faf413a329ba870a98db96\"\u003e7b017a0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Implement the build command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12817\"\u003e#12817\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14734c875103f97748857b9b0472fd0b2658663f\"\u003e14734c8\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add link to source commit in release notes (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12881\"\u003e#12881\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1c06cc6109a84941c367896575b187b79befc3af\"\u003e1c06cc6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix CHANGES.md headers (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12849\"\u003e#12849\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/baf515dfe0d94f36c9dc232f6b55e9828b268eb0\"\u003ebaf515d\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Remove go mod init/tidy from postprocessor (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12832\"\u003e#12832\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1fe506a37e68497b6da4587d409b79e7b4d2a113\"\u003e1fe506a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Test for error path with flags (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12830\"\u003e#12830\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f0da7b22488b4d9f6232d227d3e196d8d2b92858\"\u003ef0da7b2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/postprocessor:\u003c/strong\u003e Add dlp to skip-module-scan-paths (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12857\"\u003e#12857\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/45a7d9b4b9083d1bcaca89c3d86878ba77c230e3\"\u003e45a7d9b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Honor original container contract (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12846\"\u003e#12846\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/71c8fd368667f74426aa31b6c50def8151482480\"\u003e71c8fd3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Improvements to release-init (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12842\"\u003e#12842\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0db677a93fe16b9a62bb69a3cea7bc45d5aaec36\"\u003e0db677a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003estategen:\u003c/strong\u003e Specify an appropriate tag format for google-cloud-go (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12835\"\u003e#12835\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ffcff33a0c3fad720a31083672c4cf2498af719f\"\u003effcff33\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.6...v0.122.0\"\u003e0.122.0\u003c/a\u003e (2025-09-04)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add release-init command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12751\"\u003e#12751\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/52e84cc9a11077eb3c50a0b5fc9aa26361d63b47\"\u003e52e84cc\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Better support for v2 modules (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12797\"\u003e#12797\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4bc878597a5e6bd97cf3ee2174f6df7fbdd2d47b\"\u003e4bc8785\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Module detection when tidy errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12801\"\u003e#12801\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83d46cdc5ed7cfbb94038e7fa1f787adfe532c74\"\u003e83d46cd\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix goimports errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12765\"\u003e#12765\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83bdaa4ce4e42f8b4a29e2055fc4894d8c6b1e2c\"\u003e83bdaa4\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.5...v0.121.6\"\u003e0.121.6\u003c/a\u003e (2025-08-14)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix Dockerfile permissions for go mod tidy (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12704\"\u003e#12704\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0e70a0b6afccc016c67337f340e2755fe7a476ca\"\u003e0e70a0b\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.4...v0.121.5\"\u003e0.121.5\u003c/a\u003e (2025-08-12)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/86eb615b7fcd5bb73ff6d48e985a15a6b7bf13ec\"\u003e\u003ccode\u003e86eb615\u003c/code\u003e\u003c/a\u003e chore: bulk promote stable 0.x libraries to v1.0.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14562\"\u003e#14562\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/942bbc15b99ffd078af4f731a6f249c3b4c48110\"\u003e\u003ccode\u003e942bbc1\u003c/code\u003e\u003c/a\u003e feat: Add ListSkills and DeleteSkill methods in Vertex AI Skill Registry SDK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14ea3de7de6e8e2c769f0d1828705e83097b9ba9\"\u003e\u003ccode\u003e14ea3de\u003c/code\u003e\u003c/a\u003e fix: Fix name collision on SandboxEnvironment.state by renaming enum to Sandb...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9de3a501164cad8b3d16005d065dc9cd1cd242e\"\u003e\u003ccode\u003ed9de3a5\u003c/code\u003e\u003c/a\u003e test(spanner): skip DirectPath-incompatible tests when DirectPath is enabled ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/043aa716a57d4b2e0749a79eaf65a9d093b9f1e3\"\u003e\u003ccode\u003e043aa71\u003c/code\u003e\u003c/a\u003e test(spanner): fix nil pointer panic in TestNewBuiltinMetricsTracerFactory un...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d6f00a2f6f4ab959f753ea71fc956875a0b80bf0\"\u003e\u003ccode\u003ed6f00a2\u003c/code\u003e\u003c/a\u003e test(spanner): disable TestIntegration_QueueMutations (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14550\"\u003e#14550\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d10add39ac639d06f9c5e711d70be8739e5f143a\"\u003e\u003ccode\u003ed10add3\u003c/code\u003e\u003c/a\u003e refactor(pubsub/v2/pstest): implement custom filter parser (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14497\"\u003e#14497\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/94d24ca358d9f98ccd48d1b826cfab83557d5b19\"\u003e\u003ccode\u003e94d24ca\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260507T184113Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14549\"\u003e#14549\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/541569e80c1154b8742f147fa9667b6794be84eb\"\u003e\u003ccode\u003e541569e\u003c/code\u003e\u003c/a\u003e docs: update README to reflect Gemini Enterprise Agent Platform\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/237533a0b5847011484577241e8201ccce7e31a0\"\u003e\u003ccode\u003e237533a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14545\"\u003e#14545\u003c/a\u003e from googleapis:release-agentplatform-0.20.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.13.0...ai/v1.0.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/longrunning` from 0.13.0 to 1.0.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/longrunning's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eai: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ai/v0.20.0...ai/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapigeeregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apigeeregistry/v0.15.0...apigeeregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapihub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apihub/v0.7.0...apihub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapiregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apiregistry/v0.7.0...apiregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapphub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apphub/v0.9.0...apphub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapps: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apps/v0.13.0...apps/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eauditmanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/auditmanager/v0.7.0...auditmanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ebiglake: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/biglake/v0.5.0...biglake/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eces: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ces/v0.9.0...ces/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echat: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chat/v0.23.0...chat/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echronicle: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chronicle/v0.7.0...chronicle/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudprofiler: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudprofiler/v0.9.0...cloudprofiler/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudsecuritycompliance: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudsecuritycompliance/v0.6.0...cloudsecuritycompliance/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003econfigdelivery: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/configdelivery/v0.6.0...configdelivery/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edataform: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/dataform/v0.19.0...dataform/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edatamanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/datamanager/v0.8.0...datamanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edeveloperconnect: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/developerconnect/v0.10.0...developerconnect/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md\"\u003ecloud.google.com/go/longrunning's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChanges\u003c/h1\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.122.0...v0.123.0\"\u003e0.123.0\u003c/a\u003e (2025-09-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/stategen:\u003c/strong\u003e Populate the latest googleapis commit (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12880\"\u003e#12880\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/7b017a083ddd322b21faf413a329ba870a98db96\"\u003e7b017a0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Implement the build command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12817\"\u003e#12817\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14734c875103f97748857b9b0472fd0b2658663f\"\u003e14734c8\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add link to source commit in release notes (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12881\"\u003e#12881\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1c06cc6109a84941c367896575b187b79befc3af\"\u003e1c06cc6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix CHANGES.md headers (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12849\"\u003e#12849\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/baf515dfe0d94f36c9dc232f6b55e9828b268eb0\"\u003ebaf515d\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Remove go mod init/tidy from postprocessor (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12832\"\u003e#12832\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1fe506a37e68497b6da4587d409b79e7b4d2a113\"\u003e1fe506a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Test for error path with flags (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12830\"\u003e#12830\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f0da7b22488b4d9f6232d227d3e196d8d2b92858\"\u003ef0da7b2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/postprocessor:\u003c/strong\u003e Add dlp to skip-module-scan-paths (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12857\"\u003e#12857\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/45a7d9b4b9083d1bcaca89c3d86878ba77c230e3\"\u003e45a7d9b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Honor original container contract (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12846\"\u003e#12846\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/71c8fd368667f74426aa31b6c50def8151482480\"\u003e71c8fd3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Improvements to release-init (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12842\"\u003e#12842\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0db677a93fe16b9a62bb69a3cea7bc45d5aaec36\"\u003e0db677a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003estategen:\u003c/strong\u003e Specify an appropriate tag format for google-cloud-go (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12835\"\u003e#12835\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ffcff33a0c3fad720a31083672c4cf2498af719f\"\u003effcff33\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.6...v0.122.0\"\u003e0.122.0\u003c/a\u003e (2025-09-04)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add release-init command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12751\"\u003e#12751\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/52e84cc9a11077eb3c50a0b5fc9aa26361d63b47\"\u003e52e84cc\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Better support for v2 modules (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12797\"\u003e#12797\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4bc878597a5e6bd97cf3ee2174f6df7fbdd2d47b\"\u003e4bc8785\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Module detection when tidy errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12801\"\u003e#12801\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83d46cdc5ed7cfbb94038e7fa1f787adfe532c74\"\u003e83d46cd\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix goimports errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12765\"\u003e#12765\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83bdaa4ce4e42f8b4a29e2055fc4894d8c6b1e2c\"\u003e83bdaa4\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.5...v0.121.6\"\u003e0.121.6\u003c/a\u003e (2025-08-14)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix Dockerfile permissions for go mod tidy (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12704\"\u003e#12704\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0e70a0b6afccc016c67337f340e2755fe7a476ca\"\u003e0e70a0b\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.4...v0.121.5\"\u003e0.121.5\u003c/a\u003e (2025-08-12)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/86eb615b7fcd5bb73ff6d48e985a15a6b7bf13ec\"\u003e\u003ccode\u003e86eb615\u003c/code\u003e\u003c/a\u003e chore: bulk promote stable 0.x libraries to v1.0.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14562\"\u003e#14562\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/942bbc15b99ffd078af4f731a6f249c3b4c48110\"\u003e\u003ccode\u003e942bbc1\u003c/code\u003e\u003c/a\u003e feat: Add ListSkills and DeleteSkill methods in Vertex AI Skill Registry SDK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14ea3de7de6e8e2c769f0d1828705e83097b9ba9\"\u003e\u003ccode\u003e14ea3de\u003c/code\u003e\u003c/a\u003e fix: Fix name collision on SandboxEnvironment.state by renaming enum to Sandb...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9de3a501164cad8b3d16005d065dc9cd1cd242e\"\u003e\u003ccode\u003ed9de3a5\u003c/code\u003e\u003c/a\u003e test(spanner): skip DirectPath-incompatible tests when DirectPath is enabled ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/043aa716a57d4b2e0749a79eaf65a9d093b9f1e3\"\u003e\u003ccode\u003e043aa71\u003c/code\u003e\u003c/a\u003e test(spanner): fix nil pointer panic in TestNewBuiltinMetricsTracerFactory un...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d6f00a2f6f4ab959f753ea71fc956875a0b80bf0\"\u003e\u003ccode\u003ed6f00a2\u003c/code\u003e\u003c/a\u003e test(spanner): disable TestIntegration_QueueMutations (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14550\"\u003e#14550\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d10add39ac639d06f9c5e711d70be8739e5f143a\"\u003e\u003ccode\u003ed10add3\u003c/code\u003e\u003c/a\u003e refactor(pubsub/v2/pstest): implement custom filter parser (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14497\"\u003e#14497\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/94d24ca358d9f98ccd48d1b826cfab83557d5b19\"\u003e\u003ccode\u003e94d24ca\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260507T184113Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14549\"\u003e#14549\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/541569e80c1154b8742f147fa9667b6794be84eb\"\u003e\u003ccode\u003e541569e\u003c/code\u003e\u003c/a\u003e docs: update README to reflect Gemini Enterprise Agent Platform\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/237533a0b5847011484577241e8201ccce7e31a0\"\u003e\u003ccode\u003e237533a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14545\"\u003e#14545\u003c/a\u003e from googleapis:release-agentplatform-0.20.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.13.0...ai/v1.0.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/longrunning` from 0.13.0 to 1.0.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/longrunning's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eai: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ai/v0.20.0...ai/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapigeeregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apigeeregistry/v0.15.0...apigeeregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapihub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apihub/v0.7.0...apihub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapiregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apiregistry/v0.7.0...apiregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapphub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apphub/v0.9.0...apphub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapps: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apps/v0.13.0...apps/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eauditmanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/auditmanager/v0.7.0...auditmanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ebiglake: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/biglake/v0.5.0...biglake/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eces: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ces/v0.9.0...ces/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echat: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chat/v0.23.0...chat/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echronicle: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chronicle/v0.7.0...chronicle/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudprofiler: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudprofiler/v0.9.0...cloudprofiler/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudsecuritycompliance: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudsecuritycompliance/v0.6.0...cloudsecuritycompliance/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003econfigdelivery: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/configdelivery/v0.6.0...configdelivery/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edataform: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/dataform/v0.19.0...dataform/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edatamanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/datamanager/v0.8.0...datamanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edeveloperconnect: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/developerconnect/v0.10.0...developerconnect/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md\"\u003ecloud.google.com/go/longrunning's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChanges\u003c/h1\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.122.0...v0.123.0\"\u003e0.123.0\u003c/a\u003e (2025-09-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/stategen:\u003c/strong\u003e Populate the latest googleapis commit (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12880\"\u003e#12880\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/7b017a083ddd322b21faf413a329ba870a98db96\"\u003e7b017a0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Implement the build command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12817\"\u003e#12817\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14734c875103f97748857b9b0472fd0b2658663f\"\u003e14734c8\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add link to source commit in release notes (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12881\"\u003e#12881\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1c06cc6109a84941c367896575b187b79befc3af\"\u003e1c06cc6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix CHANGES.md headers (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12849\"\u003e#12849\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/baf515dfe0d94f36c9dc232f6b55e9828b268eb0\"\u003ebaf515d\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Remove go mod init/tidy from postprocessor (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12832\"\u003e#12832\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1fe506a37e68497b6da4587d409b79e7b4d2a113\"\u003e1fe506a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Test for error path with flags (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12830\"\u003e#12830\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f0da7b22488b4d9f6232d227d3e196d8d2b92858\"\u003ef0da7b2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/postprocessor:\u003c/strong\u003e Add dlp to skip-module-scan-paths (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12857\"\u003e#12857\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/45a7d9b4b9083d1bcaca89c3d86878ba77c230e3\"\u003e45a7d9b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Honor original container contract (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12846\"\u003e#12846\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/71c8fd368667f74426aa31b6c50def8151482480\"\u003e71c8fd3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Improvements to release-init (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12842\"\u003e#12842\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0db677a93fe16b9a62bb69a3cea7bc45d5aaec36\"\u003e0db677a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003estategen:\u003c/strong\u003e Specify an appropriate tag format for google-cloud-go (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12835\"\u003e#12835\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ffcff33a0c3fad720a31083672c4cf2498af719f\"\u003effcff33\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.6...v0.122.0\"\u003e0.122.0\u003c/a\u003e (2025-09-04)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add release-init command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12751\"\u003e#12751\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/52e84cc9a11077eb3c50a0b5fc9aa26361d63b47\"\u003e52e84cc\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Better support for v2 modules (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12797\"\u003e#12797\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4bc878597a5e6bd97cf3ee2174f6df7fbdd2d47b\"\u003e4bc8785\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Module detection when tidy errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12801\"\u003e#12801\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83d46cdc5ed7cfbb94038e7fa1f787adfe532c74\"\u003e83d46cd\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix goimports errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12765\"\u003e#12765\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83bdaa4ce4e42f8b4a29e2055fc4894d8c6b1e2c\"\u003e83bdaa4\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.5...v0.121.6\"\u003e0.121.6\u003c/a\u003e (2025-08-14)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix Dockerfile permissions for go mod tidy (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12704\"\u003e#12704\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0e70a0b6afccc016c67337f340e2755fe7a476ca\"\u003e0e70a0b\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.4...v0.121.5\"\u003e0.121.5\u003c/a\u003e (2025-08-12)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/86eb615b7fcd5bb73ff6d48e985a15a6b7bf13ec\"\u003e\u003ccode\u003e86eb615\u003c/code\u003e\u003c/a\u003e chore: bulk promote stable 0.x libraries to v1.0.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14562\"\u003e#14562\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/942bbc15b99ffd078af4f731a6f249c3b4c48110\"\u003e\u003ccode\u003e942bbc1\u003c/code\u003e\u003c/a\u003e feat: Add ListSkills and DeleteSkill methods in Vertex AI Skill Registry SDK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14ea3de7de6e8e2c769f0d1828705e83097b9ba9\"\u003e\u003ccode\u003e14ea3de\u003c/code\u003e\u003c/a\u003e fix: Fix name collision on SandboxEnvironment.state by renaming enum to Sandb...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9de3a501164cad8b3d16005d065dc9cd1cd242e\"\u003e\u003ccode\u003ed9de3a5\u003c/code\u003e\u003c/a\u003e test(spanner): skip DirectPath-incompatible tests when DirectPath is enabled ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/043aa716a57d4b2e0749a79eaf65a9d093b9f1e3\"\u003e\u003ccode\u003e043aa71\u003c/code\u003e\u003c/a\u003e test(spanner): fix nil pointer panic in TestNewBuiltinMetricsTracerFactory un...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d6f00a2f6f4ab959f753ea71fc956875a0b80bf0\"\u003e\u003ccode\u003ed6f00a2\u003c/code\u003e\u003c/a\u003e test(spanner): disable TestIntegration_QueueMutations (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14550\"\u003e#14550\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d10add39ac639d06f9c5e711d70be8739e5f143a\"\u003e\u003ccode\u003ed10add3\u003c/code\u003e\u003c/a\u003e refactor(pubsub/v2/pstest): implement custom filter parser (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14497\"\u003e#14497\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/94d24ca358d9f98ccd48d1b826cfab83557d5b19\"\u003e\u003ccode\u003e94d24ca\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260507T184113Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14549\"\u003e#14549\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/541569e80c1154b8742f147fa9667b6794be84eb\"\u003e\u003ccode\u003e541569e\u003c/code\u003e\u003c/a\u003e docs: update README to reflect Gemini Enterprise Agent Platform\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/237533a0b5847011484577241e8201ccce7e31a0\"\u003e\u003ccode\u003e237533a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14545\"\u003e#14545\u003c/a\u003e from googleapis:release-agentplatform-0.20.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.13.0...ai/v1.0.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/longrunning` from 0.13.0 to 1.0.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/longrunning's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eai: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ai/v0.20.0...ai/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapigeeregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apigeeregistry/v0.15.0...apigeeregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapihub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apihub/v0.7.0...apihub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapiregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apiregistry/v0.7.0...apiregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapphub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apphub/v0.9.0...apphub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapps: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apps/v0.13.0...apps/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eauditmanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/auditmanager/v0.7.0...auditmanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ebiglake: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/biglake/v0.5.0...biglake/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eces: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ces/v0.9.0...ces/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echat: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chat/v0.23.0...chat/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echronicle: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chronicle/v0.7.0...chronicle/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudprofiler: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudprofiler/v0.9.0...cloudprofiler/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudsecuritycompliance: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudsecuritycompliance/v0.6.0...cloudsecuritycompliance/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003econfigdelivery: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/configdelivery/v0.6.0...configdelivery/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edataform: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/dataform/v0.19.0...dataform/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edatamanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/datamanager/v0.8.0...datamanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edeveloperconnect: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/developerconnect/v0.10.0...developerconnect/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md\"\u003ecloud.google.com/go/longrunning's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChanges\u003c/h1\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.122.0...v0.123.0\"\u003e0.123.0\u003c/a\u003e (2025-09-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/stategen:\u003c/strong\u003e Populate the latest googleapis commit (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12880\"\u003e#12880\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/7b017a083ddd322b21faf413a329ba870a98db96\"\u003e7b017a0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Implement the build command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12817\"\u003e#12817\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14734c875103f97748857b9b0472fd0b2658663f\"\u003e14734c8\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add link to source commit in release notes (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12881\"\u003e#12881\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1c06cc6109a84941c367896575b187b79befc3af\"\u003e1c06cc6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix CHANGES.md headers (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12849\"\u003e#12849\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/baf515dfe0d94f36c9dc232f6b55e9828b268eb0\"\u003ebaf515d\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Remove go mod init/tidy from postprocessor (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12832\"\u003e#12832\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1fe506a37e68497b6da4587d409b79e7b4d2a113\"\u003e1fe506a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Test for error path with flags (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12830\"\u003e#12830\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f0da7b22488b4d9f6232d227d3e196d8d2b92858\"\u003ef0da7b2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/postprocessor:\u003c/strong\u003e Add dlp to skip-module-scan-paths (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12857\"\u003e#12857\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/45a7d9b4b9083d1bcaca89c3d86878ba77c230e3\"\u003e45a7d9b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Honor original container contract (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12846\"\u003e#12846\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/71c8fd368667f74426aa31b6c50def8151482480\"\u003e71c8fd3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Improvements to release-init (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12842\"\u003e#12842\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0db677a93fe16b9a62bb69a3cea7bc45d5aaec36\"\u003e0db677a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003estategen:\u003c/strong\u003e Specify an appropriate tag format for google-cloud-go (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12835\"\u003e#12835\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ffcff33a0c3fad720a31083672c4cf2498af719f\"\u003effcff33\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.6...v0.122.0\"\u003e0.122.0\u003c/a\u003e (2025-09-04)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add release-init command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12751\"\u003e#12751\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/52e84cc9a11077eb3c50a0b5fc9aa26361d63b47\"\u003e52e84cc\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Better support for v2 modules (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12797\"\u003e#12797\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4bc878597a5e6bd97cf3ee2174f6df7fbdd2d47b\"\u003e4bc8785\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Module detection when tidy errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12801\"\u003e#12801\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83d46cdc5ed7cfbb94038e7fa1f787adfe532c74\"\u003e83d46cd\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix goimports errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12765\"\u003e#12765\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83bdaa4ce4e42f8b4a29e2055fc4894d8c6b1e2c\"\u003e83bdaa4\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.5...v0.121.6\"\u003e0.121.6\u003c/a\u003e (2025-08-14)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix Dockerfile permissions for go mod tidy (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12704\"\u003e#12704\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0e70a0b6afccc016c67337f340e2755fe7a476ca\"\u003e0e70a0b\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.4...v0.121.5\"\u003e0.121.5\u003c/a\u003e (2025-08-12)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/86eb615b7fcd5bb73ff6d48e985a15a6b7bf13ec\"\u003e\u003ccode\u003e86eb615\u003c/code\u003e\u003c/a\u003e chore: bulk promote stable 0.x libraries to v1.0.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14562\"\u003e#14562\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/942bbc15b99ffd078af4f731a6f249c3b4c48110\"\u003e\u003ccode\u003e942bbc1\u003c/code\u003e\u003c/a\u003e feat: Add ListSkills and DeleteSkill methods in Vertex AI Skill Registry SDK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14ea3de7de6e8e2c769f0d1828705e83097b9ba9\"\u003e\u003ccode\u003e14ea3de\u003c/code\u003e\u003c/a\u003e fix: Fix name collision on SandboxEnvironment.state by renaming enum to Sandb...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9de3a501164cad8b3d16005d065dc9cd1cd242e\"\u003e\u003ccode\u003ed9de3a5\u003c/code\u003e\u003c/a\u003e test(spanner): skip DirectPath-incompatible tests when DirectPath is enabled ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/043aa716a57d4b2e0749a79eaf65a9d093b9f1e3\"\u003e\u003ccode\u003e043aa71\u003c/code\u003e\u003c/a\u003e test(spanner): fix nil pointer panic in TestNewBuiltinMetricsTracerFactory un...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d6f00a2f6f4ab959f753ea71fc956875a0b80bf0\"\u003e\u003ccode\u003ed6f00a2\u003c/code\u003e\u003c/a\u003e test(spanner): disable TestIntegration_QueueMutations (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14550\"\u003e#14550\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d10add39ac639d06f9c5e711d70be8739e5f143a\"\u003e\u003ccode\u003ed10add3\u003c/code\u003e\u003c/a\u003e refactor(pubsub/v2/pstest): implement custom filter parser (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14497\"\u003e#14497\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/94d24ca358d9f98ccd48d1b826cfab83557d5b19\"\u003e\u003ccode\u003e94d24ca\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260507T184113Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14549\"\u003e#14549\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/541569e80c1154b8742f147fa9667b6794be84eb\"\u003e\u003ccode\u003e541569e\u003c/code\u003e\u003c/a\u003e docs: update README to reflect Gemini Enterprise Agent Platform\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/237533a0b5847011484577241e8201ccce7e31a0\"\u003e\u003ccode\u003e237533a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14545\"\u003e#14545\u003c/a\u003e from googleapis:release-agentplatform-0.20.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.13.0...ai/v1.0.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapi...\n\n_Description has been truncated_","html_url":"https://github.com/gofiber/recipes/pull/4739","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/4739","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4739/packages"},{"uuid":"4586217367","node_id":"PR_kwDOGd6UEM7ijFMA","number":20960,"state":"open","title":"chore(deps): bump cloud.google.com/go/storage from 1.62.2 to 1.62.3","user":"dependabot[bot]","labels":["dependencies","ci-all-qa-tests","auto-merge","auto-retest"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-04T05:54:19.000Z","updated_at":"2026-06-04T08:07:39.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.2 to 1.62.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.2\u0026new-version=1.62.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/stackrox/stackrox/pull/20960","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/stackrox%2Fstackrox/issues/20960","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/20960/packages"},{"uuid":"4577945480","node_id":"PR_kwDOPFnGYM7iHs4G","number":54,"state":"closed","title":"chore(deps): Bump the gomod group across 1 directory with 15 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-18T13:31:31.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-03T07:51:29.000Z","updated_at":"2026-06-18T13:31:33.000Z","time_to_close":1316402,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): Bump","group_name":"gomod","update_count":15,"packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.41.6","new_version":"1.41.11","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.32.16","new_version":"1.32.22","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ecr","old_version":"1.57.1","new_version":"1.58.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.100.0","new_version":"1.103.1","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/crashappsec/ocular","old_version":"0.3.0","new_version":"0.3.1","repository_url":"https://github.com/crashappsec/ocular"},{"name":"github.com/go-git/go-git/v6","old_version":"6.0.0-alpha.2","new_version":"6.0.0-alpha.4","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/google/go-containerregistry","old_version":"0.21.5","new_version":"0.21.6","repository_url":"https://github.com/google/go-containerregistry"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.283.0","repository_url":"https://github.com/googleapis/google-api-go-client"}],"path":null,"ecosystem":"go"},"body":"Bumps the gomod group with 9 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.1` | `1.62.2` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.6` | `1.41.11` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.16` | `1.32.22` |\n| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.57.1` | `1.58.2` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.100.0` | `1.103.1` |\n| [github.com/crashappsec/ocular](https://github.com/crashappsec/ocular) | `0.3.0` | `0.3.1` |\n| [github.com/go-git/go-git/v6](https://github.com/go-git/go-git) | `6.0.0-alpha.2` | `6.0.0-alpha.4` |\n| [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry) | `0.21.5` | `0.21.6` |\n| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.276.0` | `0.283.0` |\n\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2` from 1.41.6 to 1.41.11\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fa369bd7bb9576e85ac094a43a15e8372a3d0129\"\u003e\u003ccode\u003efa369bd\u003c/code\u003e\u003c/a\u003e Release 2026-06-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/960ee4dc8380a46ded94f3976e073242d42bf8ed\"\u003e\u003ccode\u003e960ee4d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4b6df8b301a6c965903012dda08e9f38fd163f1c\"\u003e\u003ccode\u003e4b6df8b\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/30b15dd22cc690c7d647c32f415111437cfbed2a\"\u003e\u003ccode\u003e30b15dd\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e8c72af3150fa9c8898c916b2e213a5d3d7d64ed\"\u003e\u003ccode\u003ee8c72af\u003c/code\u003e\u003c/a\u003e enable schema-serde (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3421\"\u003e#3421\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b4d02c534cf7f5c782e10bc3f66e40c081a7bb3a\"\u003e\u003ccode\u003eb4d02c5\u003c/code\u003e\u003c/a\u003e Release 2026-06-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/48e375b484e0ae917f61904db440ef17382093d1\"\u003e\u003ccode\u003e48e375b\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b8a4fc132e65d8310e2de67e0600eec53e2f4b26\"\u003e\u003ccode\u003eb8a4fc1\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e8627b4cc01977004c41ff0f42670a44d500982d\"\u003e\u003ccode\u003ee8627b4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3430\"\u003e#3430\u003c/a\u003e from aws/fix-remove-ioutil\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4e258a368c5b421d28bae4a18e718b1b4c7dd16a\"\u003e\u003ccode\u003e4e258a3\u003c/code\u003e\u003c/a\u003e chore: update changelog description per review\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.41.6...v1.41.11\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/config` from 1.32.16 to 1.32.22\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fa369bd7bb9576e85ac094a43a15e8372a3d0129\"\u003e\u003ccode\u003efa369bd\u003c/code\u003e\u003c/a\u003e Release 2026-06-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/960ee4dc8380a46ded94f3976e073242d42bf8ed\"\u003e\u003ccode\u003e960ee4d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4b6df8b301a6c965903012dda08e9f38fd163f1c\"\u003e\u003ccode\u003e4b6df8b\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/30b15dd22cc690c7d647c32f415111437cfbed2a\"\u003e\u003ccode\u003e30b15dd\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e8c72af3150fa9c8898c916b2e213a5d3d7d64ed\"\u003e\u003ccode\u003ee8c72af\u003c/code\u003e\u003c/a\u003e enable schema-serde (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3421\"\u003e#3421\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b4d02c534cf7f5c782e10bc3f66e40c081a7bb3a\"\u003e\u003ccode\u003eb4d02c5\u003c/code\u003e\u003c/a\u003e Release 2026-06-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/48e375b484e0ae917f61904db440ef17382093d1\"\u003e\u003ccode\u003e48e375b\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b8a4fc132e65d8310e2de67e0600eec53e2f4b26\"\u003e\u003ccode\u003eb8a4fc1\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e8627b4cc01977004c41ff0f42670a44d500982d\"\u003e\u003ccode\u003ee8627b4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3430\"\u003e#3430\u003c/a\u003e from aws/fix-remove-ioutil\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4e258a368c5b421d28bae4a18e718b1b4c7dd16a\"\u003e\u003ccode\u003e4e258a3\u003c/code\u003e\u003c/a\u003e chore: update changelog description per review\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.32.16...config/v1.32.22\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/ecr` from 1.57.1 to 1.58.2\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0599931efcf551dc63f84ec669d7fb5cfe14f64c\"\u003e\u003ccode\u003e0599931\u003c/code\u003e\u003c/a\u003e Release 2024-07-10.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ca2a30ec8d823300ec948b784c491904eeba8929\"\u003e\u003ccode\u003eca2a30e\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e2dff5f9bddaf1f23ea57e1e04d80f6ce2d54221\"\u003e\u003ccode\u003ee2dff5f\u003c/code\u003e\u003c/a\u003e temporarily re-add jmespath dependency (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2712\"\u003e#2712\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/383fd26928547348efed0ee1f8914d9e7a1b0287\"\u003e\u003ccode\u003e383fd26\u003c/code\u003e\u003c/a\u003e Release 2024-07-10\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4a055f9d9e17eb7ef2206e8e37ba98d661d13e6a\"\u003e\u003ccode\u003e4a055f9\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e3457953351e6993f57f5ab8e373af8af70be45b\"\u003e\u003ccode\u003ee345795\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/52a10ac239cc1aab2d070fbb004f6445ca0ddcc0\"\u003e\u003ccode\u003e52a10ac\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/adab0de9e4ae75aee4f894c99fd1e2ce2de0035e\"\u003e\u003ccode\u003eadab0de\u003c/code\u003e\u003c/a\u003e remove unused jmespath dependency from main module (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2707\"\u003e#2707\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0e07cc82b25692dce8f68e0b5bd0d0c5cdbcd279\"\u003e\u003ccode\u003e0e07cc8\u003c/code\u003e\u003c/a\u003e Release 2024-07-09\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5e3583451cd8a91dbca2cc22672c2cfa0c7860cf\"\u003e\u003ccode\u003e5e35834\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.57.1...service/s3/v1.58.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.100.0 to 1.103.1\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fa369bd7bb9576e85ac094a43a15e8372a3d0129\"\u003e\u003ccode\u003efa369bd\u003c/code\u003e\u003c/a\u003e Release 2026-06-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/960ee4dc8380a46ded94f3976e073242d42bf8ed\"\u003e\u003ccode\u003e960ee4d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4b6df8b301a6c965903012dda08e9f38fd163f1c\"\u003e\u003ccode\u003e4b6df8b\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/30b15dd22cc690c7d647c32f415111437cfbed2a\"\u003e\u003ccode\u003e30b15dd\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e8c72af3150fa9c8898c916b2e213a5d3d7d64ed\"\u003e\u003ccode\u003ee8c72af\u003c/code\u003e\u003c/a\u003e enable schema-serde (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3421\"\u003e#3421\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b4d02c534cf7f5c782e10bc3f66e40c081a7bb3a\"\u003e\u003ccode\u003eb4d02c5\u003c/code\u003e\u003c/a\u003e Release 2026-06-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/48e375b484e0ae917f61904db440ef17382093d1\"\u003e\u003ccode\u003e48e375b\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b8a4fc132e65d8310e2de67e0600eec53e2f4b26\"\u003e\u003ccode\u003eb8a4fc1\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e8627b4cc01977004c41ff0f42670a44d500982d\"\u003e\u003ccode\u003ee8627b4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3430\"\u003e#3430\u003c/a\u003e from aws/fix-remove-ioutil\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4e258a368c5b421d28bae4a18e718b1b4c7dd16a\"\u003e\u003ccode\u003e4e258a3\u003c/code\u003e\u003c/a\u003e chore: update changelog description per review\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.100.0...service/s3/v1.103.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/smithy-go` from 1.25.1 to 1.27.0\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/smithy-go/blob/main/CHANGELOG.md\"\u003egithub.com/aws/smithy-go's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2026-06-02)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go\u003c/code\u003e: v1.27.0\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add APIs for schema-based serialization.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for all current AWS and Smithy protocols.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Enforce max nesting depth of 128 on CBOR payloads.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go/aws-http-auth\u003c/code\u003e: \u003ca href=\"https://github.com/aws/smithy-go/blob/main/aws-http-auth/CHANGELOG.md#v120-2026-06-02\"\u003ev1.2.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add event stream signer.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-05-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go\u003c/code\u003e: v1.26.0\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add StringSlice to endpoint rulesfn.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-04-23)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go\u003c/code\u003e: v1.25.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Fixed a memory leak in the LRU cache implementation used by some AWS services.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-04-15)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go\u003c/code\u003e: v1.25.0\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for endpointBdd trait\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-04-02)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go\u003c/code\u003e: v1.24.3\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Add additional sigv4 configuration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go/aws-http-auth\u003c/code\u003e: \u003ca href=\"https://github.com/aws/smithy-go/blob/main/aws-http-auth/CHANGELOG.md#v113-2026-04-02\"\u003ev1.1.3\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Add additional sigv4 configuration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3f6ece24dd0646e1f43ce05d980bcb4880a6e7fe\"\u003e\u003ccode\u003e3f6ece2\u003c/code\u003e\u003c/a\u003e Release 2026-06-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3432807d26fd8d74013bd20d7d4c56ff379e2e16\"\u003e\u003ccode\u003e3432807\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;changelog\u0026quot;\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/9663ed6253396a37d3cca9e37a9410118a370bc1\"\u003e\u003ccode\u003e9663ed6\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/bcd9f540477b856423b2a8f679574df8026a5dbe\"\u003e\u003ccode\u003ebcd9f54\u003c/code\u003e\u003c/a\u003e enforce a max nesting depth of 128 on cbor payloads (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/670\"\u003e#670\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/ff093e96647027be14e7079a03359bc8c80d6b6f\"\u003e\u003ccode\u003eff093e9\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/1db7cb38af94cbdbf000a31a56f5a1d20191fa68\"\u003e\u003ccode\u003e1db7cb3\u003c/code\u003e\u003c/a\u003e hold off on unsafe string for now\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/473b1947c03deea1898ffd01fbba8de765d5eed7\"\u003e\u003ccode\u003e473b194\u003c/code\u003e\u003c/a\u003e update README again\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/6620de4fc429f2553f793bb170a997e6c9d2e439\"\u003e\u003ccode\u003e6620de4\u003c/code\u003e\u003c/a\u003e update README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/22c5357d5d20fd4262b62ca7bb3530d7759a79bf\"\u003e\u003ccode\u003e22c5357\u003c/code\u003e\u003c/a\u003e introduce schema-based serialization (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/666\"\u003e#666\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/6857390fd160b416d0e369dc9dc5c2b3736178fc\"\u003e\u003ccode\u003e6857390\u003c/code\u003e\u003c/a\u003e fix: remove deprecated io/ioutil from codegen templates (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/669\"\u003e#669\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.25.1...v1.27.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/crashappsec/ocular` from 0.3.0 to 0.3.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/crashappsec/ocular/releases\"\u003egithub.com/crashappsec/ocular's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.3.1\u003c/h2\u003e\n\u003ch1\u003e\u003ca href=\"https://github.com/crashappsec/ocular/releases/tag/v0.3.1\"\u003ev0.3.1\u003c/a\u003e - \u003cstrong\u003eMay 22nd, 2026\u003c/strong\u003e\u003c/h1\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eContainers can be conditionally included in scan via parameter\u003c/li\u003e\n\u003cli\u003eAbility to configure runtime class for pipelines\u003c/li\u003e\n\u003cli\u003eParameter settings can be inheritted from parent resource (where applicable)\n\u003cul\u003e\n\u003cli\u003eUploader settings can inherit from Profile parameters\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eImprove accuracy of pipeline and search metrics via finalizer\u003c/li\u003e\n\u003cli\u003eDeterministic helm chart generation\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/crashappsec/ocular/blob/main/CHANGELOG.md\"\u003egithub.com/crashappsec/ocular's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003e\u003ca href=\"https://github.com/crashappsec/ocular/releases/tag/v0.3.1\"\u003ev0.3.1\u003c/a\u003e - \u003cstrong\u003eMay 22nd, 2026\u003c/strong\u003e\u003c/h1\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eContainers can be conditionally included in scan via parameter\u003c/li\u003e\n\u003cli\u003eAbility to configure runtime class for pipelines\u003c/li\u003e\n\u003cli\u003eParameter settings can be inheritted from parent resource (where applicable)\n\u003cul\u003e\n\u003cli\u003eUploader settings can inherit from Profile parameters\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eImprove accuracy of pipeline and search metrics via finalizer\u003c/li\u003e\n\u003cli\u003eDeterministic helm chart generation\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/7522dbf1cebd510a193c1d9e5fbf2c9a734bcba1\"\u003e\u003ccode\u003e7522dbf\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/crashappsec/ocular/issues/76\"\u003e#76\u003c/a\u003e from crashappsec/feat/release/v0.3.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/19e9cc7963d37c66f00ce1146deddd1e2845dfea\"\u003e\u003ccode\u003e19e9cc7\u003c/code\u003e\u003c/a\u003e docs: update CHANGELOG.md\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/9eafe5299047ea69f58d0291537a154e9bfb1c60\"\u003e\u003ccode\u003e9eafe52\u003c/code\u003e\u003c/a\u003e chore(deps): upgrade GitHub action and Docker dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/db2621e90f2a014ccbc29197890d60f0ca0e9d83\"\u003e\u003ccode\u003edb2621e\u003c/code\u003e\u003c/a\u003e fix(pipelines): use finalizers for metrics\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/39c40121f87ffb3cf0f5524b26d4efd4f32a383a\"\u003e\u003ccode\u003e39c4012\u003c/code\u003e\u003c/a\u003e feat: release v0.3.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/e3974fccbac8a439c6c1dbc81e8cef88d3f82feb\"\u003e\u003ccode\u003ee3974fc\u003c/code\u003e\u003c/a\u003e ci: merge pull request \u003ca href=\"https://redirect.github.com/crashappsec/ocular/issues/72\"\u003e#72\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/41a97a00534b6076c585b021ff91b8a4c70fdea3\"\u003e\u003ccode\u003e41a97a0\u003c/code\u003e\u003c/a\u003e feat: add runtime class support\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/crashappsec/ocular/compare/v0.3.0...v0.3.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-git/go-git/v6` from 6.0.0-alpha.2 to 6.0.0-alpha.4\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-git/go-git/releases\"\u003egithub.com/go-git/go-git/v6's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev6.0.0-alpha.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eplumbing: transport/ssh, Shell-quote path and args by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2067\"\u003ego-git/go-git#2067\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: submodule, canonical remote for relative URLs by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2071\"\u003ego-git/go-git#2071\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003estorage: filesystem, Use repository object format for writing loose objects by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2073\"\u003ego-git/go-git#2073\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: submodule, error on remote without URLs by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2076\"\u003ego-git/go-git#2076\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: objfile, Pass object format into Reader by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2077\"\u003ego-git/go-git#2077\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: submodule, Add relative URL regression tests by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2072\"\u003ego-git/go-git#2072\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/idxfile, Validate offset64 indices by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2083\"\u003ego-git/go-git#2083\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003estorage: filesystem, Search alternates in HashesWithPrefix by \u003ca href=\"https://github.com/andrew\"\u003e\u003ccode\u003e@​andrew\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2087\"\u003ego-git/go-git#2087\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e*: Reject malformed variable-length integers by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2090\"\u003ego-git/go-git#2090\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd \u003ccode\u003eworktreeFilesystem\u003c/code\u003e wrapper for worktree by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2081\"\u003ego-git/go-git#2081\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etests: fix three recurring CI flakes by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2093\"\u003ego-git/go-git#2093\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/packfile, Test patchDeltaWriter cap by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2086\"\u003ego-git/go-git#2086\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/packfile, Tighten delta validation by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2089\"\u003ego-git/go-git#2089\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: worktree path hardening by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2097\"\u003ego-git/go-git#2097\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: Update module github.com/go-git/go-git-fixtures/v6 to v6.0.0-20260502205956-66bffbe5a6ff (main) by \u003ca href=\"https://github.com/go-git-renovate\"\u003e\u003ccode\u003e@​go-git-renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2102\"\u003ego-git/go-git#2102\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: Update golang (main) by \u003ca href=\"https://github.com/go-git-renovate\"\u003e\u003ccode\u003e@​go-git-renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2099\"\u003ego-git/go-git#2099\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003econfig: validate submodule names by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2079\"\u003ego-git/go-git#2079\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: Update go-git (main) by \u003ca href=\"https://github.com/go-git-renovate\"\u003e\u003ccode\u003e@​go-git-renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2103\"\u003ego-git/go-git#2103\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eworktree: skip ignored directories during Reset walk by \u003ca href=\"https://github.com/Soph\"\u003e\u003ccode\u003e@​Soph\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2075\"\u003ego-git/go-git#2075\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/pktline, validate reader/writer inputs by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2104\"\u003ego-git/go-git#2104\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: Update module github.com/go-git/go-git-fixtures/v6 to v6.0.0-alpha.1 (main) by \u003ca href=\"https://github.com/go-git-renovate\"\u003e\u003ccode\u003e@​go-git-renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2110\"\u003ego-git/go-git#2110\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: object, tree entry validation by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2105\"\u003ego-git/go-git#2105\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: Stop validating symlink target paths by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2114\"\u003ego-git/go-git#2114\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: Allow MkdirAll on worktree-root paths by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2115\"\u003ego-git/go-git#2115\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: add repository and remote archive support by \u003ca href=\"https://github.com/aymanbagabas\"\u003e\u003ccode\u003e@​aymanbagabas\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2013\"\u003ego-git/go-git#2013\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix file handle leaks by calling Repository.Close() and adding transactional.Storage.Close() by \u003ca href=\"https://github.com/AriehSchneier\"\u003e\u003ccode\u003e@​AriehSchneier\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/1999\"\u003ego-git/go-git#1999\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: fuzz on-disk format decoders by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2120\"\u003ego-git/go-git#2120\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format decoder input bounds and contracts by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2119\"\u003ego-git/go-git#2119\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: fuzz packp and capability decoders by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2121\"\u003ego-git/go-git#2121\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003estorage: dotgit, fix hasIncomingObjects race by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2131\"\u003ego-git/go-git#2131\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/packfile, use ReadAt in FSObject.Reader() for concurrency safety. by \u003ca href=\"https://github.com/cedric-appdirect\"\u003e\u003ccode\u003e@​cedric-appdirect\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/1998\"\u003ego-git/go-git#1998\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/packfile, harden malformed pack handling by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2113\"\u003ego-git/go-git#2113\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/andrew\"\u003e\u003ccode\u003e@​andrew\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2087\"\u003ego-git/go-git#2087\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v6.0.0-alpha.3...v6.0.0-alpha.4\"\u003ehttps://github.com/go-git/go-git/compare/v6.0.0-alpha.3...v6.0.0-alpha.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev6.0.0-alpha.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eplumbing: transport, add git-upload-archive support by \u003ca href=\"https://github.com/aymanbagabas\"\u003e\u003ccode\u003e@​aymanbagabas\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/1986\"\u003ego-git/go-git#1986\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eutils: sync, Make zlib compression pluggable via x/plugin by \u003ca href=\"https://github.com/stiak\"\u003e\u003ccode\u003e@​stiak\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2012\"\u003ego-git/go-git#2012\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: establish DCO sign-off requirement for all contributions by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/1914\"\u003ego-git/go-git#1914\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: update \u003ccode\u003eCONTRIBUTING.md\u003c/code\u003e, \u003ccode\u003eREADME.md\u003c/code\u003e and add \u003ccode\u003eHISTORY.md\u003c/code\u003e by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/1946\"\u003ego-git/go-git#1946\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003estorage: filesystem, close packfile iterators after use by \u003ca href=\"https://github.com/aymanbagabas\"\u003e\u003ccode\u003e@​aymanbagabas\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2027\"\u003ego-git/go-git#2027\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd .github/copilot-instructions.md with PR review guidelines by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2040\"\u003ego-git/go-git#2040\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: update comment to reflect support for the last 2 stable Go versions by \u003ca href=\"https://github.com/alexandear\"\u003e\u003ccode\u003e@​alexandear\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2041\"\u003ego-git/go-git#2041\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e*: clone, resolve relative local URLs against CWD in CloneOptions.Validate by \u003ca href=\"https://github.com/AriehSchneier\"\u003e\u003ccode\u003e@​AriehSchneier\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/1891\"\u003ego-git/go-git#1891\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/d9a69831082341eab799c062e10ad28b3204c08a\"\u003e\u003ccode\u003ed9a6983\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2113\"\u003e#2113\u003c/a\u003e from go-git/validation2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/f7d853768f794f5601fd43a924e84f66509392d7\"\u003e\u003ccode\u003ef7d8537\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1998\"\u003e#1998\u003c/a\u003e from cedric-appdirect/fsobject-readerat\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/b3850afd2dfbc11d5ead8e08c94940d8bbe9c480\"\u003e\u003ccode\u003eb3850af\u003c/code\u003e\u003c/a\u003e plumbing: format/packfile, cap delta chain depth in parser\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/5be028fc9693298bea36ba658fa5b18e75c1b948\"\u003e\u003ccode\u003e5be028f\u003c/code\u003e\u003c/a\u003e plumbing: format/packfile, surface scanner errors in headerFromOffset\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/04aef2cc4efd2099add53d4428ce41dd0a3dc8d3\"\u003e\u003ccode\u003e04aef2c\u003c/code\u003e\u003c/a\u003e plumbing: reject reserved object type in Valid\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/0d8b719f86ee0fb4a6a3340dbbd78c94dcd0699d\"\u003e\u003ccode\u003e0d8b719\u003c/code\u003e\u003c/a\u003e plumbing: format/packfile, propagate objectFromHeader errors in iter\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/7069092611db6a1e9e2bbb676669991765ee3960\"\u003e\u003ccode\u003e7069092\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2131\"\u003e#2131\u003c/a\u003e from hiddeco/dotgit-incoming-race\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/8ab1a10a67bef0781bc7d537742531a5254798be\"\u003e\u003ccode\u003e8ab1a10\u003c/code\u003e\u003c/a\u003e storage: dotgit, fix hasIncomingObjects race\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/41ab5f4851ec91b3aece7120b40345c3950168db\"\u003e\u003ccode\u003e41ab5f4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2121\"\u003e#2121\u003c/a\u003e from hiddeco/protocol-fuzz-harnesses\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/d4d24cb47371b979f69af282a68a776087a5c8a7\"\u003e\u003ccode\u003ed4d24cb\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2119\"\u003e#2119\u003c/a\u003e from hiddeco/format-input-bounds\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-git/go-git/compare/v6.0.0-alpha.2...v6.0.0-alpha.4\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/google/go-containerregistry` from 0.21.5 to 0.21.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/go-containerregistry/releases\"\u003egithub.com/google/go-containerregistry's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.21.6\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: update dependencies to use new azure sdk components by \u003ca href=\"https://github.com/gaganhr94\"\u003e\u003ccode\u003e@​gaganhr94\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2262\"\u003egoogle/go-containerregistry#2262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: restore resp.Body in retryError so CheckError can parse it by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2264\"\u003egoogle/go-containerregistry#2264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/registry: return 202 Accepted for PATCH chunk uploads by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2265\"\u003egoogle/go-containerregistry#2265\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFollow OCI distribution spec for artifactType and annotations by \u003ca href=\"https://github.com/malt3\"\u003e\u003ccode\u003e@​malt3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2269\"\u003egoogle/go-containerregistry#2269\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eactions: attach Codecov token to coverage tests on main by \u003ca href=\"https://github.com/Subserial\"\u003e\u003ccode\u003e@​Subserial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2270\"\u003egoogle/go-containerregistry#2270\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: use DeleteScope (with \u0026quot;delete\u0026quot; action) for manifest deletion by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2266\"\u003egoogle/go-containerregistry#2266\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: limit concurrent layer pulls by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2271\"\u003egoogle/go-containerregistry#2271\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/registry: reject corrupt disk blobs by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2272\"\u003egoogle/go-containerregistry#2272\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emutate: close layer readers during export by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2277\"\u003egoogle/go-containerregistry#2277\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ecrane/flatten: preserve image media type when flattening by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2267\"\u003egoogle/go-containerregistry#2267\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump goreleaser/goreleaser-action from 7.0.0 to 7.2.1 in the actions group across 1 directory by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2273\"\u003egoogle/go-containerregistry#2273\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump go.opentelemetry.io/otel from 1.36.0 to 1.41.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2278\"\u003egoogle/go-containerregistry#2278\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump the go-deps group across 3 directories with 6 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2280\"\u003egoogle/go-containerregistry#2280\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReplace go-homedir with os.UserHomeDir by \u003ca href=\"https://github.com/jammie-jelly\"\u003e\u003ccode\u003e@​jammie-jelly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2282\"\u003egoogle/go-containerregistry#2282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/name: only treat .localhost as non-HTTPS, not .local by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2281\"\u003egoogle/go-containerregistry#2281\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: block unspecified IPs (0.0.0.0, ::) in validateRealmURL by \u003ca href=\"https://github.com/marwan9696\"\u003e\u003ccode\u003e@​marwan9696\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2285\"\u003egoogle/go-containerregistry#2285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest(mutate): add Extract round-trip test for filesystem object preservation by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2283\"\u003egoogle/go-containerregistry#2283\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexperiments: remove deprecated support for estargz by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2288\"\u003egoogle/go-containerregistry#2288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump aws-actions/configure-aws-credentials from 6.1.0 to 6.1.1 in the actions group by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2289\"\u003egoogle/go-containerregistry#2289\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: limit HTTP response body reads to prevent OOM by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2296\"\u003egoogle/go-containerregistry#2296\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump the go-deps group across 3 directories with 6 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2297\"\u003egoogle/go-containerregistry#2297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: block redirects from token server to private/link-local addresses (SSRF fix) by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2292\"\u003egoogle/go-containerregistry#2292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/v1/mutate: preserve relative symlinks that stay within rootfs in Extract by \u003ca href=\"https://github.com/anishesg\"\u003e\u003ccode\u003e@​anishesg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2279\"\u003egoogle/go-containerregistry#2279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003evalidate: skip non-layer layers by \u003ca href=\"https://github.com/imjasonh\"\u003e\u003ccode\u003e@​imjasonh\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2298\"\u003egoogle/go-containerregistry#2298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: validate foreign layer URLs to prevent SSRF (fixes \u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2259\"\u003e#2259\u003c/a\u003e) by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2293\"\u003egoogle/go-containerregistry#2293\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: block SSRF via private-IP Location headers in blob uploads by \u003ca href=\"https://github.com/adilburaksen\"\u003e\u003ccode\u003e@​adilburaksen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2295\"\u003egoogle/go-containerregistry#2295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(mutate): preserve config blob and layers for non-Docker OCI artifacts by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2286\"\u003egoogle/go-containerregistry#2286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: preserve per-occurrence layer identity in mutate.Image.Layers() by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2299\"\u003egoogle/go-containerregistry#2299\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: retry HTTP 429 (Too Many Requests) by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2301\"\u003egoogle/go-containerregistry#2301\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: allow bearer realm at same host:port as registry by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2302\"\u003egoogle/go-containerregistry#2302\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate go version to 1.26.3 by \u003ca href=\"https://github.com/Subserial\"\u003e\u003ccode\u003e@​Subserial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2300\"\u003egoogle/go-containerregistry#2300\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/gaganhr94\"\u003e\u003ccode\u003e@​gaganhr94\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2262\"\u003egoogle/go-containerregistry#2262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2264\"\u003egoogle/go-containerregistry#2264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/malt3\"\u003e\u003ccode\u003e@​malt3\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2269\"\u003egoogle/go-containerregistry#2269\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2271\"\u003egoogle/go-containerregistry#2271\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2281\"\u003egoogle/go-containerregistry#2281\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/marwan9696\"\u003e\u003ccode\u003e@​marwan9696\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2285\"\u003egoogle/go-containerregistry#2285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anishesg\"\u003e\u003ccode\u003e@​anishesg\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2279\"\u003egoogle/go-containerregistry#2279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/adilburaksen\"\u003e\u003ccode\u003e@​adilburaksen\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2295\"\u003egoogle/go-containerregistry#2295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2299\"\u003egoogle/go-containerregistry#2299\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\"\u003ehttps://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/53f7e39e15bfd6aeea6a5f733ee1a8fcf54c15cf\"\u003e\u003ccode\u003e53f7e39\u003c/code\u003e\u003c/a\u003e Update go version to 1.26.3 (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2300\"\u003e#2300\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/bf87c3bfe4cc3218ac0baa364545d72729d2906d\"\u003e\u003ccode\u003ebf87c3b\u003c/code\u003e\u003c/a\u003e transport: allow bearer realm at same host:port as registry (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2302\"\u003e#2302\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/c55facddfbd7fc3d648c6fdda9860b350b013a76\"\u003e\u003ccode\u003ec55facd\u003c/code\u003e\u003c/a\u003e transport: retry HTTP 429 (Too Many Requests) (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2301\"\u003e#2301\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/68a569e4a0eb927d36ccb0fcdf4578425c03b5a2\"\u003e\u003ccode\u003e68a569e\u003c/code\u003e\u003c/a\u003e fix: preserve per-occurrence layer identity in Layers() (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2299\"\u003e#2299\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/35b354b436879457221028f05a580fe1c0deccbc\"\u003e\u003ccode\u003e35b354b\u003c/code\u003e\u003c/a\u003e fix(mutate): preserve config blob and layers for non-Docker OCI artifacts (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2\"\u003e#2\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/e5983f2a67ec46b76984ce6de85de08a44eee955\"\u003e\u003ccode\u003ee5983f2\u003c/code\u003e\u003c/a\u003e remote: block SSRF via private-IP Location headers in blob uploads (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2295\"\u003e#2295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/6dad820da7de0d619f1127c46914f2eaf58e3b46\"\u003e\u003ccode\u003e6dad820\u003c/code\u003e\u003c/a\u003e remote: validate foreign layer URLs to prevent SSRF (fixes \u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2259\"\u003e#2259\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2293\"\u003e#2293\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/78bdf1b7e2105cdfcd8f23509992c78357ce16ed\"\u003e\u003ccode\u003e78bdf1b\u003c/code\u003e\u003c/a\u003e validate: skip non-layer layers (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2298\"\u003e#2298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/c29d91cdc394cb288270f4dd04a31f81054946f4\"\u003e\u003ccode\u003ec29d91c\u003c/code\u003e\u003c/a\u003e pkg/v1/mutate: preserve relative symlinks that stay within rootfs in Extract ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/a70d75a6915ed3137792206dac4bca21d1924959\"\u003e\u003ccode\u003ea70d75a\u003c/code\u003e\u003c/a\u003e transport: block redirects from token server to private/link-local addresses ...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/api` from 0.276.0 to 0.283.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/releases\"\u003egoogle.golang.org/api's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.283.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.282.0...v0.283.0\"\u003e0.283.0\u003c/a\u003e (2026-06-01)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3609\"\u003e#3609\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ed84bb800c56d3f7fee4c11f96673114e94a8cc2\"\u003eed84bb8\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3611\"\u003e#3611\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3855346eda7f4ba6c844d86de5de493d3e395f00\"\u003e3855346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3612\"\u003e#3612\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/32624d32240ec8e5997810fb9cb54f8000b6c7f8\"\u003e32624d3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.282.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.281.0...v0.282.0\"\u003e0.282.0\u003c/a\u003e (2026-05-27)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3607\"\u003e#3607\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3c139a07f71096667d5a623591ddb37dacd38d55\"\u003e3c139a0\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.281.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.280.0...v0.281.0\"\u003e0.281.0\u003c/a\u003e (2026-05-26)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3600\"\u003e#3600\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bcaee85f93824a21f5441c2ccd3b4d4811d97de7\"\u003ebcaee85\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3602\"\u003e#3602\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f0071d379f4443ffdae9994fe141b1b5e0c18a62\"\u003ef0071d3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3603\"\u003e#3603\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/b1aa9dea8c3c0e539c8d9687c99c55ec3679c996\"\u003eb1aa9de\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3604\"\u003e#3604\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/711e008d9caf16e6fb68c860f83a28fd0a8c0f98\"\u003e711e008\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3606\"\u003e#3606\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3ad8e8e2ab4ae50862c0fc5b17efa2d3cda33d9a\"\u003e3ad8e8e\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.280.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.279.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md\"\u003egoogle.golang.org/api's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.282.0...v0.283.0\"\u003e0.283.0\u003c/a\u003e (2026-06-01)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3609\"\u003e#3609\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ed84bb800c56d3f7fee4c11f96673114e94a8cc2\"\u003eed84bb8\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3611\"\u003e#3611\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3855346eda7f4ba6c844d86de5de493d3e395f00\"\u003e3855346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3612\"\u003e#3612\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/32624d32240ec8e5997810fb9cb54f8000b6c7f8\"\u003e32624d3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.281.0...v0.282.0\"\u003e0.282.0\u003c/a\u003e (2026-05-27)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3607\"\u003e#3607\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3c139a07f71096667d5a623591ddb37dacd38d55\"\u003e3c139a0\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.280.0...v0.281.0\"\u003e0.281.0\u003c/a\u003e (2026-05-26)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3600\"\u003e#3600\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bcaee85f93824a21f5441c2ccd3b4d4811d97de7\"\u003ebcaee85\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3602\"\u003e#3602\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f0071d379f4443ffdae9994fe141b1b5e0c18a62\"\u003ef0071d3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3603\"\u003e#3603\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/b1aa9dea8c3c0e539c8d9687c99c55ec3679c996\"\u003eb1aa9de\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3604\"\u003e#3604\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/711e008d9caf16e6fb68c860f83a28fd0a8c0f98\"\u003e711e008\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3606\"\u003e#3606\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3ad8e8e2ab4ae50862c0fc5b17efa2d3cda33d9a\"\u003e3ad8e8e\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f6726366ff2f0b8fc82cec6f063dc9beb3ab1377\"\u003e\u003ccode\u003ef672636\u003c/code\u003e\u003c/a\u003e chore(main): release 0.283.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3610\"\u003e#3610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/32624d32240ec8e5997810fb9cb54f8000b6c7f8\"\u003e\u003ccode\u003e32624d3\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3612\"\u003e#3612\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3855346eda7f4ba6c844d86de5de493d3e395f00\"\u003e\u003ccode\u003e3855346\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3611\"\u003e#3611\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ed84bb800c56d3f7fee4c11f96673114e94a8cc2\"\u003e\u003ccode\u003eed84bb8\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3609\"\u003e#3609\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/60aebbd7406af09eb63866ff79f0dbd40cccecbb\"\u003e\u003ccode\u003e60aebbd\u003c/code\u003e\u003c/a\u003e chore(main): release 0.282.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3608\"\u003e#3608\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3c139a07f71096667d5a623591ddb37dacd38d55\"\u003e\u003ccode\u003e3c139a0\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3607\"\u003e#3607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8f434ff91fe8dc299942ecd7c87ebab151ff38e5\"\u003e\u003ccode\u003e8f434ff\u003c/code\u003e\u003c/a\u003e chore(main): release 0.281.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3601\"\u003e#3601\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/57f4b28d8c80b464f7f0b486a555de528fb89c4e\"\u003e\u003ccode\u003e57f4b28\u003c/code\u003e\u003c/a\u003e chore(all): update all (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3605\"\u003e#3605\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3ad8e8e2ab4ae50862c0fc5b17efa2d3cda33d9a\"\u003e\u003ccode\u003e3ad8e8e\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3606\"\u003e#3606\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/711e008d9caf16e6fb68c860f83a28fd0a8c0f98\"\u003e\u003ccode\u003e711e008\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3604\"\u003e#3604\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.283.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `k8s.io/api` from 0.35.4 to 0.36.1\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/25001c854943b552769cd32eacd0bef7467c0eea\"\u003e\u003ccode\u003e25001c8\u003c/code\u003e\u003c/a\u003e Update dependencies to v0.36.1 tag\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/879d3962091a3578f73c31a82c619e7a7bdfdd12\"\u003e\u003ccode\u003e879d396\u003c/code\u003e\u003c/a\u003e Merge remote-tracking branch 'origin/master' into release-1.36\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/030d81f63ea13f09388aee12e9c39b8d7ce9e841\"\u003e\u003ccode\u003e030d81f\u003c/code\u003e\u003c/a\u003e Update github.com/moby/spdystream from v0.5.0 to v0.5.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/aef6eb6922295161de2f7c1b9a496677938f8b20\"\u003e\u003ccode\u003eaef6eb6\u003c/code\u003e\u003c/a\u003e Add granular authorization for DRA ResourceClaim status updates\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/91061ea648b73ce8944e1c1ff2c1e99d6bacdb54\"\u003e\u003ccode\u003e91061ea\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/kubernetes/api/issues/136589\"\u003e#136589\u003c/a\u003e from tosi3k/preemption-mode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/e6b81e28967d56d57aa665d6b28cc7a807423f1f\"\u003e\u003ccode\u003ee6b81e2\u003c/code\u003e\u003c/a\u003e Add Workload-Aware Preemption fields to Workload and PodGroup APIs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/f8fce2ea6d494ed13df7d57d84e4b30b5ad5c8a3\"\u003e\u003ccode\u003ef8fce2e\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/kubernetes/api/issues/136989\"\u003e#136989\u003c/a\u003e from nojnhuh/podgroup-resourceclaim\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/b928f5ee0f7878ef903e95ab771f1a55ed867c54\"\u003e\u003ccode\u003eb928f5e\u003c/code\u003e\u003c/a\u003e Workload API: PodGroup ResourceClaims (KEP-5729)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/61bd78e724dd0616b1cd7f6cd802f41a32400d73\"\u003e\u003ccode\u003e61bd78e\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/kubernetes/api/issues/137190\"\u003e#137190\u003c/a\u003e from everpeace/KEP-5491-alpha\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/6bf46eb598a71fec3182b4d598734c6a364e7cca\"\u003e\u003ccode\u003e6bf46eb\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/kubernetes/api/issues/137028\"\u003e#137028\u003c/a\u003e from nmn3m/feature/dra-resource-pool-status\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/kubernetes/api/compare/v0.35.4...v0.36.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `k8s.io/apimachinery` from 0.35.4 to 0.36.1\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/apimachinery/commit/7af103a2a439106791220493349f8d13bc0a1efd\"\u003e\u003ccode\u003e7af103a\u003c/code\u003e\u003c/a\u003e Update dependencies to v0.36.1 tag\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/apimachinery/commit/efb7f2628b269921e5f12c4d42aece418c76789c\"\u003e\u003ccode\u003eefb7f26\u003c/code\u003e\u003c/a\u003e Merge remote-tracking branch 'origin/master' into release-1.36\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/apimachinery/commit/d966e565cd271c44ba799b594ddb67987791cb80\"\u003e\u003ccode\u003ed966e56\u003c/code\u003e\u003c/a\u003e Update github.com/moby/spdystream from v0.5.0 to v0.5.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/apimachinery/commit/79b363268543c402b68449b0cd531f8f8d0197d1\"\u003e\u003ccode\u003e79b3632\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/kubernetes/apimachinery/...\n\n_Description has been truncated_","html_url":"https://github.com/crashappsec/ocular-default-integrations/pull/54","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/crashappsec%2Focular-default-integrations/issues/54","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/54/packages"},{"uuid":"4564740388","node_id":"PR_kwDOCrwMCc7hcd0b","number":8930,"state":"open","title":"Bump cloud.google.com/go/storage from 1.59.2 to 1.62.2 in /mockgcp","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-01T16:35:17.000Z","updated_at":"2026-06-01T16:35:37.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.59.2","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":"/mockgcp","ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.59.2 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.61.4\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.61.3...storage/v1.61.4\"\u003ev1.61.4\u003c/a\u003e (2026-05-21)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/37580e7e\"\u003e37580e7e\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.59.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.59.2...storage/v1.59.3\"\u003ev1.59.3\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ehandle MRD hang corner case (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14509\"\u003e#14509\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1ca3b6f0\"\u003e1ca3b6f0\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.59.2...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.59.2\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/GoogleCloudPlatform/k8s-config-connector/pull/8930","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/GoogleCloudPlatform%2Fk8s-config-connector/issues/8930","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/8930/packages"},{"uuid":"4559454701","node_id":"PR_kwDOHajk3c7hLWfB","number":913,"state":"open","title":"fix(deps): bump cloud.google.com/go/storage from 1.62.1 to 1.62.2 in /api","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":["AchoArnold"],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-01T00:08:40.000Z","updated_at":"2026-06-01T00:14:15.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix(deps)","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":"/api","ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.1 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.1\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/NdoleStudio/httpsms/pull/913","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/NdoleStudio%2Fhttpsms/issues/913","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/913/packages"},{"uuid":"4528618543","node_id":"PR_kwDODY5jaM7focx5","number":2969,"state":"open","title":"chore(deps): bump the go-modules group across 1 directory with 18 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-27T01:04:18.000Z","updated_at":"2026-05-27T01:04:53.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"go-modules","update_count":18,"packages":[{"name":"github.com/flanksource/commons","old_version":"1.51.3","new_version":"1.51.5","repository_url":"https://github.com/flanksource/commons"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatch","old_version":"1.56.2","new_version":"1.57.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/configservice","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.100.0","new_version":"1.101.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/elastic/go-elasticsearch/v8","old_version":"8.19.4","new_version":"8.19.6","repository_url":"https://github.com/elastic/go-elasticsearch"},{"name":"github.com/flanksource/clicky","old_version":"1.21.7","new_version":"1.21.9","repository_url":"https://github.com/flanksource/clicky"},{"name":"github.com/go-sql-driver/mysql","old_version":"1.9.3","new_version":"1.10.0","repository_url":"https://github.com/go-sql-driver/mysql"},{"name":"github.com/google/cel-go","old_version":"0.28.0","new_version":"0.28.1","repository_url":"https://github.com/google/cel-go"},{"name":"github.com/labstack/echo/v4","old_version":"4.15.1","new_version":"4.15.2","repository_url":"https://github.com/labstack/echo"},{"name":"github.com/microsoft/go-mssqldb","old_version":"1.9.8","new_version":"1.10.0","repository_url":"https://github.com/microsoft/go-mssqldb"},{"name":"github.com/onsi/ginkgo/v2","old_version":"2.28.2","new_version":"2.29.0","repository_url":"https://github.com/onsi/ginkgo"},{"name":"github.com/prometheus/alertmanager","old_version":"0.32.0","new_version":"0.32.1","repository_url":"https://github.com/prometheus/alertmanager"},{"name":"github.com/samber/oops","old_version":"1.21.0","new_version":"1.22.0","repository_url":"https://github.com/samber/oops"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"},{"name":"k8s.io/apimachinery","old_version":"0.36.0","new_version":"0.36.1","repository_url":"https://github.com/kubernetes/apimachinery"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-modules group with 16 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/flanksource/commons](https://github.com/flanksource/commons) | `1.51.3` | `1.51.5` |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.1` | `1.62.2` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://github.com/aws/aws-sdk-go-v2) | `1.56.2` | `1.57.0` |\n| [github.com/aws/aws-sdk-go-v2/service/configservice](https://github.com/aws/aws-sdk-go-v2) | `1.62.2` | `1.62.3` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.100.0` | `1.101.0` |\n| [github.com/elastic/go-elasticsearch/v8](https://github.com/elastic/go-elasticsearch) | `8.19.4` | `8.19.6` |\n| [github.com/flanksource/clicky](https://github.com/flanksource/clicky) | `1.21.7` | `1.21.9` |\n| [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) | `1.9.3` | `1.10.0` |\n| [github.com/google/cel-go](https://github.com/google/cel-go) | `0.28.0` | `0.28.1` |\n| [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.15.1` | `4.15.2` |\n| [github.com/microsoft/go-mssqldb](https://github.com/microsoft/go-mssqldb) | `1.9.8` | `1.10.0` |\n| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.28.2` | `2.29.0` |\n| [github.com/prometheus/alertmanager](https://github.com/prometheus/alertmanager) | `0.32.0` | `0.32.1` |\n| [github.com/samber/oops](https://github.com/samber/oops) | `1.21.0` | `1.22.0` |\n| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.276.0` | `0.280.0` |\n| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.36.0` | `0.36.1` |\n\n\nUpdates `github.com/flanksource/commons` from 1.51.3 to 1.51.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/commons/releases\"\u003egithub.com/flanksource/commons's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.51.5\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.4...v1.51.5\"\u003e1.51.5\u003c/a\u003e (2026-05-21)\u003c/h2\u003e\n\u003ch2\u003ev1.51.4\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.4\"\u003e1.51.4\u003c/a\u003e (2026-05-04)\u003c/h2\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/commons/commit/8f616949c08e644903c328fc4f3eca7db9171776\"\u003e\u003ccode\u003e8f61694\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.80 (\u003ca href=\"https://redirect.github.com/flanksource/commons/issues/315\"\u003e#315\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/commons/commit/72c1bcf52807cc782a4cce7b368e24af1832b334\"\u003e\u003ccode\u003e72c1bcf\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.79 (\u003ca href=\"https://redirect.github.com/flanksource/commons/issues/314\"\u003e#314\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/cloudwatch` from 1.56.2 to 1.57.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7c25c211744bdcff47a7203a7a894b1241f9da50\"\u003e\u003ccode\u003e7c25c21\u003c/code\u003e\u003c/a\u003e Release 2024-06-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b374423feaf0b04f01c7624b10915871e589b8a1\"\u003e\u003ccode\u003eb374423\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/923f54ea6016e1c70ad45ba0854e7361a72c3ba6\"\u003e\u003ccode\u003e923f54e\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f3bdfcf190150f62a7a07a03bc32d9c58a68f2e\"\u003e\u003ccode\u003e5f3bdfc\u003c/code\u003e\u003c/a\u003e track changes for string_array endpoint parameters (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2699\"\u003e#2699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b4498c633741e24ff4930313610096601dc4036\"\u003e\u003ccode\u003e2b4498c\u003c/code\u003e\u003c/a\u003e Release 2024-06-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/332d372bb946f0d50cae58f9401b9c1244e4b818\"\u003e\u003ccode\u003e332d372\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9397b8d8c05eb1528910ba81881797e7c0e53d17\"\u003e\u003ccode\u003e9397b8d\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/674e1e4412ce44325902125c935ce124d0bfaf4f\"\u003e\u003ccode\u003e674e1e4\u003c/code\u003e\u003c/a\u003e Release 2024-06-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/406eeb4367bab3ac49b75fbd2d842186e961f4f0\"\u003e\u003ccode\u003e406eeb4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/17bd894f3c3842d21d5963bc23213397557c3105\"\u003e\u003ccode\u003e17bd894\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ssm/v1.56.2...service/s3/v1.57.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/configservice` from 1.62.2 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d8ed081e9bcc22e6c5eb63fb6bbacfa38d7bcce3\"\u003e\u003ccode\u003ed8ed081\u003c/code\u003e\u003c/a\u003e Release 2025-10-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a2c9cb47051246e43a65f78696b8189aaa48c871\"\u003e\u003ccode\u003ea2c9cb4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7af054b46fade69938d2682163c4abbbf126b9c7\"\u003e\u003ccode\u003e7af054b\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2e5ed49bd27c797319223fe6454411c6dc3f62cc\"\u003e\u003ccode\u003e2e5ed49\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f3a3b6c778eed688dc91940a6d9160e7445a218f\"\u003e\u003ccode\u003ef3a3b6c\u003c/code\u003e\u003c/a\u003e remove arbitrary response read timeout in kinesis GetRecords (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3221\"\u003e#3221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/56af15521102c665ba33e5512cd66068c7c32506\"\u003e\u003ccode\u003e56af155\u003c/code\u003e\u003c/a\u003e Release 2025-10-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b23832ac9b9505202125cf5c448c72cd333c819b\"\u003e\u003ccode\u003eb23832a\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/33ea965f3eb459c22ba41a8e5da55115da5686bc\"\u003e\u003ccode\u003e33ea965\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f70c7889fa7e09fba31a68c6dbef1e178bbb9964\"\u003e\u003ccode\u003ef70c788\u003c/code\u003e\u003c/a\u003e Release 2025-10-28\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f8aa1f373d60ee159a2aac412311edad2eaad752\"\u003e\u003ccode\u003ef8aa1f3\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/fsx/v1.62.2...service/fsx/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.100.0 to 1.101.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/84ddd08980744ac0f3bacfe7d2796c861671accc\"\u003e\u003ccode\u003e84ddd08\u003c/code\u003e\u003c/a\u003e Release 2026-05-06\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/23645b402c11575a32d1af93ec237f2f121dd285\"\u003e\u003ccode\u003e23645b4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/848eb597bd63cb770bcd11ee230f9dca68ce1ffe\"\u003e\u003ccode\u003e848eb59\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1d7b13420ed32f0809a5a4a35c630d19bfd0b6d4\"\u003e\u003ccode\u003e1d7b134\u003c/code\u003e\u003c/a\u003e Release 2026-05-05\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5bbbc97fcab2086757060561ccd1f34101ba7b57\"\u003e\u003ccode\u003e5bbbc97\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8dbb93618325675f55eb0c3eb0c7a766806dadbc\"\u003e\u003ccode\u003e8dbb936\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/369e6498c716c7e02ca7aef318ef311edd5efcbf\"\u003e\u003ccode\u003e369e649\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dc2d13fa6f1db25f1c6d804567e1ecfcdff4f040\"\u003e\u003ccode\u003edc2d13f\u003c/code\u003e\u003c/a\u003e Release 2026-05-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/da4bcffa913dc4ba46e1ce10a6268bf075547a8d\"\u003e\u003ccode\u003eda4bcff\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a8b1180254cba3e23aa6baece26783395e884d81\"\u003e\u003ccode\u003ea8b1180\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.100.0...service/s3/v1.101.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/elastic/go-elasticsearch/v8` from 8.19.4 to 8.19.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/elastic/go-elasticsearch/releases\"\u003egithub.com/elastic/go-elasticsearch/v8's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev8.19.6\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.5...v8.19.6\"\u003e8.19.6\u003c/a\u003e (2026-05-11)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e078f8ec\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev8.19.5\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.5\"\u003e8.19.5\u003c/a\u003e (2026-04-21)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e5615aed\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eesutil:\u003c/strong\u003e Add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003ef0ad701\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e Regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e13e5d5e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e9874577\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Map spec long to *int64 for esapi params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1391\"\u003e#1391\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/9a2424c77d0125cc4a915eacd5b6c293fcbe280c\"\u003e9a2424c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003efa81ccf\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/elastic/go-elasticsearch/blob/v8.19.6/CHANGELOG.md\"\u003egithub.com/elastic/go-elasticsearch/v8's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.5...v8.19.6\"\u003e8.19.6\u003c/a\u003e (2026-05-11)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e078f8ec\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.5\"\u003e8.19.5\u003c/a\u003e (2026-04-21)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e5615aed\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eesutil:\u003c/strong\u003e Add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003ef0ad701\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e Regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e13e5d5e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e9874577\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Map spec long to *int64 for esapi params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1391\"\u003e#1391\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/9a2424c77d0125cc4a915eacd5b6c293fcbe280c\"\u003e9a2424c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003efa81ccf\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/36df8bc2f994270fa8804f3f8d76eee484312c84\"\u003e\u003ccode\u003e36df8bc\u003c/code\u003e\u003c/a\u003e chore(8.19): release 8.19.6 (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1481\"\u003e#1481\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e\u003ccode\u003e078f8ec\u003c/code\u003e\u003c/a\u003e fix(client): remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/b467419b59035e4b08c71679ebe4493cbc2ff997\"\u003e\u003ccode\u003eb467419\u003c/code\u003e\u003c/a\u003e chore: bump version to 8.19.6-SNAPSHOT (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1457\"\u003e#1457\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/0349cffb1c4b495a8e3f0470bf7c8e7d44264769\"\u003e\u003ccode\u003e0349cff\u003c/code\u003e\u003c/a\u003e chore(8.19): release 8.19.5 (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1395\"\u003e#1395\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e\u003ccode\u003e5615aed\u003c/code\u003e\u003c/a\u003e feat(client): add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003e\u003ccode\u003ef0ad701\u003c/code\u003e\u003c/a\u003e feat(esutil): add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e\u003ccode\u003e13e5d5e\u003c/code\u003e\u003c/a\u003e fix(esapi): regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003e\u003ccode\u003efa81ccf\u003c/code\u003e\u003c/a\u003e fix(gen): support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e\u003ccode\u003e9874577\u003c/code\u003e\u003c/a\u003e fix(gen): accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/30b75857dfc00e975c77a63b408d4df0f754e937\"\u003e\u003ccode\u003e30b7585\u003c/code\u003e\u003c/a\u003e [Backport 8.19] fix(gen): sort required URL params deterministically (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1408\"\u003e#1408\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/clicky` from 1.21.7 to 1.21.9\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/releases\"\u003egithub.com/flanksource/clicky's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.21.9\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.21.8\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/blob/main/CHANGELOG.md\"\u003egithub.com/flanksource/clicky's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(task): Add stderr gating to prevent corruption during interactive render\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/b059cf91dda7637600922340575829cccfcb89ef\"\u003e\u003ccode\u003eb059cf9\u003c/code\u003e\u003c/a\u003e chore(release): 1.21.9 [skip ci]\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003e\u003ccode\u003ef85ce24\u003c/code\u003e\u003c/a\u003e refactor(api,mcp,rpc): extract helper functions and improve code organization\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e\u003ccode\u003e04f17df\u003c/code\u003e\u003c/a\u003e build(makefile): add git commit and build date to binary via ldflags\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e\u003ccode\u003e06e98ad\u003c/code\u003e\u003c/a\u003e feat(api,flags): add unified diff rendering and grouped flag help output\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003e\u003ccode\u003efc8746a\u003c/code\u003e\u003c/a\u003e refactor(api): simplify switch statement in parseJavaFrame\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e\u003ccode\u003e6b74c36\u003c/code\u003e\u003c/a\u003e chore(deps): clean up unused dependencies in go.sum\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e\u003ccode\u003e9345367\u003c/code\u003e\u003c/a\u003e feat(mcp): add SSE transport, tools command, and multi-client install support\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e\u003ccode\u003e6beea3b\u003c/code\u003e\u003c/a\u003e feat(formatters): add StackTrace rendering support to HTML formatters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e\u003ccode\u003e3e6e880\u003c/code\u003e\u003c/a\u003e feat(api): Add structured HTML rendering for stack traces with syntax highlig...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e\u003ccode\u003e9cb5cb9\u003c/code\u003e\u003c/a\u003e feat(mcp): Add fluent Builder API and discover-tools MCP tool\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.9\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-sql-driver/mysql` from 1.9.3 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/releases\"\u003egithub.com/go-sql-driver/mysql's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd Go 1.24 to the test matrix by \u003ca href=\"https://github.com/shogo82148\"\u003e\u003ccode\u003e@​shogo82148\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1681\"\u003ego-sql-driver/mysql#1681\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize for Go 1.22 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1695\"\u003ego-sql-driver/mysql#1695\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest stability improvement. by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1698\"\u003ego-sql-driver/mysql#1698\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esimplify collation tests by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1700\"\u003ego-sql-driver/mysql#1700\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix bigint unsigned null column scan to err type int64 by \u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eTransaction Commit/Rollback returns conn's cached error, if present by \u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd BenchmarkReceive10kRowsCompress by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1704\"\u003ego-sql-driver/mysql#1704\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eoptimize readPacket by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1705\"\u003ego-sql-driver/mysql#1705\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eMariaDB Metadata skipping and DEPRECATE_EOF by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimization: statements reuse previous column name by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1711\"\u003ego-sql-driver/mysql#1711\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate outdated MySQL internals documentation links by \u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix PING on compressed connections by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1721\"\u003ego-sql-driver/mysql#1721\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd DeepWiki badge by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1722\"\u003ego-sql-driver/mysql#1722\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate edwards25519 dependency to v1.1.1 by \u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure Dependabot for Go modules by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1755\"\u003ego-sql-driver/mysql#1755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump dominikh/staticcheck-action from 1.3.1 to 1.4.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 3 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1760\"\u003ego-sql-driver/mysql#1760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 5 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1757\"\u003ego-sql-driver/mysql#1757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix staticcheck error by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1761\"\u003ego-sql-driver/mysql#1761\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 4 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1758\"\u003ego-sql-driver/mysql#1758\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix getSystemVar buffer reuse by \u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConsolidate Dependabot update noise by grouping weekly dependency PRs by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1756\"\u003ego-sql-driver/mysql#1756\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCI: Update GitHub Actions Go matrix to 1.24–1.26 by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1763\"\u003ego-sql-driver/mysql#1763\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnhance interpolateParams to correctly handle placeholders by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1732\"\u003ego-sql-driver/mysql#1732\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1764\"\u003ego-sql-driver/mysql#1764\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erelease v1.10.0 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1765\"\u003ego-sql-driver/mysql#1765\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\"\u003ehttps://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/blob/master/CHANGELOG.md\"\u003egithub.com/go-sql-driver/mysql's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0 (2026-04-28)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eFix \u003ccode\u003egetSystemVar(\u0026quot;max_allowed_packet\u0026quot;)\u003c/code\u003e potentially returned wrong value. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\nThis affects only when \u003ccode\u003emaxAllowedPacket=0\u003c/code\u003e is set.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\nWhile older versions have reported CVEs, they do not affect go-mysql.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eUpdate Go versions to 1.24-1.26. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eEnhance interpolateParams to correctly handle placeholders. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\nThe question mark (?) within strings and comments will no longer be treated as a placeholder.\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/a065b60ab6d0c8e15468e7709c7f76acf4431647\"\u003e\u003ccode\u003ea065b60\u003c/code\u003e\u003c/a\u003e release v1.10.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1765\"\u003e#1765\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/09e4187be9c52bb13449a662d2a36e1e1789ac95\"\u003e\u003ccode\u003e09e4187\u003c/code\u003e\u003c/a\u003e modernize (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1764\"\u003e#1764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/6c44a9a0a1769e145dc91c08abe1aded2936ab63\"\u003e\u003ccode\u003e6c44a9a\u003c/code\u003e\u003c/a\u003e Enhance interpolateParams to correctly handle placeholders (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/688ce563a28598a9b733e6fc2b325050a4dcf261\"\u003e\u003ccode\u003e688ce56\u003c/code\u003e\u003c/a\u003e Update supported Go version to 1.24–1.26 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/118d07fdb51f9e523ebcdb00628812e49d7c1881\"\u003e\u003ccode\u003e118d07f\u003c/code\u003e\u003c/a\u003e Bump filippo.io/edwards25519 from 1.1.1 to 1.2.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/d6b2d3ee2cc8569b6778a7ae7ac2816e185f616b\"\u003e\u003ccode\u003ed6b2d3e\u003c/code\u003e\u003c/a\u003e Consolidate Dependabot update noise by grouping weekly dependency PRs (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1762\"\u003e#1762\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/037dfd872a7b6c88e63c53f32700dffed560120c\"\u003e\u003ccode\u003e037dfd8\u003c/code\u003e\u003c/a\u003e Fix getSystemVar buffer reuse (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/900f33035615559b6188e4fa98d57ae20af2b73b\"\u003e\u003ccode\u003e900f330\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 4 to 6 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1758\"\u003e#1758\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/ab9e3804c604d6a60b0d3136f4654f81f184757d\"\u003e\u003ccode\u003eab9e380\u003c/code\u003e\u003c/a\u003e fix staticcheck error (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1761\"\u003e#1761\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/f298c66742396b6921732744b9bb075c7faaca81\"\u003e\u003ccode\u003ef298c66\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5 to 6 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1757\"\u003e#1757\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.3...v1.10.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/google/cel-go` from 0.28.0 to 0.28.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/cel-go/releases\"\u003egithub.com/google/cel-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eRelease v0.28.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: deleted \u003ccode\u003eIntToDuration\u003c/code\u003e overload by \u003ca href=\"https://github.com/alexsnaps\"\u003e\u003ccode\u003e@​alexsnaps\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1300\"\u003egoogle/cel-go#1300\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSupport shorthand types in env yaml and REPL  by \u003ca href=\"https://github.com/jnthntatum\"\u003e\u003ccode\u003e@​jnthntatum\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1301\"\u003egoogle/cel-go#1301\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePreserve operation interrupted in ContextEval error by \u003ca href=\"https://github.com/dims\"\u003e\u003ccode\u003e@​dims\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1303\"\u003egoogle/cel-go#1303\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse shorthand type specifiers in env yaml files by \u003ca href=\"https://github.com/jnthntatum\"\u003e\u003ccode\u003e@​jnthntatum\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1305\"\u003egoogle/cel-go#1305\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCost estimation and tracking for strings extension by \u003ca href=\"https://github.com/TristonianJones\"\u003e\u003ccode\u003e@​TristonianJones\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1307\"\u003egoogle/cel-go#1307\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate repl type string for doubles by \u003ca href=\"https://github.com/TristonianJones\"\u003e\u003ccode\u003e@​TristonianJones\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1308\"\u003egoogle/cel-go#1308\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/alexsnaps\"\u003e\u003ccode\u003e@​alexsnaps\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1300\"\u003egoogle/cel-go#1300\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dims\"\u003e\u003ccode\u003e@​dims\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1303\"\u003egoogle/cel-go#1303\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/google/cel-go/compare/v0.28.0...v0.28.1\"\u003ehttps://github.com/google/cel-go/compare/v0.28.0...v0.28.1\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/a82c68b770ac0cb67f7b4f76166827c14b145eb8\"\u003e\u003ccode\u003ea82c68b\u003c/code\u003e\u003c/a\u003e Update repl type assessment for doubles (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1308\"\u003e#1308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/c9d70486a872fbfaf9c4cb383a005de56e499368\"\u003e\u003ccode\u003ec9d7048\u003c/code\u003e\u003c/a\u003e Cost estimation and tracking for strings extension (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1307\"\u003e#1307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/646cdc1728643aec9499e3a00236ef1007a5d3fa\"\u003e\u003ccode\u003e646cdc1\u003c/code\u003e\u003c/a\u003e Use shorthand type specifiers in env yaml files (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1305\"\u003e#1305\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/7263793b453228e8a47ca742afd124b3eaa8fc68\"\u003e\u003ccode\u003e7263793\u003c/code\u003e\u003c/a\u003e Preserve operation interrupted in ContextEval error (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1303\"\u003e#1303\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/b826162b7b6ac7ae048fbf23b6123ab5c99da11b\"\u003e\u003ccode\u003eb826162\u003c/code\u003e\u003c/a\u003e Support shorthand types in env yaml and REPL  (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1301\"\u003e#1301\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/339269b44af7c3cd477b55530e9cc1fe534c7f09\"\u003e\u003ccode\u003e339269b\u003c/code\u003e\u003c/a\u003e fix: deleted \u003ccode\u003eIntToDuration\u003c/code\u003e overload (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1300\"\u003e#1300\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/google/cel-go/compare/v0.28.0...v0.28.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/labstack/echo/v4` from 4.15.1 to 4.15.2\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/labstack/echo/blob/v4.15.2/CHANGELOG.md\"\u003egithub.com/labstack/echo/v4's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.15.2 - 2026-05-01\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eSecurity\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eContext.Scheme()\u003c/code\u003e should validate values taken from header by \u003ca href=\"https://github.com/aldas\"\u003e\u003ccode\u003e@​aldas\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/labstack/echo/pull/2962\"\u003elabstack/echo#2962\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eThanks to \u003ca href=\"https://github.com/shblue21\"\u003e\u003ccode\u003e@​shblue21\u003c/code\u003e\u003c/a\u003e for reporting this \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2952\"\u003eissue\u003c/a\u003e.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/25685e6f5f7b0683105d1386db46ae48eb3de028\"\u003e\u003ccode\u003e25685e6\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2963\"\u003e#2963\u003c/a\u003e from aldas/v4_changelog_4_15_2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/f9d76893c671df4da9792fc5c122eba01d43c63b\"\u003e\u003ccode\u003ef9d7689\u003c/code\u003e\u003c/a\u003e Changelog for v4.15.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/37fff28f72264196ad28761316fc7d96fd1c502d\"\u003e\u003ccode\u003e37fff28\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2962\"\u003e#2962\u003c/a\u003e from aldas/v4_valid_proto\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/ca4f38a474302aabee93c66bdd0052359882e181\"\u003e\u003ccode\u003eca4f38a\u003c/code\u003e\u003c/a\u003e Context.Scheme should validate values taken from header\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/2e527a70a73b3a93b8346384f607cdc502d3d200\"\u003e\u003ccode\u003e2e527a7\u003c/code\u003e\u003c/a\u003e Update CI, update deps\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/labstack/echo/compare/v4.15.1...v4.15.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/microsoft/go-mssqldb` from 1.9.8 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/go-mssqldb/releases\"\u003egithub.com/microsoft/go-mssqldb's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003e1.10.0\u003c/a\u003e (2026-04-25)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003eb55beeb\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003eea77c2e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd NewConnectorWithProcessQueryText for mssql driver compatibility (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/341\"\u003e#341\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/2be611f8a7b2ec5125a835e1d6efb8cfb8979a86\"\u003e2be611f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003ec10fa99\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eallow named pipe protocol support for ARM64 Windows (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/232\"\u003e#232\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/a82c05866462e56b43d42e4523576aa363a3871a\"\u003ea82c058\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003econfigure release-please with PAT and correct component mapping (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/349\"\u003e#349\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/23bac055cea5040891be595e34869b19378974ad\"\u003e23bac05\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edetect server-aborted transactions to prevent silent auto-commit (XACT_ABORT) (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/370\"\u003e#370\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e586ea53\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e9937cfe\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ehandle COLINFO (0xA5) and TABNAME (0xA4) TDS tokens returned by tables with triggers (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/343\"\u003e#343\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/7c905adac4e8e00856c3d20503902f0160f5853d\"\u003e7c905ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eimplement driver.DriverContext interface (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/365\"\u003e#365\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/1b610a0b2905dc472968842e7a8f252acdb94272\"\u003e1b610a0\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/236\"\u003e#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emake readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e65e137f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereplace broken AppVeyor badge with GitHub Actions badge (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/334\"\u003e#334\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/d3429f5bb895bdb884ae39a43d87bb384aa5353a\"\u003ed3429f5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereturn interface{} scanType for sql_variant instead of nil (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/362\"\u003e#362\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/296a83a3e25fc23add1dbb243df1a716f431de66\"\u003e296a83a\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/186\"\u003e#186\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esanitize credentials from connection string parsing errors (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/319\"\u003e#319\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/93f5ef0dd5f02c9094a22d0052fb95cd553ba971\"\u003e93f5ef0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esurface server errors from Rows.Close() during token drain (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/361\"\u003e#361\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea69792c6da6d049eaec4e672a95d55bafef48f5\"\u003eea69792\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/244\"\u003e#244\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/go-mssqldb/blob/main/CHANGELOG.md\"\u003egithub.com/microsoft/go-mssqldb's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003e1.10.0\u003c/a\u003e (2026-04-25)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003eb55beeb\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003eea77c2e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd NewConnectorWithProcessQueryText for mssql driver compatibility (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/341\"\u003e#341\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/2be611f8a7b2ec5125a835e1d6efb8cfb8979a86\"\u003e2be611f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003ec10fa99\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eallow named pipe protocol support for ARM64 Windows (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/232\"\u003e#232\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/a82c05866462e56b43d42e4523576aa363a3871a\"\u003ea82c058\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003econfigure release-please with PAT and correct component mapping (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/349\"\u003e#349\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/23bac055cea5040891be595e34869b19378974ad\"\u003e23bac05\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edetect server-aborted transactions to prevent silent auto-commit (XACT_ABORT) (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/370\"\u003e#370\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e586ea53\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e9937cfe\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ehandle COLINFO (0xA5) and TABNAME (0xA4) TDS tokens returned by tables with triggers (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/343\"\u003e#343\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/7c905adac4e8e00856c3d20503902f0160f5853d\"\u003e7c905ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eimplement driver.DriverContext interface (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/365\"\u003e#365\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/1b610a0b2905dc472968842e7a8f252acdb94272\"\u003e1b610a0\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/236\"\u003e#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emake readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e65e137f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereplace broken AppVeyor badge with GitHub Actions badge (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/334\"\u003e#334\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/d3429f5bb895bdb884ae39a43d87bb384aa5353a\"\u003ed3429f5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereturn interface{} scanType for sql_variant instead of nil (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/362\"\u003e#362\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/296a83a3e25fc23add1dbb243df1a716f431de66\"\u003e296a83a\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/186\"\u003e#186\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esanitize credentials from connection string parsing errors (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/319\"\u003e#319\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/93f5ef0dd5f02c9094a22d0052fb95cd553ba971\"\u003e93f5ef0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esurface server errors from Rows.Close() during token drain (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/361\"\u003e#361\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea69792c6da6d049eaec4e672a95d55bafef48f5\"\u003eea69792\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/244\"\u003e#244\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.6\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded new \u003ccode\u003eserverCertificate\u003c/code\u003e connection parameter for byte-for-byte certificate validation, matching Microsoft.Data.SqlClient behavior. This parameter skips hostname validation, chain validation, and expiry checks, only verifying that the server's certificate exactly matches the provided file. This is useful when the server's hostname doesn't match the certificate CN/SAN. (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/304\"\u003e#304\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eThe existing \u003ccode\u003ecertificate\u003c/code\u003e parameter maintains backward compatibility with traditional X.509 chain validation including hostname checks, expiry validation, and chain-of-trust verification.\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eserverCertificate\u003c/code\u003e cannot be used with \u003ccode\u003ecertificate\u003c/code\u003e or \u003ccode\u003ehostnameincertificate\u003c/code\u003e parameters to prevent conflicting validation methods.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.3\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix parsing of ADO connection strings with double-quoted values containing semicolons (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/282\"\u003e#282\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.2\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix race condition in message queue query model (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/277\"\u003e#277\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.1\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix bulk insert failure with datetime values near midnight due to day overflow (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/271\"\u003e#271\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/f92e6f0abf7607819f70b66191e6732c02c78f57\"\u003e\u003ccode\u003ef92e6f0\u003c/code\u003e\u003c/a\u003e chore(main): release 1.10.0 (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/351\"\u003e#351\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/03094d02c4fd74c8a95e6feb36ec5d3d8b93f592\"\u003e\u003ccode\u003e03094d0\u003c/code\u003e\u003c/a\u003e ci: add least-privilege permissions and pin actions to SHA (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/354\"\u003e#354\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e\u003ccode\u003e65e137f\u003c/code\u003e\u003c/a\u003e fix: make readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003e\u003ccode\u003ec10fa99\u003c/code\u003e\u003c/a\u003e feat: add nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e\u003ccode\u003e9937cfe\u003c/code\u003e\u003c/a\u003e fix: expose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/429c61d44f20e08cc2a5ff1bbd2a33cfe65b1b15\"\u003e\u003ccode\u003e429c61d\u003c/code\u003e\u003c/a\u003e chore(deps): bump googleapis/release-please-action from 4.4.1 to 5.0.0 in the...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003e\u003ccode\u003eea77c2e\u003c/code\u003e\u003c/a\u003e feat: add FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/04d26c2da5fe6aebf1f04727c09a14a8cd36af56\"\u003e\u003ccode\u003e04d26c2\u003c/code\u003e\u003c/a\u003e ci: add devcontainer build validation workflow (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/355\"\u003e#355\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003e\u003ccode\u003eb55beeb\u003c/code\u003e\u003c/a\u003e feat: add devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e\u003ccode\u003e586ea53\u003c/code\u003e\u003c/a\u003e fix: detect server-aborted transactions to prevent silent auto-commit (XACT_A...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/onsi/ginkgo/v2` from 2.28.2 to 2.29.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/ginkgo/releases\"\u003egithub.com/onsi/ginkgo/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.29.0\u003c/h2\u003e\n\u003ch2\u003e2.29.0\u003c/h2\u003e\n\u003cp\u003e\u003ccode\u003eGinkgoHelperGo\u003c/code\u003e makes it easier to write test helpers that need to run in goroutines.  Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.\u003c/p\u003e\n\u003cp\u003e\u003ccode\u003eginkgo outline\u003c/code\u003e now includes entries defined in \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e\u003c/p\u003e\n\u003ch2\u003ev2.28.3\u003c/h2\u003e\n\u003ch2\u003e2.28.3\u003c/h2\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cp\u003eBump all dependencies\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md\"\u003egithub.com/onsi/ginkgo/v2's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.29.0\u003c/h2\u003e\n\u003cp\u003e\u003ccode\u003eGinkgoHelperGo\u003c/code\u003e makes it easier to write test helpers that need to run in goroutines.  Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.\u003c/p\u003e\n\u003cp\u003e\u003ccode\u003eginkgo outline\u003c/code\u003e now includes entries defined in \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e\u003c/p\u003e\n\u003ch2\u003e2.28.3\u003c/h2\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cp\u003eBump all dependencies\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/04b5bcbe4eee911a1baf506eda1e7e811c978937\"\u003e\u003ccode\u003e04b5bcb\u003c/code\u003e\u003c/a\u003e v2.29.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/124232a4531c77a7f31a036e0150e06fa78b2af8\"\u003e\u003cco...\n\n_Description has been truncated_","html_url":"https://github.com/flanksource/canary-checker/pull/2969","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/flanksource%2Fcanary-checker/issues/2969","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2969/packages"},{"uuid":"4521826753","node_id":"PR_kwDOExunxM7fSXzO","number":5326,"state":"open","title":"chore: Bump cloud.google.com/go/storage from 1.62.1 to 1.62.2","user":"dependabot[bot]","labels":["dependencies","automerge"],"assignees":["thomaspoignant"],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-26T06:08:59.000Z","updated_at":"2026-05-26T06:14:07.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore: Bump","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.1 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.1\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/thomaspoignant/go-feature-flag/pull/5326","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomaspoignant%2Fgo-feature-flag/issues/5326","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5326/packages"},{"uuid":"4520173193","node_id":"PR_kwDOA1vjzM7fNANs","number":23047,"state":"open","title":"Build(deps): Bump cloud.google.com/go/storage from 1.62.1 to 1.62.2","user":"dependabot[bot]","labels":["cncf-cla: yes","size/S","needs-ok-to-test","dependencies","go"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-25T23:48:27.000Z","updated_at":"2026-05-25T23:50:06.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Build(deps): Bump","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.1 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.1\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/kubernetes/minikube/pull/23047","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubernetes%2Fminikube/issues/23047","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/23047/packages"},{"uuid":"4515697668","node_id":"PR_kwDOAF9vR87e-h5n","number":208,"state":"closed","title":"chore: Bump cloud.google.com/go/storage from 1.62.1 to 1.62.2","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-06-01T01:38:20.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-25T09:01:30.000Z","updated_at":"2026-06-01T01:38:21.000Z","time_to_close":578210,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore: Bump","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.1 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.1\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/icco/wallpapers/pull/208","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/icco%2Fwallpapers/issues/208","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/208/packages"},{"uuid":"4513844770","node_id":"PR_kwDOQPyv8s7e4kJf","number":494,"state":"open","title":"chore(deps): bump the go-google-cloud group across 3 directories with 3 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-25T02:30:36.000Z","updated_at":"2026-05-25T02:32:21.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"go-google-cloud","update_count":3,"packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"},{"name":"google.golang.org/grpc","old_version":"1.80.0","new_version":"1.81.1"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"},{"name":"google.golang.org/grpc","old_version":"1.80.0","new_version":"1.81.1"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-google-cloud group with 1 update in the /src/asya-crew/cmd/dlq-worker directory: [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go).\nBumps the go-google-cloud group with 1 update in the /src/asya-crew/cmd/scaler-pubsub directory: [google.golang.org/api](https://github.com/googleapis/google-api-go-client).\nBumps the go-google-cloud group with 1 update in the /src/asya-sidecar directory: [google.golang.org/api](https://github.com/googleapis/google-api-go-client).\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/api` from 0.276.0 to 0.280.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/releases\"\u003egoogle.golang.org/api's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.280.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.279.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.278.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3582\"\u003e#3582\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/76b1187e506ac0f48caac67907dd0805b253f74c\"\u003e76b1187\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3584\"\u003e#3584\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e36c88361d11545583325c3ac6bdbd9cf1f1a7d0\"\u003ee36c883\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.277.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.277.0\"\u003e0.277.0\u003c/a\u003e (2026-04-29)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3567\"\u003e#3567\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/39582952e4eac1b744499f8a8063a4a5f1ce7d6b\"\u003e3958295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3571\"\u003e#3571\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ca9851efc573231ca1ed9c6fea4bc77d6052d0bb\"\u003eca9851e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3574\"\u003e#3574\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8efb1afa0e5d9cc454f721124bba3881f3935e3c\"\u003e8efb1af\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3575\"\u003e#3575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/de49bb519cab881f74e5b9ba11e263a2b9a4ad2e\"\u003ede49bb5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3577\"\u003e#3577\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ce68c87d9dc6c144b6df578df725470b30cf83d6\"\u003ece68c87\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3578\"\u003e#3578\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8be033e24e0c6ddb08a3df72c0a8997d21623a22\"\u003e8be033e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3579\"\u003e#3579\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bc6990e20803f2ff2fd1b77995f6e9180ab2302b\"\u003ebc6990e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3580\"\u003e#3580\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/2de1a5aff3f3b6e53dff00da297c5d249ac8d791\"\u003e2de1a5a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3581\"\u003e#3581\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/0c219d90e90899c93215558f3ea309c9732bf7ea\"\u003e0c219d9\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md\"\u003egoogle.golang.org/api's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3582\"\u003e#3582\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/76b1187e506ac0f48caac67907dd0805b253f74c\"\u003e76b1187\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3584\"\u003e#3584\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e36c88361d11545583325c3ac6bdbd9cf1f1a7d0\"\u003ee36c883\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.277.0\"\u003e0.277.0\u003c/a\u003e (2026-04-29)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3567\"\u003e#3567\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/39582952e4eac1b744499f8a8063a4a5f1ce7d6b\"\u003e3958295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3571\"\u003e#3571\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ca9851efc573231ca1ed9c6fea4bc77d6052d0bb\"\u003eca9851e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3574\"\u003e#3574\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8efb1afa0e5d9cc454f721124bba3881f3935e3c\"\u003e8efb1af\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3575\"\u003e#3575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/de49bb519cab881f74e5b9ba11e263a2b9a4ad2e\"\u003ede49bb5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3577\"\u003e#3577\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ce68c87d9dc6c144b6df578df725470b30cf83d6\"\u003ece68c87\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3578\"\u003e#3578\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8be033e24e0c6ddb08a3df72c0a8997d21623a22\"\u003e8be033e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3579\"\u003e#3579\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bc6990e20803f2ff2fd1b77995f6e9180ab2302b\"\u003ebc6990e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3580\"\u003e#3580\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/2de1a5aff3f3b6e53dff00da297c5d249ac8d791\"\u003e2de1a5a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3581\"\u003e#3581\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/0c219d90e90899c93215558f3ea309c9732bf7ea\"\u003e0c219d9\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eidtoken:\u003c/strong\u003e Avoid double impersonation in tokenSourceFromBytes (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3576\"\u003e#3576\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/75172cf5cb7bfc260c22e481323355306f684a09\"\u003e75172cf\u003c/a\u003e), refs \u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/2301\"\u003e#2301\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3887b09ecbbaf25fba1bf52227ad5ca4f89e9968\"\u003e\u003ccode\u003e3887b09\u003c/code\u003e\u003c/a\u003e chore(main): release 0.280.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3592\"\u003e#3592\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003e\u003ccode\u003ef82d204\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e7314e1377c0dd4e132a681b3130abc5843dbd\"\u003e\u003ccode\u003e13e7314\u003c/code\u003e\u003c/a\u003e chore(all): update all (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3597\"\u003e#3597\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003e\u003ccode\u003eae2f330\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e\u003ccode\u003e4c77865\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e\u003ccode\u003e13e1ad2\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e\u003ccode\u003e0382916\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e\u003ccode\u003e054d4b6\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e\u003ccode\u003e55ba2fa\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e446d4cdeb5e63cd6916051edd2c56588eede309\"\u003e\u003ccode\u003ee446d4c\u003c/code\u003e\u003c/a\u003e chore(main): release 0.279.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3586\"\u003e#3586\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.280.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/grpc` from 1.80.0 to 1.81.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/grpc/grpc-go/releases\"\u003egoogle.golang.org/grpc's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eRelease 1.81.1\u003c/h2\u003e\n\u003ch1\u003eSecurity\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003exds/rbac: Fix a potential authorization bypass caused by incorrectly falling through URI/DNS SANs to Subject Distinguished Name (DN) when matching the authenticated principal name. With this fix, only the first non-empty identity source will be used, as per \u003ca href=\"https://github.com/grpc/proposal/blob/master/A41-xds-rbac.md\"\u003egRFC A41\u003c/a\u003e. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9111\"\u003e#9111\u003c/a\u003e)\n\u003cul\u003e\n\u003cli\u003eSpecial Thanks: \u003ca href=\"https://github.com/al4an444\"\u003e\u003ccode\u003e@​al4an444\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eBug Fixes\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003eotel: Segregate client and server RPC information used for metrics and traces, to avoid one overwriting the other. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9081\"\u003e#9081\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eRelease 1.81.0\u003c/h2\u003e\n\u003ch1\u003eBehavior Changes\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003ebalancer/rls: Switch gauge metrics to asynchronous emission (once per collection cycle) to reduce telemetry noise and align with other gRPC language implementations. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8808\"\u003e#8808\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eDependencies\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003eMinimum supported Go version is now 1.25. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8969\"\u003e#8969\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eBug Fixes\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003exds: Use the leaf cluster's security config for the TLS handshake instead of the aggregate cluster's config. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8956\"\u003e#8956\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003etransport: Send a \u003ccode\u003eRST_STREAM\u003c/code\u003e when receiving an \u003ccode\u003eEND_STREAM\u003c/code\u003e when the stream is not already half-closed. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8832\"\u003e#8832\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Fix ADS resource name validation to prevent a panic. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8970\"\u003e#8970\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eNew Features\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003egrpc/stats: Add support for custom labels in per-call metrics (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A108-otel-custom-per-call-label.md\"\u003egRFC A108\u003c/a\u003e). (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9008\"\u003e#9008\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Add support for Server Name Indication (SNI) and SAN validation (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A101-SNI-setting-and-SNI-SAN-validation.md\"\u003egRFC A101\u003c/a\u003e). Disabled by default. To enable, set \u003ccode\u003eGRPC_EXPERIMENTAL_XDS_SNI=true\u003c/code\u003e environment variable. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9016\"\u003e#9016\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Add support to control which fields get propagated from ORCA backend metric reports to LRS load reports (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A85-lrs-custom-metrics-changes.md\"\u003egRFC A85\u003c/a\u003e). Disabled by default. To enable, set \u003ccode\u003eGRPC_EXPERIMENTAL_XDS_ORCA_LRS_PROPAGATION=true\u003c/code\u003e. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9005\"\u003e#9005\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Add metrics to track xDS client connectivity and cached resource state (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A78-grpc-metrics-wrr-pf-xds.md\"\u003egRFC A78\u003c/a\u003e). (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8807\"\u003e#8807\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003estats/otel: Enhance \u003ccode\u003egrpc.subchannel.disconnections\u003c/code\u003e metric by adding disconnection reason to the \u003ccode\u003egrpc.disconnect_error\u003c/code\u003e label (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A94-subchannel-otel-metrics.md\"\u003egRFC A94\u003c/a\u003e). This provides granular insights into why subchannels are closing. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8973\"\u003e#8973\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003emem: Add \u003ccode\u003emem.Buffer.Slice()\u003c/code\u003e API to slice the buffer like a slice. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8977\"\u003e#8977\u003c/a\u003e)\n\u003cul\u003e\n\u003cli\u003eSpecial Thanks: \u003ca href=\"https://github.com/ash2k\"\u003e\u003ccode\u003e@​ash2k\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003ePerformance Improvements\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003ealts: Pool read buffers to lower memory utilization when sockets are unreadable. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8964\"\u003e#8964\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003etransport: Pool HTTP/2 framer read buffers to reduce idle memory consumption. Currently limited to Linux for ALTS and non-encrypted transports (TCP, Unix). To disable, set \u003ccode\u003eGRPC_GO_EXPERIMENTAL_HTTP_FRAMER_READ_BUFFER_POOLING=false\u003c/code\u003e and report any issues. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9032\"\u003e#9032\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/caf0772c2bcb8bc15d43eb53448e921f34f0b7e8\"\u003e\u003ccode\u003ecaf0772\u003c/code\u003e\u003c/a\u003e Change version from 1.81.1-dev to 1.81.1 (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9122\"\u003e#9122\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/6ccbeebf058ede71e43a5ac28fada2a736573215\"\u003e\u003ccode\u003e6ccbeeb\u003c/code\u003e\u003c/a\u003e Cherry-pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9111\"\u003e#9111\u003c/a\u003e into v1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9121\"\u003e#9121\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/b33c29e41b438e371c8504de9bdf64a80098cc29\"\u003e\u003ccode\u003eb33c29e\u003c/code\u003e\u003c/a\u003e Cherry-pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9081\"\u003e#9081\u003c/a\u003e into v1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9102\"\u003e#9102\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/c45fae6d06a5c192b7b96418a2bc26a96b856834\"\u003e\u003ccode\u003ec45fae6\u003c/code\u003e\u003c/a\u003e Change version to 1.81.1-dev (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9063\"\u003e#9063\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/cb18228317ff523e63d931b4058b0329585b7dcd\"\u003e\u003ccode\u003ecb18228\u003c/code\u003e\u003c/a\u003e Change version to 1.81.0 (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9062\"\u003e#9062\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/96748f973e20bbfcafa19a8bdffc85ad5da138d1\"\u003e\u003ccode\u003e96748f9\u003c/code\u003e\u003c/a\u003e Cherry-pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9105\"\u003e#9105\u003c/a\u003e to 1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9106\"\u003e#9106\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/91832222f0144f76527b630ca55cfea6e1aa015a\"\u003e\u003ccode\u003e9183222\u003c/code\u003e\u003c/a\u003e Cherry pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9055\"\u003e#9055\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9032\"\u003e#9032\u003c/a\u003e to v1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9095\"\u003e#9095\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/5cba6da4211f3b130238c792937f5921741b616a\"\u003e\u003ccode\u003e5cba6da\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;deps: update dependencies for all modules (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9065\"\u003e#9065\u003c/a\u003e)\u0026quot; (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9067\"\u003e#9067\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/af8a9364aa7523ab24d214e9ef13e6ad64d5c5f9\"\u003e\u003ccode\u003eaf8a936\u003c/code\u003e\u003c/a\u003e deps: update dependencies for all modules (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9065\"\u003e#9065\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/cdc60dfaaadde45e16aa3c28237c0e655a722c1a\"\u003e\u003ccode\u003ecdc60df\u003c/code\u003e\u003c/a\u003e transport: optimize heap allocations in ready reader and update syscall conne...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/grpc/grpc-go/compare/v1.80.0...v1.81.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/api` from 0.276.0 to 0.280.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/releases\"\u003egoogle.golang.org/api's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.280.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.279.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.278.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3582\"\u003e#3582\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/76b1187e506ac0f48caac67907dd0805b253f74c\"\u003e76b1187\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3584\"\u003e#3584\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e36c88361d11545583325c3ac6bdbd9cf1f1a7d0\"\u003ee36c883\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.277.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.277.0\"\u003e0.277.0\u003c/a\u003e (2026-04-29)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3567\"\u003e#3567\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/39582952e4eac1b744499f8a8063a4a5f1ce7d6b\"\u003e3958295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3571\"\u003e#3571\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ca9851efc573231ca1ed9c6fea4bc77d6052d0bb\"\u003eca9851e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3574\"\u003e#3574\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8efb1afa0e5d9cc454f721124bba3881f3935e3c\"\u003e8efb1af\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3575\"\u003e#3575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/de49bb519cab881f74e5b9ba11e263a2b9a4ad2e\"\u003ede49bb5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3577\"\u003e#3577\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ce68c87d9dc6c144b6df578df725470b30cf83d6\"\u003ece68c87\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3578\"\u003e#3578\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8be033e24e0c6ddb08a3df72c0a8997d21623a22\"\u003e8be033e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3579\"\u003e#3579\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bc6990e20803f2ff2fd1b77995f6e9180ab2302b\"\u003ebc6990e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3580\"\u003e#3580\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/2de1a5aff3f3b6e53dff00da297c5d249ac8d791\"\u003e2de1a5a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3581\"\u003e#3581\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/0c219d90e90899c93215558f3ea309c9732bf7ea\"\u003e0c219d9\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md\"\u003egoogle.golang.org/api's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3582\"\u003e#3582\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/76b1187e506ac0f48caac67907dd0805b253f74c\"\u003e76b1187\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3584\"\u003e#3584\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e36c88361d11545583325c3ac6bdbd9cf1f1a7d0\"\u003ee36c883\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.277.0\"\u003e0.277.0\u003c/a\u003e (2026-04-29)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3567\"\u003e#3567\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/39582952e4eac1b744499f8a8063a4a5f1ce7d6b\"\u003e3958295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3571\"\u003e#3571\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ca9851efc573231ca1ed9c6fea4bc77d6052d0bb\"\u003eca9851e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3574\"\u003e#3574\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8efb1afa0e5d9cc454f721124bba3881f3935e3c\"\u003e8efb1af\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3575\"\u003e#3575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/de49bb519cab881f74e5b9ba11e263a2b9a4ad2e\"\u003ede49bb5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3577\"\u003e#3577\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ce68c87d9dc6c144b6df578df725470b30cf83d6\"\u003ece68c87\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3578\"\u003e#3578\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8be033e24e0c6ddb08a3df72c0a8997d21623a22\"\u003e8be033e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3579\"\u003e#3579\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bc6990e20803f2ff2fd1b77995f6e9180ab2302b\"\u003ebc6990e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3580\"\u003e#3580\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/2de1a5aff3f3b6e53dff00da297c5d249ac8d791\"\u003e2de1a5a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3581\"\u003e#3581\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/0c219d90e90899c93215558f3ea309c9732bf7ea\"\u003e0c219d9\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eidtoken:\u003c/strong\u003e Avoid double impersonation in tokenSourceFromBytes (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3576\"\u003e#3576\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/75172cf5cb7bfc260c22e481323355306f684a09\"\u003e75172cf\u003c/a\u003e), refs \u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/2301\"\u003e#2301\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3887b09ecbbaf25fba1bf52227ad5ca4f89e9968\"\u003e\u003ccode\u003e3887b09\u003c/code\u003e\u003c/a\u003e chore(main): release 0.280.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3592\"\u003e#3592\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003e\u003ccode\u003ef82d204\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e7314e1377c0dd4e132a681b3130abc5843dbd\"\u003e\u003ccode\u003e13e7314\u003c/code\u003e\u003c/a\u003e chore(all): update all (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3597\"\u003e#3597\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003e\u003ccode\u003eae2f330\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e\u003ccode\u003e4c77865\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e\u003ccode\u003e13e1ad2\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e\u003ccode\u003e0382916\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e\u003ccode\u003e054d4b6\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e\u003ccode\u003e55ba2fa\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e446d4cdeb5e63cd6916051edd2c56588eede309\"\u003e\u003ccode\u003ee446d4c\u003c/code\u003e\u003c/a\u003e chore(main): release 0.279.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3586\"\u003e#3586\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.280.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/grpc` from 1.80.0 to 1.81.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/grpc/grpc-go/releases\"\u003egoogle.golang.org/grpc's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eRelease 1.81.1\u003c/h2\u003e\n\u003ch1\u003eSecurity\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003exds/rbac: Fix a potential authorization bypass caused by incorrectly falling through URI/DNS SANs to Subject Distinguished Name (DN) when matching the authenticated principal name. With this fix, only the first non-empty identity source will be used, as per \u003ca href=\"https://github.com/grpc/proposal/blob/master/A41-xds-rbac.md\"\u003egRFC A41\u003c/a\u003e. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9111\"\u003e#9111\u003c/a\u003e)\n\u003cul\u003e\n\u003cli\u003eSpecial Thanks: \u003ca href=\"https://github.com/al4an444\"\u003e\u003ccode\u003e@​al4an444\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eBug Fixes\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003eotel: Segregate client and server RPC information used for metrics and traces, to avoid one overwriting the other. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9081\"\u003e#9081\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eRelease 1.81.0\u003c/h2\u003e\n\u003ch1\u003eBehavior Changes\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003ebalancer/rls: Switch gauge metrics to asynchronous emission (once per collection cycle) to reduce telemetry noise and align with other gRPC language implementations. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8808\"\u003e#8808\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eDependencies\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003eMinimum supported Go version is now 1.25. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8969\"\u003e#8969\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eBug Fixes\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003exds: Use the leaf cluster's security config for the TLS handshake instead of the aggregate cluster's config. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8956\"\u003e#8956\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003etransport: Send a \u003ccode\u003eRST_STREAM\u003c/code\u003e when receiving an \u003ccode\u003eEND_STREAM\u003c/code\u003e when the stream is not already half-closed. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8832\"\u003e#8832\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Fix ADS resource name validation to prevent a panic. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8970\"\u003e#8970\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eNew Features\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003egrpc/stats: Add support for custom labels in per-call metrics (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A108-otel-custom-per-call-label.md\"\u003egRFC A108\u003c/a\u003e). (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9008\"\u003e#9008\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Add support for Server Name Indication (SNI) and SAN validation (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A101-SNI-setting-and-SNI-SAN-validation.md\"\u003egRFC A101\u003c/a\u003e). Disabled by default. To enable, set \u003ccode\u003eGRPC_EXPERIMENTAL_XDS_SNI=true\u003c/code\u003e environment variable. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9016\"\u003e#9016\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Add support to control which fields get propagated from ORCA backend metric reports to LRS load reports (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A85-lrs-custom-metrics-changes.md\"\u003egRFC A85\u003c/a\u003e). Disabled by default. To enable, set \u003ccode\u003eGRPC_EXPERIMENTAL_XDS_ORCA_LRS_PROPAGATION=true\u003c/code\u003e. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9005\"\u003e#9005\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Add metrics to track xDS client connectivity and cached resource state (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A78-grpc-metrics-wrr-pf-xds.md\"\u003egRFC A78\u003c/a\u003e). (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8807\"\u003e#8807\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003estats/otel: Enhance \u003ccode\u003egrpc.subchannel.disconnections\u003c/code\u003e metric by adding disconnection reason to the \u003ccode\u003egrpc.disconnect_error\u003c/code\u003e label (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A94-subchannel-otel-metrics.md\"\u003egRFC A94\u003c/a\u003e). This provides granular insights into why subchannels are closing. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8973\"\u003e#8973\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003emem: Add \u003ccode\u003emem.Buffer.Slice()\u003c/code\u003e API to slice the buffer like a slice. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8977\"\u003e#8977\u003c/a\u003e)\n\u003cul\u003e\n\u003cli\u003eSpecial Thanks: \u003ca href=\"https://github.com/ash2k\"\u003e\u003ccode\u003e@​ash2k\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003ePerformance Improvements\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003ealts: Pool read buffers to lower memory utilization when sockets are unreadable. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8964\"\u003e#8964\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003etransport: Pool HTTP/2 framer read buffers to reduce idle memory consumption. Currently limited to Linux for ALTS and non-encrypted transports (TCP, Unix). To disable, set \u003ccode\u003eGRPC_GO_EXPERIMENTAL_HTTP_FRAMER_READ_BUFFER_POOLING=false\u003c/code\u003e and report any issues. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9032\"\u003e#9032\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/caf0772c2bcb8bc15d43eb53448e921f34f0b7e8\"\u003e\u003ccode\u003ecaf0772\u003c/code\u003e\u003c/a\u003e Change version from 1.81.1-dev to 1.81.1 (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9122\"\u003e#9122\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/6ccbeebf058ede71e43a5ac28fada2a736573215\"\u003e\u003ccode\u003e6ccbeeb\u003c/code\u003e\u003c/a\u003e Cherry-pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9111\"\u003e#9111\u003c/a\u003e into v1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9121\"\u003e#9121\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/b33c29e41b438e371c8504de9bdf64a80098cc29\"\u003e\u003ccode\u003eb33c29e\u003c/code\u003e\u003c/a\u003e Cherry-pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9081\"\u003e#9081\u003c/a\u003e into v1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9102\"\u003e#9102\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/c45fae6d06a5c192b7b96418a2bc26a96b856834\"\u003e\u003ccode\u003ec45fae6\u003c/code\u003e\u003c/a\u003e Change version to 1.81.1-dev (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9063\"\u003e#9063\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/cb18228317ff523e63d931b4058b0329585b7dcd\"\u003e\u003ccode\u003ecb18228\u003c/code\u003e\u003c/a\u003e Change version to 1.81.0 (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9062\"\u003e#9062\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/96748f973e20bbfcafa19a8bdffc85ad5da138d1\"\u003e\u003ccode\u003e96748f9\u003c/code\u003e\u003c/a\u003e Cherry-pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9105\"\u003e#9105\u003c/a\u003e to 1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9106\"\u003e#9106\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/91832222f0144f76527b630ca55cfea6e1aa015a\"\u003e\u003ccode\u003e9183222\u003c/code\u003e\u003c/a\u003e Cherry pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9055\"\u003e#9055\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9032\"\u003e#9032\u003c/a\u003e to v1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9095\"\u003e#9095\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/5cba6da4211f3b130238c792937f5921741b616a\"\u003e\u003ccode\u003e5cba6da\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;deps: update dependencies for all modules (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9065\"\u003e#9065\u003c/a\u003e)\u0026quot; (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9067\"\u003e#9067\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/af8a9364aa7523ab24d214e9ef13e6ad64d5c5f9\"\u003e\u003ccode\u003eaf8a936\u003c/code\u003e\u003c/a\u003e deps: update dependencies for all modules (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9065\"\u003e#9065\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/cdc60dfaaadde45e16aa3c28237c0e655a722c1a\"\u003e\u003ccode\u003ecdc60df\u003c/code\u003e\u003c/a\u003e transport: optimize heap allocations in ready reader and update syscall conne...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/grpc/grpc-go/compare/v1.80.0...v1.81.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/api` from 0.276.0 to 0.280.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/releases\"\u003egoogle.golang.org/api's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.280.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.279.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.278.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3582\"\u003e#3582\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/76b1187e506ac0f48caac67907dd0805b253f74c\"\u003e76b1187\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3584\"\u003e#3584\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e36c88361d11545583325c3ac6bdbd9cf1f1a7d0\"\u003ee36c883\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.277.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.277.0\"\u003e0.277.0\u003c/a\u003e (2026-04-29)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3567\"\u003e#3567\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/39582952e4eac1b744499f8a8063a4a5f1ce7d6b\"\u003e3958295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3571\"\u003e#3571\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ca9851efc573231ca1ed9c6fea4bc77d6052d0bb\"\u003eca9851e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3574\"\u003e#3574\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8efb1afa0e5d9cc454f721124bba3881f3935e3c\"\u003e8efb1af\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3575\"\u003e#3575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/de49bb519cab881f74e5b9ba11e263a2b9a4ad2e\"\u003ede49bb5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3577\"\u003e#3577\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ce68c87d9dc6c144b6df578df725470b30cf83d6\"\u003ece68c87\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3578\"\u003e#3578\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8be033e24e0c6ddb08a3df72c0a8997d21623a22\"\u003e8be033e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3579\"\u003e#3579\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bc6990e20803f2ff2fd1b77995f6e9180ab2302b\"\u003ebc6990e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3580\"\u003e#3580\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/2de1a5aff3f3b6e53dff00da297c5d249ac8d791\"\u003e2de1a5a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3581\"\u003e#3581\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/0c219d90e90899c93215558f3ea309c9732bf7ea\"\u003e0c219d9\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md\"\u003egoogle.golang.org/api's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3582\"\u003e#3582\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/76b1187e506ac0f48caac67907dd0805b253f74c\"\u003e76b1187\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3584\"\u003e#3584\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e36c88361d11545583325c3ac6bdbd9cf1f1a7d0\"\u003ee36c883\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.277.0\"\u003e0.277.0\u003c/a\u003e (2026-04-29)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/g...\n\n_Description has been truncated_","html_url":"https://github.com/deliveryhero/asya/pull/494","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/deliveryhero%2Fasya/issues/494","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/494/packages"},{"uuid":"4491467977","node_id":"PR_kwDODY5jaM7dxvRb","number":2964,"state":"open","title":"chore(deps): bump the go-modules group across 1 directory with 18 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-21T03:23:49.000Z","updated_at":"2026-05-22T12:00:55.016Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"go-modules","update_count":18,"packages":[{"name":"github.com/flanksource/commons","old_version":"1.51.3","new_version":"1.51.5","repository_url":"https://github.com/flanksource/commons"},{"name":"github.com/flanksource/duty","old_version":"1.0.1310","new_version":"1.0.1311","repository_url":"https://github.com/flanksource/duty"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatch","old_version":"1.56.2","new_version":"1.57.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/configservice","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.100.0","new_version":"1.101.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/elastic/go-elasticsearch/v8","old_version":"8.19.4","new_version":"8.19.6","repository_url":"https://github.com/elastic/go-elasticsearch"},{"name":"github.com/flanksource/clicky","old_version":"1.21.7","new_version":"1.21.9","repository_url":"https://github.com/flanksource/clicky"},{"name":"github.com/go-sql-driver/mysql","old_version":"1.9.3","new_version":"1.10.0","repository_url":"https://github.com/go-sql-driver/mysql"},{"name":"github.com/google/cel-go","old_version":"0.28.0","new_version":"0.28.1","repository_url":"https://github.com/google/cel-go"},{"name":"github.com/labstack/echo/v4","old_version":"4.15.1","new_version":"4.15.2","repository_url":"https://github.com/labstack/echo"},{"name":"github.com/microsoft/go-mssqldb","old_version":"1.9.8","new_version":"1.10.0","repository_url":"https://github.com/microsoft/go-mssqldb"},{"name":"github.com/onsi/ginkgo/v2","old_version":"2.28.2","new_version":"2.29.0","repository_url":"https://github.com/onsi/ginkgo"},{"name":"github.com/prometheus/alertmanager","old_version":"0.32.0","new_version":"0.32.1","repository_url":"https://github.com/prometheus/alertmanager"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"},{"name":"k8s.io/apimachinery","old_version":"0.36.0","new_version":"0.36.1","repository_url":"https://github.com/kubernetes/apimachinery"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-modules group with 16 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/flanksource/commons](https://github.com/flanksource/commons) | `1.51.3` | `1.51.5` |\n| [github.com/flanksource/duty](https://github.com/flanksource/duty) | `1.0.1310` | `1.0.1311` |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.1` | `1.62.2` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://github.com/aws/aws-sdk-go-v2) | `1.56.2` | `1.57.0` |\n| [github.com/aws/aws-sdk-go-v2/service/configservice](https://github.com/aws/aws-sdk-go-v2) | `1.62.2` | `1.62.3` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.100.0` | `1.101.0` |\n| [github.com/elastic/go-elasticsearch/v8](https://github.com/elastic/go-elasticsearch) | `8.19.4` | `8.19.6` |\n| [github.com/flanksource/clicky](https://github.com/flanksource/clicky) | `1.21.7` | `1.21.9` |\n| [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) | `1.9.3` | `1.10.0` |\n| [github.com/google/cel-go](https://github.com/google/cel-go) | `0.28.0` | `0.28.1` |\n| [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.15.1` | `4.15.2` |\n| [github.com/microsoft/go-mssqldb](https://github.com/microsoft/go-mssqldb) | `1.9.8` | `1.10.0` |\n| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.28.2` | `2.29.0` |\n| [github.com/prometheus/alertmanager](https://github.com/prometheus/alertmanager) | `0.32.0` | `0.32.1` |\n| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.276.0` | `0.280.0` |\n| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.36.0` | `0.36.1` |\n\n\nUpdates `github.com/flanksource/commons` from 1.51.3 to 1.51.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/commons/releases\"\u003egithub.com/flanksource/commons's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.51.5\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.4...v1.51.5\"\u003e1.51.5\u003c/a\u003e (2026-05-21)\u003c/h2\u003e\n\u003ch2\u003ev1.51.4\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.4\"\u003e1.51.4\u003c/a\u003e (2026-05-04)\u003c/h2\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/commons/commit/8f616949c08e644903c328fc4f3eca7db9171776\"\u003e\u003ccode\u003e8f61694\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.80 (\u003ca href=\"https://redirect.github.com/flanksource/commons/issues/315\"\u003e#315\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/commons/commit/72c1bcf52807cc782a4cce7b368e24af1832b334\"\u003e\u003ccode\u003e72c1bcf\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.79 (\u003ca href=\"https://redirect.github.com/flanksource/commons/issues/314\"\u003e#314\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/duty` from 1.0.1310 to 1.0.1311\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/duty/releases\"\u003egithub.com/flanksource/duty's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.1311\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/duty/compare/v1.0.1310...v1.0.1311\"\u003e1.0.1311\u003c/a\u003e (2026-05-21)\u003c/h2\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/duty/commit/b4d8a7845ccd361c7704486d2ccfacf1fe9f20bd\"\u003e\u003ccode\u003eb4d8a78\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.80 (\u003ca href=\"https://redirect.github.com/flanksource/duty/issues/1979\"\u003e#1979\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/flanksource/duty/compare/v1.0.1310...v1.0.1311\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/cloudwatch` from 1.56.2 to 1.57.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7c25c211744bdcff47a7203a7a894b1241f9da50\"\u003e\u003ccode\u003e7c25c21\u003c/code\u003e\u003c/a\u003e Release 2024-06-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b374423feaf0b04f01c7624b10915871e589b8a1\"\u003e\u003ccode\u003eb374423\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/923f54ea6016e1c70ad45ba0854e7361a72c3ba6\"\u003e\u003ccode\u003e923f54e\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f3bdfcf190150f62a7a07a03bc32d9c58a68f2e\"\u003e\u003ccode\u003e5f3bdfc\u003c/code\u003e\u003c/a\u003e track changes for string_array endpoint parameters (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2699\"\u003e#2699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b4498c633741e24ff4930313610096601dc4036\"\u003e\u003ccode\u003e2b4498c\u003c/code\u003e\u003c/a\u003e Release 2024-06-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/332d372bb946f0d50cae58f9401b9c1244e4b818\"\u003e\u003ccode\u003e332d372\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9397b8d8c05eb1528910ba81881797e7c0e53d17\"\u003e\u003ccode\u003e9397b8d\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/674e1e4412ce44325902125c935ce124d0bfaf4f\"\u003e\u003ccode\u003e674e1e4\u003c/code\u003e\u003c/a\u003e Release 2024-06-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/406eeb4367bab3ac49b75fbd2d842186e961f4f0\"\u003e\u003ccode\u003e406eeb4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/17bd894f3c3842d21d5963bc23213397557c3105\"\u003e\u003ccode\u003e17bd894\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ssm/v1.56.2...service/s3/v1.57.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/configservice` from 1.62.2 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d8ed081e9bcc22e6c5eb63fb6bbacfa38d7bcce3\"\u003e\u003ccode\u003ed8ed081\u003c/code\u003e\u003c/a\u003e Release 2025-10-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a2c9cb47051246e43a65f78696b8189aaa48c871\"\u003e\u003ccode\u003ea2c9cb4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7af054b46fade69938d2682163c4abbbf126b9c7\"\u003e\u003ccode\u003e7af054b\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2e5ed49bd27c797319223fe6454411c6dc3f62cc\"\u003e\u003ccode\u003e2e5ed49\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f3a3b6c778eed688dc91940a6d9160e7445a218f\"\u003e\u003ccode\u003ef3a3b6c\u003c/code\u003e\u003c/a\u003e remove arbitrary response read timeout in kinesis GetRecords (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3221\"\u003e#3221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/56af15521102c665ba33e5512cd66068c7c32506\"\u003e\u003ccode\u003e56af155\u003c/code\u003e\u003c/a\u003e Release 2025-10-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b23832ac9b9505202125cf5c448c72cd333c819b\"\u003e\u003ccode\u003eb23832a\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/33ea965f3eb459c22ba41a8e5da55115da5686bc\"\u003e\u003ccode\u003e33ea965\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f70c7889fa7e09fba31a68c6dbef1e178bbb9964\"\u003e\u003ccode\u003ef70c788\u003c/code\u003e\u003c/a\u003e Release 2025-10-28\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f8aa1f373d60ee159a2aac412311edad2eaad752\"\u003e\u003ccode\u003ef8aa1f3\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/fsx/v1.62.2...service/fsx/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.100.0 to 1.101.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/84ddd08980744ac0f3bacfe7d2796c861671accc\"\u003e\u003ccode\u003e84ddd08\u003c/code\u003e\u003c/a\u003e Release 2026-05-06\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/23645b402c11575a32d1af93ec237f2f121dd285\"\u003e\u003ccode\u003e23645b4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/848eb597bd63cb770bcd11ee230f9dca68ce1ffe\"\u003e\u003ccode\u003e848eb59\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1d7b13420ed32f0809a5a4a35c630d19bfd0b6d4\"\u003e\u003ccode\u003e1d7b134\u003c/code\u003e\u003c/a\u003e Release 2026-05-05\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5bbbc97fcab2086757060561ccd1f34101ba7b57\"\u003e\u003ccode\u003e5bbbc97\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8dbb93618325675f55eb0c3eb0c7a766806dadbc\"\u003e\u003ccode\u003e8dbb936\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/369e6498c716c7e02ca7aef318ef311edd5efcbf\"\u003e\u003ccode\u003e369e649\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dc2d13fa6f1db25f1c6d804567e1ecfcdff4f040\"\u003e\u003ccode\u003edc2d13f\u003c/code\u003e\u003c/a\u003e Release 2026-05-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/da4bcffa913dc4ba46e1ce10a6268bf075547a8d\"\u003e\u003ccode\u003eda4bcff\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a8b1180254cba3e23aa6baece26783395e884d81\"\u003e\u003ccode\u003ea8b1180\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.100.0...service/s3/v1.101.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/elastic/go-elasticsearch/v8` from 8.19.4 to 8.19.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/elastic/go-elasticsearch/releases\"\u003egithub.com/elastic/go-elasticsearch/v8's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev8.19.6\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.5...v8.19.6\"\u003e8.19.6\u003c/a\u003e (2026-05-11)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e078f8ec\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev8.19.5\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.5\"\u003e8.19.5\u003c/a\u003e (2026-04-21)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e5615aed\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eesutil:\u003c/strong\u003e Add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003ef0ad701\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e Regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e13e5d5e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e9874577\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Map spec long to *int64 for esapi params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1391\"\u003e#1391\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/9a2424c77d0125cc4a915eacd5b6c293fcbe280c\"\u003e9a2424c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003efa81ccf\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/elastic/go-elasticsearch/blob/v8.19.6/CHANGELOG.md\"\u003egithub.com/elastic/go-elasticsearch/v8's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.5...v8.19.6\"\u003e8.19.6\u003c/a\u003e (2026-05-11)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e078f8ec\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.5\"\u003e8.19.5\u003c/a\u003e (2026-04-21)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e5615aed\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eesutil:\u003c/strong\u003e Add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003ef0ad701\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e Regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e13e5d5e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e9874577\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Map spec long to *int64 for esapi params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1391\"\u003e#1391\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/9a2424c77d0125cc4a915eacd5b6c293fcbe280c\"\u003e9a2424c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003efa81ccf\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/36df8bc2f994270fa8804f3f8d76eee484312c84\"\u003e\u003ccode\u003e36df8bc\u003c/code\u003e\u003c/a\u003e chore(8.19): release 8.19.6 (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1481\"\u003e#1481\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e\u003ccode\u003e078f8ec\u003c/code\u003e\u003c/a\u003e fix(client): remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/b467419b59035e4b08c71679ebe4493cbc2ff997\"\u003e\u003ccode\u003eb467419\u003c/code\u003e\u003c/a\u003e chore: bump version to 8.19.6-SNAPSHOT (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1457\"\u003e#1457\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/0349cffb1c4b495a8e3f0470bf7c8e7d44264769\"\u003e\u003ccode\u003e0349cff\u003c/code\u003e\u003c/a\u003e chore(8.19): release 8.19.5 (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1395\"\u003e#1395\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e\u003ccode\u003e5615aed\u003c/code\u003e\u003c/a\u003e feat(client): add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003e\u003ccode\u003ef0ad701\u003c/code\u003e\u003c/a\u003e feat(esutil): add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e\u003ccode\u003e13e5d5e\u003c/code\u003e\u003c/a\u003e fix(esapi): regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003e\u003ccode\u003efa81ccf\u003c/code\u003e\u003c/a\u003e fix(gen): support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e\u003ccode\u003e9874577\u003c/code\u003e\u003c/a\u003e fix(gen): accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/30b75857dfc00e975c77a63b408d4df0f754e937\"\u003e\u003ccode\u003e30b7585\u003c/code\u003e\u003c/a\u003e [Backport 8.19] fix(gen): sort required URL params deterministically (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1408\"\u003e#1408\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/clicky` from 1.21.7 to 1.21.9\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/releases\"\u003egithub.com/flanksource/clicky's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.21.9\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.21.8\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/blob/main/CHANGELOG.md\"\u003egithub.com/flanksource/clicky's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(task): Add stderr gating to prevent corruption during interactive render\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/b059cf91dda7637600922340575829cccfcb89ef\"\u003e\u003ccode\u003eb059cf9\u003c/code\u003e\u003c/a\u003e chore(release): 1.21.9 [skip ci]\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003e\u003ccode\u003ef85ce24\u003c/code\u003e\u003c/a\u003e refactor(api,mcp,rpc): extract helper functions and improve code organization\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e\u003ccode\u003e04f17df\u003c/code\u003e\u003c/a\u003e build(makefile): add git commit and build date to binary via ldflags\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e\u003ccode\u003e06e98ad\u003c/code\u003e\u003c/a\u003e feat(api,flags): add unified diff rendering and grouped flag help output\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003e\u003ccode\u003efc8746a\u003c/code\u003e\u003c/a\u003e refactor(api): simplify switch statement in parseJavaFrame\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e\u003ccode\u003e6b74c36\u003c/code\u003e\u003c/a\u003e chore(deps): clean up unused dependencies in go.sum\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e\u003ccode\u003e9345367\u003c/code\u003e\u003c/a\u003e feat(mcp): add SSE transport, tools command, and multi-client install support\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e\u003ccode\u003e6beea3b\u003c/code\u003e\u003c/a\u003e feat(formatters): add StackTrace rendering support to HTML formatters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e\u003ccode\u003e3e6e880\u003c/code\u003e\u003c/a\u003e feat(api): Add structured HTML rendering for stack traces with syntax highlig...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e\u003ccode\u003e9cb5cb9\u003c/code\u003e\u003c/a\u003e feat(mcp): Add fluent Builder API and discover-tools MCP tool\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.9\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-sql-driver/mysql` from 1.9.3 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/releases\"\u003egithub.com/go-sql-driver/mysql's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd Go 1.24 to the test matrix by \u003ca href=\"https://github.com/shogo82148\"\u003e\u003ccode\u003e@​shogo82148\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1681\"\u003ego-sql-driver/mysql#1681\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize for Go 1.22 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1695\"\u003ego-sql-driver/mysql#1695\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest stability improvement. by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1698\"\u003ego-sql-driver/mysql#1698\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esimplify collation tests by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1700\"\u003ego-sql-driver/mysql#1700\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix bigint unsigned null column scan to err type int64 by \u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eTransaction Commit/Rollback returns conn's cached error, if present by \u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd BenchmarkReceive10kRowsCompress by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1704\"\u003ego-sql-driver/mysql#1704\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eoptimize readPacket by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1705\"\u003ego-sql-driver/mysql#1705\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eMariaDB Metadata skipping and DEPRECATE_EOF by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimization: statements reuse previous column name by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1711\"\u003ego-sql-driver/mysql#1711\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate outdated MySQL internals documentation links by \u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix PING on compressed connections by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1721\"\u003ego-sql-driver/mysql#1721\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd DeepWiki badge by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1722\"\u003ego-sql-driver/mysql#1722\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate edwards25519 dependency to v1.1.1 by \u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure Dependabot for Go modules by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1755\"\u003ego-sql-driver/mysql#1755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump dominikh/staticcheck-action from 1.3.1 to 1.4.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 3 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1760\"\u003ego-sql-driver/mysql#1760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 5 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1757\"\u003ego-sql-driver/mysql#1757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix staticcheck error by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1761\"\u003ego-sql-driver/mysql#1761\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 4 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1758\"\u003ego-sql-driver/mysql#1758\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix getSystemVar buffer reuse by \u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConsolidate Dependabot update noise by grouping weekly dependency PRs by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1756\"\u003ego-sql-driver/mysql#1756\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCI: Update GitHub Actions Go matrix to 1.24–1.26 by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1763\"\u003ego-sql-driver/mysql#1763\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnhance interpolateParams to correctly handle placeholders by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1732\"\u003ego-sql-driver/mysql#1732\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1764\"\u003ego-sql-driver/mysql#1764\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erelease v1.10.0 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1765\"\u003ego-sql-driver/mysql#1765\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\"\u003ehttps://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/blob/master/CHANGELOG.md\"\u003egithub.com/go-sql-driver/mysql's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0 (2026-04-28)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eFix \u003ccode\u003egetSystemVar(\u0026quot;max_allowed_packet\u0026quot;)\u003c/code\u003e potentially returned wrong value. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\nThis affects only when \u003ccode\u003emaxAllowedPacket=0\u003c/code\u003e is set.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\nWhile older versions have reported CVEs, they do not affect go-mysql.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eUpdate Go versions to 1.24-1.26. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eEnhance interpolateParams to correctly handle placeholders. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\nThe question mark (?) within strings and comments will no longer be treated as a placeholder.\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/a065b60ab6d0c8e15468e7709c7f76acf4431647\"\u003e\u003ccode\u003ea065b60\u003c/code\u003e\u003c/a\u003e release v1.10.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1765\"\u003e#1765\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/09e4187be9c52bb13449a662d2a36e1e1789ac95\"\u003e\u003ccode\u003e09e4187\u003c/code\u003e\u003c/a\u003e modernize (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1764\"\u003e#1764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/6c44a9a0a1769e145dc91c08abe1aded2936ab63\"\u003e\u003ccode\u003e6c44a9a\u003c/code\u003e\u003c/a\u003e Enhance interpolateParams to correctly handle placeholders (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/688ce563a28598a9b733e6fc2b325050a4dcf261\"\u003e\u003ccode\u003e688ce56\u003c/code\u003e\u003c/a\u003e Update supported Go version to 1.24–1.26 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/118d07fdb51f9e523ebcdb00628812e49d7c1881\"\u003e\u003ccode\u003e118d07f\u003c/code\u003e\u003c/a\u003e Bump filippo.io/edwards25519 from 1.1.1 to 1.2.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/d6b2d3ee2cc8569b6778a7ae7ac2816e185f616b\"\u003e\u003ccode\u003ed6b2d3e\u003c/code\u003e\u003c/a\u003e Consolidate Dependabot update noise by grouping weekly dependency PRs (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1762\"\u003e#1762\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/037dfd872a7b6c88e63c53f32700dffed560120c\"\u003e\u003ccode\u003e037dfd8\u003c/code\u003e\u003c/a\u003e Fix getSystemVar buffer reuse (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/900f33035615559b6188e4fa98d57ae20af2b73b\"\u003e\u003ccode\u003e900f330\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 4 to 6 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1758\"\u003e#1758\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/ab9e3804c604d6a60b0d3136f4654f81f184757d\"\u003e\u003ccode\u003eab9e380\u003c/code\u003e\u003c/a\u003e fix staticcheck error (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1761\"\u003e#1761\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/f298c66742396b6921732744b9bb075c7faaca81\"\u003e\u003ccode\u003ef298c66\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5 to 6 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1757\"\u003e#1757\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.3...v1.10.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/google/cel-go` from 0.28.0 to 0.28.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/cel-go/releases\"\u003egithub.com/google/cel-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eRelease v0.28.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: deleted \u003ccode\u003eIntToDuration\u003c/code\u003e overload by \u003ca href=\"https://github.com/alexsnaps\"\u003e\u003ccode\u003e@​alexsnaps\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1300\"\u003egoogle/cel-go#1300\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSupport shorthand types in env yaml and REPL  by \u003ca href=\"https://github.com/jnthntatum\"\u003e\u003ccode\u003e@​jnthntatum\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1301\"\u003egoogle/cel-go#1301\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePreserve operation interrupted in ContextEval error by \u003ca href=\"https://github.com/dims\"\u003e\u003ccode\u003e@​dims\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1303\"\u003egoogle/cel-go#1303\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse shorthand type specifiers in env yaml files by \u003ca href=\"https://github.com/jnthntatum\"\u003e\u003ccode\u003e@​jnthntatum\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1305\"\u003egoogle/cel-go#1305\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCost estimation and tracking for strings extension by \u003ca href=\"https://github.com/TristonianJones\"\u003e\u003ccode\u003e@​TristonianJones\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1307\"\u003egoogle/cel-go#1307\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate repl type string for doubles by \u003ca href=\"https://github.com/TristonianJones\"\u003e\u003ccode\u003e@​TristonianJones\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1308\"\u003egoogle/cel-go#1308\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/alexsnaps\"\u003e\u003ccode\u003e@​alexsnaps\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1300\"\u003egoogle/cel-go#1300\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dims\"\u003e\u003ccode\u003e@​dims\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1303\"\u003egoogle/cel-go#1303\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/google/cel-go/compare/v0.28.0...v0.28.1\"\u003ehttps://github.com/google/cel-go/compare/v0.28.0...v0.28.1\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/a82c68b770ac0cb67f7b4f76166827c14b145eb8\"\u003e\u003ccode\u003ea82c68b\u003c/code\u003e\u003c/a\u003e Update repl type assessment for doubles (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1308\"\u003e#1308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/c9d70486a872fbfaf9c4cb383a005de56e499368\"\u003e\u003ccode\u003ec9d7048\u003c/code\u003e\u003c/a\u003e Cost estimation and tracking for strings extension (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1307\"\u003e#1307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/646cdc1728643aec9499e3a00236ef1007a5d3fa\"\u003e\u003ccode\u003e646cdc1\u003c/code\u003e\u003c/a\u003e Use shorthand type specifiers in env yaml files (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1305\"\u003e#1305\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/7263793b453228e8a47ca742afd124b3eaa8fc68\"\u003e\u003ccode\u003e7263793\u003c/code\u003e\u003c/a\u003e Preserve operation interrupted in ContextEval error (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1303\"\u003e#1303\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/b826162b7b6ac7ae048fbf23b6123ab5c99da11b\"\u003e\u003ccode\u003eb826162\u003c/code\u003e\u003c/a\u003e Support shorthand types in env yaml and REPL  (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1301\"\u003e#1301\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/339269b44af7c3cd477b55530e9cc1fe534c7f09\"\u003e\u003ccode\u003e339269b\u003c/code\u003e\u003c/a\u003e fix: deleted \u003ccode\u003eIntToDuration\u003c/code\u003e overload (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1300\"\u003e#1300\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/google/cel-go/compare/v0.28.0...v0.28.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/labstack/echo/v4` from 4.15.1 to 4.15.2\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/labstack/echo/blob/v4.15.2/CHANGELOG.md\"\u003egithub.com/labstack/echo/v4's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.15.2 - 2026-05-01\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eSecurity\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eContext.Scheme()\u003c/code\u003e should validate values taken from header by \u003ca href=\"https://github.com/aldas\"\u003e\u003ccode\u003e@​aldas\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/labstack/echo/pull/2962\"\u003elabstack/echo#2962\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eThanks to \u003ca href=\"https://github.com/shblue21\"\u003e\u003ccode\u003e@​shblue21\u003c/code\u003e\u003c/a\u003e for reporting this \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2952\"\u003eissue\u003c/a\u003e.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/25685e6f5f7b0683105d1386db46ae48eb3de028\"\u003e\u003ccode\u003e25685e6\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2963\"\u003e#2963\u003c/a\u003e from aldas/v4_changelog_4_15_2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/f9d76893c671df4da9792fc5c122eba01d43c63b\"\u003e\u003ccode\u003ef9d7689\u003c/code\u003e\u003c/a\u003e Changelog for v4.15.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/37fff28f72264196ad28761316fc7d96fd1c502d\"\u003e\u003ccode\u003e37fff28\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2962\"\u003e#2962\u003c/a\u003e from aldas/v4_valid_proto\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/ca4f38a474302aabee93c66bdd0052359882e181\"\u003e\u003ccode\u003eca4f38a\u003c/code\u003e\u003c/a\u003e Context.Scheme should validate values taken from header\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/2e527a70a73b3a93b8346384f607cdc502d3d200\"\u003e\u003ccode\u003e2e527a7\u003c/code\u003e\u003c/a\u003e Update CI, update deps\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/labstack/echo/compare/v4.15.1...v4.15.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/microsoft/go-mssqldb` from 1.9.8 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/go-mssqldb/releases\"\u003egithub.com/microsoft/go-mssqldb's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003e1.10.0\u003c/a\u003e (2026-04-25)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003eb55beeb\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003eea77c2e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd NewConnectorWithProcessQueryText for mssql driver compatibility (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/341\"\u003e#341\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/2be611f8a7b2ec5125a835e1d6efb8cfb8979a86\"\u003e2be611f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003ec10fa99\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eallow named pipe protocol support for ARM64 Windows (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/232\"\u003e#232\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/a82c05866462e56b43d42e4523576aa363a3871a\"\u003ea82c058\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003econfigure release-please with PAT and correct component mapping (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/349\"\u003e#349\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/23bac055cea5040891be595e34869b19378974ad\"\u003e23bac05\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edetect server-aborted transactions to prevent silent auto-commit (XACT_ABORT) (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/370\"\u003e#370\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e586ea53\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e9937cfe\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ehandle COLINFO (0xA5) and TABNAME (0xA4) TDS tokens returned by tables with triggers (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/343\"\u003e#343\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/7c905adac4e8e00856c3d20503902f0160f5853d\"\u003e7c905ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eimplement driver.DriverContext interface (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/365\"\u003e#365\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/1b610a0b2905dc472968842e7a8f252acdb94272\"\u003e1b610a0\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/236\"\u003e#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emake readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e65e137f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereplace broken AppVeyor badge with GitHub Actions badge (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/334\"\u003e#334\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/d3429f5bb895bdb884ae39a43d87bb384aa5353a\"\u003ed3429f5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereturn interface{} scanType for sql_variant instead of nil (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/362\"\u003e#362\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/296a83a3e25fc23add1dbb243df1a716f431de66\"\u003e296a83a\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/186\"\u003e#186\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esanitize credentials from connection string parsing errors (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/319\"\u003e#319\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/93f5ef0dd5f02c9094a22d0052fb95cd553ba971\"\u003e93f5ef0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esurface server errors from Rows.Close() during token drain (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/361\"\u003e#361\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea69792c6da6d049eaec4e672a95d55bafef48f5\"\u003eea69792\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/244\"\u003e#244\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/go-mssqldb/blob/main/CHANGELOG.md\"\u003egithub.com/microsoft/go-mssqldb's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003e1.10.0\u003c/a\u003e (2026-04-25)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003eb55beeb\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003eea77c2e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd NewConnectorWithProcessQueryText for mssql driver compatibility (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/341\"\u003e#341\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/2be611f8a7b2ec5125a835e1d6efb8cfb8979a86\"\u003e2be611f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003ec10fa99\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eallow named pipe protocol support for ARM64 Windows (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/232\"\u003e#232\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/a82c05866462e56b43d42e4523576aa363a3871a\"\u003ea82c058\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003econfigure release-please with PAT and correct component mapping (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/349\"\u003e#349\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/23bac055cea5040891be595e34869b19378974ad\"\u003e23bac05\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edetect server-aborted transactions to prevent silent auto-commit (XACT_ABORT) (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/370\"\u003e#370\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e586ea53\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e9937cfe\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ehandle COLINFO (0xA5) and TABNAME (0xA4) TDS tokens returned by tables with triggers (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/343\"\u003e#343\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/7c905adac4e8e00856c3d20503902f0160f5853d\"\u003e7c905ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eimplement driver.DriverContext interface (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/365\"\u003e#365\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/1b610a0b2905dc472968842e7a8f252acdb94272\"\u003e1b610a0\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/236\"\u003e#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emake readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e65e137f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereplace broken AppVeyor badge with GitHub Actions badge (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/334\"\u003e#334\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/d3429f5bb895bdb884ae39a43d87bb384aa5353a\"\u003ed3429f5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereturn interface{} scanType for sql_variant instead of nil (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/362\"\u003e#362\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/296a83a3e25fc23add1dbb243df1a716f431de66\"\u003e296a83a\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/186\"\u003e#186\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esanitize credentials from connection string parsing errors (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/319\"\u003e#319\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/93f5ef0dd5f02c9094a22d0052fb95cd553ba971\"\u003e93f5ef0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esurface server errors from Rows.Close() during token drain (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/361\"\u003e#361\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea69792c6da6d049eaec4e672a95d55bafef48f5\"\u003eea69792\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/244\"\u003e#244\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.6\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded new \u003ccode\u003eserverCertificate\u003c/code\u003e connection parameter for byte-for-byte certificate validation, matching Microsoft.Data.SqlClient behavior. This parameter skips hostname validation, chain validation, and expiry checks, only verifying that the server's certificate exactly matches the provided file. This is useful when the server's hostname doesn't match the certificate CN/SAN. (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/304\"\u003e#304\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eThe existing \u003ccode\u003ecertificate\u003c/code\u003e parameter maintains backward compatibility with traditional X.509 chain validation including hostname checks, expiry validation, and chain-of-trust verification.\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eserverCertificate\u003c/code\u003e cannot be used with \u003ccode\u003ecertificate\u003c/code\u003e or \u003ccode\u003ehostnameincertificate\u003c/code\u003e parameters to prevent conflicting validation methods.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.3\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix parsing of ADO connection strings with double-quoted values containing semicolons (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/282\"\u003e#282\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.2\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix race condition in message queue query model (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/277\"\u003e#277\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.1\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix bulk insert failure with datetime values near midnight due to day overflow (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/271\"\u003e#271\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/f92e6f0abf7607819f70b66191e6732c02c78f57\"\u003e\u003ccode\u003ef92e6f0\u003c/code\u003e\u003c/a\u003e chore(main): release 1.10.0 (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/351\"\u003e#351\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/03094d02c4fd74c8a95e6feb36ec5d3d8b93f592\"\u003e\u003ccode\u003e03094d0\u003c/code\u003e\u003c/a\u003e ci: add least-privilege permissions and pin actions to SHA (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/354\"\u003e#354\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e\u003ccode\u003e65e137f\u003c/code\u003e\u003c/a\u003e fix: make readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003e\u003ccode\u003ec10fa99\u003c/code\u003e\u003c/a\u003e feat: add nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e\u003ccode\u003e9937cfe\u003c/code\u003e\u003c/a\u003e fix: expose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/429c61d44f20e08cc2a5ff1bbd2a33cfe65b1b15\"\u003e\u003ccode\u003e429c61d\u003c/code\u003e\u003c/a\u003e chore(deps): bump googleapis/release-please-action from 4.4.1 to 5.0.0 in the...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003e\u003ccode\u003eea77c2e\u003c/code\u003e\u003c/a\u003e feat: add FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/04d26c2da5fe6aebf1f04727c09a14a8cd36af56\"\u003e\u003ccode\u003e04d26c2\u003c/code\u003e\u003c/a\u003e ci: add devcontainer build validation workflow (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/355\"\u003e#355\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003e\u003ccode\u003eb55beeb\u003c/code\u003e\u003c/a\u003e feat: add devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e\u003ccode\u003e586ea53\u003c/code\u003e\u003c/a\u003e fix: detect server-aborted transactions to prevent silent auto-commit (XACT_A...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/onsi/ginkgo/v2` from 2.28.2 to 2.29.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/ginkgo/releases\"\u003egithub.com/onsi/ginkgo/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.29.0\u003c/h2\u003e\n\u003ch2\u003e2.29.0\u003c/h2\u003e\n\u003cp\u003e\u003ccode\u003eGinkgoHelperGo\u003c/code\u003e makes it easier to write test helpers that need to run in goroutines.  Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.\u003c/p\u003e\n\u003cp\u003e\u003ccode\u003eginkgo outline\u003c/code\u003e now includes entries defined in \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e\u003c/p\u003e\n\u003ch2\u003ev2.28.3\u003c/h2\u003e\n\u003ch2\u003e2.28.3\u003c/h2\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cp\u003eBump all dependencies\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summar...\n\n_Description has been truncated_","html_url":"https://github.com/flanksource/canary-checker/pull/2964","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/flanksource%2Fcanary-checker/issues/2964","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2964/packages"},{"uuid":"4484828122","node_id":"PR_kwDOO2nR4c7dcUaD","number":416,"state":"closed","title":"chore(deps): bump the gomod group across 1 directory with 2 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-21T02:39:48.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-20T08:58:31.000Z","updated_at":"2026-05-21T02:39:50.000Z","time_to_close":63677,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"gomod","update_count":2,"packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/google/go-containerregistry","old_version":"0.21.5","new_version":"0.21.6","repository_url":"https://github.com/google/go-containerregistry"}],"path":null,"ecosystem":"go"},"body":"Bumps the gomod group with 2 updates in the / directory: [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) and [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry).\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/google/go-containerregistry` from 0.21.5 to 0.21.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/go-containerregistry/releases\"\u003egithub.com/google/go-containerregistry's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.21.6\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: update dependencies to use new azure sdk components by \u003ca href=\"https://github.com/gaganhr94\"\u003e\u003ccode\u003e@​gaganhr94\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2262\"\u003egoogle/go-containerregistry#2262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: restore resp.Body in retryError so CheckError can parse it by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2264\"\u003egoogle/go-containerregistry#2264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/registry: return 202 Accepted for PATCH chunk uploads by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2265\"\u003egoogle/go-containerregistry#2265\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFollow OCI distribution spec for artifactType and annotations by \u003ca href=\"https://github.com/malt3\"\u003e\u003ccode\u003e@​malt3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2269\"\u003egoogle/go-containerregistry#2269\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eactions: attach Codecov token to coverage tests on main by \u003ca href=\"https://github.com/Subserial\"\u003e\u003ccode\u003e@​Subserial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2270\"\u003egoogle/go-containerregistry#2270\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: use DeleteScope (with \u0026quot;delete\u0026quot; action) for manifest deletion by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2266\"\u003egoogle/go-containerregistry#2266\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: limit concurrent layer pulls by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2271\"\u003egoogle/go-containerregistry#2271\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/registry: reject corrupt disk blobs by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2272\"\u003egoogle/go-containerregistry#2272\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emutate: close layer readers during export by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2277\"\u003egoogle/go-containerregistry#2277\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ecrane/flatten: preserve image media type when flattening by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2267\"\u003egoogle/go-containerregistry#2267\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump goreleaser/goreleaser-action from 7.0.0 to 7.2.1 in the actions group across 1 directory by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2273\"\u003egoogle/go-containerregistry#2273\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump go.opentelemetry.io/otel from 1.36.0 to 1.41.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2278\"\u003egoogle/go-containerregistry#2278\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump the go-deps group across 3 directories with 6 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2280\"\u003egoogle/go-containerregistry#2280\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReplace go-homedir with os.UserHomeDir by \u003ca href=\"https://github.com/jammie-jelly\"\u003e\u003ccode\u003e@​jammie-jelly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2282\"\u003egoogle/go-containerregistry#2282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/name: only treat .localhost as non-HTTPS, not .local by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2281\"\u003egoogle/go-containerregistry#2281\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: block unspecified IPs (0.0.0.0, ::) in validateRealmURL by \u003ca href=\"https://github.com/marwan9696\"\u003e\u003ccode\u003e@​marwan9696\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2285\"\u003egoogle/go-containerregistry#2285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest(mutate): add Extract round-trip test for filesystem object preservation by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2283\"\u003egoogle/go-containerregistry#2283\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexperiments: remove deprecated support for estargz by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2288\"\u003egoogle/go-containerregistry#2288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump aws-actions/configure-aws-credentials from 6.1.0 to 6.1.1 in the actions group by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2289\"\u003egoogle/go-containerregistry#2289\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: limit HTTP response body reads to prevent OOM by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2296\"\u003egoogle/go-containerregistry#2296\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump the go-deps group across 3 directories with 6 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2297\"\u003egoogle/go-containerregistry#2297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: block redirects from token server to private/link-local addresses (SSRF fix) by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2292\"\u003egoogle/go-containerregistry#2292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/v1/mutate: preserve relative symlinks that stay within rootfs in Extract by \u003ca href=\"https://github.com/anishesg\"\u003e\u003ccode\u003e@​anishesg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2279\"\u003egoogle/go-containerregistry#2279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003evalidate: skip non-layer layers by \u003ca href=\"https://github.com/imjasonh\"\u003e\u003ccode\u003e@​imjasonh\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2298\"\u003egoogle/go-containerregistry#2298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: validate foreign layer URLs to prevent SSRF (fixes \u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2259\"\u003e#2259\u003c/a\u003e) by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2293\"\u003egoogle/go-containerregistry#2293\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: block SSRF via private-IP Location headers in blob uploads by \u003ca href=\"https://github.com/adilburaksen\"\u003e\u003ccode\u003e@​adilburaksen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2295\"\u003egoogle/go-containerregistry#2295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(mutate): preserve config blob and layers for non-Docker OCI artifacts by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2286\"\u003egoogle/go-containerregistry#2286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: preserve per-occurrence layer identity in mutate.Image.Layers() by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2299\"\u003egoogle/go-containerregistry#2299\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: retry HTTP 429 (Too Many Requests) by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2301\"\u003egoogle/go-containerregistry#2301\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: allow bearer realm at same host:port as registry by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2302\"\u003egoogle/go-containerregistry#2302\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate go version to 1.26.3 by \u003ca href=\"https://github.com/Subserial\"\u003e\u003ccode\u003e@​Subserial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2300\"\u003egoogle/go-containerregistry#2300\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/gaganhr94\"\u003e\u003ccode\u003e@​gaganhr94\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2262\"\u003egoogle/go-containerregistry#2262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2264\"\u003egoogle/go-containerregistry#2264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/malt3\"\u003e\u003ccode\u003e@​malt3\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2269\"\u003egoogle/go-containerregistry#2269\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2271\"\u003egoogle/go-containerregistry#2271\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2281\"\u003egoogle/go-containerregistry#2281\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/marwan9696\"\u003e\u003ccode\u003e@​marwan9696\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2285\"\u003egoogle/go-containerregistry#2285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anishesg\"\u003e\u003ccode\u003e@​anishesg\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2279\"\u003egoogle/go-containerregistry#2279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/adilburaksen\"\u003e\u003ccode\u003e@​adilburaksen\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2295\"\u003egoogle/go-containerregistry#2295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2299\"\u003egoogle/go-containerregistry#2299\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\"\u003ehttps://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/53f7e39e15bfd6aeea6a5f733ee1a8fcf54c15cf\"\u003e\u003ccode\u003e53f7e39\u003c/code\u003e\u003c/a\u003e Update go version to 1.26.3 (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2300\"\u003e#2300\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/bf87c3bfe4cc3218ac0baa364545d72729d2906d\"\u003e\u003ccode\u003ebf87c3b\u003c/code\u003e\u003c/a\u003e transport: allow bearer realm at same host:port as registry (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2302\"\u003e#2302\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/c55facddfbd7fc3d648c6fdda9860b350b013a76\"\u003e\u003ccode\u003ec55facd\u003c/code\u003e\u003c/a\u003e transport: retry HTTP 429 (Too Many Requests) (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2301\"\u003e#2301\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/68a569e4a0eb927d36ccb0fcdf4578425c03b5a2\"\u003e\u003ccode\u003e68a569e\u003c/code\u003e\u003c/a\u003e fix: preserve per-occurrence layer identity in Layers() (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2299\"\u003e#2299\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/35b354b436879457221028f05a580fe1c0deccbc\"\u003e\u003ccode\u003e35b354b\u003c/code\u003e\u003c/a\u003e fix(mutate): preserve config blob and layers for non-Docker OCI artifacts (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2\"\u003e#2\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/e5983f2a67ec46b76984ce6de85de08a44eee955\"\u003e\u003ccode\u003ee5983f2\u003c/code\u003e\u003c/a\u003e remote: block SSRF via private-IP Location headers in blob uploads (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2295\"\u003e#2295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/6dad820da7de0d619f1127c46914f2eaf58e3b46\"\u003e\u003ccode\u003e6dad820\u003c/code\u003e\u003c/a\u003e remote: validate foreign layer URLs to prevent SSRF (fixes \u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2259\"\u003e#2259\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2293\"\u003e#2293\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/78bdf1b7e2105cdfcd8f23509992c78357ce16ed\"\u003e\u003ccode\u003e78bdf1b\u003c/code\u003e\u003c/a\u003e validate: skip non-layer layers (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2298\"\u003e#2298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/c29d91cdc394cb288270f4dd04a31f81054946f4\"\u003e\u003ccode\u003ec29d91c\u003c/code\u003e\u003c/a\u003e pkg/v1/mutate: preserve relative symlinks that stay within rootfs in Extract ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/a70d75a6915ed3137792206dac4bca21d1924959\"\u003e\u003ccode\u003ea70d75a\u003c/code\u003e\u003c/a\u003e transport: block redirects from token server to private/link-local addresses ...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/chainguard-forks/kaniko/pull/416","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/chainguard-forks%2Fkaniko/issues/416","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/416/packages"},{"uuid":"4482405246","node_id":"PR_kwDOLqiqvs7dUjgn","number":57,"state":"open","title":"deps: bump cloud.google.com/go/storage from 1.62.1 to 1.62.2","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-20T01:36:14.000Z","updated_at":"2026-05-20T01:36:26.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.1 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.1\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/nandlabs/golly-gcp/pull/57","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/nandlabs%2Fgolly-gcp/issues/57","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/57/packages"},{"uuid":"4481404529","node_id":"PR_kwDOHIqlR87dRY6D","number":1977,"state":"open","title":"chore(deps): bump the go-modules group across 1 directory with 31 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-19T22:07:02.000Z","updated_at":"2026-05-19T22:07:57.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"go-modules","update_count":31,"packages":[{"name":"cloud.google.com/go/bigquery","old_version":"1.76.0","new_version":"1.77.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/logging","old_version":"1.16.0","new_version":"1.18.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob","old_version":"1.6.4","new_version":"1.7.0","repository_url":"https://github.com/Azure/azure-sdk-for-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.41.6","new_version":"1.41.7","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.32.16","new_version":"1.32.17","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs","old_version":"1.69.1","new_version":"1.74.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/eks","old_version":"1.82.1","new_version":"1.83.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/sqs","old_version":"1.42.26","new_version":"1.42.27","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/eko/gocache/store/go_cache/v4","old_version":"4.2.4","new_version":"4.2.5","repository_url":"https://github.com/eko/gocache"},{"name":"github.com/flanksource/clicky","old_version":"1.21.4","new_version":"1.21.9","repository_url":"https://github.com/flanksource/clicky"},{"name":"github.com/flanksource/commons","old_version":"1.51.3","new_version":"1.51.4","repository_url":"https://github.com/flanksource/commons"},{"name":"github.com/flanksource/deps","old_version":"1.0.28","new_version":"1.0.32","repository_url":"https://github.com/flanksource/deps"},{"name":"github.com/go-git/go-git/v5","old_version":"5.18.0","new_version":"5.19.1","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/go-sql-driver/mysql","old_version":"1.9.3","new_version":"1.10.0","repository_url":"https://github.com/go-sql-driver/mysql"},{"name":"github.com/google/cel-go","old_version":"0.28.0","new_version":"0.28.1","repository_url":"https://github.com/google/cel-go"},{"name":"github.com/invopop/jsonschema","old_version":"0.13.0","new_version":"0.14.0","repository_url":"https://github.com/invopop/jsonschema"},{"name":"github.com/labstack/echo/v4","old_version":"4.15.1","new_version":"4.15.2","repository_url":"https://github.com/labstack/echo"},{"name":"github.com/microsoft/go-mssqldb","old_version":"1.9.8","new_version":"1.10.0","repository_url":"https://github.com/microsoft/go-mssqldb"},{"name":"github.com/nats-io/nats.go","old_version":"1.51.0","new_version":"1.52.0","repository_url":"https://github.com/nats-io/nats.go"},{"name":"github.com/onsi/ginkgo/v2","old_version":"2.28.1","new_version":"2.29.0","repository_url":"https://github.com/onsi/ginkgo"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"},{"name":"k8s.io/apimachinery","old_version":"0.35.4","new_version":"0.36.1","repository_url":"https://github.com/kubernetes/apimachinery"},{"name":"modernc.org/sqlite","old_version":"1.49.1","new_version":"1.50.1"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.99.1","new_version":"1.101.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-modules group with 25 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [cloud.google.com/go/bigquery](https://github.com/googleapis/google-cloud-go) | `1.76.0` | `1.77.0` |\n| [cloud.google.com/go/logging](https://github.com/googleapis/google-cloud-go) | `1.16.0` | `1.18.0` |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.1` | `1.62.2` |\n| [github.com/Azure/azure-sdk-for-go/sdk/storage/azblob](https://github.com/Azure/azure-sdk-for-go) | `1.6.4` | `1.7.0` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.6` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.16` | `1.32.17` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs](https://github.com/aws/aws-sdk-go-v2) | `1.69.1` | `1.74.0` |\n| [github.com/aws/aws-sdk-go-v2/service/eks](https://github.com/aws/aws-sdk-go-v2) | `1.82.1` | `1.83.0` |\n| [github.com/aws/aws-sdk-go-v2/service/sqs](https://github.com/aws/aws-sdk-go-v2) | `1.42.26` | `1.42.27` |\n| [github.com/eko/gocache/store/go_cache/v4](https://github.com/eko/gocache) | `4.2.4` | `4.2.5` |\n| [github.com/flanksource/clicky](https://github.com/flanksource/clicky) | `1.21.4` | `1.21.9` |\n| [github.com/flanksource/commons](https://github.com/flanksource/commons) | `1.51.3` | `1.51.4` |\n| [github.com/flanksource/deps](https://github.com/flanksource/deps) | `1.0.28` | `1.0.32` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.18.0` | `5.19.1` |\n| [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) | `1.9.3` | `1.10.0` |\n| [github.com/google/cel-go](https://github.com/google/cel-go) | `0.28.0` | `0.28.1` |\n| [github.com/invopop/jsonschema](https://github.com/invopop/jsonschema) | `0.13.0` | `0.14.0` |\n| [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.15.1` | `4.15.2` |\n| [github.com/microsoft/go-mssqldb](https://github.com/microsoft/go-mssqldb) | `1.9.8` | `1.10.0` |\n| [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) | `1.51.0` | `1.52.0` |\n| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.28.1` | `2.29.0` |\n| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.276.0` | `0.280.0` |\n| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.35.4` | `0.36.1` |\n| [modernc.org/sqlite](https://gitlab.com/cznic/sqlite) | `1.49.1` | `1.50.1` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.99.1` | `1.101.0` |\n\n\nUpdates `cloud.google.com/go/bigquery` from 1.76.0 to 1.77.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/7cd251203fc35859882ecda532b7debaff378374\"\u003e\u003ccode\u003e7cd2512\u003c/code\u003e\u003c/a\u003e chore(main): release spanner 1.77.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11634\"\u003e#11634\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/28f00304ebb13abfd0da2f45b9b79de093cca1ec\"\u003e\u003ccode\u003e28f0030\u003c/code\u003e\u003c/a\u003e chore(all): fix out-of-sync version.go files (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11684\"\u003e#11684\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/655de36dce9cfd32ef88cb58037dbf655b93da21\"\u003e\u003ccode\u003e655de36\u003c/code\u003e\u003c/a\u003e feat(spanner): Support REPEATABLE_READ for RW transaction (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11654\"\u003e#11654\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/60dc167a3e9c2876fe55a4f50bd7e0682f953d67\"\u003e\u003ccode\u003e60dc167\u003c/code\u003e\u003c/a\u003e fix(aiplatform): remove VertexAISearch.engine option (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11681\"\u003e#11681\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/3f23a9176f29a0a69b9d57b16f44b72eb3096d0c\"\u003e\u003ccode\u003e3f23a91\u003c/code\u003e\u003c/a\u003e fix(aiplatform): An existing google.api.http annotation \u003ccode\u003ehttp_uri\u003c/code\u003e is changed...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/e87cedc467cbb5205ebe67855e2a95a5edb98bba\"\u003e\u003ccode\u003ee87cedc\u003c/code\u003e\u003c/a\u003e chore: remove resourcesettings (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11678\"\u003e#11678\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d662a4537c3883d13a612e335477ca875b5cf479\"\u003e\u003ccode\u003ed662a45\u003c/code\u003e\u003c/a\u003e feat(spanner): add option for LastStatement in transaction (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11638\"\u003e#11638\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9e508d066bdaa7e41c251fa0ba7eb9b23587c3a0\"\u003e\u003ccode\u003e9e508d0\u003c/code\u003e\u003c/a\u003e chore: release main (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11623\"\u003e#11623\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/601e74202ca6bf28506f06f27abc1d99018f9dc5\"\u003e\u003ccode\u003e601e742\u003c/code\u003e\u003c/a\u003e feat(bigquery/reservation): Add a new field \u003ccode\u003ereplication_status\u003c/code\u003e to `.google....\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1eb601ee788e5fbc0a9f55cde580493191782df3\"\u003e\u003ccode\u003e1eb601e\u003c/code\u003e\u003c/a\u003e chore(firestore): expose the Firestore.executePipeline API to the preview bra...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/spanner/v1.76.0...spanner/v1.77.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/logging` from 1.16.0 to 1.18.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/logging's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003erecommender: v1.18.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/recommender/v1.17.0...recommender/v1.18.0\"\u003ev1.18.0\u003c/a\u003e (2026-05-07)\u003c/h2\u003e\n\u003ch2\u003estoragetransfer: v1.18.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storagetransfer/v1.17.0...storagetransfer/v1.18.0\"\u003ev1.18.0\u003c/a\u003e (2026-05-07)\u003c/h2\u003e\n\u003ch2\u003eservicedirectory: v1.17.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/servicedirectory/v1.16.0...servicedirectory/v1.17.0\"\u003ev1.17.0\u003c/a\u003e (2026-05-07)\u003c/h2\u003e\n\u003ch2\u003etranslate: v1.17.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/translate/v1.16.0...translate/v1.17.0\"\u003ev1.17.0\u003c/a\u003e (2026-05-07)\u003c/h2\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/blob/main/documentai/CHANGES.md\"\u003ecloud.google.com/go/logging's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/documentai/v1.17.0...documentai/v1.18.0\"\u003e1.18.0\u003c/a\u003e (2023-03-22)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edocumentai:\u003c/strong\u003e Add ImportProcessorVersion in v1beta3 (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c967961ed95750e173af0193ec8d0974471f43ff\"\u003ec967961\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/documentai/v1.16.0...documentai/v1.17.0\"\u003e1.17.0\u003c/a\u003e (2023-03-15)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edocumentai:\u003c/strong\u003e Added hints.language_hints field in OcrConfig (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/7522\"\u003e#7522\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/b2c40c3df916691b82f1b384eac5bc953960960a\"\u003eb2c40c3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ad8792d691c5eda8f65debddc2e0aa2e682c7bfe\"\u003e\u003ccode\u003ead8792d\u003c/code\u003e\u003c/a\u003e chore: release main (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10399\"\u003e#10399\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4fa43082511e153044084c1e6736553de41a9894\"\u003e\u003ccode\u003e4fa4308\u003c/code\u003e\u003c/a\u003e feat(kms): support Key Access Justifications policy configuration (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10398\"\u003e#10398\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/661369863abd0ca4df057e3f82af70ac9027f6ad\"\u003e\u003ccode\u003e6613698\u003c/code\u003e\u003c/a\u003e chore(main): release bigtable 1.25.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10396\"\u003e#10396\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/18fa7e4961d055939078833d0442a415fac96ae6\"\u003e\u003ccode\u003e18fa7e4\u003c/code\u003e\u003c/a\u003e feat(bigtable): add string type to supported Bigtable type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10306\"\u003e#10306\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d8bd2c1ffc4f27503a74ded438d8bfbdd7707c63\"\u003e\u003ccode\u003ed8bd2c1\u003c/code\u003e\u003c/a\u003e fix(storage): allow empty soft delete on Create (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10394\"\u003e#10394\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/36b70b73fa7e61615dee32d094beafab106a8e9e\"\u003e\u003ccode\u003e36b70b7\u003c/code\u003e\u003c/a\u003e chore(spanner): use previous version of cloud.google.com/go (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10390\"\u003e#10390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/2cfca6b8f3c6c623a1907054c20f8d597e173ebe\"\u003e\u003ccode\u003e2cfca6b\u003c/code\u003e\u003c/a\u003e chore(main): release pubsub 1.39.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10173\"\u003e#10173\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/110d4a3cb8c45635fa66b1df34e8e3da9d38a41e\"\u003e\u003ccode\u003e110d4a3\u003c/code\u003e\u003c/a\u003e chore: release main (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10392\"\u003e#10392\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/abac5c6eec859477c6d390b116ea8954213ba585\"\u003e\u003ccode\u003eabac5c6\u003c/code\u003e\u003c/a\u003e chore(dataplex): deprecate SearchEntriesResult.snippets (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10377\"\u003e#10377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/426a8c27a9d11f24e8c331b6375f87d29829e021\"\u003e\u003ccode\u003e426a8c2\u003c/code\u003e\u003c/a\u003e feat(pubsub): make lease management RPCs concurrent (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10238\"\u003e#10238\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/kms/v1.16.0...kms/v1.18.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/Azure/azure-sdk-for-go/sdk/storage/azblob` from 1.6.4 to 1.7.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/Azure/azure-sdk-for-go/releases\"\u003egithub.com/Azure/azure-sdk-for-go/sdk/storage/azblob's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003esdk/storage/azblob/v1.7.0\u003c/h2\u003e\n\u003ch2\u003e1.7.0 (2026-05-14)\u003c/h2\u003e\n\u003ch3\u003eFeatures Added\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eIncludes all features from \u003ccode\u003e1.7.0-beta.1\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003esdk/storage/azblob/v1.7.0-beta.1\u003c/h2\u003e\n\u003ch2\u003e1.7.0-beta.1 (2026-04-23)\u003c/h2\u003e\n\u003ch3\u003eFeatures Added\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for service version 2026-04-06.\u003c/li\u003e\n\u003cli\u003eAdded support for Delete Blob Conditional Tier.\u003c/li\u003e\n\u003cli\u003eAdded support for Server-side Encryption Rekeying.\u003c/li\u003e\n\u003cli\u003eAdded cross-tenant support for Principal-Bound User Delegation SAS.\u003c/li\u003e\n\u003cli\u003eAdded support for Dynamic User Delegation SAS.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBugs Fixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for error code \u003ccode\u003eIncrementalCopyOfEarlierSnapshotNotAllowed\u003c/code\u003e. This replaces \u003ccode\u003eIncrementalCopyOfEralierVersionSnapshotNotAllowed\u003c/code\u003e which has been deprecated.\u003c/li\u003e\n\u003cli\u003eAdded support for missing SKU name values.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003esdk/storage/azfile/v1.7.0-beta.1\u003c/h2\u003e\n\u003ch2\u003e1.7.0-beta.1 (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures Added\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for service version 2026-06-06.\u003c/li\u003e\n\u003cli\u003eAdded support for uploading up to 4 MiB of data with Create File API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/624babab3d2e3a95628afa61d1474a035cc7d094\"\u003e\u003ccode\u003e624baba\u003c/code\u003e\u003c/a\u003e bump azcore version number\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/ce7217c3f5f5a2f88f3a5d1ded48da338f3d8d06\"\u003e\u003ccode\u003ece7217c\u003c/code\u003e\u003c/a\u003e Prep for azcore v1.7.0 release (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/21149\"\u003e#21149\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/62a8079d41783914d9a5f585bcdb6f6b91223e5c\"\u003e\u003ccode\u003e62a8079\u003c/code\u003e\u003c/a\u003e Add support for shallow cloning azcore.Client instances (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/21065\"\u003e#21065\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/21098\"\u003e#21098\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/47286b065b0e3aa7d367fb20212aad3a143e6343\"\u003e\u003ccode\u003e47286b0\u003c/code\u003e\u003c/a\u003e Add flag to enable skipping of dependency checks (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/21146\"\u003e#21146\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/ee762d4420eb57051cdebe55e55b107dae4f6bfc\"\u003e\u003ccode\u003eee762d4\u003c/code\u003e\u003c/a\u003e Fix populating module name in telemetry policy (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20967\"\u003e#20967\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20971\"\u003e#20971\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/02431759c00a99a31e159e9905c392b8f430c897\"\u003e\u003ccode\u003e0243175\u003c/code\u003e\u003c/a\u003e Prep azcore v1.6.1 for release (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20961\"\u003e#20961\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/9c9d62a1d612cf1f9e6902ddd3c538abd90b955c\"\u003e\u003ccode\u003e9c9d62a\u003c/code\u003e\u003c/a\u003e Increment package version after release of azcore (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20740\"\u003e#20740\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/36f766d2feba70f64bed923c23b57602998e16c8\"\u003e\u003ccode\u003e36f766d\u003c/code\u003e\u003c/a\u003e add sdk/resourcemanager/cosmos/armcosmos live test (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20705\"\u003e#20705\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/c005ed6159fdf2104077694b5f89e7063a0cc586\"\u003e\u003ccode\u003ec005ed6\u003c/code\u003e\u003c/a\u003e sdk/resourcemanager/network/armnetwork live test (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20331\"\u003e#20331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/5fa7df4852a100f4a7502d5064ae54b0aceb8260\"\u003e\u003ccode\u003e5fa7df4\u003c/code\u003e\u003c/a\u003e add sdk/resourcemanager/compute/armcompute live test (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20048\"\u003e#20048\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/Azure/azure-sdk-for-go/compare/sdk/storage/azblob/v1.6.4...sdk/azcore/v1.7.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2` from 1.41.6 to 1.41.7\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2223642aeafb3b46ae924667ee47d31a1cf5a9d5\"\u003e\u003ccode\u003e2223642\u003c/code\u003e\u003c/a\u003e Release 2026-04-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/04c7e460121eafa42577be08289bd0da0de091b2\"\u003e\u003ccode\u003e04c7e46\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f5692571a7afce76e1573da3fbf2180a2c297cc\"\u003e\u003ccode\u003e5f56925\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/aac6d2b8fefd47203d3b4bd5f229ca275272ec62\"\u003e\u003ccode\u003eaac6d2b\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdaead7d2074e479fc56da77491fe65737413664\"\u003e\u003ccode\u003ebdaead7\u003c/code\u003e\u003c/a\u003e upgrade to smithy-go v1.25.1 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3399\"\u003e#3399\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/008e12cf64f41c37faeb705f6ce4b77471756f9f\"\u003e\u003ccode\u003e008e12c\u003c/code\u003e\u003c/a\u003e Release 2026-04-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef109d91f0b772aaebc472633edf13ec0fd907ce\"\u003e\u003ccode\u003eef109d9\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6411e6379e509956413b866481ee2362a7cdfc68\"\u003e\u003ccode\u003e6411e63\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e5bf970956db306bf7b5b1bdd8ca71e8cca766b5\"\u003e\u003ccode\u003ee5bf970\u003c/code\u003e\u003c/a\u003e Release 2026-04-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdbb88c9400c80ed2487f7b498a54c6206b5c62a\"\u003e\u003ccode\u003ebdbb88c\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.41.6...v1.41.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/config` from 1.32.16 to 1.32.17\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2223642aeafb3b46ae924667ee47d31a1cf5a9d5\"\u003e\u003ccode\u003e2223642\u003c/code\u003e\u003c/a\u003e Release 2026-04-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/04c7e460121eafa42577be08289bd0da0de091b2\"\u003e\u003ccode\u003e04c7e46\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f5692571a7afce76e1573da3fbf2180a2c297cc\"\u003e\u003ccode\u003e5f56925\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/aac6d2b8fefd47203d3b4bd5f229ca275272ec62\"\u003e\u003ccode\u003eaac6d2b\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdaead7d2074e479fc56da77491fe65737413664\"\u003e\u003ccode\u003ebdaead7\u003c/code\u003e\u003c/a\u003e upgrade to smithy-go v1.25.1 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3399\"\u003e#3399\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/008e12cf64f41c37faeb705f6ce4b77471756f9f\"\u003e\u003ccode\u003e008e12c\u003c/code\u003e\u003c/a\u003e Release 2026-04-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef109d91f0b772aaebc472633edf13ec0fd907ce\"\u003e\u003ccode\u003eef109d9\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6411e6379e509956413b866481ee2362a7cdfc68\"\u003e\u003ccode\u003e6411e63\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e5bf970956db306bf7b5b1bdd8ca71e8cca766b5\"\u003e\u003ccode\u003ee5bf970\u003c/code\u003e\u003c/a\u003e Release 2026-04-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdbb88c9400c80ed2487f7b498a54c6206b5c62a\"\u003e\u003ccode\u003ebdbb88c\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.32.16...config/v1.32.17\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/credentials` from 1.19.15 to 1.19.16\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2223642aeafb3b46ae924667ee47d31a1cf5a9d5\"\u003e\u003ccode\u003e2223642\u003c/code\u003e\u003c/a\u003e Release 2026-04-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/04c7e460121eafa42577be08289bd0da0de091b2\"\u003e\u003ccode\u003e04c7e46\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f5692571a7afce76e1573da3fbf2180a2c297cc\"\u003e\u003ccode\u003e5f56925\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/aac6d2b8fefd47203d3b4bd5f229ca275272ec62\"\u003e\u003ccode\u003eaac6d2b\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdaead7d2074e479fc56da77491fe65737413664\"\u003e\u003ccode\u003ebdaead7\u003c/code\u003e\u003c/a\u003e upgrade to smithy-go v1.25.1 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3399\"\u003e#3399\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/008e12cf64f41c37faeb705f6ce4b77471756f9f\"\u003e\u003ccode\u003e008e12c\u003c/code\u003e\u003c/a\u003e Release 2026-04-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef109d91f0b772aaebc472633edf13ec0fd907ce\"\u003e\u003ccode\u003eef109d9\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6411e6379e509956413b866481ee2362a7cdfc68\"\u003e\u003ccode\u003e6411e63\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e5bf970956db306bf7b5b1bdd8ca71e8cca766b5\"\u003e\u003ccode\u003ee5bf970\u003c/code\u003e\u003c/a\u003e Release 2026-04-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdbb88c9400c80ed2487f7b498a54c6206b5c62a\"\u003e\u003ccode\u003ebdbb88c\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/credentials/v1.19.15...credentials/v1.19.16\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs` from 1.69.1 to 1.74.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4ad9d5996fd752f0756be2dbbdd4f8a4841fe362\"\u003e\u003ccode\u003e4ad9d59\u003c/code\u003e\u003c/a\u003e Release 2025-01-22\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5ad8437a282f45f876255b6410b00ad74b512796\"\u003e\u003ccode\u003e5ad8437\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/903ab00324d065403132ea5e19abc51c7b5bd0ac\"\u003e\u003ccode\u003e903ab00\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/847821e55367b6185db008b95c72887767949b07\"\u003e\u003ccode\u003e847821e\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d2c7a1901f52750bad242315cef97902048b8fdf\"\u003e\u003ccode\u003ed2c7a19\u003c/code\u003e\u003c/a\u003e Update README.md (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2980\"\u003e#2980\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e5689c9ef90df930b7634fb952411db6a6c00cab\"\u003e\u003ccode\u003ee5689c9\u003c/code\u003e\u003c/a\u003e add client config to disable logging skipped output checksum validation (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2976\"\u003e#2976\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/560c44d97a1f92bf73a6d5e54b6f458edb92080a\"\u003e\u003ccode\u003e560c44d\u003c/code\u003e\u003c/a\u003e Release 2025-01-21\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c45f0a58aac89ca19f2a8801b63346b8c2c61d70\"\u003e\u003ccode\u003ec45f0a5\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/54e903f52e99876a6c131e2eb314ae83c85c9c3c\"\u003e\u003ccode\u003e54e903f\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3464887a31a8d47392c7c9ee9e1b2ce70fa7a27d\"\u003e\u003ccode\u003e3464887\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ecs/v1.69.1...service/s3/v1.74.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/eks` from 1.82.1 to 1.83.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e9a97206aff1d25c17ee29c183c87cdf09c168f0\"\u003e\u003ccode\u003ee9a9720\u003c/code\u003e\u003c/a\u003e Release 2025-07-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ea7d5affedd3acf3978516c21d73fbd74dc280b0\"\u003e\u003ccode\u003eea7d5af\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/84d256486dc3316060d451df775c11f855ef02cb\"\u003e\u003ccode\u003e84d2564\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b51b97681c6a48351099b4814ea30f9a2c7781ec\"\u003e\u003ccode\u003eb51b976\u003c/code\u003e\u003c/a\u003e update min go version in README (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3130\"\u003e#3130\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/eef5dc435e96e2cc8a08008467461652bcefe5ea\"\u003e\u003ccode\u003eeef5dc4\u003c/code\u003e\u003c/a\u003e Release 2025-07-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bde06472b5d2fea25a3c4df6aff8f8e89e8ccbf0\"\u003e\u003ccode\u003ebde0647\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2f67ffa7312a43cbbb1c036c17034f4ccbb36df2\"\u003e\u003ccode\u003e2f67ffa\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7fd9b449d1dc055c0e0e4b190e46a567812cb799\"\u003e\u003ccode\u003e7fd9b44\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/47c51f3b3e3861429bfcbfa33b91590e2dc8385c\"\u003e\u003ccode\u003e47c51f3\u003c/code\u003e\u003c/a\u003e Release 2025-06-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5392ccec827ad8d552323634de62d70d50f045bb\"\u003e\u003ccode\u003e5392cce\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/eks/v1.82.1...service/s3/v1.83.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/sqs` from 1.42.26 to 1.42.27\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2223642aeafb3b46ae924667ee47d31a1cf5a9d5\"\u003e\u003ccode\u003e2223642\u003c/code\u003e\u003c/a\u003e Release 2026-04-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/04c7e460121eafa42577be08289bd0da0de091b2\"\u003e\u003ccode\u003e04c7e46\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f5692571a7afce76e1573da3fbf2180a2c297cc\"\u003e\u003ccode\u003e5f56925\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/aac6d2b8fefd47203d3b4bd5f229ca275272ec62\"\u003e\u003ccode\u003eaac6d2b\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdaead7d2074e479fc56da77491fe65737413664\"\u003e\u003ccode\u003ebdaead7\u003c/code\u003e\u003c/a\u003e upgrade to smithy-go v1.25.1 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3399\"\u003e#3399\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/008e12cf64f41c37faeb705f6ce4b77471756f9f\"\u003e\u003ccode\u003e008e12c\u003c/code\u003e\u003c/a\u003e Release 2026-04-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef109d91f0b772aaebc472633edf13ec0fd907ce\"\u003e\u003ccode\u003eef109d9\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6411e6379e509956413b866481ee2362a7cdfc68\"\u003e\u003ccode\u003e6411e63\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e5bf970956db306bf7b5b1bdd8ca71e8cca766b5\"\u003e\u003ccode\u003ee5bf970\u003c/code\u003e\u003c/a\u003e Release 2026-04-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdbb88c9400c80ed2487f7b498a54c6206b5c62a\"\u003e\u003ccode\u003ebdbb88c\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/sqs/v1.42.26...service/sqs/v1.42.27\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.42.0 to 1.42.1\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5aa6e2b081b5d1b038a0cc5d9198c7a37abf6b4c\"\u003e\u003ccode\u003e5aa6e2b\u003c/code\u003e\u003c/a\u003e Release 2023-11-09\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7dbcd52c14c8f992cb2fec090d826ab30881155e\"\u003e\u003ccode\u003e7dbcd52\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9b178445e4365543a410efefd6b0262c2ea3eb84\"\u003e\u003ccode\u003e9b17844\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/efa54869c68f9d770c9b83fda176c452906688ce\"\u003e\u003ccode\u003eefa5486\u003c/code\u003e\u003c/a\u003e Allowlist bucket owner header (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2358\"\u003e#2358\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5118d3bcdd253fbfd02b8e44966ba7a79ecfbf59\"\u003e\u003ccode\u003e5118d3b\u003c/code\u003e\u003c/a\u003e Release 2023-11-08\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f3c195fc3bcd7f20ae84bf0f999dc89e2487eaee\"\u003e\u003ccode\u003ef3c195f\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f24b6a0665313f69c97fd3fa62b351358962bda4\"\u003e\u003ccode\u003ef24b6a0\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f5a08768ef820ff5efd62a49ba50c61c9ca5dbcb\"\u003e\u003ccode\u003ef5a0876\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3674c3886336f797ad40b18bb1db8c35f4c7ed91\"\u003e\u003ccode\u003e3674c38\u003c/code\u003e\u003c/a\u003e Release 2023-11-07\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b856b28d54158b2e3596afcd799cfbafddd843ca\"\u003e\u003ccode\u003eb856b28\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.42.0...service/s3/v1.42.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/eko/gocache/store/go_cache/v4` from 4.2.4 to 4.2.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/eko/gocache/releases\"\u003egithub.com/eko/gocache/store/go_cache/v4's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estore/redis/v4.2.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eHide mock interfaces from users by \u003ca href=\"https://github.com/Neo2308\"\u003e\u003ccode\u003e@​Neo2308\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eko/gocache/pull/296\"\u003eeko/gocache#296\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Neo2308\"\u003e\u003ccode\u003e@​Neo2308\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/eko/gocache/pull/296\"\u003eeko/gocache#296\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/eko/gocache/compare/store/memcache/v4.2.3...store/redis/v4.2.5\"\u003ehttps://github.com/eko/gocache/compare/store/memcache/v4.2.3...store/redis/v4.2.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003estore/go_cache/v4.2.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump github.com/sirupsen/logrus from 1.4.2 to 1.8.3 in /store/pegasus by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/eko/gocache/pull/301\"\u003eeko/gocache#301\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/eko/gocache/compare/lib/v4.2.3...store/go_cache/v4.2.5\"\u003ehttps://github.com/eko/gocache/compare/lib/v4.2.3...store/go_cache/v4.2.5\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eko/gocache/commit/003ae3928bcde9581120a0e1074d6a1977490aa6\"\u003e\u003ccode\u003e003ae39\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/eko/gocache/issues/296\"\u003e#296\u003c/a\u003e from Neo2308/feature/master/hide-mock-interfaces\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eko/gocache/commit/42bb50edc504371c7d671993c46d20cc533c4734\"\u003e\u003ccode\u003e42bb50e\u003c/code\u003e\u003c/a\u003e Rename import to resolve warnings\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eko/gocache/commit/21cb8b5ee6a4c79316f5a4155cab7a82fc154931\"\u003e\u003ccode\u003e21cb8b5\u003c/code\u003e\u003c/a\u003e Added mocks\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eko/gocache/commit/c0e14c13972af4d418435d799085454034c54a00\"\u003e\u003ccode\u003ec0e14c1\u003c/code\u003e\u003c/a\u003e Hide mock interfaces from users\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eko/gocache/commit/277d34a9a5b9b5c2cfe73c490b80530c97280982\"\u003e\u003ccode\u003e277d34a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/eko/gocache/issues/295\"\u003e#295\u003c/a\u003e from eko/memcache-mocks\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eko/gocache/commit/762bf996a5ff5d6c5560274fbd27c03f9f983ee8\"\u003e\u003ccode\u003e762bf99\u003c/code\u003e\u003c/a\u003e Store memcache: moved from golang/mock to mockery\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/eko/gocache/compare/store/redis/v4.2.4...store/redis/v4.2.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/clicky` from 1.21.4 to 1.21.9\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/releases\"\u003egithub.com/flanksource/clicky's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.21.9\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.21.8\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/blob/main/CHANGELOG.md\"\u003egithub.com/flanksource/clicky's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(task): Add stderr gating to prevent corruption during interactive render\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/b059cf91dda7637600922340575829cccfcb89ef\"\u003e\u003ccode\u003eb059cf9\u003c/code\u003e\u003c/a\u003e chore(release): 1.21.9 [skip ci]\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003e\u003ccode\u003ef85ce24\u003c/code\u003e\u003c/a\u003e refactor(api,mcp,rpc): extract helper functions and improve code organization\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e\u003ccode\u003e04f17df\u003c/code\u003e\u003c/a\u003e build(makefile): add git commit and build date to binary via ldflags\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e\u003ccode\u003e06e98ad\u003c/code\u003e\u003c/a\u003e feat(api,flags): add unified diff rendering and grouped flag help output\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003e\u003ccode\u003efc8746a\u003c/code\u003e\u003c/a\u003e refactor(api): simplify switch statement in parseJavaFrame\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e\u003ccode\u003e6b74c36\u003c/code\u003e\u003c/a\u003e chore(deps): clean up unused dependencies in go.sum\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e\u003ccode\u003e9345367\u003c/code\u003e\u003c/a\u003e feat(mcp): add SSE transport, tools command, and multi-client install support\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e\u003ccode\u003e6beea3b\u003c/code\u003e\u003c/a\u003e feat(formatters): add StackTrace rendering support to HTML formatters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e\u003ccode\u003e3e6e880\u003c/code\u003e\u003c/a\u003e feat(api): Add structured HTML rendering for stack traces with syntax highlig...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e\u003ccode\u003e9cb5cb9\u003c/code\u003e\u003c/a\u003e feat(mcp): Add fluent Builder API and discover-tools MCP tool\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.4...v1.21.9\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/commons` from 1.51.3 to 1.51.4\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/commons/releases\"\u003egithub.com/flanksource/commons's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.51.4\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.4\"\u003e1.51.4\u003c/a\u003e (2026-05-04)\u003c/h2\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/commons/commit/72c1bcf52807cc782a4cce7b368e24af1832b334\"\u003e\u003ccode\u003e72c1bcf\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.79 (\u003ca href=\"https://redirect.github.com/flanksource/commons/issues/314\"\u003e#314\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.4\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/deps` from 1.0.28 to 1.0.32\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/deps/commit/0fc237557a50c9d982b03c43b6c34efe06f5cd6e\"\u003e\u003ccode\u003e0fc2375\u003c/code\u003e\u003c/a\u003e fix(registry): add remaining mission-control plugins\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/deps/commit/a428074cf25e83c1a94c392e3e8cb4c1c4d7a876\"\u003e\u003ccode\u003ea428074\u003c/code\u003e\u003c/a\u003e fix(registry): update mission-control plugin release assets\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/deps/commit/de2a0fa1ac33fbe8194666b9dbd53dfeb73e416a\"\u003e\u003ccode\u003ede2a0fa\u003c/code\u003e\u003c/a\u003e feat(registry): add mission-control plugin packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/deps/commit/f71a624c3718f38aae48a1f0a168494869290bae\"\u003e\u003ccode\u003ef71a624\u003c/code\u003e\u003c/a\u003e chore: disable flaky tests\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/flanksource/deps/compare/v1.0.28...v1.0.32\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-git/go-git/v5` from 5.18.0 to 5.19.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-git/go-git/releases\"\u003egithub.com/go-git/go-git/v5's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev5.19.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ev5: plumbing: transport/ssh, Shell-quote path by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2068\"\u003ego-git/go-git#2068\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: git: submodule, Fix relative URL resolution by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2070\"\u003ego-git/go-git#2070\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: git: submodule, canonical remote for relative URLs by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2074\"\u003ego-git/go-git#2074\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: git: submodule, error on remote without URLs by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2078\"\u003ego-git/go-git#2078\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: plumbing: format/idxfile, Validate offset64 indices by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2084\"\u003ego-git/go-git#2084\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: *: Reject malformed variable-length integers by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2092\"\u003ego-git/go-git#2092\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: plumbing: format/packfile, Tighten delta validation by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2091\"\u003ego-git/go-git#2091\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: Add \u003ccode\u003eworktreeFilesystem\u003c/code\u003e wrapper for worktree and hardening by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2100\"\u003ego-git/go-git#2100\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: config: validate submodule names by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2082\"\u003ego-git/go-git#2082\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: Update module github.com/go-git/go-git/v5 to v5.19.0 [SECURITY] (releases/v5.x) by \u003ca href=\"https://github.com/go-git-renovate\"\u003e\u003ccode\u003e@​go-git-renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2111\"\u003ego-git/go-git#2111\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: git: Allow MkdirAll on worktree-root paths by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2117\"\u003ego-git/go-git#2117\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: git: Stop validating symlink target paths by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2116\"\u003ego-git/go-git#2116\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: plumbing: format decoder input bounds and contracts by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2125\"\u003ego-git/go-git#2125\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/packfile, cap delta chain depth in parser by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2137\"\u003ego-git/go-git#2137\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.19.0...v5.19.1\"\u003ehttps://github.com/go-git/go-git/compare/v5.19.0...v5.19.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev5.19.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ebuild: Update module github.com/go-git/go-git/v5 to v5.18.0 [SECURITY] (releases/v5.x) by \u003ca href=\"https://github.com/go-git-renovate\"\u003e\u003ccode\u003e@​go-git-renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2010\"\u003ego-git/go-git#2010\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: Bump sha1cd and go-billy by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2060\"\u003ego-git/go-git#2060\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: Align object encoding with upstream by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2065\"\u003ego-git/go-git#2065\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.18.0...v5.19.0\"\u003ehttps://github.com/go-git/go-git/compare/v5.18.0...v5.19.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/3c3be601aa6c0fd0d536c0d1e4f898b4c60e65fe\"\u003e\u003ccode\u003e3c3be60\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2137\"\u003e#2137\u003c/a\u003e from go-git/validate-v5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/3fba897bd9e84b1aec170fa708b80e297b7d6cf6\"\u003e\u003ccode\u003e3fba897\u003c/code\u003e\u003c/a\u003e plumbing: format/packfile, cap delta chain depth in parser\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/a97d6601c85e017bb64c2b0f2e3169f6ef6a6709\"\u003e\u003ccode\u003ea97d660\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2125\"\u003e#2125\u003c/a\u003e from hiddeco/v5/format-input-bounds\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/aeaa125c8af8e4c4c95b574c22c5633e97fc436e\"\u003e\u003ccode\u003eaeaa125\u003c/code\u003e\u003c/a\u003e plumbing: format/objfile, require Header before Read\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/1f38e171218526ea254a73187a52f0648253c1b8\"\u003e\u003ccode\u003e1f38e17\u003c/code\u003e\u003c/a\u003e plumbing: format/packfile, bound inflate size\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/f7545a02529e03998d6a7219140dc0e6644ad337\"\u003e\u003ccode\u003ef7545a0\u003c/code\u003e\u003c/a\u003e plumbing: format/idxfile, bound nr by file size\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/170b88181f385913a457a08b68c88956fb3f8e4f\"\u003e\u003ccode\u003e170b881\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2116\"\u003e#2116\u003c/a\u003e from pjbgf/symlink-v5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/7b6d994467f06630268904aa3c441b6de7248b31\"\u003e\u003ccode\u003e7b6d994\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2117\"\u003e#2117\u003c/a\u003e from hiddeco/v5/worktree-fs-mkdirall-root-noop\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/f0709b32f8fbb87c16cd63c6762d2cd515f36541\"\u003e\u003ccode\u003ef0709b3\u003c/code\u003e\u003c/a\u003e git: Stop validating symlink target paths\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/776d00f11d336f26862d0f2bab987b217f3a7844\"\u003e\u003ccode\u003e776d00f\u003c/code\u003e\u003c/a\u003e git: Allow MkdirAll on worktree-root paths\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-git/go-git/compare/v5.18.0...v5.19.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-sql-driver/mysql` from 1.9.3 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/releases\"\u003egithub.com/go-sql-driver/mysql's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd Go 1.24 to the test matrix by \u003ca href=\"https://github.com/shogo82148\"\u003e\u003ccode\u003e@​shogo82148\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1681\"\u003ego-sql-driver/mysql#1681\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize for Go 1.22 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1695\"\u003ego-sql-driver/mysql#1695\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest stability improvement. by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1698\"\u003ego-sql-driver/mysql#1698\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esimplify collation tests by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1700\"\u003ego-sql-driver/mysql#1700\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix bigint unsigned null column scan to err type int64 by \u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eTransaction Commit/Rollback returns conn's cached error, if present by \u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd BenchmarkReceive10kRowsCompress by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1704\"\u003ego-sql-driver/mysql#1704\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eoptimize readPacket by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1705\"\u003ego-sql-driver/mysql#1705\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eMariaDB Metadata skipping and DEPRECATE_EOF by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimization: statements reuse previous column name by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1711\"\u003ego-sql-driver/mysql#1711\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate outdated MySQL internals documentation links by \u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix PING on compressed connections by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1721\"\u003ego-sql-driver/mysql#1721\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd DeepWiki badge by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1722\"\u003ego-sql-driver/mysql#1722\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate edwards25519 dependency to v1.1.1 by \u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure Dependabot for Go modules by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1755\"\u003ego-sql-driver/mysql#1755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump dominikh/staticcheck-action from 1.3.1 to 1.4.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 3 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1760\"\u003ego-sql-driver/mysql#1760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 5 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1757\"\u003ego-sql-driver/mysql#1757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix staticcheck error by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1761\"\u003ego-sql-driver/mysql#1761\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 4 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1758\"\u003ego-sql-driver/mysql#1758\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix getSystemVar buffer reuse by \u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConsolidate Dependabot update noise by grouping weekly dependency PRs by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1756\"\u003ego-sql-driver/mysql#1756\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCI: Update GitHub Actions Go matrix to 1.24–1.26 by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1763\"\u003ego-sql-driver/mysql#1763\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnhance interpolateParams to correctly handle placeholders by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1732\"\u003ego-sql-driver/mysql#1732\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1764\"\u003ego-sql-driver/mysql#1764\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erelease v1.10.0 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1765\"\u003ego-sql-driver/mysql#1765\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\"\u003ehttps://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/blob/master/CHANGELOG.md\"\u003egithub.com/go-sql-driver/mysql's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0 (2026-04-28)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eFix \u003ccode\u003egetSystemVar(\u0026quot;max_allowed_packet\u0026quot;)\u003c/code\u003e potentially returned wrong value. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\nThis affects only when \u003ccode\u003emaxAllowedPacket=0\u003c/code\u003e is set.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\nWhile older versions have reported CVEs, they do not affect go-mysql.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eUpdate Go versions to 1.24-1.26. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eEnhance interpolateParams to correctly handle placeholders. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\nThe question mark (?) within strings and comments will no longer be treated as a placeholder.\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/a065b60ab6d0c8e15468e7709c7f76acf4431647\"\u003e\u003ccode\u003ea065b60\u003c/code\u003e\u003c/a\u003e release v1.10.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1765\"\u003e#1765\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/09e4187be9c52bb13449a662d2a36e1e1789ac95\"\u003e\u003ccode\u003e09e4187\u003c/code\u003e\u003c/a\u003e modernize (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1764\"\u003e#1764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/6c44a9a0a1769e145dc91c08abe1aded2936ab63\"\u003e\u003ccode\u003e6c44a9a\u003c/code\u003e\u003c/a\u003e Enhance interpolateParams to correctly handle placeholders (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/688ce563a28598a9b733e6fc2b325050a4dcf261\"\u003e\u003ccode\u003e688ce56\u003c/code\u003e\u003c/a\u003e Update supported Go version to 1.24–1.26 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/118d07fdb51f9e523ebcdb00628812e49d7c1881\"\u003e\u003ccode\u003e118d07f\u003c/code\u003e\u003c/a\u003e Bump filippo.io/edwards25519 from 1.1.1 to 1.2.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/d6b2d3ee2cc8569b6778a7ae7ac2816e185f616b\"\u003e\u003ccode\u003ed6b2d3e\u003c/code\u003e\u003c/a\u003e Consolidate Dependabot update noise by grouping weekly dependency PRs (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1762\"\u003e#1762\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/037dfd872a7b6c88e63c53f32700dffed560120c\"\u003e\u003ccode\u003e037dfd8\u003c/code\u003e\u003c/a\u003e Fix getSystemVar buffer reuse (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/co...\n\n_Description has been truncated_","html_url":"https://github.com/flanksource/duty/pull/1977","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/flanksource%2Fduty/issues/1977","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1977/packages"},{"uuid":"4474750279","node_id":"PR_kwDODY5jaM7c7v7g","number":2958,"state":"closed","title":"chore(deps): bump the go-modules group across 1 directory with 17 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-05-21T03:19:24.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-19T05:46:20.000Z","updated_at":"2026-05-21T03:19:26.000Z","time_to_close":163984,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"go-modules","update_count":17,"packages":[{"name":"github.com/flanksource/commons","old_version":"1.51.3","new_version":"1.51.4","repository_url":"https://github.com/flanksource/commons"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatch","old_version":"1.56.2","new_version":"1.57.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/configservice","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.100.0","new_version":"1.101.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/elastic/go-elasticsearch/v8","old_version":"8.19.4","new_version":"8.19.6","repository_url":"https://github.com/elastic/go-elasticsearch"},{"name":"github.com/flanksource/clicky","old_version":"1.21.7","new_version":"1.21.9","repository_url":"https://github.com/flanksource/clicky"},{"name":"github.com/go-sql-driver/mysql","old_version":"1.9.3","new_version":"1.10.0","repository_url":"https://github.com/go-sql-driver/mysql"},{"name":"github.com/google/cel-go","old_version":"0.28.0","new_version":"0.28.1","repository_url":"https://github.com/google/cel-go"},{"name":"github.com/labstack/echo/v4","old_version":"4.15.1","new_version":"4.15.2","repository_url":"https://github.com/labstack/echo"},{"name":"github.com/microsoft/go-mssqldb","old_version":"1.9.8","new_version":"1.10.0","repository_url":"https://github.com/microsoft/go-mssqldb"},{"name":"github.com/onsi/ginkgo/v2","old_version":"2.28.2","new_version":"2.29.0","repository_url":"https://github.com/onsi/ginkgo"},{"name":"github.com/prometheus/alertmanager","old_version":"0.32.0","new_version":"0.32.1","repository_url":"https://github.com/prometheus/alertmanager"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"},{"name":"k8s.io/apimachinery","old_version":"0.36.0","new_version":"0.36.1","repository_url":"https://github.com/kubernetes/apimachinery"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-modules group with 15 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/flanksource/commons](https://github.com/flanksource/commons) | `1.51.3` | `1.51.4` |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.1` | `1.62.2` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://github.com/aws/aws-sdk-go-v2) | `1.56.2` | `1.57.0` |\n| [github.com/aws/aws-sdk-go-v2/service/configservice](https://github.com/aws/aws-sdk-go-v2) | `1.62.2` | `1.62.3` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.100.0` | `1.101.0` |\n| [github.com/elastic/go-elasticsearch/v8](https://github.com/elastic/go-elasticsearch) | `8.19.4` | `8.19.6` |\n| [github.com/flanksource/clicky](https://github.com/flanksource/clicky) | `1.21.7` | `1.21.9` |\n| [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) | `1.9.3` | `1.10.0` |\n| [github.com/google/cel-go](https://github.com/google/cel-go) | `0.28.0` | `0.28.1` |\n| [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.15.1` | `4.15.2` |\n| [github.com/microsoft/go-mssqldb](https://github.com/microsoft/go-mssqldb) | `1.9.8` | `1.10.0` |\n| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.28.2` | `2.29.0` |\n| [github.com/prometheus/alertmanager](https://github.com/prometheus/alertmanager) | `0.32.0` | `0.32.1` |\n| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.276.0` | `0.280.0` |\n| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.36.0` | `0.36.1` |\n\n\nUpdates `github.com/flanksource/commons` from 1.51.3 to 1.51.4\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/commons/releases\"\u003egithub.com/flanksource/commons's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.51.4\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.4\"\u003e1.51.4\u003c/a\u003e (2026-05-04)\u003c/h2\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/commons/commit/72c1bcf52807cc782a4cce7b368e24af1832b334\"\u003e\u003ccode\u003e72c1bcf\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.79 (\u003ca href=\"https://redirect.github.com/flanksource/commons/issues/314\"\u003e#314\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.4\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/cloudwatch` from 1.56.2 to 1.57.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7c25c211744bdcff47a7203a7a894b1241f9da50\"\u003e\u003ccode\u003e7c25c21\u003c/code\u003e\u003c/a\u003e Release 2024-06-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b374423feaf0b04f01c7624b10915871e589b8a1\"\u003e\u003ccode\u003eb374423\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/923f54ea6016e1c70ad45ba0854e7361a72c3ba6\"\u003e\u003ccode\u003e923f54e\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f3bdfcf190150f62a7a07a03bc32d9c58a68f2e\"\u003e\u003ccode\u003e5f3bdfc\u003c/code\u003e\u003c/a\u003e track changes for string_array endpoint parameters (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2699\"\u003e#2699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b4498c633741e24ff4930313610096601dc4036\"\u003e\u003ccode\u003e2b4498c\u003c/code\u003e\u003c/a\u003e Release 2024-06-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/332d372bb946f0d50cae58f9401b9c1244e4b818\"\u003e\u003ccode\u003e332d372\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9397b8d8c05eb1528910ba81881797e7c0e53d17\"\u003e\u003ccode\u003e9397b8d\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/674e1e4412ce44325902125c935ce124d0bfaf4f\"\u003e\u003ccode\u003e674e1e4\u003c/code\u003e\u003c/a\u003e Release 2024-06-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/406eeb4367bab3ac49b75fbd2d842186e961f4f0\"\u003e\u003ccode\u003e406eeb4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/17bd894f3c3842d21d5963bc23213397557c3105\"\u003e\u003ccode\u003e17bd894\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ssm/v1.56.2...service/s3/v1.57.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/configservice` from 1.62.2 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d8ed081e9bcc22e6c5eb63fb6bbacfa38d7bcce3\"\u003e\u003ccode\u003ed8ed081\u003c/code\u003e\u003c/a\u003e Release 2025-10-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a2c9cb47051246e43a65f78696b8189aaa48c871\"\u003e\u003ccode\u003ea2c9cb4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7af054b46fade69938d2682163c4abbbf126b9c7\"\u003e\u003ccode\u003e7af054b\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2e5ed49bd27c797319223fe6454411c6dc3f62cc\"\u003e\u003ccode\u003e2e5ed49\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f3a3b6c778eed688dc91940a6d9160e7445a218f\"\u003e\u003ccode\u003ef3a3b6c\u003c/code\u003e\u003c/a\u003e remove arbitrary response read timeout in kinesis GetRecords (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3221\"\u003e#3221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/56af15521102c665ba33e5512cd66068c7c32506\"\u003e\u003ccode\u003e56af155\u003c/code\u003e\u003c/a\u003e Release 2025-10-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b23832ac9b9505202125cf5c448c72cd333c819b\"\u003e\u003ccode\u003eb23832a\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/33ea965f3eb459c22ba41a8e5da55115da5686bc\"\u003e\u003ccode\u003e33ea965\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f70c7889fa7e09fba31a68c6dbef1e178bbb9964\"\u003e\u003ccode\u003ef70c788\u003c/code\u003e\u003c/a\u003e Release 2025-10-28\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f8aa1f373d60ee159a2aac412311edad2eaad752\"\u003e\u003ccode\u003ef8aa1f3\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/fsx/v1.62.2...service/fsx/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.100.0 to 1.101.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/84ddd08980744ac0f3bacfe7d2796c861671accc\"\u003e\u003ccode\u003e84ddd08\u003c/code\u003e\u003c/a\u003e Release 2026-05-06\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/23645b402c11575a32d1af93ec237f2f121dd285\"\u003e\u003ccode\u003e23645b4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/848eb597bd63cb770bcd11ee230f9dca68ce1ffe\"\u003e\u003ccode\u003e848eb59\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1d7b13420ed32f0809a5a4a35c630d19bfd0b6d4\"\u003e\u003ccode\u003e1d7b134\u003c/code\u003e\u003c/a\u003e Release 2026-05-05\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5bbbc97fcab2086757060561ccd1f34101ba7b57\"\u003e\u003ccode\u003e5bbbc97\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8dbb93618325675f55eb0c3eb0c7a766806dadbc\"\u003e\u003ccode\u003e8dbb936\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/369e6498c716c7e02ca7aef318ef311edd5efcbf\"\u003e\u003ccode\u003e369e649\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dc2d13fa6f1db25f1c6d804567e1ecfcdff4f040\"\u003e\u003ccode\u003edc2d13f\u003c/code\u003e\u003c/a\u003e Release 2026-05-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/da4bcffa913dc4ba46e1ce10a6268bf075547a8d\"\u003e\u003ccode\u003eda4bcff\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a8b1180254cba3e23aa6baece26783395e884d81\"\u003e\u003ccode\u003ea8b1180\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.100.0...service/s3/v1.101.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/elastic/go-elasticsearch/v8` from 8.19.4 to 8.19.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/elastic/go-elasticsearch/releases\"\u003egithub.com/elastic/go-elasticsearch/v8's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev8.19.6\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.5...v8.19.6\"\u003e8.19.6\u003c/a\u003e (2026-05-11)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e078f8ec\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev8.19.5\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.5\"\u003e8.19.5\u003c/a\u003e (2026-04-21)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e5615aed\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eesutil:\u003c/strong\u003e Add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003ef0ad701\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e Regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e13e5d5e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e9874577\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Map spec long to *int64 for esapi params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1391\"\u003e#1391\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/9a2424c77d0125cc4a915eacd5b6c293fcbe280c\"\u003e9a2424c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003efa81ccf\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/elastic/go-elasticsearch/blob/v8.19.6/CHANGELOG.md\"\u003egithub.com/elastic/go-elasticsearch/v8's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.5...v8.19.6\"\u003e8.19.6\u003c/a\u003e (2026-05-11)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e078f8ec\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.5\"\u003e8.19.5\u003c/a\u003e (2026-04-21)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e5615aed\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eesutil:\u003c/strong\u003e Add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003ef0ad701\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e Regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e13e5d5e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e9874577\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Map spec long to *int64 for esapi params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1391\"\u003e#1391\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/9a2424c77d0125cc4a915eacd5b6c293fcbe280c\"\u003e9a2424c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003efa81ccf\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/36df8bc2f994270fa8804f3f8d76eee484312c84\"\u003e\u003ccode\u003e36df8bc\u003c/code\u003e\u003c/a\u003e chore(8.19): release 8.19.6 (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1481\"\u003e#1481\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e\u003ccode\u003e078f8ec\u003c/code\u003e\u003c/a\u003e fix(client): remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/b467419b59035e4b08c71679ebe4493cbc2ff997\"\u003e\u003ccode\u003eb467419\u003c/code\u003e\u003c/a\u003e chore: bump version to 8.19.6-SNAPSHOT (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1457\"\u003e#1457\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/0349cffb1c4b495a8e3f0470bf7c8e7d44264769\"\u003e\u003ccode\u003e0349cff\u003c/code\u003e\u003c/a\u003e chore(8.19): release 8.19.5 (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1395\"\u003e#1395\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e\u003ccode\u003e5615aed\u003c/code\u003e\u003c/a\u003e feat(client): add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003e\u003ccode\u003ef0ad701\u003c/code\u003e\u003c/a\u003e feat(esutil): add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e\u003ccode\u003e13e5d5e\u003c/code\u003e\u003c/a\u003e fix(esapi): regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003e\u003ccode\u003efa81ccf\u003c/code\u003e\u003c/a\u003e fix(gen): support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e\u003ccode\u003e9874577\u003c/code\u003e\u003c/a\u003e fix(gen): accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/30b75857dfc00e975c77a63b408d4df0f754e937\"\u003e\u003ccode\u003e30b7585\u003c/code\u003e\u003c/a\u003e [Backport 8.19] fix(gen): sort required URL params deterministically (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1408\"\u003e#1408\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/clicky` from 1.21.7 to 1.21.9\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/releases\"\u003egithub.com/flanksource/clicky's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.21.9\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.21.8\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/blob/main/CHANGELOG.md\"\u003egithub.com/flanksource/clicky's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(task): Add stderr gating to prevent corruption during interactive render\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/b059cf91dda7637600922340575829cccfcb89ef\"\u003e\u003ccode\u003eb059cf9\u003c/code\u003e\u003c/a\u003e chore(release): 1.21.9 [skip ci]\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003e\u003ccode\u003ef85ce24\u003c/code\u003e\u003c/a\u003e refactor(api,mcp,rpc): extract helper functions and improve code organization\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e\u003ccode\u003e04f17df\u003c/code\u003e\u003c/a\u003e build(makefile): add git commit and build date to binary via ldflags\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e\u003ccode\u003e06e98ad\u003c/code\u003e\u003c/a\u003e feat(api,flags): add unified diff rendering and grouped flag help output\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003e\u003ccode\u003efc8746a\u003c/code\u003e\u003c/a\u003e refactor(api): simplify switch statement in parseJavaFrame\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e\u003ccode\u003e6b74c36\u003c/code\u003e\u003c/a\u003e chore(deps): clean up unused dependencies in go.sum\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e\u003ccode\u003e9345367\u003c/code\u003e\u003c/a\u003e feat(mcp): add SSE transport, tools command, and multi-client install support\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e\u003ccode\u003e6beea3b\u003c/code\u003e\u003c/a\u003e feat(formatters): add StackTrace rendering support to HTML formatters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e\u003ccode\u003e3e6e880\u003c/code\u003e\u003c/a\u003e feat(api): Add structured HTML rendering for stack traces with syntax highlig...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e\u003ccode\u003e9cb5cb9\u003c/code\u003e\u003c/a\u003e feat(mcp): Add fluent Builder API and discover-tools MCP tool\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.9\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-sql-driver/mysql` from 1.9.3 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/releases\"\u003egithub.com/go-sql-driver/mysql's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd Go 1.24 to the test matrix by \u003ca href=\"https://github.com/shogo82148\"\u003e\u003ccode\u003e@​shogo82148\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1681\"\u003ego-sql-driver/mysql#1681\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize for Go 1.22 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1695\"\u003ego-sql-driver/mysql#1695\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest stability improvement. by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1698\"\u003ego-sql-driver/mysql#1698\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esimplify collation tests by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1700\"\u003ego-sql-driver/mysql#1700\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix bigint unsigned null column scan to err type int64 by \u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eTransaction Commit/Rollback returns conn's cached error, if present by \u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd BenchmarkReceive10kRowsCompress by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1704\"\u003ego-sql-driver/mysql#1704\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eoptimize readPacket by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1705\"\u003ego-sql-driver/mysql#1705\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eMariaDB Metadata skipping and DEPRECATE_EOF by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimization: statements reuse previous column name by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1711\"\u003ego-sql-driver/mysql#1711\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate outdated MySQL internals documentation links by \u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix PING on compressed connections by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1721\"\u003ego-sql-driver/mysql#1721\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd DeepWiki badge by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1722\"\u003ego-sql-driver/mysql#1722\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate edwards25519 dependency to v1.1.1 by \u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure Dependabot for Go modules by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1755\"\u003ego-sql-driver/mysql#1755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump dominikh/staticcheck-action from 1.3.1 to 1.4.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 3 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1760\"\u003ego-sql-driver/mysql#1760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 5 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1757\"\u003ego-sql-driver/mysql#1757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix staticcheck error by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1761\"\u003ego-sql-driver/mysql#1761\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 4 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1758\"\u003ego-sql-driver/mysql#1758\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix getSystemVar buffer reuse by \u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConsolidate Dependabot update noise by grouping weekly dependency PRs by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1756\"\u003ego-sql-driver/mysql#1756\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCI: Update GitHub Actions Go matrix to 1.24–1.26 by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1763\"\u003ego-sql-driver/mysql#1763\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnhance interpolateParams to correctly handle placeholders by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1732\"\u003ego-sql-driver/mysql#1732\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1764\"\u003ego-sql-driver/mysql#1764\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erelease v1.10.0 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1765\"\u003ego-sql-driver/mysql#1765\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\"\u003ehttps://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/blob/master/CHANGELOG.md\"\u003egithub.com/go-sql-driver/mysql's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0 (2026-04-28)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eFix \u003ccode\u003egetSystemVar(\u0026quot;max_allowed_packet\u0026quot;)\u003c/code\u003e potentially returned wrong value. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\nThis affects only when \u003ccode\u003emaxAllowedPacket=0\u003c/code\u003e is set.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\nWhile older versions have reported CVEs, they do not affect go-mysql.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eUpdate Go versions to 1.24-1.26. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eEnhance interpolateParams to correctly handle placeholders. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\nThe question mark (?) within strings and comments will no longer be treated as a placeholder.\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/a065b60ab6d0c8e15468e7709c7f76acf4431647\"\u003e\u003ccode\u003ea065b60\u003c/code\u003e\u003c/a\u003e release v1.10.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1765\"\u003e#1765\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/09e4187be9c52bb13449a662d2a36e1e1789ac95\"\u003e\u003ccode\u003e09e4187\u003c/code\u003e\u003c/a\u003e modernize (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1764\"\u003e#1764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/6c44a9a0a1769e145dc91c08abe1aded2936ab63\"\u003e\u003ccode\u003e6c44a9a\u003c/code\u003e\u003c/a\u003e Enhance interpolateParams to correctly handle placeholders (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/688ce563a28598a9b733e6fc2b325050a4dcf261\"\u003e\u003ccode\u003e688ce56\u003c/code\u003e\u003c/a\u003e Update supported Go version to 1.24–1.26 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/118d07fdb51f9e523ebcdb00628812e49d7c1881\"\u003e\u003ccode\u003e118d07f\u003c/code\u003e\u003c/a\u003e Bump filippo.io/edwards25519 from 1.1.1 to 1.2.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/d6b2d3ee2cc8569b6778a7ae7ac2816e185f616b\"\u003e\u003ccode\u003ed6b2d3e\u003c/code\u003e\u003c/a\u003e Consolidate Dependabot update noise by grouping weekly dependency PRs (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1762\"\u003e#1762\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/037dfd872a7b6c88e63c53f32700dffed560120c\"\u003e\u003ccode\u003e037dfd8\u003c/code\u003e\u003c/a\u003e Fix getSystemVar buffer reuse (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/900f33035615559b6188e4fa98d57ae20af2b73b\"\u003e\u003ccode\u003e900f330\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 4 to 6 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1758\"\u003e#1758\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/ab9e3804c604d6a60b0d3136f4654f81f184757d\"\u003e\u003ccode\u003eab9e380\u003c/code\u003e\u003c/a\u003e fix staticcheck error (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1761\"\u003e#1761\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/f298c66742396b6921732744b9bb075c7faaca81\"\u003e\u003ccode\u003ef298c66\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5 to 6 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1757\"\u003e#1757\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.3...v1.10.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/google/cel-go` from 0.28.0 to 0.28.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/cel-go/releases\"\u003egithub.com/google/cel-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eRelease v0.28.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: deleted \u003ccode\u003eIntToDuration\u003c/code\u003e overload by \u003ca href=\"https://github.com/alexsnaps\"\u003e\u003ccode\u003e@​alexsnaps\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1300\"\u003egoogle/cel-go#1300\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSupport shorthand types in env yaml and REPL  by \u003ca href=\"https://github.com/jnthntatum\"\u003e\u003ccode\u003e@​jnthntatum\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1301\"\u003egoogle/cel-go#1301\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePreserve operation interrupted in ContextEval error by \u003ca href=\"https://github.com/dims\"\u003e\u003ccode\u003e@​dims\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1303\"\u003egoogle/cel-go#1303\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse shorthand type specifiers in env yaml files by \u003ca href=\"https://github.com/jnthntatum\"\u003e\u003ccode\u003e@​jnthntatum\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1305\"\u003egoogle/cel-go#1305\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCost estimation and tracking for strings extension by \u003ca href=\"https://github.com/TristonianJones\"\u003e\u003ccode\u003e@​TristonianJones\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1307\"\u003egoogle/cel-go#1307\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate repl type string for doubles by \u003ca href=\"https://github.com/TristonianJones\"\u003e\u003ccode\u003e@​TristonianJones\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1308\"\u003egoogle/cel-go#1308\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/alexsnaps\"\u003e\u003ccode\u003e@​alexsnaps\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1300\"\u003egoogle/cel-go#1300\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dims\"\u003e\u003ccode\u003e@​dims\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1303\"\u003egoogle/cel-go#1303\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/google/cel-go/compare/v0.28.0...v0.28.1\"\u003ehttps://github.com/google/cel-go/compare/v0.28.0...v0.28.1\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/a82c68b770ac0cb67f7b4f76166827c14b145eb8\"\u003e\u003ccode\u003ea82c68b\u003c/code\u003e\u003c/a\u003e Update repl type assessment for doubles (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1308\"\u003e#1308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/c9d70486a872fbfaf9c4cb383a005de56e499368\"\u003e\u003ccode\u003ec9d7048\u003c/code\u003e\u003c/a\u003e Cost estimation and tracking for strings extension (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1307\"\u003e#1307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/646cdc1728643aec9499e3a00236ef1007a5d3fa\"\u003e\u003ccode\u003e646cdc1\u003c/code\u003e\u003c/a\u003e Use shorthand type specifiers in env yaml files (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1305\"\u003e#1305\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/7263793b453228e8a47ca742afd124b3eaa8fc68\"\u003e\u003ccode\u003e7263793\u003c/code\u003e\u003c/a\u003e Preserve operation interrupted in ContextEval error (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1303\"\u003e#1303\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/b826162b7b6ac7ae048fbf23b6123ab5c99da11b\"\u003e\u003ccode\u003eb826162\u003c/code\u003e\u003c/a\u003e Support shorthand types in env yaml and REPL  (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1301\"\u003e#1301\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/339269b44af7c3cd477b55530e9cc1fe534c7f09\"\u003e\u003ccode\u003e339269b\u003c/code\u003e\u003c/a\u003e fix: deleted \u003ccode\u003eIntToDuration\u003c/code\u003e overload (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1300\"\u003e#1300\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/google/cel-go/compare/v0.28.0...v0.28.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/labstack/echo/v4` from 4.15.1 to 4.15.2\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/labstack/echo/blob/v4.15.2/CHANGELOG.md\"\u003egithub.com/labstack/echo/v4's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.15.2 - 2026-05-01\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eSecurity\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eContext.Scheme()\u003c/code\u003e should validate values taken from header by \u003ca href=\"https://github.com/aldas\"\u003e\u003ccode\u003e@​aldas\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/labstack/echo/pull/2962\"\u003elabstack/echo#2962\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eThanks to \u003ca href=\"https://github.com/shblue21\"\u003e\u003ccode\u003e@​shblue21\u003c/code\u003e\u003c/a\u003e for reporting this \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2952\"\u003eissue\u003c/a\u003e.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/25685e6f5f7b0683105d1386db46ae48eb3de028\"\u003e\u003ccode\u003e25685e6\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2963\"\u003e#2963\u003c/a\u003e from aldas/v4_changelog_4_15_2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/f9d76893c671df4da9792fc5c122eba01d43c63b\"\u003e\u003ccode\u003ef9d7689\u003c/code\u003e\u003c/a\u003e Changelog for v4.15.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/37fff28f72264196ad28761316fc7d96fd1c502d\"\u003e\u003ccode\u003e37fff28\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2962\"\u003e#2962\u003c/a\u003e from aldas/v4_valid_proto\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/ca4f38a474302aabee93c66bdd0052359882e181\"\u003e\u003ccode\u003eca4f38a\u003c/code\u003e\u003c/a\u003e Context.Scheme should validate values taken from header\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/2e527a70a73b3a93b8346384f607cdc502d3d200\"\u003e\u003ccode\u003e2e527a7\u003c/code\u003e\u003c/a\u003e Update CI, update deps\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/labstack/echo/compare/v4.15.1...v4.15.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/microsoft/go-mssqldb` from 1.9.8 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/go-mssqldb/releases\"\u003egithub.com/microsoft/go-mssqldb's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003e1.10.0\u003c/a\u003e (2026-04-25)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003eb55beeb\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003eea77c2e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd NewConnectorWithProcessQueryText for mssql driver compatibility (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/341\"\u003e#341\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/2be611f8a7b2ec5125a835e1d6efb8cfb8979a86\"\u003e2be611f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003ec10fa99\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eallow named pipe protocol support for ARM64 Windows (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/232\"\u003e#232\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/a82c05866462e56b43d42e4523576aa363a3871a\"\u003ea82c058\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003econfigure release-please with PAT and correct component mapping (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/349\"\u003e#349\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/23bac055cea5040891be595e34869b19378974ad\"\u003e23bac05\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edetect server-aborted transactions to prevent silent auto-commit (XACT_ABORT) (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/370\"\u003e#370\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e586ea53\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e9937cfe\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ehandle COLINFO (0xA5) and TABNAME (0xA4) TDS tokens returned by tables with triggers (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/343\"\u003e#343\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/7c905adac4e8e00856c3d20503902f0160f5853d\"\u003e7c905ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eimplement driver.DriverContext interface (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/365\"\u003e#365\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/1b610a0b2905dc472968842e7a8f252acdb94272\"\u003e1b610a0\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/236\"\u003e#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emake readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e65e137f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereplace broken AppVeyor badge with GitHub Actions badge (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/334\"\u003e#334\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/d3429f5bb895bdb884ae39a43d87bb384aa5353a\"\u003ed3429f5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereturn interface{} scanType for sql_variant instead of nil (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/362\"\u003e#362\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/296a83a3e25fc23add1dbb243df1a716f431de66\"\u003e296a83a\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/186\"\u003e#186\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esanitize credentials from connection string parsing errors (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/319\"\u003e#319\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/93f5ef0dd5f02c9094a22d0052fb95cd553ba971\"\u003e93f5ef0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esurface server errors from Rows.Close() during token drain (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/361\"\u003e#361\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea69792c6da6d049eaec4e672a95d55bafef48f5\"\u003eea69792\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/244\"\u003e#244\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/go-mssqldb/blob/main/CHANGELOG.md\"\u003egithub.com/microsoft/go-mssqldb's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003e1.10.0\u003c/a\u003e (2026-04-25)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003eb55beeb\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003eea77c2e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd NewConnectorWithProcessQueryText for mssql driver compatibility (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/341\"\u003e#341\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/2be611f8a7b2ec5125a835e1d6efb8cfb8979a86\"\u003e2be611f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003ec10fa99\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eallow named pipe protocol support for ARM64 Windows (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/232\"\u003e#232\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/a82c05866462e56b43d42e4523576aa363a3871a\"\u003ea82c058\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003econfigure release-please with PAT and correct component mapping (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/349\"\u003e#349\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/23bac055cea5040891be595e34869b19378974ad\"\u003e23bac05\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edetect server-aborted transactions to prevent silent auto-commit (XACT_ABORT) (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/370\"\u003e#370\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e586ea53\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e9937cfe\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ehandle COLINFO (0xA5) and TABNAME (0xA4) TDS tokens returned by tables with triggers (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/343\"\u003e#343\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/7c905adac4e8e00856c3d20503902f0160f5853d\"\u003e7c905ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eimplement driver.DriverContext interface (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/365\"\u003e#365\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/1b610a0b2905dc472968842e7a8f252acdb94272\"\u003e1b610a0\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/236\"\u003e#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emake readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e65e137f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereplace broken AppVeyor badge with GitHub Actions badge (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/334\"\u003e#334\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/d3429f5bb895bdb884ae39a43d87bb384aa5353a\"\u003ed3429f5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereturn interface{} scanType for sql_variant instead of nil (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/362\"\u003e#362\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/296a83a3e25fc23add1dbb243df1a716f431de66\"\u003e296a83a\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/186\"\u003e#186\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esanitize credentials from connection string parsing errors (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/319\"\u003e#319\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/93f5ef0dd5f02c9094a22d0052fb95cd553ba971\"\u003e93f5ef0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esurface server errors from Rows.Close() during token drain (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/361\"\u003e#361\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea69792c6da6d049eaec4e672a95d55bafef48f5\"\u003eea69792\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/244\"\u003e#244\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.6\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded new \u003ccode\u003eserverCertificate\u003c/code\u003e connection parameter for byte-for-byte certificate validation, matching Microsoft.Data.SqlClient behavior. This parameter skips hostname validation, chain validation, and expiry checks, only verifying that the server's certificate exactly matches the provided file. This is useful when the server's hostname doesn't match the certificate CN/SAN. (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/304\"\u003e#304\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eThe existing \u003ccode\u003ecertificate\u003c/code\u003e parameter maintains backward compatibility with traditional X.509 chain validation including hostname checks, expiry validation, and chain-of-trust verification.\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eserverCertificate\u003c/code\u003e cannot be used with \u003ccode\u003ecertificate\u003c/code\u003e or \u003ccode\u003ehostnameincertificate\u003c/code\u003e parameters to prevent conflicting validation methods.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.3\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix parsing of ADO connection strings with double-quoted values containing semicolons (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/282\"\u003e#282\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.2\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix race condition in message queue query model (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/277\"\u003e#277\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.1\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix bulk insert failure with datetime values near midnight due to day overflow (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/271\"\u003e#271\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/f92e6f0abf7607819f70b66191e6732c02c78f57\"\u003e\u003ccode\u003ef92e6f0\u003c/code\u003e\u003c/a\u003e chore(main): release 1.10.0 (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/351\"\u003e#351\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/03094d02c4fd74c8a95e6feb36ec5d3d8b93f592\"\u003e\u003ccode\u003e03094d0\u003c/code\u003e\u003c/a\u003e ci: add least-privilege permissions and pin actions to SHA (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/354\"\u003e#354\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e\u003ccode\u003e65e137f\u003c/code\u003e\u003c/a\u003e fix: make readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003e\u003ccode\u003ec10fa99\u003c/code\u003e\u003c/a\u003e feat: add nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e\u003ccode\u003e9937cfe\u003c/code\u003e\u003c/a\u003e fix: expose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/429c61d44f20e08cc2a5ff1bbd2a33cfe65b1b15\"\u003e\u003ccode\u003e429c61d\u003c/code\u003e\u003c/a\u003e chore(deps): bump googleapis/release-please-action from 4.4.1 to 5.0.0 in the...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003e\u003ccode\u003eea77c2e\u003c/code\u003e\u003c/a\u003e feat: add FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/04d26c2da5fe6aebf1f04727c09a14a8cd36af56\"\u003e\u003ccode\u003e04d26c2\u003c/code\u003e\u003c/a\u003e ci: add devcontainer build validation workflow (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/355\"\u003e#355\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003e\u003ccode\u003eb55beeb\u003c/code\u003e\u003c/a\u003e feat: add devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e\u003ccode\u003e586ea53\u003c/code\u003e\u003c/a\u003e fix: detect server-aborted transactions to prevent silent auto-commit (XACT_A...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/onsi/ginkgo/v2` from 2.28.2 to 2.29.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/ginkgo/releases\"\u003egithub.com/onsi/ginkgo/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.29.0\u003c/h2\u003e\n\u003ch2\u003e2.29.0\u003c/h2\u003e\n\u003cp\u003e\u003ccode\u003eGinkgoHelperGo\u003c/code\u003e makes it easier to write test helpers that need to run in goroutines.  Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.\u003c/p\u003e\n\u003cp\u003e\u003ccode\u003eginkgo outline\u003c/code\u003e now includes entries defined in \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e\u003c/p\u003e\n\u003ch2\u003ev2.28.3\u003c/h2\u003e\n\u003ch2\u003e2.28.3\u003c/h2\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cp\u003eBump all dependencies\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md\"\u003egithub.com/onsi/ginkgo/v2's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.29.0\u003c/h2\u003e\n\u003cp\u003e\u003ccode\u003eGinkgoHelperGo\u003c/code\u003e makes it easier to write test helpers that need to run in goroutines.  Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.\u003c/p\u003e\n\u003cp\u003e\u003ccode\u003eginkgo outline\u003c/code\u003e now includes entries defined in \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e\u003c/p\u003e\n\u003ch2\u003e2.28.3\u003c/h2\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cp\u003eBump all dependencies\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/04b5bcbe4eee911a1baf506eda1e7e811c978937\"\u003e\u003ccode\u003e04b5bcb\u003c/code\u003e\u003c/a\u003e v2.29.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/124232a4531c77a7f31a036e0150e06fa78b2af8\"\u003e\u003ccode\u003e124232a\u003c/code\u003e\u003c/a\u003e docs: GinkgoHelperGo\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/ad9cee80bdfda573e94f1b05f2bd4afa1a2fe815\"\u003e\u003ccode\u003ead9cee8\u003c/code\u003e\u003c/a\u003e feat: GinkgoHelperGo, with integration tests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/9e56a0a2a090eb83af696381161bdb996c69bcac\"\u003e\u003ccode\u003e9e56a0a\u003c/code\u003e\u003c/a\u003e chore: refactor devcontainer for better maintenance\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/3d235a96ac0...\n\n_Description has been truncated_","html_url":"https://github.com/flanksource/canary-checker/pull/2958","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/flanksource%2Fcanary-checker/issues/2958","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2958/packages"},{"uuid":"4474597000","node_id":"PR_kwDORt7LTs7c7Q0K","number":76,"state":"open","title":"chore(deps): bump cloud.google.com/go/storage from 1.56.0 to 1.62.2 in /backend","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-19T05:12:28.000Z","updated_at":"2026-05-19T05:12:29.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.56.0","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":"/backend","ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.56.0 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.59.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.59.2...storage/v1.59.3\"\u003ev1.59.3\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ehandle MRD hang corner case (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14509\"\u003e#14509\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1ca3b6f0\"\u003e1ca3b6f0\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/compute/v1.56.0...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.56.0\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/MrStevenRAdams/marketmate-platform/pull/76","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrStevenRAdams%2Fmarketmate-platform/issues/76","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/76/packages"}],"issue_packages":[{"old_version":"1.62.2","new_version":"1.62.3","update_type":"patch","path":null,"pr_created_at":"2026-06-15T19:58:33.000Z","version_change":"1.62.2 → 1.62.3","issue":{"uuid":"4668446613","node_id":"PR_kwDOQSoXl87mtaqu","number":238,"state":"closed","title":"deps(deps): Bump cloud.google.com/go/storage from 1.62.2 to 1.62.3","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":"2026-06-15T19:59:52.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-15T19:58:33.000Z","updated_at":"2026-06-15T20:05:17.000Z","time_to_close":79,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps(deps): Bump","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.2 to 1.62.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.2\u0026new-version=1.62.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/higakikeita/tfdrift-falco/pull/238","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/higakikeita%2Ftfdrift-falco/issues/238","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/238/packages"}},{"old_version":"1.62.2","new_version":"1.62.3","update_type":"patch","path":null,"pr_created_at":"2026-06-14T14:23:01.000Z","version_change":"1.62.2 → 1.62.3","issue":{"uuid":"4659410131","node_id":"PR_kwDOCxT7Ss7mQGIr","number":718,"state":"closed","title":"build(deps): bump the common-golang-dependencies group across 1 directory with 10 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-16T01:13:17.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-14T14:23:01.000Z","updated_at":"2026-06-16T01:13:19.000Z","time_to_close":125416,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps): bump","group_name":"common-golang-dependencies","update_count":10,"packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/Azure/azure-sdk-for-go/sdk/azcore","old_version":"1.21.1","new_version":"1.22.0","repository_url":"https://github.com/Azure/azure-sdk-for-go"},{"name":"golang.org/x/crypto","old_version":"0.52.0","new_version":"0.53.0","repository_url":"https://github.com/golang/crypto"},{"name":"golang.org/x/mod","old_version":"0.36.0","new_version":"0.37.0","repository_url":"https://github.com/golang/mod"},{"name":"golang.org/x/net","old_version":"0.55.0","new_version":"0.56.0","repository_url":"https://github.com/golang/net"},{"name":"google.golang.org/api","old_version":"0.282.0","new_version":"0.284.0","repository_url":"https://github.com/googleapis/google-api-go-client"}],"path":null,"ecosystem":"go"},"body":"Bumps the common-golang-dependencies group with 6 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.2` | `1.62.3` |\n| [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://github.com/Azure/azure-sdk-for-go) | `1.21.1` | `1.22.0` |\n| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.52.0` | `0.53.0` |\n| [golang.org/x/mod](https://github.com/golang/mod) | `0.36.0` | `0.37.0` |\n| [golang.org/x/net](https://github.com/golang/net) | `0.55.0` | `0.56.0` |\n| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.282.0` | `0.284.0` |\n\n\nUpdates `cloud.google.com/go/storage` from 1.62.2 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/Azure/azure-sdk-for-go/sdk/azcore` from 1.21.1 to 1.22.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/Azure/azure-sdk-for-go/releases\"\u003egithub.com/Azure/azure-sdk-for-go/sdk/azcore's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003esdk/azcore/v1.22.0\u003c/h2\u003e\n\u003ch2\u003e1.22.0 (2026-06-04)\u003c/h2\u003e\n\u003ch3\u003eFeatures Added\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded type \u003ccode\u003edatetime.RFC7231\u003c/code\u003e for date/time values in RFC 1123 format with a fixed GMT timezone.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther Changes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpgraded dependencies.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/a19f613b0e6ecb3d5d71a22980a82d61e7f9fda5\"\u003e\u003ccode\u003ea19f613\u003c/code\u003e\u003c/a\u003e Prep azcore@v1.22.0 for release (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26926\"\u003e#26926\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/5803c0ee4e3519507cc5cd53cee73ffb6eeb2db8\"\u003e\u003ccode\u003e5803c0e\u003c/code\u003e\u003c/a\u003e Increment package version after release of storage/azblob (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26935\"\u003e#26935\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26943\"\u003e#26943\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/9a979ffe0fca4489633b587ab12464c3d66d6988\"\u003e\u003ccode\u003e9a979ff\u003c/code\u003e\u003c/a\u003e [Automation] Regenerate SDK based on typespec-go branch main 【batch 6】 (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26939\"\u003e#26939\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/711094d6e2aa4b4430f9012b95fe30bab5236250\"\u003e\u003ccode\u003e711094d\u003c/code\u003e\u003c/a\u003e eng/tools/generator: release v0.4.14 (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26934\"\u003e#26934\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/20bd67791ff45e58f876a6ed6a903df75c8b4f38\"\u003e\u003ccode\u003e20bd677\u003c/code\u003e\u003c/a\u003e Deprecate Change Analysis SDK (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26913\"\u003e#26913\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/92a31ec5d094c6d6572317a33c913382b4d2e597\"\u003e\u003ccode\u003e92a31ec\u003c/code\u003e\u003c/a\u003e [Automation] Regenerate SDK based on typespec-go branch main 【batch 5】 (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26932\"\u003e#26932\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/768459d1788ea7c9649383053dee10235fd5e405\"\u003e\u003ccode\u003e768459d\u003c/code\u003e\u003c/a\u003e azcertificates: live recording for PlatformManaged + review fixes (follow-up ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/e845f721e72a18d094f0e07969dbea9bc374f22b\"\u003e\u003ccode\u003ee845f72\u003c/code\u003e\u003c/a\u003e Update codeowners (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/26918\"\u003e#26918\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/118bb357a68bb51960b061f0a911d4f8f4cef2bb\"\u003e\u003ccode\u003e118bb35\u003c/code\u003e\u003c/a\u003e eng/tools/internal/exports: handle untyped const with selector expr value (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/2\"\u003e#2\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/2b3767bcef06a057a3139784d5ee94c305dc4790\"\u003e\u003ccode\u003e2b3767b\u003c/code\u003e\u003c/a\u003e Configurations:  'specification/containerservice/resource-manager/Microsoft.C...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/Azure/azure-sdk-for-go/compare/sdk/azcore/v1.21.1...sdk/azcore/v1.22.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/crypto` from 0.52.0 to 0.53.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/45460e079737ecb64f30d79d3d6fc2914494fa66\"\u003e\u003ccode\u003e45460e0\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/d37c95e27de65576f42440cdfbc261d810506841\"\u003e\u003ccode\u003ed37c95e\u003c/code\u003e\u003c/a\u003e pkcs12: limit PBKDF iteration count to prevent CPU exhaustion\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/e2ffffe738fb46531cd8924bab497bdc77d9ecc8\"\u003e\u003ccode\u003ee2ffffe\u003c/code\u003e\u003c/a\u003e ssh: reject incomplete gssapi-with-mic configurations\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/60e158ad30c226555794539d96f0f104f43395f7\"\u003e\u003ccode\u003e60e158a\u003c/code\u003e\u003c/a\u003e ssh/test: isolate CLI tests from user SSH config and agent\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/1b77d23dc8afb26a494e331a3c637b6de88398d2\"\u003e\u003ccode\u003e1b77d23\u003c/code\u003e\u003c/a\u003e ssh/knownhosts: reject lines with multiple or unknown markers\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/3872a2bc69f464352dea49c2856955ef7c5d5851\"\u003e\u003ccode\u003e3872a2b\u003c/code\u003e\u003c/a\u003e ssh/knownhosts: verify declared key type matches decoded key\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/9f72eccdf6fa09a7c68448a7fdc333dd2deb7d9d\"\u003e\u003ccode\u003e9f72ecc\u003c/code\u003e\u003c/a\u003e ssh/knownhosts: treat only ASCII space and tab as whitespace\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/8f405a4109d7ce87a44f89185bdc385914ce5c13\"\u003e\u003ccode\u003e8f405a4\u003c/code\u003e\u003c/a\u003e ssh: validate ECDSA curve matches expected algorithm\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/bb41b3dbe630c21c78e3aeb0ebdd8d06a3a34fcf\"\u003e\u003ccode\u003ebb41b3d\u003c/code\u003e\u003c/a\u003e ssh: improve DH GEX group selection using PreferredBits\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/e04e7219970912a40f80c4b13029416fdf960eeb\"\u003e\u003ccode\u003ee04e721\u003c/code\u003e\u003c/a\u003e ssh/agent: validate ed25519 private key length in Add\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/crypto/compare/v0.52.0...v0.53.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/mod` from 0.36.0 to 0.37.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/mod/commit/deb1dfcdb7c7fd98fb5afddc3e95dd36d5880874\"\u003e\u003ccode\u003edeb1dfc\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/mod/commit/087f6515dd3ba3e8b06918fa425ffe7732321a7a\"\u003e\u003ccode\u003e087f651\u003c/code\u003e\u003c/a\u003e modfile: use slices.Backward\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/mod/commit/343ee60345a1f2ff0692be9dd068c0778dba985c\"\u003e\u003ccode\u003e343ee60\u003c/code\u003e\u003c/a\u003e x/mod: allow for aggressively conslidating requires\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/mod/compare/v0.36.0...v0.37.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/net` from 0.55.0 to 0.56.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/9e7fdbfadb32b0cc7524100014c5cf9b6adc7729\"\u003e\u003ccode\u003e9e7fdbf\u003c/code\u003e\u003c/a\u003e internal/http3: fix wrong argument being given when validating header value\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/b686e5f3573e5f55120d664fc283ed7e80c1af3c\"\u003e\u003ccode\u003eb686e5f\u003c/code\u003e\u003c/a\u003e internal/http3: add gzip support to transport\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/8a348850ed6818306667722af2b42a6fc63473e0\"\u003e\u003ccode\u003e8a34885\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/72eaf98743302f6e0ad10883163dfc46dc8e8183\"\u003e\u003ccode\u003e72eaf98\u003c/code\u003e\u003c/a\u003e dns/dnsmessage: correctly validate SVCB record parameter order\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/82e7868a02167540748b74780b0bf825985256f7\"\u003e\u003ccode\u003e82e7868\u003c/code\u003e\u003c/a\u003e dns/dnsmessage: avoid panic when parsing SVCB record with truncated data\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/b64f1fa4c615965246e5b9e5c9d614916fa8967d\"\u003e\u003ccode\u003eb64f1fa\u003c/code\u003e\u003c/a\u003e internal/http3: add server support for \u0026quot;Trailer:\u0026quot; magic prefix\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/2707ee21efea70599446dd35979b1d1aedf44ada\"\u003e\u003ccode\u003e2707ee2\u003c/code\u003e\u003c/a\u003e internal/http3: implement HTTP/3 clientConn methods\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/31358cc259a764905194e3d6c597375b0ff366c1\"\u003e\u003ccode\u003e31358cc\u003c/code\u003e\u003c/a\u003e internal/http3: snapshot response headers at WriteHeader time\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/8ecbaa95fea823c19fa74c5c3b53e0bccd473828\"\u003e\u003ccode\u003e8ecbaa9\u003c/code\u003e\u003c/a\u003e html: don't adjust xml:base\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/8ae811abe5c2daa55c68d51a101af1c5751a4d55\"\u003e\u003ccode\u003e8ae811a\u003c/code\u003e\u003c/a\u003e html: properly handle end script tag in fragment mode\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/net/compare/v0.55.0...v0.56.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/sync` from 0.20.0 to 0.21.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/5071ed6a9f1617117556b66384f765c934de3698\"\u003e\u003ccode\u003e5071ed6\u003c/code\u003e\u003c/a\u003e all: fix some comments to improve readability\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/sync/compare/v0.20.0...v0.21.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/sys` from 0.45.0 to 0.46.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sys/commit/d58dcfa8a74514c0ef0fc401259156c5e2fc9ff5\"\u003e\u003ccode\u003ed58dcfa\u003c/code\u003e\u003c/a\u003e unix: add GPIO constants and structs\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/sys/compare/v0.45.0...v0.46.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/term` from 0.43.0 to 0.44.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/term/commit/3b43943a9e7de876a5d5e1f5e7da7cdeae0f542a\"\u003e\u003ccode\u003e3b43943\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/term/compare/v0.43.0...v0.44.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `golang.org/x/text` from 0.37.0 to 0.38.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/text/commit/f4bb6328041b090f85b93014bd369edfcd24bdef\"\u003e\u003ccode\u003ef4bb632\u003c/code\u003e\u003c/a\u003e go.mod: update golang.org/x dependencies\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/golang/text/compare/v0.37.0...v0.38.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/api` from 0.282.0 to 0.284.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/releases\"\u003egoogle.golang.org/api's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.284.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.283.0...v0.284.0\"\u003e0.284.0\u003c/a\u003e (2026-06-09)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3613\"\u003e#3613\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/5f021536107adde3063487a75aa9f46078490191\"\u003e5f02153\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3616\"\u003e#3616\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/25b429a5431a77dd95eb00466661c1447eab6d16\"\u003e25b429a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3617\"\u003e#3617\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/1ef362535b2f2f3afbc1408adbf6d3b69e58ad26\"\u003e1ef3625\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.283.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.282.0...v0.283.0\"\u003e0.283.0\u003c/a\u003e (2026-06-01)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3609\"\u003e#3609\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ed84bb800c56d3f7fee4c11f96673114e94a8cc2\"\u003eed84bb8\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3611\"\u003e#3611\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3855346eda7f4ba6c844d86de5de493d3e395f00\"\u003e3855346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3612\"\u003e#3612\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/32624d32240ec8e5997810fb9cb54f8000b6c7f8\"\u003e32624d3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md\"\u003egoogle.golang.org/api's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.283.0...v0.284.0\"\u003e0.284.0\u003c/a\u003e (2026-06-09)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3613\"\u003e#3613\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/5f021536107adde3063487a75aa9f46078490191\"\u003e5f02153\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3616\"\u003e#3616\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/25b429a5431a77dd95eb00466661c1447eab6d16\"\u003e25b429a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3617\"\u003e#3617\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/1ef362535b2f2f3afbc1408adbf6d3b69e58ad26\"\u003e1ef3625\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.282.0...v0.283.0\"\u003e0.283.0\u003c/a\u003e (2026-06-01)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3609\"\u003e#3609\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ed84bb800c56d3f7fee4c11f96673114e94a8cc2\"\u003eed84bb8\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3611\"\u003e#3611\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3855346eda7f4ba6c844d86de5de493d3e395f00\"\u003e3855346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3612\"\u003e#3612\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/32624d32240ec8e5997810fb9cb54f8000b6c7f8\"\u003e32624d3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/5c6a0b03b25a64955922133a4486f9632f381e88\"\u003e\u003ccode\u003e5c6a0b0\u003c/code\u003e\u003c/a\u003e chore(main): release 0.284.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3614\"\u003e#3614\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/1ef362535b2f2f3afbc1408adbf6d3b69e58ad26\"\u003e\u003ccode\u003e1ef3625\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3617\"\u003e#3617\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4dd580d53ff4585321810eaddf5c65d6d6b9d893\"\u003e\u003ccode\u003e4dd580d\u003c/code\u003e\u003c/a\u003e chore(all): update all (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3615\"\u003e#3615\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/25b429a5431a77dd95eb00466661c1447eab6d16\"\u003e\u003ccode\u003e25b429a\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3616\"\u003e#3616\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/5f021536107adde3063487a75aa9f46078490191\"\u003e\u003ccode\u003e5f02153\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3613\"\u003e#3613\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f6726366ff2f0b8fc82cec6f063dc9beb3ab1377\"\u003e\u003ccode\u003ef672636\u003c/code\u003e\u003c/a\u003e chore(main): release 0.283.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3610\"\u003e#3610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/32624d32240ec8e5997810fb9cb54f8000b6c7f8\"\u003e\u003ccode\u003e32624d3\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3612\"\u003e#3612\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3855346eda7f4ba6c844d86de5de493d3e395f00\"\u003e\u003ccode\u003e3855346\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3611\"\u003e#3611\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ed84bb800c56d3f7fee4c11f96673114e94a8cc2\"\u003e\u003ccode\u003eed84bb8\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3609\"\u003e#3609\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.282.0...v0.284.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/jkowalski/kopia/pull/718","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkowalski%2Fkopia/issues/718","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/718/packages"}},{"old_version":"1.62.1","new_version":"1.62.3","update_type":"patch","path":null,"pr_created_at":"2026-06-08T04:56:14.000Z","version_change":"1.62.1 → 1.62.3","issue":{"uuid":"4610130261","node_id":"PR_kwDODD8zz87jwoqO","number":996,"state":"open","title":"chore(deps): Bump the gomod group with 10 updates","user":"dependabot[bot]","labels":["dco-signoff: yes","size/L","dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-08T04:56:14.000Z","updated_at":"2026-06-08T04:56:31.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): Bump","group_name":"gomod","update_count":10,"packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.41.7","new_version":"1.41.12","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.32.17","new_version":"1.32.23","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/docker/cli","old_version":"29.5.2+incompatible","new_version":"29.5.3+incompatible","repository_url":"https://github.com/docker/cli"},{"name":"github.com/google/go-containerregistry","old_version":"0.21.5","new_version":"0.21.6","repository_url":"https://github.com/google/go-containerregistry"},{"name":"github.com/sigstore/sigstore","old_version":"1.10.6","new_version":"1.10.8","repository_url":"https://github.com/sigstore/sigstore"},{"name":"github.com/sigstore/sigstore/pkg/signature/kms/aws","old_version":"1.10.6","new_version":"1.10.8","repository_url":"https://github.com/sigstore/sigstore"},{"name":"github.com/sigstore/sigstore/pkg/signature/kms/azure","old_version":"1.10.6","new_version":"1.10.8","repository_url":"https://github.com/sigstore/sigstore"},{"name":"github.com/sigstore/sigstore/pkg/signature/kms/gcp","old_version":"1.10.6","new_version":"1.10.8","repository_url":"https://github.com/sigstore/sigstore"},{"name":"github.com/sigstore/sigstore/pkg/signature/kms/hashivault","old_version":"1.10.6","new_version":"1.10.8","repository_url":"https://github.com/sigstore/sigstore"}],"path":null,"ecosystem":"go"},"body":"Bumps the gomod group with 10 updates:\n\n| Package | From | To |\n| --- | --- | --- |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.1` | `1.62.3` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.7` | `1.41.12` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.17` | `1.32.23` |\n| [github.com/docker/cli](https://github.com/docker/cli) | `29.5.2+incompatible` | `29.5.3+incompatible` |\n| [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry) | `0.21.5` | `0.21.6` |\n| [github.com/sigstore/sigstore](https://github.com/sigstore/sigstore) | `1.10.6` | `1.10.8` |\n| [github.com/sigstore/sigstore/pkg/signature/kms/aws](https://github.com/sigstore/sigstore) | `1.10.6` | `1.10.8` |\n| [github.com/sigstore/sigstore/pkg/signature/kms/azure](https://github.com/sigstore/sigstore) | `1.10.6` | `1.10.8` |\n| [github.com/sigstore/sigstore/pkg/signature/kms/gcp](https://github.com/sigstore/sigstore) | `1.10.6` | `1.10.8` |\n| [github.com/sigstore/sigstore/pkg/signature/kms/hashivault](https://github.com/sigstore/sigstore) | `1.10.6` | `1.10.8` |\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2` from 1.41.7 to 1.41.12\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7146c2b4007293f0acc9b2e8b92ffa7a30841df0\"\u003e\u003ccode\u003e7146c2b\u003c/code\u003e\u003c/a\u003e Release 2026-06-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5aef2fd8a4027ecf34eb5e32a28ff4a955b353d6\"\u003e\u003ccode\u003e5aef2fd\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f94c04478d36a4ffb777221761459fb4b1d20cba\"\u003e\u003ccode\u003ef94c044\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f00b205128286d6431115dd078da3c36197999f4\"\u003e\u003ccode\u003ef00b205\u003c/code\u003e\u003c/a\u003e bump to smithy-go v1.27.1 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3434\"\u003e#3434\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c4ad7dee6ebd9a3e1c7ee208f77e4ac8532b17c9\"\u003e\u003ccode\u003ec4ad7de\u003c/code\u003e\u003c/a\u003e drop service/internal/benchmark (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3433\"\u003e#3433\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/91eca463daf932474778dc4a984c41ecfcd9dc3c\"\u003e\u003ccode\u003e91eca46\u003c/code\u003e\u003c/a\u003e Release 2026-06-03.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e9d9e156c352b4956ed0b3d57614467d1f79c62b\"\u003e\u003ccode\u003ee9d9e15\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/def6a3a4bb06c199a4843c501d84730d8235cab4\"\u003e\u003ccode\u003edef6a3a\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fa369bd7bb9576e85ac094a43a15e8372a3d0129\"\u003e\u003ccode\u003efa369bd\u003c/code\u003e\u003c/a\u003e Release 2026-06-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/960ee4dc8380a46ded94f3976e073242d42bf8ed\"\u003e\u003ccode\u003e960ee4d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.41.7...v1.41.12\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/config` from 1.32.17 to 1.32.23\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7146c2b4007293f0acc9b2e8b92ffa7a30841df0\"\u003e\u003ccode\u003e7146c2b\u003c/code\u003e\u003c/a\u003e Release 2026-06-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5aef2fd8a4027ecf34eb5e32a28ff4a955b353d6\"\u003e\u003ccode\u003e5aef2fd\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f94c04478d36a4ffb777221761459fb4b1d20cba\"\u003e\u003ccode\u003ef94c044\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f00b205128286d6431115dd078da3c36197999f4\"\u003e\u003ccode\u003ef00b205\u003c/code\u003e\u003c/a\u003e bump to smithy-go v1.27.1 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3434\"\u003e#3434\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c4ad7dee6ebd9a3e1c7ee208f77e4ac8532b17c9\"\u003e\u003ccode\u003ec4ad7de\u003c/code\u003e\u003c/a\u003e drop service/internal/benchmark (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3433\"\u003e#3433\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/91eca463daf932474778dc4a984c41ecfcd9dc3c\"\u003e\u003ccode\u003e91eca46\u003c/code\u003e\u003c/a\u003e Release 2026-06-03.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e9d9e156c352b4956ed0b3d57614467d1f79c62b\"\u003e\u003ccode\u003ee9d9e15\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/def6a3a4bb06c199a4843c501d84730d8235cab4\"\u003e\u003ccode\u003edef6a3a\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fa369bd7bb9576e85ac094a43a15e8372a3d0129\"\u003e\u003ccode\u003efa369bd\u003c/code\u003e\u003c/a\u003e Release 2026-06-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/960ee4dc8380a46ded94f3976e073242d42bf8ed\"\u003e\u003ccode\u003e960ee4d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.32.17...config/v1.32.23\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/docker/cli` from 29.5.2+incompatible to 29.5.3+incompatible\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/d1c06ef6b41d88d76866aea43c246cd7c63d04fa\"\u003e\u003ccode\u003ed1c06ef\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/7022\"\u003e#7022\u003c/a\u003e from mickael-docker/docs-request-field\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/7dd053b1d1d66bec5f793d090dba7e81240afadd\"\u003e\u003ccode\u003e7dd053b\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/7003\"\u003e#7003\u003c/a\u003e from thaJeztah/logs_links\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/37c3d316cc76fa9ad27e3897fa7e60c5a3b66d1f\"\u003e\u003ccode\u003e37c3d31\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/7024\"\u003e#7024\u003c/a\u003e from thaJeztah/add_zizmor\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/45f10f226e8e6eba41064a7819bec986ac850288\"\u003e\u003ccode\u003e45f10f2\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/7025\"\u003e#7025\u003c/a\u003e from vvoland/update-go\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/b458dc9e81e732fdaa66dac672db36ff28d6b6c5\"\u003e\u003ccode\u003eb458dc9\u003c/code\u003e\u003c/a\u003e update to go1.26.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/1953194bd5a44b1a991eea79c4f0aacfb6c74aab\"\u003e\u003ccode\u003e1953194\u003c/code\u003e\u003c/a\u003e gha: apply zizmor fixes\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/ac0419ea90d1177eb11655a5ee9795126e8deb7a\"\u003e\u003ccode\u003eac0419e\u003c/code\u003e\u003c/a\u003e gha: add zizmor workflow\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/1aa0416b8a5973bc5f605a42d13f1926ab01f2ac\"\u003e\u003ccode\u003e1aa0416\u003c/code\u003e\u003c/a\u003e docs: recommend default deny and clarify requesturi field\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/3a8595298407d5ab67d0ed13d57819dddf561d98\"\u003e\u003ccode\u003e3a85952\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/7020\"\u003e#7020\u003c/a\u003e from thaJeztah/full_semver\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/8d3fbdf5707f6cd6b3157eef5aeba8af2f436f9d\"\u003e\u003ccode\u003e8d3fbdf\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/7019\"\u003e#7019\u003c/a\u003e from thaJeztah/dependabot_labels\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/cli/compare/v29.5.2...v29.5.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/google/go-containerregistry` from 0.21.5 to 0.21.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/go-containerregistry/releases\"\u003egithub.com/google/go-containerregistry's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.21.6\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: update dependencies to use new azure sdk components by \u003ca href=\"https://github.com/gaganhr94\"\u003e\u003ccode\u003e@​gaganhr94\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2262\"\u003egoogle/go-containerregistry#2262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: restore resp.Body in retryError so CheckError can parse it by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2264\"\u003egoogle/go-containerregistry#2264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/registry: return 202 Accepted for PATCH chunk uploads by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2265\"\u003egoogle/go-containerregistry#2265\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFollow OCI distribution spec for artifactType and annotations by \u003ca href=\"https://github.com/malt3\"\u003e\u003ccode\u003e@​malt3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2269\"\u003egoogle/go-containerregistry#2269\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eactions: attach Codecov token to coverage tests on main by \u003ca href=\"https://github.com/Subserial\"\u003e\u003ccode\u003e@​Subserial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2270\"\u003egoogle/go-containerregistry#2270\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: use DeleteScope (with \u0026quot;delete\u0026quot; action) for manifest deletion by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2266\"\u003egoogle/go-containerregistry#2266\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: limit concurrent layer pulls by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2271\"\u003egoogle/go-containerregistry#2271\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/registry: reject corrupt disk blobs by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2272\"\u003egoogle/go-containerregistry#2272\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emutate: close layer readers during export by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2277\"\u003egoogle/go-containerregistry#2277\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ecrane/flatten: preserve image media type when flattening by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2267\"\u003egoogle/go-containerregistry#2267\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump goreleaser/goreleaser-action from 7.0.0 to 7.2.1 in the actions group across 1 directory by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2273\"\u003egoogle/go-containerregistry#2273\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump go.opentelemetry.io/otel from 1.36.0 to 1.41.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2278\"\u003egoogle/go-containerregistry#2278\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump the go-deps group across 3 directories with 6 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2280\"\u003egoogle/go-containerregistry#2280\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReplace go-homedir with os.UserHomeDir by \u003ca href=\"https://github.com/jammie-jelly\"\u003e\u003ccode\u003e@​jammie-jelly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2282\"\u003egoogle/go-containerregistry#2282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/name: only treat .localhost as non-HTTPS, not .local by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2281\"\u003egoogle/go-containerregistry#2281\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: block unspecified IPs (0.0.0.0, ::) in validateRealmURL by \u003ca href=\"https://github.com/marwan9696\"\u003e\u003ccode\u003e@​marwan9696\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2285\"\u003egoogle/go-containerregistry#2285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest(mutate): add Extract round-trip test for filesystem object preservation by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2283\"\u003egoogle/go-containerregistry#2283\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexperiments: remove deprecated support for estargz by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2288\"\u003egoogle/go-containerregistry#2288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump aws-actions/configure-aws-credentials from 6.1.0 to 6.1.1 in the actions group by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2289\"\u003egoogle/go-containerregistry#2289\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: limit HTTP response body reads to prevent OOM by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2296\"\u003egoogle/go-containerregistry#2296\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump the go-deps group across 3 directories with 6 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2297\"\u003egoogle/go-containerregistry#2297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: block redirects from token server to private/link-local addresses (SSRF fix) by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2292\"\u003egoogle/go-containerregistry#2292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/v1/mutate: preserve relative symlinks that stay within rootfs in Extract by \u003ca href=\"https://github.com/anishesg\"\u003e\u003ccode\u003e@​anishesg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2279\"\u003egoogle/go-containerregistry#2279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003evalidate: skip non-layer layers by \u003ca href=\"https://github.com/imjasonh\"\u003e\u003ccode\u003e@​imjasonh\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2298\"\u003egoogle/go-containerregistry#2298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: validate foreign layer URLs to prevent SSRF (fixes \u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2259\"\u003e#2259\u003c/a\u003e) by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2293\"\u003egoogle/go-containerregistry#2293\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: block SSRF via private-IP Location headers in blob uploads by \u003ca href=\"https://github.com/adilburaksen\"\u003e\u003ccode\u003e@​adilburaksen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2295\"\u003egoogle/go-containerregistry#2295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(mutate): preserve config blob and layers for non-Docker OCI artifacts by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2286\"\u003egoogle/go-containerregistry#2286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: preserve per-occurrence layer identity in mutate.Image.Layers() by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2299\"\u003egoogle/go-containerregistry#2299\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: retry HTTP 429 (Too Many Requests) by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2301\"\u003egoogle/go-containerregistry#2301\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: allow bearer realm at same host:port as registry by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2302\"\u003egoogle/go-containerregistry#2302\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate go version to 1.26.3 by \u003ca href=\"https://github.com/Subserial\"\u003e\u003ccode\u003e@​Subserial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2300\"\u003egoogle/go-containerregistry#2300\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/gaganhr94\"\u003e\u003ccode\u003e@​gaganhr94\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2262\"\u003egoogle/go-containerregistry#2262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2264\"\u003egoogle/go-containerregistry#2264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/malt3\"\u003e\u003ccode\u003e@​malt3\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2269\"\u003egoogle/go-containerregistry#2269\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2271\"\u003egoogle/go-containerregistry#2271\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2281\"\u003egoogle/go-containerregistry#2281\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/marwan9696\"\u003e\u003ccode\u003e@​marwan9696\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2285\"\u003egoogle/go-containerregistry#2285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anishesg\"\u003e\u003ccode\u003e@​anishesg\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2279\"\u003egoogle/go-containerregistry#2279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/adilburaksen\"\u003e\u003ccode\u003e@​adilburaksen\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2295\"\u003egoogle/go-containerregistry#2295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2299\"\u003egoogle/go-containerregistry#2299\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\"\u003ehttps://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/53f7e39e15bfd6aeea6a5f733ee1a8fcf54c15cf\"\u003e\u003ccode\u003e53f7e39\u003c/code\u003e\u003c/a\u003e Update go version to 1.26.3 (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2300\"\u003e#2300\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/bf87c3bfe4cc3218ac0baa364545d72729d2906d\"\u003e\u003ccode\u003ebf87c3b\u003c/code\u003e\u003c/a\u003e transport: allow bearer realm at same host:port as registry (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2302\"\u003e#2302\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/c55facddfbd7fc3d648c6fdda9860b350b013a76\"\u003e\u003ccode\u003ec55facd\u003c/code\u003e\u003c/a\u003e transport: retry HTTP 429 (Too Many Requests) (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2301\"\u003e#2301\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/68a569e4a0eb927d36ccb0fcdf4578425c03b5a2\"\u003e\u003ccode\u003e68a569e\u003c/code\u003e\u003c/a\u003e fix: preserve per-occurrence layer identity in Layers() (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2299\"\u003e#2299\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/35b354b436879457221028f05a580fe1c0deccbc\"\u003e\u003ccode\u003e35b354b\u003c/code\u003e\u003c/a\u003e fix(mutate): preserve config blob and layers for non-Docker OCI artifacts (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2\"\u003e#2\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/e5983f2a67ec46b76984ce6de85de08a44eee955\"\u003e\u003ccode\u003ee5983f2\u003c/code\u003e\u003c/a\u003e remote: block SSRF via private-IP Location headers in blob uploads (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2295\"\u003e#2295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/6dad820da7de0d619f1127c46914f2eaf58e3b46\"\u003e\u003ccode\u003e6dad820\u003c/code\u003e\u003c/a\u003e remote: validate foreign layer URLs to prevent SSRF (fixes \u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2259\"\u003e#2259\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2293\"\u003e#2293\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/78bdf1b7e2105cdfcd8f23509992c78357ce16ed\"\u003e\u003ccode\u003e78bdf1b\u003c/code\u003e\u003c/a\u003e validate: skip non-layer layers (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2298\"\u003e#2298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/c29d91cdc394cb288270f4dd04a31f81054946f4\"\u003e\u003ccode\u003ec29d91c\u003c/code\u003e\u003c/a\u003e pkg/v1/mutate: preserve relative symlinks that stay within rootfs in Extract ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/a70d75a6915ed3137792206dac4bca21d1924959\"\u003e\u003ccode\u003ea70d75a\u003c/code\u003e\u003c/a\u003e transport: block redirects from token server to private/link-local addresses ...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/sigstore/sigstore` from 1.10.6 to 1.10.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/sigstore/sigstore/releases\"\u003egithub.com/sigstore/sigstore's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.8\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport standard PKCS#8 encrypted private key decryption in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2333\"\u003esigstore/sigstore#2333\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.10.7\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd functional options to DSSE to improve memory usage, validation in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2326\"\u003esigstore/sigstore#2326\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExtend PEM private key unmarshalling to support legacy format in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2332\"\u003esigstore/sigstore#2332\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/c761681120b37d9c4b1410cf5720571582ab090a\"\u003e\u003ccode\u003ec761681\u003c/code\u003e\u003c/a\u003e Support standard PKCS#8 encrypted private key decryption (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2333\"\u003e#2333\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/005faf920b7c695a89b68cf226f95d88a468deb8\"\u003e\u003ccode\u003e005faf9\u003c/code\u003e\u003c/a\u003e Extend PEM private key unmarshalling to support legacy format (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2332\"\u003e#2332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/e70e4ed4219b8017e5462886cd1c06df23e8b3cf\"\u003e\u003ccode\u003ee70e4ed\u003c/code\u003e\u003c/a\u003e add functional options to DSSE to improve memory usage, validation (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2326\"\u003e#2326\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/899684dc4056768cda4f2523842cd90de4edbfcf\"\u003e\u003ccode\u003e899684d\u003c/code\u003e\u003c/a\u003e build(deps): Bump github.com/letsencrypt/boulder (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2307\"\u003e#2307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/181dc40b3141c75dde47e3871b2174e3dcfda9e0\"\u003e\u003ccode\u003e181dc40\u003c/code\u003e\u003c/a\u003e build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2308\"\u003e#2308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2c141a745b811348a0dbea4447e0c8b2f3092d2f\"\u003e\u003ccode\u003e2c141a7\u003c/code\u003e\u003c/a\u003e build(deps): Bump golangci/golangci-lint-action in the all group (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/b6c02147eb2755eb8ff78ec96c97835d3742821d\"\u003e\u003ccode\u003eb6c0214\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.1 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2329\"\u003e#2329\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2ff50c9b56fecfa71e05edd7aa5e258d45c78a47\"\u003e\u003ccode\u003e2ff50c9\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/dependency-review-action from 4.8.3 to 5.0.0 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2330\"\u003e#2330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/d0204c36ab40cfc854fa3689f7f472a98c83fea2\"\u003e\u003ccode\u003ed0204c3\u003c/code\u003e\u003c/a\u003e build(deps): Bump hashicorp/vault from 1.21.4 to 2.0.1 in /test/e2e (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2331\"\u003e#2331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/afdf89749d49660ba76eb59a410352e4e33225cb\"\u003e\u003ccode\u003eafdf897\u003c/code\u003e\u003c/a\u003e build(deps): Bump google.golang.org/grpc in /pkg/signature/kms/gcp (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2312\"\u003e#2312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.8\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/sigstore/sigstore/pkg/signature/kms/aws` from 1.10.6 to 1.10.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/sigstore/sigstore/releases\"\u003egithub.com/sigstore/sigstore/pkg/signature/kms/aws's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.8\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport standard PKCS#8 encrypted private key decryption in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2333\"\u003esigstore/sigstore#2333\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.10.7\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd functional options to DSSE to improve memory usage, validation in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2326\"\u003esigstore/sigstore#2326\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExtend PEM private key unmarshalling to support legacy format in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2332\"\u003esigstore/sigstore#2332\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/c761681120b37d9c4b1410cf5720571582ab090a\"\u003e\u003ccode\u003ec761681\u003c/code\u003e\u003c/a\u003e Support standard PKCS#8 encrypted private key decryption (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2333\"\u003e#2333\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/005faf920b7c695a89b68cf226f95d88a468deb8\"\u003e\u003ccode\u003e005faf9\u003c/code\u003e\u003c/a\u003e Extend PEM private key unmarshalling to support legacy format (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2332\"\u003e#2332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/e70e4ed4219b8017e5462886cd1c06df23e8b3cf\"\u003e\u003ccode\u003ee70e4ed\u003c/code\u003e\u003c/a\u003e add functional options to DSSE to improve memory usage, validation (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2326\"\u003e#2326\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/899684dc4056768cda4f2523842cd90de4edbfcf\"\u003e\u003ccode\u003e899684d\u003c/code\u003e\u003c/a\u003e build(deps): Bump github.com/letsencrypt/boulder (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2307\"\u003e#2307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/181dc40b3141c75dde47e3871b2174e3dcfda9e0\"\u003e\u003ccode\u003e181dc40\u003c/code\u003e\u003c/a\u003e build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2308\"\u003e#2308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2c141a745b811348a0dbea4447e0c8b2f3092d2f\"\u003e\u003ccode\u003e2c141a7\u003c/code\u003e\u003c/a\u003e build(deps): Bump golangci/golangci-lint-action in the all group (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/b6c02147eb2755eb8ff78ec96c97835d3742821d\"\u003e\u003ccode\u003eb6c0214\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.1 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2329\"\u003e#2329\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2ff50c9b56fecfa71e05edd7aa5e258d45c78a47\"\u003e\u003ccode\u003e2ff50c9\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/dependency-review-action from 4.8.3 to 5.0.0 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2330\"\u003e#2330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/d0204c36ab40cfc854fa3689f7f472a98c83fea2\"\u003e\u003ccode\u003ed0204c3\u003c/code\u003e\u003c/a\u003e build(deps): Bump hashicorp/vault from 1.21.4 to 2.0.1 in /test/e2e (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2331\"\u003e#2331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/afdf89749d49660ba76eb59a410352e4e33225cb\"\u003e\u003ccode\u003eafdf897\u003c/code\u003e\u003c/a\u003e build(deps): Bump google.golang.org/grpc in /pkg/signature/kms/gcp (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2312\"\u003e#2312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.8\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/sigstore/sigstore/pkg/signature/kms/azure` from 1.10.6 to 1.10.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/sigstore/sigstore/releases\"\u003egithub.com/sigstore/sigstore/pkg/signature/kms/azure's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.8\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport standard PKCS#8 encrypted private key decryption in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2333\"\u003esigstore/sigstore#2333\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.10.7\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd functional options to DSSE to improve memory usage, validation in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2326\"\u003esigstore/sigstore#2326\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExtend PEM private key unmarshalling to support legacy format in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2332\"\u003esigstore/sigstore#2332\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/c761681120b37d9c4b1410cf5720571582ab090a\"\u003e\u003ccode\u003ec761681\u003c/code\u003e\u003c/a\u003e Support standard PKCS#8 encrypted private key decryption (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2333\"\u003e#2333\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/005faf920b7c695a89b68cf226f95d88a468deb8\"\u003e\u003ccode\u003e005faf9\u003c/code\u003e\u003c/a\u003e Extend PEM private key unmarshalling to support legacy format (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2332\"\u003e#2332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/e70e4ed4219b8017e5462886cd1c06df23e8b3cf\"\u003e\u003ccode\u003ee70e4ed\u003c/code\u003e\u003c/a\u003e add functional options to DSSE to improve memory usage, validation (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2326\"\u003e#2326\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/899684dc4056768cda4f2523842cd90de4edbfcf\"\u003e\u003ccode\u003e899684d\u003c/code\u003e\u003c/a\u003e build(deps): Bump github.com/letsencrypt/boulder (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2307\"\u003e#2307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/181dc40b3141c75dde47e3871b2174e3dcfda9e0\"\u003e\u003ccode\u003e181dc40\u003c/code\u003e\u003c/a\u003e build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2308\"\u003e#2308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2c141a745b811348a0dbea4447e0c8b2f3092d2f\"\u003e\u003ccode\u003e2c141a7\u003c/code\u003e\u003c/a\u003e build(deps): Bump golangci/golangci-lint-action in the all group (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/b6c02147eb2755eb8ff78ec96c97835d3742821d\"\u003e\u003ccode\u003eb6c0214\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.1 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2329\"\u003e#2329\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2ff50c9b56fecfa71e05edd7aa5e258d45c78a47\"\u003e\u003ccode\u003e2ff50c9\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/dependency-review-action from 4.8.3 to 5.0.0 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2330\"\u003e#2330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/d0204c36ab40cfc854fa3689f7f472a98c83fea2\"\u003e\u003ccode\u003ed0204c3\u003c/code\u003e\u003c/a\u003e build(deps): Bump hashicorp/vault from 1.21.4 to 2.0.1 in /test/e2e (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2331\"\u003e#2331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/afdf89749d49660ba76eb59a410352e4e33225cb\"\u003e\u003ccode\u003eafdf897\u003c/code\u003e\u003c/a\u003e build(deps): Bump google.golang.org/grpc in /pkg/signature/kms/gcp (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2312\"\u003e#2312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.8\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/sigstore/sigstore/pkg/signature/kms/gcp` from 1.10.6 to 1.10.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/sigstore/sigstore/releases\"\u003egithub.com/sigstore/sigstore/pkg/signature/kms/gcp's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.8\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport standard PKCS#8 encrypted private key decryption in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2333\"\u003esigstore/sigstore#2333\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.10.7\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd functional options to DSSE to improve memory usage, validation in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2326\"\u003esigstore/sigstore#2326\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExtend PEM private key unmarshalling to support legacy format in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2332\"\u003esigstore/sigstore#2332\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/c761681120b37d9c4b1410cf5720571582ab090a\"\u003e\u003ccode\u003ec761681\u003c/code\u003e\u003c/a\u003e Support standard PKCS#8 encrypted private key decryption (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2333\"\u003e#2333\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/005faf920b7c695a89b68cf226f95d88a468deb8\"\u003e\u003ccode\u003e005faf9\u003c/code\u003e\u003c/a\u003e Extend PEM private key unmarshalling to support legacy format (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2332\"\u003e#2332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/e70e4ed4219b8017e5462886cd1c06df23e8b3cf\"\u003e\u003ccode\u003ee70e4ed\u003c/code\u003e\u003c/a\u003e add functional options to DSSE to improve memory usage, validation (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2326\"\u003e#2326\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/899684dc4056768cda4f2523842cd90de4edbfcf\"\u003e\u003ccode\u003e899684d\u003c/code\u003e\u003c/a\u003e build(deps): Bump github.com/letsencrypt/boulder (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2307\"\u003e#2307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/181dc40b3141c75dde47e3871b2174e3dcfda9e0\"\u003e\u003ccode\u003e181dc40\u003c/code\u003e\u003c/a\u003e build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2308\"\u003e#2308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2c141a745b811348a0dbea4447e0c8b2f3092d2f\"\u003e\u003ccode\u003e2c141a7\u003c/code\u003e\u003c/a\u003e build(deps): Bump golangci/golangci-lint-action in the all group (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/b6c02147eb2755eb8ff78ec96c97835d3742821d\"\u003e\u003ccode\u003eb6c0214\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.1 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2329\"\u003e#2329\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2ff50c9b56fecfa71e05edd7aa5e258d45c78a47\"\u003e\u003ccode\u003e2ff50c9\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/dependency-review-action from 4.8.3 to 5.0.0 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2330\"\u003e#2330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/d0204c36ab40cfc854fa3689f7f472a98c83fea2\"\u003e\u003ccode\u003ed0204c3\u003c/code\u003e\u003c/a\u003e build(deps): Bump hashicorp/vault from 1.21.4 to 2.0.1 in /test/e2e (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2331\"\u003e#2331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/afdf89749d49660ba76eb59a410352e4e33225cb\"\u003e\u003ccode\u003eafdf897\u003c/code\u003e\u003c/a\u003e build(deps): Bump google.golang.org/grpc in /pkg/signature/kms/gcp (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2312\"\u003e#2312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.8\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/sigstore/sigstore/pkg/signature/kms/hashivault` from 1.10.6 to 1.10.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/sigstore/sigstore/releases\"\u003egithub.com/sigstore/sigstore/pkg/signature/kms/hashivault's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.8\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport standard PKCS#8 encrypted private key decryption in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2333\"\u003esigstore/sigstore#2333\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.7...v1.10.8\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.10.7\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd functional options to DSSE to improve memory usage, validation in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2326\"\u003esigstore/sigstore#2326\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eExtend PEM private key unmarshalling to support legacy format in \u003ca href=\"https://redirect.github.com/sigstore/sigstore/pull/2332\"\u003esigstore/sigstore#2332\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\"\u003ehttps://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.7\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/c761681120b37d9c4b1410cf5720571582ab090a\"\u003e\u003ccode\u003ec761681\u003c/code\u003e\u003c/a\u003e Support standard PKCS#8 encrypted private key decryption (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2333\"\u003e#2333\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/005faf920b7c695a89b68cf226f95d88a468deb8\"\u003e\u003ccode\u003e005faf9\u003c/code\u003e\u003c/a\u003e Extend PEM private key unmarshalling to support legacy format (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2332\"\u003e#2332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/e70e4ed4219b8017e5462886cd1c06df23e8b3cf\"\u003e\u003ccode\u003ee70e4ed\u003c/code\u003e\u003c/a\u003e add functional options to DSSE to improve memory usage, validation (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2326\"\u003e#2326\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/899684dc4056768cda4f2523842cd90de4edbfcf\"\u003e\u003ccode\u003e899684d\u003c/code\u003e\u003c/a\u003e build(deps): Bump github.com/letsencrypt/boulder (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2307\"\u003e#2307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/181dc40b3141c75dde47e3871b2174e3dcfda9e0\"\u003e\u003ccode\u003e181dc40\u003c/code\u003e\u003c/a\u003e build(deps): Bump golang.org/x/crypto in /pkg/signature/kms/azure (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2308\"\u003e#2308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2c141a745b811348a0dbea4447e0c8b2f3092d2f\"\u003e\u003ccode\u003e2c141a7\u003c/code\u003e\u003c/a\u003e build(deps): Bump golangci/golangci-lint-action in the all group (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/b6c02147eb2755eb8ff78ec96c97835d3742821d\"\u003e\u003ccode\u003eb6c0214\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/upload-artifact from 6.0.0 to 7.0.1 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2329\"\u003e#2329\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/2ff50c9b56fecfa71e05edd7aa5e258d45c78a47\"\u003e\u003ccode\u003e2ff50c9\u003c/code\u003e\u003c/a\u003e build(deps): Bump actions/dependency-review-action from 4.8.3 to 5.0.0 (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2330\"\u003e#2330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/d0204c36ab40cfc854fa3689f7f472a98c83fea2\"\u003e\u003ccode\u003ed0204c3\u003c/code\u003e\u003c/a\u003e build(deps): Bump hashicorp/vault from 1.21.4 to 2.0.1 in /test/e2e (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2331\"\u003e#2331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sigstore/sigstore/commit/afdf89749d49660ba76eb59a410352e4e33225cb\"\u003e\u003ccode\u003eafdf897\u003c/code\u003e\u003c/a\u003e build(deps): Bump google.golang.org/grpc in /pkg/signature/kms/gcp (\u003ca href=\"https://redirect.github.com/sigstore/sigstore/issues/2312\"\u003e#2312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/sigstore/sigstore/compare/v1.10.6...v1.10.8\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/falcosecurity/falcoctl/pull/996","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/falcosecurity%2Ffalcoctl/issues/996","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/996/packages"}},{"old_version":"1.62.2","new_version":"1.62.3","update_type":"patch","path":"/core","pr_created_at":"2026-06-05T01:24:38.000Z","version_change":"1.62.2 → 1.62.3","issue":{"uuid":"4593382983","node_id":"PR_kwDOBSC9Os7i6wEH","number":12005,"state":"open","title":"chore: bump cloud.google.com/go/storage from 1.62.2 to 1.62.3 in /core","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-05T01:24:38.000Z","updated_at":"2026-06-05T01:30:52.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":"/core","ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.2 to 1.62.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.2\u0026new-version=1.62.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/wandb/wandb/pull/12005","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/wandb%2Fwandb/issues/12005","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/12005/packages"}},{"old_version":"1.62.1","new_version":"1.62.3","update_type":"patch","path":null,"pr_created_at":"2026-06-04T12:26:39.000Z","version_change":"1.62.1 → 1.62.3","issue":{"uuid":"4588670830","node_id":"PR_kwDODjgJwc7irJOk","number":4739,"state":"closed","title":"chore(deps): bump the google-cloud-modules group across 3 directories with 2 updates","user":"dependabot[bot]","labels":["🤖 Dependencies"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-05T05:11:02.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-04T12:26:39.000Z","updated_at":"2026-06-05T05:11:04.000Z","time_to_close":60263,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"google-cloud-modules","update_count":2,"packages":[{"name":"cloud.google.com/go/longrunning","old_version":"0.13.0","new_version":"1.0.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/longrunning","old_version":"0.13.0","new_version":"1.0.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/longrunning","old_version":"0.13.0","new_version":"1.0.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/longrunning","old_version":"0.13.0","new_version":"1.0.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps the google-cloud-modules group with 2 updates in the /firebase-auth directory: [cloud.google.com/go/longrunning](https://github.com/googleapis/google-cloud-go) and [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go).\nBumps the google-cloud-modules group with 2 updates in the /firebase-functions directory: [cloud.google.com/go/longrunning](https://github.com/googleapis/google-cloud-go) and [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go).\nBumps the google-cloud-modules group with 2 updates in the /gcloud-firebase directory: [cloud.google.com/go/longrunning](https://github.com/googleapis/google-cloud-go) and [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go).\n\nUpdates `cloud.google.com/go/longrunning` from 0.13.0 to 1.0.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/longrunning's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eai: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ai/v0.20.0...ai/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapigeeregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apigeeregistry/v0.15.0...apigeeregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapihub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apihub/v0.7.0...apihub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapiregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apiregistry/v0.7.0...apiregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapphub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apphub/v0.9.0...apphub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapps: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apps/v0.13.0...apps/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eauditmanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/auditmanager/v0.7.0...auditmanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ebiglake: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/biglake/v0.5.0...biglake/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eces: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ces/v0.9.0...ces/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echat: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chat/v0.23.0...chat/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echronicle: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chronicle/v0.7.0...chronicle/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudprofiler: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudprofiler/v0.9.0...cloudprofiler/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudsecuritycompliance: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudsecuritycompliance/v0.6.0...cloudsecuritycompliance/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003econfigdelivery: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/configdelivery/v0.6.0...configdelivery/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edataform: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/dataform/v0.19.0...dataform/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edatamanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/datamanager/v0.8.0...datamanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edeveloperconnect: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/developerconnect/v0.10.0...developerconnect/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md\"\u003ecloud.google.com/go/longrunning's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChanges\u003c/h1\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.122.0...v0.123.0\"\u003e0.123.0\u003c/a\u003e (2025-09-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/stategen:\u003c/strong\u003e Populate the latest googleapis commit (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12880\"\u003e#12880\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/7b017a083ddd322b21faf413a329ba870a98db96\"\u003e7b017a0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Implement the build command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12817\"\u003e#12817\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14734c875103f97748857b9b0472fd0b2658663f\"\u003e14734c8\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add link to source commit in release notes (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12881\"\u003e#12881\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1c06cc6109a84941c367896575b187b79befc3af\"\u003e1c06cc6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix CHANGES.md headers (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12849\"\u003e#12849\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/baf515dfe0d94f36c9dc232f6b55e9828b268eb0\"\u003ebaf515d\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Remove go mod init/tidy from postprocessor (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12832\"\u003e#12832\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1fe506a37e68497b6da4587d409b79e7b4d2a113\"\u003e1fe506a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Test for error path with flags (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12830\"\u003e#12830\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f0da7b22488b4d9f6232d227d3e196d8d2b92858\"\u003ef0da7b2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/postprocessor:\u003c/strong\u003e Add dlp to skip-module-scan-paths (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12857\"\u003e#12857\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/45a7d9b4b9083d1bcaca89c3d86878ba77c230e3\"\u003e45a7d9b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Honor original container contract (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12846\"\u003e#12846\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/71c8fd368667f74426aa31b6c50def8151482480\"\u003e71c8fd3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Improvements to release-init (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12842\"\u003e#12842\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0db677a93fe16b9a62bb69a3cea7bc45d5aaec36\"\u003e0db677a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003estategen:\u003c/strong\u003e Specify an appropriate tag format for google-cloud-go (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12835\"\u003e#12835\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ffcff33a0c3fad720a31083672c4cf2498af719f\"\u003effcff33\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.6...v0.122.0\"\u003e0.122.0\u003c/a\u003e (2025-09-04)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add release-init command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12751\"\u003e#12751\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/52e84cc9a11077eb3c50a0b5fc9aa26361d63b47\"\u003e52e84cc\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Better support for v2 modules (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12797\"\u003e#12797\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4bc878597a5e6bd97cf3ee2174f6df7fbdd2d47b\"\u003e4bc8785\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Module detection when tidy errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12801\"\u003e#12801\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83d46cdc5ed7cfbb94038e7fa1f787adfe532c74\"\u003e83d46cd\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix goimports errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12765\"\u003e#12765\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83bdaa4ce4e42f8b4a29e2055fc4894d8c6b1e2c\"\u003e83bdaa4\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.5...v0.121.6\"\u003e0.121.6\u003c/a\u003e (2025-08-14)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix Dockerfile permissions for go mod tidy (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12704\"\u003e#12704\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0e70a0b6afccc016c67337f340e2755fe7a476ca\"\u003e0e70a0b\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.4...v0.121.5\"\u003e0.121.5\u003c/a\u003e (2025-08-12)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/86eb615b7fcd5bb73ff6d48e985a15a6b7bf13ec\"\u003e\u003ccode\u003e86eb615\u003c/code\u003e\u003c/a\u003e chore: bulk promote stable 0.x libraries to v1.0.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14562\"\u003e#14562\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/942bbc15b99ffd078af4f731a6f249c3b4c48110\"\u003e\u003ccode\u003e942bbc1\u003c/code\u003e\u003c/a\u003e feat: Add ListSkills and DeleteSkill methods in Vertex AI Skill Registry SDK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14ea3de7de6e8e2c769f0d1828705e83097b9ba9\"\u003e\u003ccode\u003e14ea3de\u003c/code\u003e\u003c/a\u003e fix: Fix name collision on SandboxEnvironment.state by renaming enum to Sandb...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9de3a501164cad8b3d16005d065dc9cd1cd242e\"\u003e\u003ccode\u003ed9de3a5\u003c/code\u003e\u003c/a\u003e test(spanner): skip DirectPath-incompatible tests when DirectPath is enabled ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/043aa716a57d4b2e0749a79eaf65a9d093b9f1e3\"\u003e\u003ccode\u003e043aa71\u003c/code\u003e\u003c/a\u003e test(spanner): fix nil pointer panic in TestNewBuiltinMetricsTracerFactory un...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d6f00a2f6f4ab959f753ea71fc956875a0b80bf0\"\u003e\u003ccode\u003ed6f00a2\u003c/code\u003e\u003c/a\u003e test(spanner): disable TestIntegration_QueueMutations (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14550\"\u003e#14550\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d10add39ac639d06f9c5e711d70be8739e5f143a\"\u003e\u003ccode\u003ed10add3\u003c/code\u003e\u003c/a\u003e refactor(pubsub/v2/pstest): implement custom filter parser (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14497\"\u003e#14497\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/94d24ca358d9f98ccd48d1b826cfab83557d5b19\"\u003e\u003ccode\u003e94d24ca\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260507T184113Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14549\"\u003e#14549\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/541569e80c1154b8742f147fa9667b6794be84eb\"\u003e\u003ccode\u003e541569e\u003c/code\u003e\u003c/a\u003e docs: update README to reflect Gemini Enterprise Agent Platform\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/237533a0b5847011484577241e8201ccce7e31a0\"\u003e\u003ccode\u003e237533a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14545\"\u003e#14545\u003c/a\u003e from googleapis:release-agentplatform-0.20.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.13.0...ai/v1.0.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/longrunning` from 0.13.0 to 1.0.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/longrunning's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eai: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ai/v0.20.0...ai/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapigeeregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apigeeregistry/v0.15.0...apigeeregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapihub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apihub/v0.7.0...apihub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapiregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apiregistry/v0.7.0...apiregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapphub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apphub/v0.9.0...apphub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapps: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apps/v0.13.0...apps/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eauditmanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/auditmanager/v0.7.0...auditmanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ebiglake: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/biglake/v0.5.0...biglake/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eces: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ces/v0.9.0...ces/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echat: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chat/v0.23.0...chat/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echronicle: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chronicle/v0.7.0...chronicle/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudprofiler: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudprofiler/v0.9.0...cloudprofiler/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudsecuritycompliance: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudsecuritycompliance/v0.6.0...cloudsecuritycompliance/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003econfigdelivery: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/configdelivery/v0.6.0...configdelivery/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edataform: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/dataform/v0.19.0...dataform/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edatamanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/datamanager/v0.8.0...datamanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edeveloperconnect: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/developerconnect/v0.10.0...developerconnect/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md\"\u003ecloud.google.com/go/longrunning's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChanges\u003c/h1\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.122.0...v0.123.0\"\u003e0.123.0\u003c/a\u003e (2025-09-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/stategen:\u003c/strong\u003e Populate the latest googleapis commit (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12880\"\u003e#12880\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/7b017a083ddd322b21faf413a329ba870a98db96\"\u003e7b017a0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Implement the build command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12817\"\u003e#12817\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14734c875103f97748857b9b0472fd0b2658663f\"\u003e14734c8\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add link to source commit in release notes (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12881\"\u003e#12881\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1c06cc6109a84941c367896575b187b79befc3af\"\u003e1c06cc6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix CHANGES.md headers (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12849\"\u003e#12849\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/baf515dfe0d94f36c9dc232f6b55e9828b268eb0\"\u003ebaf515d\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Remove go mod init/tidy from postprocessor (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12832\"\u003e#12832\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1fe506a37e68497b6da4587d409b79e7b4d2a113\"\u003e1fe506a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Test for error path with flags (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12830\"\u003e#12830\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f0da7b22488b4d9f6232d227d3e196d8d2b92858\"\u003ef0da7b2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/postprocessor:\u003c/strong\u003e Add dlp to skip-module-scan-paths (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12857\"\u003e#12857\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/45a7d9b4b9083d1bcaca89c3d86878ba77c230e3\"\u003e45a7d9b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Honor original container contract (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12846\"\u003e#12846\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/71c8fd368667f74426aa31b6c50def8151482480\"\u003e71c8fd3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Improvements to release-init (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12842\"\u003e#12842\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0db677a93fe16b9a62bb69a3cea7bc45d5aaec36\"\u003e0db677a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003estategen:\u003c/strong\u003e Specify an appropriate tag format for google-cloud-go (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12835\"\u003e#12835\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ffcff33a0c3fad720a31083672c4cf2498af719f\"\u003effcff33\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.6...v0.122.0\"\u003e0.122.0\u003c/a\u003e (2025-09-04)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add release-init command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12751\"\u003e#12751\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/52e84cc9a11077eb3c50a0b5fc9aa26361d63b47\"\u003e52e84cc\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Better support for v2 modules (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12797\"\u003e#12797\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4bc878597a5e6bd97cf3ee2174f6df7fbdd2d47b\"\u003e4bc8785\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Module detection when tidy errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12801\"\u003e#12801\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83d46cdc5ed7cfbb94038e7fa1f787adfe532c74\"\u003e83d46cd\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix goimports errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12765\"\u003e#12765\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83bdaa4ce4e42f8b4a29e2055fc4894d8c6b1e2c\"\u003e83bdaa4\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.5...v0.121.6\"\u003e0.121.6\u003c/a\u003e (2025-08-14)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix Dockerfile permissions for go mod tidy (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12704\"\u003e#12704\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0e70a0b6afccc016c67337f340e2755fe7a476ca\"\u003e0e70a0b\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.4...v0.121.5\"\u003e0.121.5\u003c/a\u003e (2025-08-12)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/86eb615b7fcd5bb73ff6d48e985a15a6b7bf13ec\"\u003e\u003ccode\u003e86eb615\u003c/code\u003e\u003c/a\u003e chore: bulk promote stable 0.x libraries to v1.0.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14562\"\u003e#14562\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/942bbc15b99ffd078af4f731a6f249c3b4c48110\"\u003e\u003ccode\u003e942bbc1\u003c/code\u003e\u003c/a\u003e feat: Add ListSkills and DeleteSkill methods in Vertex AI Skill Registry SDK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14ea3de7de6e8e2c769f0d1828705e83097b9ba9\"\u003e\u003ccode\u003e14ea3de\u003c/code\u003e\u003c/a\u003e fix: Fix name collision on SandboxEnvironment.state by renaming enum to Sandb...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9de3a501164cad8b3d16005d065dc9cd1cd242e\"\u003e\u003ccode\u003ed9de3a5\u003c/code\u003e\u003c/a\u003e test(spanner): skip DirectPath-incompatible tests when DirectPath is enabled ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/043aa716a57d4b2e0749a79eaf65a9d093b9f1e3\"\u003e\u003ccode\u003e043aa71\u003c/code\u003e\u003c/a\u003e test(spanner): fix nil pointer panic in TestNewBuiltinMetricsTracerFactory un...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d6f00a2f6f4ab959f753ea71fc956875a0b80bf0\"\u003e\u003ccode\u003ed6f00a2\u003c/code\u003e\u003c/a\u003e test(spanner): disable TestIntegration_QueueMutations (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14550\"\u003e#14550\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d10add39ac639d06f9c5e711d70be8739e5f143a\"\u003e\u003ccode\u003ed10add3\u003c/code\u003e\u003c/a\u003e refactor(pubsub/v2/pstest): implement custom filter parser (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14497\"\u003e#14497\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/94d24ca358d9f98ccd48d1b826cfab83557d5b19\"\u003e\u003ccode\u003e94d24ca\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260507T184113Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14549\"\u003e#14549\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/541569e80c1154b8742f147fa9667b6794be84eb\"\u003e\u003ccode\u003e541569e\u003c/code\u003e\u003c/a\u003e docs: update README to reflect Gemini Enterprise Agent Platform\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/237533a0b5847011484577241e8201ccce7e31a0\"\u003e\u003ccode\u003e237533a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14545\"\u003e#14545\u003c/a\u003e from googleapis:release-agentplatform-0.20.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.13.0...ai/v1.0.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/longrunning` from 0.13.0 to 1.0.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/longrunning's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eai: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ai/v0.20.0...ai/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapigeeregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apigeeregistry/v0.15.0...apigeeregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapihub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apihub/v0.7.0...apihub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapiregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apiregistry/v0.7.0...apiregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapphub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apphub/v0.9.0...apphub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapps: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apps/v0.13.0...apps/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eauditmanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/auditmanager/v0.7.0...auditmanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ebiglake: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/biglake/v0.5.0...biglake/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eces: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ces/v0.9.0...ces/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echat: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chat/v0.23.0...chat/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echronicle: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chronicle/v0.7.0...chronicle/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudprofiler: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudprofiler/v0.9.0...cloudprofiler/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudsecuritycompliance: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudsecuritycompliance/v0.6.0...cloudsecuritycompliance/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003econfigdelivery: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/configdelivery/v0.6.0...configdelivery/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edataform: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/dataform/v0.19.0...dataform/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edatamanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/datamanager/v0.8.0...datamanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edeveloperconnect: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/developerconnect/v0.10.0...developerconnect/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md\"\u003ecloud.google.com/go/longrunning's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChanges\u003c/h1\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.122.0...v0.123.0\"\u003e0.123.0\u003c/a\u003e (2025-09-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/stategen:\u003c/strong\u003e Populate the latest googleapis commit (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12880\"\u003e#12880\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/7b017a083ddd322b21faf413a329ba870a98db96\"\u003e7b017a0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Implement the build command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12817\"\u003e#12817\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14734c875103f97748857b9b0472fd0b2658663f\"\u003e14734c8\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add link to source commit in release notes (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12881\"\u003e#12881\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1c06cc6109a84941c367896575b187b79befc3af\"\u003e1c06cc6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix CHANGES.md headers (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12849\"\u003e#12849\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/baf515dfe0d94f36c9dc232f6b55e9828b268eb0\"\u003ebaf515d\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Remove go mod init/tidy from postprocessor (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12832\"\u003e#12832\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1fe506a37e68497b6da4587d409b79e7b4d2a113\"\u003e1fe506a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Test for error path with flags (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12830\"\u003e#12830\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f0da7b22488b4d9f6232d227d3e196d8d2b92858\"\u003ef0da7b2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/postprocessor:\u003c/strong\u003e Add dlp to skip-module-scan-paths (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12857\"\u003e#12857\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/45a7d9b4b9083d1bcaca89c3d86878ba77c230e3\"\u003e45a7d9b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Honor original container contract (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12846\"\u003e#12846\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/71c8fd368667f74426aa31b6c50def8151482480\"\u003e71c8fd3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Improvements to release-init (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12842\"\u003e#12842\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0db677a93fe16b9a62bb69a3cea7bc45d5aaec36\"\u003e0db677a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003estategen:\u003c/strong\u003e Specify an appropriate tag format for google-cloud-go (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12835\"\u003e#12835\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ffcff33a0c3fad720a31083672c4cf2498af719f\"\u003effcff33\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.6...v0.122.0\"\u003e0.122.0\u003c/a\u003e (2025-09-04)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add release-init command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12751\"\u003e#12751\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/52e84cc9a11077eb3c50a0b5fc9aa26361d63b47\"\u003e52e84cc\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Better support for v2 modules (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12797\"\u003e#12797\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4bc878597a5e6bd97cf3ee2174f6df7fbdd2d47b\"\u003e4bc8785\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Module detection when tidy errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12801\"\u003e#12801\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83d46cdc5ed7cfbb94038e7fa1f787adfe532c74\"\u003e83d46cd\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix goimports errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12765\"\u003e#12765\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83bdaa4ce4e42f8b4a29e2055fc4894d8c6b1e2c\"\u003e83bdaa4\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.5...v0.121.6\"\u003e0.121.6\u003c/a\u003e (2025-08-14)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix Dockerfile permissions for go mod tidy (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12704\"\u003e#12704\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0e70a0b6afccc016c67337f340e2755fe7a476ca\"\u003e0e70a0b\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.4...v0.121.5\"\u003e0.121.5\u003c/a\u003e (2025-08-12)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/86eb615b7fcd5bb73ff6d48e985a15a6b7bf13ec\"\u003e\u003ccode\u003e86eb615\u003c/code\u003e\u003c/a\u003e chore: bulk promote stable 0.x libraries to v1.0.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14562\"\u003e#14562\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/942bbc15b99ffd078af4f731a6f249c3b4c48110\"\u003e\u003ccode\u003e942bbc1\u003c/code\u003e\u003c/a\u003e feat: Add ListSkills and DeleteSkill methods in Vertex AI Skill Registry SDK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14ea3de7de6e8e2c769f0d1828705e83097b9ba9\"\u003e\u003ccode\u003e14ea3de\u003c/code\u003e\u003c/a\u003e fix: Fix name collision on SandboxEnvironment.state by renaming enum to Sandb...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9de3a501164cad8b3d16005d065dc9cd1cd242e\"\u003e\u003ccode\u003ed9de3a5\u003c/code\u003e\u003c/a\u003e test(spanner): skip DirectPath-incompatible tests when DirectPath is enabled ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/043aa716a57d4b2e0749a79eaf65a9d093b9f1e3\"\u003e\u003ccode\u003e043aa71\u003c/code\u003e\u003c/a\u003e test(spanner): fix nil pointer panic in TestNewBuiltinMetricsTracerFactory un...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d6f00a2f6f4ab959f753ea71fc956875a0b80bf0\"\u003e\u003ccode\u003ed6f00a2\u003c/code\u003e\u003c/a\u003e test(spanner): disable TestIntegration_QueueMutations (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14550\"\u003e#14550\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d10add39ac639d06f9c5e711d70be8739e5f143a\"\u003e\u003ccode\u003ed10add3\u003c/code\u003e\u003c/a\u003e refactor(pubsub/v2/pstest): implement custom filter parser (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14497\"\u003e#14497\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/94d24ca358d9f98ccd48d1b826cfab83557d5b19\"\u003e\u003ccode\u003e94d24ca\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260507T184113Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14549\"\u003e#14549\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/541569e80c1154b8742f147fa9667b6794be84eb\"\u003e\u003ccode\u003e541569e\u003c/code\u003e\u003c/a\u003e docs: update README to reflect Gemini Enterprise Agent Platform\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/237533a0b5847011484577241e8201ccce7e31a0\"\u003e\u003ccode\u003e237533a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14545\"\u003e#14545\u003c/a\u003e from googleapis:release-agentplatform-0.20.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.13.0...ai/v1.0.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/longrunning` from 0.13.0 to 1.0.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/longrunning's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eai: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ai/v0.20.0...ai/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapigeeregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apigeeregistry/v0.15.0...apigeeregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapihub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apihub/v0.7.0...apihub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapiregistry: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apiregistry/v0.7.0...apiregistry/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapphub: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apphub/v0.9.0...apphub/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eapps: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/apps/v0.13.0...apps/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eauditmanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/auditmanager/v0.7.0...auditmanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ebiglake: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/biglake/v0.5.0...biglake/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003eces: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/ces/v0.9.0...ces/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echat: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chat/v0.23.0...chat/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003echronicle: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/chronicle/v0.7.0...chronicle/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudprofiler: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudprofiler/v0.9.0...cloudprofiler/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003ecloudsecuritycompliance: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/cloudsecuritycompliance/v0.6.0...cloudsecuritycompliance/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003econfigdelivery: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/configdelivery/v0.6.0...configdelivery/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edataform: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/dataform/v0.19.0...dataform/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edatamanager: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/datamanager/v0.8.0...datamanager/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003ch2\u003edeveloperconnect: v1.0.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/suztomo/google-cloud-go/compare/developerconnect/v0.10.0...developerconnect/v1.0.0\"\u003ev1.0.0\u003c/a\u003e (2026-05-08)\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/blob/main/CHANGES.md\"\u003ecloud.google.com/go/longrunning's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChanges\u003c/h1\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.122.0...v0.123.0\"\u003e0.123.0\u003c/a\u003e (2025-09-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/stategen:\u003c/strong\u003e Populate the latest googleapis commit (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12880\"\u003e#12880\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/7b017a083ddd322b21faf413a329ba870a98db96\"\u003e7b017a0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Implement the build command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12817\"\u003e#12817\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14734c875103f97748857b9b0472fd0b2658663f\"\u003e14734c8\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add link to source commit in release notes (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12881\"\u003e#12881\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1c06cc6109a84941c367896575b187b79befc3af\"\u003e1c06cc6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix CHANGES.md headers (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12849\"\u003e#12849\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/baf515dfe0d94f36c9dc232f6b55e9828b268eb0\"\u003ebaf515d\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Remove go mod init/tidy from postprocessor (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12832\"\u003e#12832\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1fe506a37e68497b6da4587d409b79e7b4d2a113\"\u003e1fe506a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Test for error path with flags (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12830\"\u003e#12830\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f0da7b22488b4d9f6232d227d3e196d8d2b92858\"\u003ef0da7b2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/postprocessor:\u003c/strong\u003e Add dlp to skip-module-scan-paths (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12857\"\u003e#12857\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/45a7d9b4b9083d1bcaca89c3d86878ba77c230e3\"\u003e45a7d9b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Honor original container contract (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12846\"\u003e#12846\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/71c8fd368667f74426aa31b6c50def8151482480\"\u003e71c8fd3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003elibrariangen:\u003c/strong\u003e Improvements to release-init (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12842\"\u003e#12842\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0db677a93fe16b9a62bb69a3cea7bc45d5aaec36\"\u003e0db677a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003estategen:\u003c/strong\u003e Specify an appropriate tag format for google-cloud-go (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12835\"\u003e#12835\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ffcff33a0c3fad720a31083672c4cf2498af719f\"\u003effcff33\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.6...v0.122.0\"\u003e0.122.0\u003c/a\u003e (2025-09-04)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Add release-init command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12751\"\u003e#12751\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/52e84cc9a11077eb3c50a0b5fc9aa26361d63b47\"\u003e52e84cc\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Better support for v2 modules (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12797\"\u003e#12797\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4bc878597a5e6bd97cf3ee2174f6df7fbdd2d47b\"\u003e4bc8785\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/godocfx:\u003c/strong\u003e Module detection when tidy errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12801\"\u003e#12801\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83d46cdc5ed7cfbb94038e7fa1f787adfe532c74\"\u003e83d46cd\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix goimports errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12765\"\u003e#12765\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/83bdaa4ce4e42f8b4a29e2055fc4894d8c6b1e2c\"\u003e83bdaa4\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.5...v0.121.6\"\u003e0.121.6\u003c/a\u003e (2025-08-14)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003einternal/librariangen:\u003c/strong\u003e Fix Dockerfile permissions for go mod tidy (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12704\"\u003e#12704\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/0e70a0b6afccc016c67337f340e2755fe7a476ca\"\u003e0e70a0b\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.121.4...v0.121.5\"\u003e0.121.5\u003c/a\u003e (2025-08-12)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/86eb615b7fcd5bb73ff6d48e985a15a6b7bf13ec\"\u003e\u003ccode\u003e86eb615\u003c/code\u003e\u003c/a\u003e chore: bulk promote stable 0.x libraries to v1.0.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14562\"\u003e#14562\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/942bbc15b99ffd078af4f731a6f249c3b4c48110\"\u003e\u003ccode\u003e942bbc1\u003c/code\u003e\u003c/a\u003e feat: Add ListSkills and DeleteSkill methods in Vertex AI Skill Registry SDK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/14ea3de7de6e8e2c769f0d1828705e83097b9ba9\"\u003e\u003ccode\u003e14ea3de\u003c/code\u003e\u003c/a\u003e fix: Fix name collision on SandboxEnvironment.state by renaming enum to Sandb...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9de3a501164cad8b3d16005d065dc9cd1cd242e\"\u003e\u003ccode\u003ed9de3a5\u003c/code\u003e\u003c/a\u003e test(spanner): skip DirectPath-incompatible tests when DirectPath is enabled ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/043aa716a57d4b2e0749a79eaf65a9d093b9f1e3\"\u003e\u003ccode\u003e043aa71\u003c/code\u003e\u003c/a\u003e test(spanner): fix nil pointer panic in TestNewBuiltinMetricsTracerFactory un...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d6f00a2f6f4ab959f753ea71fc956875a0b80bf0\"\u003e\u003ccode\u003ed6f00a2\u003c/code\u003e\u003c/a\u003e test(spanner): disable TestIntegration_QueueMutations (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14550\"\u003e#14550\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d10add39ac639d06f9c5e711d70be8739e5f143a\"\u003e\u003ccode\u003ed10add3\u003c/code\u003e\u003c/a\u003e refactor(pubsub/v2/pstest): implement custom filter parser (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14497\"\u003e#14497\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/94d24ca358d9f98ccd48d1b826cfab83557d5b19\"\u003e\u003ccode\u003e94d24ca\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260507T184113Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14549\"\u003e#14549\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/541569e80c1154b8742f147fa9667b6794be84eb\"\u003e\u003ccode\u003e541569e\u003c/code\u003e\u003c/a\u003e docs: update README to reflect Gemini Enterprise Agent Platform\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/237533a0b5847011484577241e8201ccce7e31a0\"\u003e\u003ccode\u003e237533a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14545\"\u003e#14545\u003c/a\u003e from googleapis:release-agentplatform-0.20.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/v0.13.0...ai/v1.0.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapi...\n\n_Description has been truncated_","html_url":"https://github.com/gofiber/recipes/pull/4739","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/gofiber%2Frecipes/issues/4739","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/4739/packages"}},{"old_version":"1.62.2","new_version":"1.62.3","update_type":"patch","path":null,"pr_created_at":"2026-06-04T05:54:19.000Z","version_change":"1.62.2 → 1.62.3","issue":{"uuid":"4586217367","node_id":"PR_kwDOGd6UEM7ijFMA","number":20960,"state":"open","title":"chore(deps): bump cloud.google.com/go/storage from 1.62.2 to 1.62.3","user":"dependabot[bot]","labels":["dependencies","ci-all-qa-tests","auto-merge","auto-retest"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-04T05:54:19.000Z","updated_at":"2026-06-04T08:07:39.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.2 to 1.62.3.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ev1.62.3\u003c/a\u003e (2026-06-03)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003efix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635\"\u003e04b6c635\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65\"\u003e20b37d65\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8afd6a0bc8822cdcd6b0f90d64522a44459c39a2\"\u003e\u003ccode\u003e8afd6a0\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260603T093646Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14699\"\u003e#14699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/04b6c635c09de1772fcefd8a7fd5e4ffdd370b79\"\u003e\u003ccode\u003e04b6c63\u003c/code\u003e\u003c/a\u003e fix(storage): fix race condition during retries in gRPC writer (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14649\"\u003e#14649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/20b37d65d56d4b5e7b8d43b1f6b2ddefcd8944be\"\u003e\u003ccode\u003e20b37d6\u003c/code\u003e\u003c/a\u003e fix(storage): add server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.2...storage/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.2\u0026new-version=1.62.3)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/stackrox/stackrox/pull/20960","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/stackrox%2Fstackrox/issues/20960","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/20960/packages"}},{"old_version":"1.62.1","new_version":"1.62.2","update_type":"patch","path":null,"pr_created_at":"2026-06-03T07:51:29.000Z","version_change":"1.62.1 → 1.62.2","issue":{"uuid":"4577945480","node_id":"PR_kwDOPFnGYM7iHs4G","number":54,"state":"closed","title":"chore(deps): Bump the gomod group across 1 directory with 15 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-06-18T13:31:31.000Z","author_association":null,"state_reason":null,"created_at":"2026-06-03T07:51:29.000Z","updated_at":"2026-06-18T13:31:33.000Z","time_to_close":1316402,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): Bump","group_name":"gomod","update_count":15,"packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.41.6","new_version":"1.41.11","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.32.16","new_version":"1.32.22","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ecr","old_version":"1.57.1","new_version":"1.58.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.100.0","new_version":"1.103.1","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/crashappsec/ocular","old_version":"0.3.0","new_version":"0.3.1","repository_url":"https://github.com/crashappsec/ocular"},{"name":"github.com/go-git/go-git/v6","old_version":"6.0.0-alpha.2","new_version":"6.0.0-alpha.4","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/google/go-containerregistry","old_version":"0.21.5","new_version":"0.21.6","repository_url":"https://github.com/google/go-containerregistry"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.283.0","repository_url":"https://github.com/googleapis/google-api-go-client"}],"path":null,"ecosystem":"go"},"body":"Bumps the gomod group with 9 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.1` | `1.62.2` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.6` | `1.41.11` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.16` | `1.32.22` |\n| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.57.1` | `1.58.2` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.100.0` | `1.103.1` |\n| [github.com/crashappsec/ocular](https://github.com/crashappsec/ocular) | `0.3.0` | `0.3.1` |\n| [github.com/go-git/go-git/v6](https://github.com/go-git/go-git) | `6.0.0-alpha.2` | `6.0.0-alpha.4` |\n| [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry) | `0.21.5` | `0.21.6` |\n| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.276.0` | `0.283.0` |\n\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2` from 1.41.6 to 1.41.11\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fa369bd7bb9576e85ac094a43a15e8372a3d0129\"\u003e\u003ccode\u003efa369bd\u003c/code\u003e\u003c/a\u003e Release 2026-06-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/960ee4dc8380a46ded94f3976e073242d42bf8ed\"\u003e\u003ccode\u003e960ee4d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4b6df8b301a6c965903012dda08e9f38fd163f1c\"\u003e\u003ccode\u003e4b6df8b\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/30b15dd22cc690c7d647c32f415111437cfbed2a\"\u003e\u003ccode\u003e30b15dd\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e8c72af3150fa9c8898c916b2e213a5d3d7d64ed\"\u003e\u003ccode\u003ee8c72af\u003c/code\u003e\u003c/a\u003e enable schema-serde (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3421\"\u003e#3421\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b4d02c534cf7f5c782e10bc3f66e40c081a7bb3a\"\u003e\u003ccode\u003eb4d02c5\u003c/code\u003e\u003c/a\u003e Release 2026-06-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/48e375b484e0ae917f61904db440ef17382093d1\"\u003e\u003ccode\u003e48e375b\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b8a4fc132e65d8310e2de67e0600eec53e2f4b26\"\u003e\u003ccode\u003eb8a4fc1\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e8627b4cc01977004c41ff0f42670a44d500982d\"\u003e\u003ccode\u003ee8627b4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3430\"\u003e#3430\u003c/a\u003e from aws/fix-remove-ioutil\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4e258a368c5b421d28bae4a18e718b1b4c7dd16a\"\u003e\u003ccode\u003e4e258a3\u003c/code\u003e\u003c/a\u003e chore: update changelog description per review\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.41.6...v1.41.11\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/config` from 1.32.16 to 1.32.22\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fa369bd7bb9576e85ac094a43a15e8372a3d0129\"\u003e\u003ccode\u003efa369bd\u003c/code\u003e\u003c/a\u003e Release 2026-06-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/960ee4dc8380a46ded94f3976e073242d42bf8ed\"\u003e\u003ccode\u003e960ee4d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4b6df8b301a6c965903012dda08e9f38fd163f1c\"\u003e\u003ccode\u003e4b6df8b\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/30b15dd22cc690c7d647c32f415111437cfbed2a\"\u003e\u003ccode\u003e30b15dd\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e8c72af3150fa9c8898c916b2e213a5d3d7d64ed\"\u003e\u003ccode\u003ee8c72af\u003c/code\u003e\u003c/a\u003e enable schema-serde (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3421\"\u003e#3421\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b4d02c534cf7f5c782e10bc3f66e40c081a7bb3a\"\u003e\u003ccode\u003eb4d02c5\u003c/code\u003e\u003c/a\u003e Release 2026-06-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/48e375b484e0ae917f61904db440ef17382093d1\"\u003e\u003ccode\u003e48e375b\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b8a4fc132e65d8310e2de67e0600eec53e2f4b26\"\u003e\u003ccode\u003eb8a4fc1\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e8627b4cc01977004c41ff0f42670a44d500982d\"\u003e\u003ccode\u003ee8627b4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3430\"\u003e#3430\u003c/a\u003e from aws/fix-remove-ioutil\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4e258a368c5b421d28bae4a18e718b1b4c7dd16a\"\u003e\u003ccode\u003e4e258a3\u003c/code\u003e\u003c/a\u003e chore: update changelog description per review\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.32.16...config/v1.32.22\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/ecr` from 1.57.1 to 1.58.2\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0599931efcf551dc63f84ec669d7fb5cfe14f64c\"\u003e\u003ccode\u003e0599931\u003c/code\u003e\u003c/a\u003e Release 2024-07-10.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ca2a30ec8d823300ec948b784c491904eeba8929\"\u003e\u003ccode\u003eca2a30e\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e2dff5f9bddaf1f23ea57e1e04d80f6ce2d54221\"\u003e\u003ccode\u003ee2dff5f\u003c/code\u003e\u003c/a\u003e temporarily re-add jmespath dependency (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2712\"\u003e#2712\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/383fd26928547348efed0ee1f8914d9e7a1b0287\"\u003e\u003ccode\u003e383fd26\u003c/code\u003e\u003c/a\u003e Release 2024-07-10\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4a055f9d9e17eb7ef2206e8e37ba98d661d13e6a\"\u003e\u003ccode\u003e4a055f9\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e3457953351e6993f57f5ab8e373af8af70be45b\"\u003e\u003ccode\u003ee345795\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/52a10ac239cc1aab2d070fbb004f6445ca0ddcc0\"\u003e\u003ccode\u003e52a10ac\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/adab0de9e4ae75aee4f894c99fd1e2ce2de0035e\"\u003e\u003ccode\u003eadab0de\u003c/code\u003e\u003c/a\u003e remove unused jmespath dependency from main module (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2707\"\u003e#2707\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0e07cc82b25692dce8f68e0b5bd0d0c5cdbcd279\"\u003e\u003ccode\u003e0e07cc8\u003c/code\u003e\u003c/a\u003e Release 2024-07-09\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5e3583451cd8a91dbca2cc22672c2cfa0c7860cf\"\u003e\u003ccode\u003e5e35834\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.57.1...service/s3/v1.58.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.100.0 to 1.103.1\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fa369bd7bb9576e85ac094a43a15e8372a3d0129\"\u003e\u003ccode\u003efa369bd\u003c/code\u003e\u003c/a\u003e Release 2026-06-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/960ee4dc8380a46ded94f3976e073242d42bf8ed\"\u003e\u003ccode\u003e960ee4d\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4b6df8b301a6c965903012dda08e9f38fd163f1c\"\u003e\u003ccode\u003e4b6df8b\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/30b15dd22cc690c7d647c32f415111437cfbed2a\"\u003e\u003ccode\u003e30b15dd\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e8c72af3150fa9c8898c916b2e213a5d3d7d64ed\"\u003e\u003ccode\u003ee8c72af\u003c/code\u003e\u003c/a\u003e enable schema-serde (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3421\"\u003e#3421\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b4d02c534cf7f5c782e10bc3f66e40c081a7bb3a\"\u003e\u003ccode\u003eb4d02c5\u003c/code\u003e\u003c/a\u003e Release 2026-06-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/48e375b484e0ae917f61904db440ef17382093d1\"\u003e\u003ccode\u003e48e375b\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b8a4fc132e65d8310e2de67e0600eec53e2f4b26\"\u003e\u003ccode\u003eb8a4fc1\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e8627b4cc01977004c41ff0f42670a44d500982d\"\u003e\u003ccode\u003ee8627b4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3430\"\u003e#3430\u003c/a\u003e from aws/fix-remove-ioutil\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4e258a368c5b421d28bae4a18e718b1b4c7dd16a\"\u003e\u003ccode\u003e4e258a3\u003c/code\u003e\u003c/a\u003e chore: update changelog description per review\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.100.0...service/s3/v1.103.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/smithy-go` from 1.25.1 to 1.27.0\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/smithy-go/blob/main/CHANGELOG.md\"\u003egithub.com/aws/smithy-go's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2026-06-02)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go\u003c/code\u003e: v1.27.0\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add APIs for schema-based serialization.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for all current AWS and Smithy protocols.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Enforce max nesting depth of 128 on CBOR payloads.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go/aws-http-auth\u003c/code\u003e: \u003ca href=\"https://github.com/aws/smithy-go/blob/main/aws-http-auth/CHANGELOG.md#v120-2026-06-02\"\u003ev1.2.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add event stream signer.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-05-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go\u003c/code\u003e: v1.26.0\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add StringSlice to endpoint rulesfn.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-04-23)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go\u003c/code\u003e: v1.25.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Fixed a memory leak in the LRU cache implementation used by some AWS services.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-04-15)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go\u003c/code\u003e: v1.25.0\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for endpointBdd trait\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-04-02)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Updated to the latest SDK module versions\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go\u003c/code\u003e: v1.24.3\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Add additional sigv4 configuration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/smithy-go/aws-http-auth\u003c/code\u003e: \u003ca href=\"https://github.com/aws/smithy-go/blob/main/aws-http-auth/CHANGELOG.md#v113-2026-04-02\"\u003ev1.1.3\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Add additional sigv4 configuration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3f6ece24dd0646e1f43ce05d980bcb4880a6e7fe\"\u003e\u003ccode\u003e3f6ece2\u003c/code\u003e\u003c/a\u003e Release 2026-06-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3432807d26fd8d74013bd20d7d4c56ff379e2e16\"\u003e\u003ccode\u003e3432807\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;changelog\u0026quot;\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/9663ed6253396a37d3cca9e37a9410118a370bc1\"\u003e\u003ccode\u003e9663ed6\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/bcd9f540477b856423b2a8f679574df8026a5dbe\"\u003e\u003ccode\u003ebcd9f54\u003c/code\u003e\u003c/a\u003e enforce a max nesting depth of 128 on cbor payloads (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/670\"\u003e#670\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/ff093e96647027be14e7079a03359bc8c80d6b6f\"\u003e\u003ccode\u003eff093e9\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/1db7cb38af94cbdbf000a31a56f5a1d20191fa68\"\u003e\u003ccode\u003e1db7cb3\u003c/code\u003e\u003c/a\u003e hold off on unsafe string for now\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/473b1947c03deea1898ffd01fbba8de765d5eed7\"\u003e\u003ccode\u003e473b194\u003c/code\u003e\u003c/a\u003e update README again\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/6620de4fc429f2553f793bb170a997e6c9d2e439\"\u003e\u003ccode\u003e6620de4\u003c/code\u003e\u003c/a\u003e update README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/22c5357d5d20fd4262b62ca7bb3530d7759a79bf\"\u003e\u003ccode\u003e22c5357\u003c/code\u003e\u003c/a\u003e introduce schema-based serialization (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/666\"\u003e#666\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/6857390fd160b416d0e369dc9dc5c2b3736178fc\"\u003e\u003ccode\u003e6857390\u003c/code\u003e\u003c/a\u003e fix: remove deprecated io/ioutil from codegen templates (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/669\"\u003e#669\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.25.1...v1.27.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/crashappsec/ocular` from 0.3.0 to 0.3.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/crashappsec/ocular/releases\"\u003egithub.com/crashappsec/ocular's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.3.1\u003c/h2\u003e\n\u003ch1\u003e\u003ca href=\"https://github.com/crashappsec/ocular/releases/tag/v0.3.1\"\u003ev0.3.1\u003c/a\u003e - \u003cstrong\u003eMay 22nd, 2026\u003c/strong\u003e\u003c/h1\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eContainers can be conditionally included in scan via parameter\u003c/li\u003e\n\u003cli\u003eAbility to configure runtime class for pipelines\u003c/li\u003e\n\u003cli\u003eParameter settings can be inheritted from parent resource (where applicable)\n\u003cul\u003e\n\u003cli\u003eUploader settings can inherit from Profile parameters\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eImprove accuracy of pipeline and search metrics via finalizer\u003c/li\u003e\n\u003cli\u003eDeterministic helm chart generation\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/crashappsec/ocular/blob/main/CHANGELOG.md\"\u003egithub.com/crashappsec/ocular's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003e\u003ca href=\"https://github.com/crashappsec/ocular/releases/tag/v0.3.1\"\u003ev0.3.1\u003c/a\u003e - \u003cstrong\u003eMay 22nd, 2026\u003c/strong\u003e\u003c/h1\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eContainers can be conditionally included in scan via parameter\u003c/li\u003e\n\u003cli\u003eAbility to configure runtime class for pipelines\u003c/li\u003e\n\u003cli\u003eParameter settings can be inheritted from parent resource (where applicable)\n\u003cul\u003e\n\u003cli\u003eUploader settings can inherit from Profile parameters\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eImprove accuracy of pipeline and search metrics via finalizer\u003c/li\u003e\n\u003cli\u003eDeterministic helm chart generation\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/7522dbf1cebd510a193c1d9e5fbf2c9a734bcba1\"\u003e\u003ccode\u003e7522dbf\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/crashappsec/ocular/issues/76\"\u003e#76\u003c/a\u003e from crashappsec/feat/release/v0.3.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/19e9cc7963d37c66f00ce1146deddd1e2845dfea\"\u003e\u003ccode\u003e19e9cc7\u003c/code\u003e\u003c/a\u003e docs: update CHANGELOG.md\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/9eafe5299047ea69f58d0291537a154e9bfb1c60\"\u003e\u003ccode\u003e9eafe52\u003c/code\u003e\u003c/a\u003e chore(deps): upgrade GitHub action and Docker dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/db2621e90f2a014ccbc29197890d60f0ca0e9d83\"\u003e\u003ccode\u003edb2621e\u003c/code\u003e\u003c/a\u003e fix(pipelines): use finalizers for metrics\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/39c40121f87ffb3cf0f5524b26d4efd4f32a383a\"\u003e\u003ccode\u003e39c4012\u003c/code\u003e\u003c/a\u003e feat: release v0.3.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/e3974fccbac8a439c6c1dbc81e8cef88d3f82feb\"\u003e\u003ccode\u003ee3974fc\u003c/code\u003e\u003c/a\u003e ci: merge pull request \u003ca href=\"https://redirect.github.com/crashappsec/ocular/issues/72\"\u003e#72\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/crashappsec/ocular/commit/41a97a00534b6076c585b021ff91b8a4c70fdea3\"\u003e\u003ccode\u003e41a97a0\u003c/code\u003e\u003c/a\u003e feat: add runtime class support\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/crashappsec/ocular/compare/v0.3.0...v0.3.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-git/go-git/v6` from 6.0.0-alpha.2 to 6.0.0-alpha.4\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-git/go-git/releases\"\u003egithub.com/go-git/go-git/v6's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev6.0.0-alpha.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eplumbing: transport/ssh, Shell-quote path and args by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2067\"\u003ego-git/go-git#2067\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: submodule, canonical remote for relative URLs by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2071\"\u003ego-git/go-git#2071\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003estorage: filesystem, Use repository object format for writing loose objects by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2073\"\u003ego-git/go-git#2073\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: submodule, error on remote without URLs by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2076\"\u003ego-git/go-git#2076\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: objfile, Pass object format into Reader by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2077\"\u003ego-git/go-git#2077\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: submodule, Add relative URL regression tests by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2072\"\u003ego-git/go-git#2072\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/idxfile, Validate offset64 indices by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2083\"\u003ego-git/go-git#2083\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003estorage: filesystem, Search alternates in HashesWithPrefix by \u003ca href=\"https://github.com/andrew\"\u003e\u003ccode\u003e@​andrew\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2087\"\u003ego-git/go-git#2087\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e*: Reject malformed variable-length integers by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2090\"\u003ego-git/go-git#2090\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd \u003ccode\u003eworktreeFilesystem\u003c/code\u003e wrapper for worktree by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2081\"\u003ego-git/go-git#2081\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etests: fix three recurring CI flakes by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2093\"\u003ego-git/go-git#2093\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/packfile, Test patchDeltaWriter cap by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2086\"\u003ego-git/go-git#2086\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/packfile, Tighten delta validation by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2089\"\u003ego-git/go-git#2089\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: worktree path hardening by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2097\"\u003ego-git/go-git#2097\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: Update module github.com/go-git/go-git-fixtures/v6 to v6.0.0-20260502205956-66bffbe5a6ff (main) by \u003ca href=\"https://github.com/go-git-renovate\"\u003e\u003ccode\u003e@​go-git-renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2102\"\u003ego-git/go-git#2102\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: Update golang (main) by \u003ca href=\"https://github.com/go-git-renovate\"\u003e\u003ccode\u003e@​go-git-renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2099\"\u003ego-git/go-git#2099\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003econfig: validate submodule names by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2079\"\u003ego-git/go-git#2079\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: Update go-git (main) by \u003ca href=\"https://github.com/go-git-renovate\"\u003e\u003ccode\u003e@​go-git-renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2103\"\u003ego-git/go-git#2103\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eworktree: skip ignored directories during Reset walk by \u003ca href=\"https://github.com/Soph\"\u003e\u003ccode\u003e@​Soph\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2075\"\u003ego-git/go-git#2075\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/pktline, validate reader/writer inputs by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2104\"\u003ego-git/go-git#2104\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: Update module github.com/go-git/go-git-fixtures/v6 to v6.0.0-alpha.1 (main) by \u003ca href=\"https://github.com/go-git-renovate\"\u003e\u003ccode\u003e@​go-git-renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2110\"\u003ego-git/go-git#2110\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: object, tree entry validation by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2105\"\u003ego-git/go-git#2105\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: Stop validating symlink target paths by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2114\"\u003ego-git/go-git#2114\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: Allow MkdirAll on worktree-root paths by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2115\"\u003ego-git/go-git#2115\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egit: add repository and remote archive support by \u003ca href=\"https://github.com/aymanbagabas\"\u003e\u003ccode\u003e@​aymanbagabas\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2013\"\u003ego-git/go-git#2013\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix file handle leaks by calling Repository.Close() and adding transactional.Storage.Close() by \u003ca href=\"https://github.com/AriehSchneier\"\u003e\u003ccode\u003e@​AriehSchneier\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/1999\"\u003ego-git/go-git#1999\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: fuzz on-disk format decoders by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2120\"\u003ego-git/go-git#2120\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format decoder input bounds and contracts by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2119\"\u003ego-git/go-git#2119\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: fuzz packp and capability decoders by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2121\"\u003ego-git/go-git#2121\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003estorage: dotgit, fix hasIncomingObjects race by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2131\"\u003ego-git/go-git#2131\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/packfile, use ReadAt in FSObject.Reader() for concurrency safety. by \u003ca href=\"https://github.com/cedric-appdirect\"\u003e\u003ccode\u003e@​cedric-appdirect\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/1998\"\u003ego-git/go-git#1998\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/packfile, harden malformed pack handling by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2113\"\u003ego-git/go-git#2113\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/andrew\"\u003e\u003ccode\u003e@​andrew\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2087\"\u003ego-git/go-git#2087\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v6.0.0-alpha.3...v6.0.0-alpha.4\"\u003ehttps://github.com/go-git/go-git/compare/v6.0.0-alpha.3...v6.0.0-alpha.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev6.0.0-alpha.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eplumbing: transport, add git-upload-archive support by \u003ca href=\"https://github.com/aymanbagabas\"\u003e\u003ccode\u003e@​aymanbagabas\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/1986\"\u003ego-git/go-git#1986\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eutils: sync, Make zlib compression pluggable via x/plugin by \u003ca href=\"https://github.com/stiak\"\u003e\u003ccode\u003e@​stiak\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2012\"\u003ego-git/go-git#2012\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: establish DCO sign-off requirement for all contributions by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/1914\"\u003ego-git/go-git#1914\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: update \u003ccode\u003eCONTRIBUTING.md\u003c/code\u003e, \u003ccode\u003eREADME.md\u003c/code\u003e and add \u003ccode\u003eHISTORY.md\u003c/code\u003e by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/1946\"\u003ego-git/go-git#1946\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003estorage: filesystem, close packfile iterators after use by \u003ca href=\"https://github.com/aymanbagabas\"\u003e\u003ccode\u003e@​aymanbagabas\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2027\"\u003ego-git/go-git#2027\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd .github/copilot-instructions.md with PR review guidelines by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2040\"\u003ego-git/go-git#2040\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: update comment to reflect support for the last 2 stable Go versions by \u003ca href=\"https://github.com/alexandear\"\u003e\u003ccode\u003e@​alexandear\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2041\"\u003ego-git/go-git#2041\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e*: clone, resolve relative local URLs against CWD in CloneOptions.Validate by \u003ca href=\"https://github.com/AriehSchneier\"\u003e\u003ccode\u003e@​AriehSchneier\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/1891\"\u003ego-git/go-git#1891\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/d9a69831082341eab799c062e10ad28b3204c08a\"\u003e\u003ccode\u003ed9a6983\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2113\"\u003e#2113\u003c/a\u003e from go-git/validation2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/f7d853768f794f5601fd43a924e84f66509392d7\"\u003e\u003ccode\u003ef7d8537\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1998\"\u003e#1998\u003c/a\u003e from cedric-appdirect/fsobject-readerat\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/b3850afd2dfbc11d5ead8e08c94940d8bbe9c480\"\u003e\u003ccode\u003eb3850af\u003c/code\u003e\u003c/a\u003e plumbing: format/packfile, cap delta chain depth in parser\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/5be028fc9693298bea36ba658fa5b18e75c1b948\"\u003e\u003ccode\u003e5be028f\u003c/code\u003e\u003c/a\u003e plumbing: format/packfile, surface scanner errors in headerFromOffset\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/04aef2cc4efd2099add53d4428ce41dd0a3dc8d3\"\u003e\u003ccode\u003e04aef2c\u003c/code\u003e\u003c/a\u003e plumbing: reject reserved object type in Valid\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/0d8b719f86ee0fb4a6a3340dbbd78c94dcd0699d\"\u003e\u003ccode\u003e0d8b719\u003c/code\u003e\u003c/a\u003e plumbing: format/packfile, propagate objectFromHeader errors in iter\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/7069092611db6a1e9e2bbb676669991765ee3960\"\u003e\u003ccode\u003e7069092\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2131\"\u003e#2131\u003c/a\u003e from hiddeco/dotgit-incoming-race\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/8ab1a10a67bef0781bc7d537742531a5254798be\"\u003e\u003ccode\u003e8ab1a10\u003c/code\u003e\u003c/a\u003e storage: dotgit, fix hasIncomingObjects race\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/41ab5f4851ec91b3aece7120b40345c3950168db\"\u003e\u003ccode\u003e41ab5f4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2121\"\u003e#2121\u003c/a\u003e from hiddeco/protocol-fuzz-harnesses\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/d4d24cb47371b979f69af282a68a776087a5c8a7\"\u003e\u003ccode\u003ed4d24cb\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2119\"\u003e#2119\u003c/a\u003e from hiddeco/format-input-bounds\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-git/go-git/compare/v6.0.0-alpha.2...v6.0.0-alpha.4\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/google/go-containerregistry` from 0.21.5 to 0.21.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/go-containerregistry/releases\"\u003egithub.com/google/go-containerregistry's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.21.6\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: update dependencies to use new azure sdk components by \u003ca href=\"https://github.com/gaganhr94\"\u003e\u003ccode\u003e@​gaganhr94\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2262\"\u003egoogle/go-containerregistry#2262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: restore resp.Body in retryError so CheckError can parse it by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2264\"\u003egoogle/go-containerregistry#2264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/registry: return 202 Accepted for PATCH chunk uploads by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2265\"\u003egoogle/go-containerregistry#2265\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFollow OCI distribution spec for artifactType and annotations by \u003ca href=\"https://github.com/malt3\"\u003e\u003ccode\u003e@​malt3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2269\"\u003egoogle/go-containerregistry#2269\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eactions: attach Codecov token to coverage tests on main by \u003ca href=\"https://github.com/Subserial\"\u003e\u003ccode\u003e@​Subserial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2270\"\u003egoogle/go-containerregistry#2270\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: use DeleteScope (with \u0026quot;delete\u0026quot; action) for manifest deletion by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2266\"\u003egoogle/go-containerregistry#2266\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: limit concurrent layer pulls by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2271\"\u003egoogle/go-containerregistry#2271\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/registry: reject corrupt disk blobs by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2272\"\u003egoogle/go-containerregistry#2272\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emutate: close layer readers during export by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2277\"\u003egoogle/go-containerregistry#2277\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ecrane/flatten: preserve image media type when flattening by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2267\"\u003egoogle/go-containerregistry#2267\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump goreleaser/goreleaser-action from 7.0.0 to 7.2.1 in the actions group across 1 directory by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2273\"\u003egoogle/go-containerregistry#2273\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump go.opentelemetry.io/otel from 1.36.0 to 1.41.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2278\"\u003egoogle/go-containerregistry#2278\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump the go-deps group across 3 directories with 6 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2280\"\u003egoogle/go-containerregistry#2280\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReplace go-homedir with os.UserHomeDir by \u003ca href=\"https://github.com/jammie-jelly\"\u003e\u003ccode\u003e@​jammie-jelly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2282\"\u003egoogle/go-containerregistry#2282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/name: only treat .localhost as non-HTTPS, not .local by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2281\"\u003egoogle/go-containerregistry#2281\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: block unspecified IPs (0.0.0.0, ::) in validateRealmURL by \u003ca href=\"https://github.com/marwan9696\"\u003e\u003ccode\u003e@​marwan9696\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2285\"\u003egoogle/go-containerregistry#2285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest(mutate): add Extract round-trip test for filesystem object preservation by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2283\"\u003egoogle/go-containerregistry#2283\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexperiments: remove deprecated support for estargz by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2288\"\u003egoogle/go-containerregistry#2288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump aws-actions/configure-aws-credentials from 6.1.0 to 6.1.1 in the actions group by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2289\"\u003egoogle/go-containerregistry#2289\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: limit HTTP response body reads to prevent OOM by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2296\"\u003egoogle/go-containerregistry#2296\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump the go-deps group across 3 directories with 6 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2297\"\u003egoogle/go-containerregistry#2297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: block redirects from token server to private/link-local addresses (SSRF fix) by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2292\"\u003egoogle/go-containerregistry#2292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/v1/mutate: preserve relative symlinks that stay within rootfs in Extract by \u003ca href=\"https://github.com/anishesg\"\u003e\u003ccode\u003e@​anishesg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2279\"\u003egoogle/go-containerregistry#2279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003evalidate: skip non-layer layers by \u003ca href=\"https://github.com/imjasonh\"\u003e\u003ccode\u003e@​imjasonh\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2298\"\u003egoogle/go-containerregistry#2298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: validate foreign layer URLs to prevent SSRF (fixes \u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2259\"\u003e#2259\u003c/a\u003e) by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2293\"\u003egoogle/go-containerregistry#2293\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: block SSRF via private-IP Location headers in blob uploads by \u003ca href=\"https://github.com/adilburaksen\"\u003e\u003ccode\u003e@​adilburaksen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2295\"\u003egoogle/go-containerregistry#2295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(mutate): preserve config blob and layers for non-Docker OCI artifacts by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2286\"\u003egoogle/go-containerregistry#2286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: preserve per-occurrence layer identity in mutate.Image.Layers() by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2299\"\u003egoogle/go-containerregistry#2299\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: retry HTTP 429 (Too Many Requests) by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2301\"\u003egoogle/go-containerregistry#2301\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: allow bearer realm at same host:port as registry by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2302\"\u003egoogle/go-containerregistry#2302\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate go version to 1.26.3 by \u003ca href=\"https://github.com/Subserial\"\u003e\u003ccode\u003e@​Subserial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2300\"\u003egoogle/go-containerregistry#2300\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/gaganhr94\"\u003e\u003ccode\u003e@​gaganhr94\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2262\"\u003egoogle/go-containerregistry#2262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2264\"\u003egoogle/go-containerregistry#2264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/malt3\"\u003e\u003ccode\u003e@​malt3\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2269\"\u003egoogle/go-containerregistry#2269\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2271\"\u003egoogle/go-containerregistry#2271\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2281\"\u003egoogle/go-containerregistry#2281\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/marwan9696\"\u003e\u003ccode\u003e@​marwan9696\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2285\"\u003egoogle/go-containerregistry#2285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anishesg\"\u003e\u003ccode\u003e@​anishesg\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2279\"\u003egoogle/go-containerregistry#2279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/adilburaksen\"\u003e\u003ccode\u003e@​adilburaksen\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2295\"\u003egoogle/go-containerregistry#2295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2299\"\u003egoogle/go-containerregistry#2299\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\"\u003ehttps://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/53f7e39e15bfd6aeea6a5f733ee1a8fcf54c15cf\"\u003e\u003ccode\u003e53f7e39\u003c/code\u003e\u003c/a\u003e Update go version to 1.26.3 (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2300\"\u003e#2300\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/bf87c3bfe4cc3218ac0baa364545d72729d2906d\"\u003e\u003ccode\u003ebf87c3b\u003c/code\u003e\u003c/a\u003e transport: allow bearer realm at same host:port as registry (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2302\"\u003e#2302\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/c55facddfbd7fc3d648c6fdda9860b350b013a76\"\u003e\u003ccode\u003ec55facd\u003c/code\u003e\u003c/a\u003e transport: retry HTTP 429 (Too Many Requests) (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2301\"\u003e#2301\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/68a569e4a0eb927d36ccb0fcdf4578425c03b5a2\"\u003e\u003ccode\u003e68a569e\u003c/code\u003e\u003c/a\u003e fix: preserve per-occurrence layer identity in Layers() (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2299\"\u003e#2299\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/35b354b436879457221028f05a580fe1c0deccbc\"\u003e\u003ccode\u003e35b354b\u003c/code\u003e\u003c/a\u003e fix(mutate): preserve config blob and layers for non-Docker OCI artifacts (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2\"\u003e#2\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/e5983f2a67ec46b76984ce6de85de08a44eee955\"\u003e\u003ccode\u003ee5983f2\u003c/code\u003e\u003c/a\u003e remote: block SSRF via private-IP Location headers in blob uploads (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2295\"\u003e#2295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/6dad820da7de0d619f1127c46914f2eaf58e3b46\"\u003e\u003ccode\u003e6dad820\u003c/code\u003e\u003c/a\u003e remote: validate foreign layer URLs to prevent SSRF (fixes \u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2259\"\u003e#2259\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2293\"\u003e#2293\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/78bdf1b7e2105cdfcd8f23509992c78357ce16ed\"\u003e\u003ccode\u003e78bdf1b\u003c/code\u003e\u003c/a\u003e validate: skip non-layer layers (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2298\"\u003e#2298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/c29d91cdc394cb288270f4dd04a31f81054946f4\"\u003e\u003ccode\u003ec29d91c\u003c/code\u003e\u003c/a\u003e pkg/v1/mutate: preserve relative symlinks that stay within rootfs in Extract ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/a70d75a6915ed3137792206dac4bca21d1924959\"\u003e\u003ccode\u003ea70d75a\u003c/code\u003e\u003c/a\u003e transport: block redirects from token server to private/link-local addresses ...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/api` from 0.276.0 to 0.283.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/releases\"\u003egoogle.golang.org/api's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.283.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.282.0...v0.283.0\"\u003e0.283.0\u003c/a\u003e (2026-06-01)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3609\"\u003e#3609\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ed84bb800c56d3f7fee4c11f96673114e94a8cc2\"\u003eed84bb8\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3611\"\u003e#3611\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3855346eda7f4ba6c844d86de5de493d3e395f00\"\u003e3855346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3612\"\u003e#3612\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/32624d32240ec8e5997810fb9cb54f8000b6c7f8\"\u003e32624d3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.282.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.281.0...v0.282.0\"\u003e0.282.0\u003c/a\u003e (2026-05-27)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3607\"\u003e#3607\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3c139a07f71096667d5a623591ddb37dacd38d55\"\u003e3c139a0\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.281.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.280.0...v0.281.0\"\u003e0.281.0\u003c/a\u003e (2026-05-26)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3600\"\u003e#3600\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bcaee85f93824a21f5441c2ccd3b4d4811d97de7\"\u003ebcaee85\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3602\"\u003e#3602\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f0071d379f4443ffdae9994fe141b1b5e0c18a62\"\u003ef0071d3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3603\"\u003e#3603\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/b1aa9dea8c3c0e539c8d9687c99c55ec3679c996\"\u003eb1aa9de\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3604\"\u003e#3604\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/711e008d9caf16e6fb68c860f83a28fd0a8c0f98\"\u003e711e008\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3606\"\u003e#3606\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3ad8e8e2ab4ae50862c0fc5b17efa2d3cda33d9a\"\u003e3ad8e8e\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.280.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.279.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md\"\u003egoogle.golang.org/api's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.282.0...v0.283.0\"\u003e0.283.0\u003c/a\u003e (2026-06-01)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3609\"\u003e#3609\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ed84bb800c56d3f7fee4c11f96673114e94a8cc2\"\u003eed84bb8\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3611\"\u003e#3611\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3855346eda7f4ba6c844d86de5de493d3e395f00\"\u003e3855346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3612\"\u003e#3612\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/32624d32240ec8e5997810fb9cb54f8000b6c7f8\"\u003e32624d3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.281.0...v0.282.0\"\u003e0.282.0\u003c/a\u003e (2026-05-27)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3607\"\u003e#3607\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3c139a07f71096667d5a623591ddb37dacd38d55\"\u003e3c139a0\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.280.0...v0.281.0\"\u003e0.281.0\u003c/a\u003e (2026-05-26)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3600\"\u003e#3600\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bcaee85f93824a21f5441c2ccd3b4d4811d97de7\"\u003ebcaee85\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3602\"\u003e#3602\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f0071d379f4443ffdae9994fe141b1b5e0c18a62\"\u003ef0071d3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3603\"\u003e#3603\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/b1aa9dea8c3c0e539c8d9687c99c55ec3679c996\"\u003eb1aa9de\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3604\"\u003e#3604\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/711e008d9caf16e6fb68c860f83a28fd0a8c0f98\"\u003e711e008\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3606\"\u003e#3606\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3ad8e8e2ab4ae50862c0fc5b17efa2d3cda33d9a\"\u003e3ad8e8e\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f6726366ff2f0b8fc82cec6f063dc9beb3ab1377\"\u003e\u003ccode\u003ef672636\u003c/code\u003e\u003c/a\u003e chore(main): release 0.283.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3610\"\u003e#3610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/32624d32240ec8e5997810fb9cb54f8000b6c7f8\"\u003e\u003ccode\u003e32624d3\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3612\"\u003e#3612\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3855346eda7f4ba6c844d86de5de493d3e395f00\"\u003e\u003ccode\u003e3855346\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3611\"\u003e#3611\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ed84bb800c56d3f7fee4c11f96673114e94a8cc2\"\u003e\u003ccode\u003eed84bb8\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3609\"\u003e#3609\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/60aebbd7406af09eb63866ff79f0dbd40cccecbb\"\u003e\u003ccode\u003e60aebbd\u003c/code\u003e\u003c/a\u003e chore(main): release 0.282.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3608\"\u003e#3608\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3c139a07f71096667d5a623591ddb37dacd38d55\"\u003e\u003ccode\u003e3c139a0\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3607\"\u003e#3607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8f434ff91fe8dc299942ecd7c87ebab151ff38e5\"\u003e\u003ccode\u003e8f434ff\u003c/code\u003e\u003c/a\u003e chore(main): release 0.281.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3601\"\u003e#3601\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/57f4b28d8c80b464f7f0b486a555de528fb89c4e\"\u003e\u003ccode\u003e57f4b28\u003c/code\u003e\u003c/a\u003e chore(all): update all (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3605\"\u003e#3605\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3ad8e8e2ab4ae50862c0fc5b17efa2d3cda33d9a\"\u003e\u003ccode\u003e3ad8e8e\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3606\"\u003e#3606\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/711e008d9caf16e6fb68c860f83a28fd0a8c0f98\"\u003e\u003ccode\u003e711e008\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3604\"\u003e#3604\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.283.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `k8s.io/api` from 0.35.4 to 0.36.1\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/25001c854943b552769cd32eacd0bef7467c0eea\"\u003e\u003ccode\u003e25001c8\u003c/code\u003e\u003c/a\u003e Update dependencies to v0.36.1 tag\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/879d3962091a3578f73c31a82c619e7a7bdfdd12\"\u003e\u003ccode\u003e879d396\u003c/code\u003e\u003c/a\u003e Merge remote-tracking branch 'origin/master' into release-1.36\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/030d81f63ea13f09388aee12e9c39b8d7ce9e841\"\u003e\u003ccode\u003e030d81f\u003c/code\u003e\u003c/a\u003e Update github.com/moby/spdystream from v0.5.0 to v0.5.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/aef6eb6922295161de2f7c1b9a496677938f8b20\"\u003e\u003ccode\u003eaef6eb6\u003c/code\u003e\u003c/a\u003e Add granular authorization for DRA ResourceClaim status updates\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/91061ea648b73ce8944e1c1ff2c1e99d6bacdb54\"\u003e\u003ccode\u003e91061ea\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/kubernetes/api/issues/136589\"\u003e#136589\u003c/a\u003e from tosi3k/preemption-mode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/e6b81e28967d56d57aa665d6b28cc7a807423f1f\"\u003e\u003ccode\u003ee6b81e2\u003c/code\u003e\u003c/a\u003e Add Workload-Aware Preemption fields to Workload and PodGroup APIs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/f8fce2ea6d494ed13df7d57d84e4b30b5ad5c8a3\"\u003e\u003ccode\u003ef8fce2e\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/kubernetes/api/issues/136989\"\u003e#136989\u003c/a\u003e from nojnhuh/podgroup-resourceclaim\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/b928f5ee0f7878ef903e95ab771f1a55ed867c54\"\u003e\u003ccode\u003eb928f5e\u003c/code\u003e\u003c/a\u003e Workload API: PodGroup ResourceClaims (KEP-5729)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/61bd78e724dd0616b1cd7f6cd802f41a32400d73\"\u003e\u003ccode\u003e61bd78e\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/kubernetes/api/issues/137190\"\u003e#137190\u003c/a\u003e from everpeace/KEP-5491-alpha\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/api/commit/6bf46eb598a71fec3182b4d598734c6a364e7cca\"\u003e\u003ccode\u003e6bf46eb\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/kubernetes/api/issues/137028\"\u003e#137028\u003c/a\u003e from nmn3m/feature/dra-resource-pool-status\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/kubernetes/api/compare/v0.35.4...v0.36.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `k8s.io/apimachinery` from 0.35.4 to 0.36.1\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/apimachinery/commit/7af103a2a439106791220493349f8d13bc0a1efd\"\u003e\u003ccode\u003e7af103a\u003c/code\u003e\u003c/a\u003e Update dependencies to v0.36.1 tag\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/apimachinery/commit/efb7f2628b269921e5f12c4d42aece418c76789c\"\u003e\u003ccode\u003eefb7f26\u003c/code\u003e\u003c/a\u003e Merge remote-tracking branch 'origin/master' into release-1.36\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/apimachinery/commit/d966e565cd271c44ba799b594ddb67987791cb80\"\u003e\u003ccode\u003ed966e56\u003c/code\u003e\u003c/a\u003e Update github.com/moby/spdystream from v0.5.0 to v0.5.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kubernetes/apimachinery/commit/79b363268543c402b68449b0cd531f8f8d0197d1\"\u003e\u003ccode\u003e79b3632\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/kubernetes/apimachinery/...\n\n_Description has been truncated_","html_url":"https://github.com/crashappsec/ocular-default-integrations/pull/54","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/crashappsec%2Focular-default-integrations/issues/54","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/54/packages"}},{"old_version":"1.59.2","new_version":"1.62.2","update_type":"minor","path":"/mockgcp","pr_created_at":"2026-06-01T16:35:17.000Z","version_change":"1.59.2 → 1.62.2","issue":{"uuid":"4564740388","node_id":"PR_kwDOCrwMCc7hcd0b","number":8930,"state":"open","title":"Bump cloud.google.com/go/storage from 1.59.2 to 1.62.2 in /mockgcp","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-01T16:35:17.000Z","updated_at":"2026-06-01T16:35:37.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.59.2","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":"/mockgcp","ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.59.2 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.61.4\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.61.3...storage/v1.61.4\"\u003ev1.61.4\u003c/a\u003e (2026-05-21)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd server closed idle connection to retriable errors (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14594\"\u003e#14594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/37580e7e\"\u003e37580e7e\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.59.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.59.2...storage/v1.59.3\"\u003ev1.59.3\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ehandle MRD hang corner case (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14509\"\u003e#14509\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1ca3b6f0\"\u003e1ca3b6f0\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.59.2...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.59.2\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/GoogleCloudPlatform/k8s-config-connector/pull/8930","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/GoogleCloudPlatform%2Fk8s-config-connector/issues/8930","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/8930/packages"}},{"old_version":"1.62.1","new_version":"1.62.2","update_type":"patch","path":"/api","pr_created_at":"2026-06-01T00:08:40.000Z","version_change":"1.62.1 → 1.62.2","issue":{"uuid":"4559454701","node_id":"PR_kwDOHajk3c7hLWfB","number":913,"state":"open","title":"fix(deps): bump cloud.google.com/go/storage from 1.62.1 to 1.62.2 in /api","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":["AchoArnold"],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-06-01T00:08:40.000Z","updated_at":"2026-06-01T00:14:15.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"fix(deps)","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":"/api","ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.1 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.1\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/NdoleStudio/httpsms/pull/913","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/NdoleStudio%2Fhttpsms/issues/913","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/913/packages"}},{"old_version":"1.62.1","new_version":"1.62.2","update_type":"patch","path":null,"pr_created_at":"2026-05-27T01:04:18.000Z","version_change":"1.62.1 → 1.62.2","issue":{"uuid":"4528618543","node_id":"PR_kwDODY5jaM7focx5","number":2969,"state":"open","title":"chore(deps): bump the go-modules group across 1 directory with 18 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-27T01:04:18.000Z","updated_at":"2026-05-27T01:04:53.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"go-modules","update_count":18,"packages":[{"name":"github.com/flanksource/commons","old_version":"1.51.3","new_version":"1.51.5","repository_url":"https://github.com/flanksource/commons"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatch","old_version":"1.56.2","new_version":"1.57.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/configservice","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.100.0","new_version":"1.101.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/elastic/go-elasticsearch/v8","old_version":"8.19.4","new_version":"8.19.6","repository_url":"https://github.com/elastic/go-elasticsearch"},{"name":"github.com/flanksource/clicky","old_version":"1.21.7","new_version":"1.21.9","repository_url":"https://github.com/flanksource/clicky"},{"name":"github.com/go-sql-driver/mysql","old_version":"1.9.3","new_version":"1.10.0","repository_url":"https://github.com/go-sql-driver/mysql"},{"name":"github.com/google/cel-go","old_version":"0.28.0","new_version":"0.28.1","repository_url":"https://github.com/google/cel-go"},{"name":"github.com/labstack/echo/v4","old_version":"4.15.1","new_version":"4.15.2","repository_url":"https://github.com/labstack/echo"},{"name":"github.com/microsoft/go-mssqldb","old_version":"1.9.8","new_version":"1.10.0","repository_url":"https://github.com/microsoft/go-mssqldb"},{"name":"github.com/onsi/ginkgo/v2","old_version":"2.28.2","new_version":"2.29.0","repository_url":"https://github.com/onsi/ginkgo"},{"name":"github.com/prometheus/alertmanager","old_version":"0.32.0","new_version":"0.32.1","repository_url":"https://github.com/prometheus/alertmanager"},{"name":"github.com/samber/oops","old_version":"1.21.0","new_version":"1.22.0","repository_url":"https://github.com/samber/oops"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"},{"name":"k8s.io/apimachinery","old_version":"0.36.0","new_version":"0.36.1","repository_url":"https://github.com/kubernetes/apimachinery"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-modules group with 16 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/flanksource/commons](https://github.com/flanksource/commons) | `1.51.3` | `1.51.5` |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.1` | `1.62.2` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://github.com/aws/aws-sdk-go-v2) | `1.56.2` | `1.57.0` |\n| [github.com/aws/aws-sdk-go-v2/service/configservice](https://github.com/aws/aws-sdk-go-v2) | `1.62.2` | `1.62.3` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.100.0` | `1.101.0` |\n| [github.com/elastic/go-elasticsearch/v8](https://github.com/elastic/go-elasticsearch) | `8.19.4` | `8.19.6` |\n| [github.com/flanksource/clicky](https://github.com/flanksource/clicky) | `1.21.7` | `1.21.9` |\n| [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) | `1.9.3` | `1.10.0` |\n| [github.com/google/cel-go](https://github.com/google/cel-go) | `0.28.0` | `0.28.1` |\n| [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.15.1` | `4.15.2` |\n| [github.com/microsoft/go-mssqldb](https://github.com/microsoft/go-mssqldb) | `1.9.8` | `1.10.0` |\n| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.28.2` | `2.29.0` |\n| [github.com/prometheus/alertmanager](https://github.com/prometheus/alertmanager) | `0.32.0` | `0.32.1` |\n| [github.com/samber/oops](https://github.com/samber/oops) | `1.21.0` | `1.22.0` |\n| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.276.0` | `0.280.0` |\n| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.36.0` | `0.36.1` |\n\n\nUpdates `github.com/flanksource/commons` from 1.51.3 to 1.51.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/commons/releases\"\u003egithub.com/flanksource/commons's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.51.5\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.4...v1.51.5\"\u003e1.51.5\u003c/a\u003e (2026-05-21)\u003c/h2\u003e\n\u003ch2\u003ev1.51.4\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.4\"\u003e1.51.4\u003c/a\u003e (2026-05-04)\u003c/h2\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/commons/commit/8f616949c08e644903c328fc4f3eca7db9171776\"\u003e\u003ccode\u003e8f61694\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.80 (\u003ca href=\"https://redirect.github.com/flanksource/commons/issues/315\"\u003e#315\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/commons/commit/72c1bcf52807cc782a4cce7b368e24af1832b334\"\u003e\u003ccode\u003e72c1bcf\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.79 (\u003ca href=\"https://redirect.github.com/flanksource/commons/issues/314\"\u003e#314\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/cloudwatch` from 1.56.2 to 1.57.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7c25c211744bdcff47a7203a7a894b1241f9da50\"\u003e\u003ccode\u003e7c25c21\u003c/code\u003e\u003c/a\u003e Release 2024-06-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b374423feaf0b04f01c7624b10915871e589b8a1\"\u003e\u003ccode\u003eb374423\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/923f54ea6016e1c70ad45ba0854e7361a72c3ba6\"\u003e\u003ccode\u003e923f54e\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f3bdfcf190150f62a7a07a03bc32d9c58a68f2e\"\u003e\u003ccode\u003e5f3bdfc\u003c/code\u003e\u003c/a\u003e track changes for string_array endpoint parameters (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2699\"\u003e#2699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b4498c633741e24ff4930313610096601dc4036\"\u003e\u003ccode\u003e2b4498c\u003c/code\u003e\u003c/a\u003e Release 2024-06-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/332d372bb946f0d50cae58f9401b9c1244e4b818\"\u003e\u003ccode\u003e332d372\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9397b8d8c05eb1528910ba81881797e7c0e53d17\"\u003e\u003ccode\u003e9397b8d\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/674e1e4412ce44325902125c935ce124d0bfaf4f\"\u003e\u003ccode\u003e674e1e4\u003c/code\u003e\u003c/a\u003e Release 2024-06-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/406eeb4367bab3ac49b75fbd2d842186e961f4f0\"\u003e\u003ccode\u003e406eeb4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/17bd894f3c3842d21d5963bc23213397557c3105\"\u003e\u003ccode\u003e17bd894\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ssm/v1.56.2...service/s3/v1.57.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/configservice` from 1.62.2 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d8ed081e9bcc22e6c5eb63fb6bbacfa38d7bcce3\"\u003e\u003ccode\u003ed8ed081\u003c/code\u003e\u003c/a\u003e Release 2025-10-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a2c9cb47051246e43a65f78696b8189aaa48c871\"\u003e\u003ccode\u003ea2c9cb4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7af054b46fade69938d2682163c4abbbf126b9c7\"\u003e\u003ccode\u003e7af054b\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2e5ed49bd27c797319223fe6454411c6dc3f62cc\"\u003e\u003ccode\u003e2e5ed49\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f3a3b6c778eed688dc91940a6d9160e7445a218f\"\u003e\u003ccode\u003ef3a3b6c\u003c/code\u003e\u003c/a\u003e remove arbitrary response read timeout in kinesis GetRecords (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3221\"\u003e#3221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/56af15521102c665ba33e5512cd66068c7c32506\"\u003e\u003ccode\u003e56af155\u003c/code\u003e\u003c/a\u003e Release 2025-10-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b23832ac9b9505202125cf5c448c72cd333c819b\"\u003e\u003ccode\u003eb23832a\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/33ea965f3eb459c22ba41a8e5da55115da5686bc\"\u003e\u003ccode\u003e33ea965\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f70c7889fa7e09fba31a68c6dbef1e178bbb9964\"\u003e\u003ccode\u003ef70c788\u003c/code\u003e\u003c/a\u003e Release 2025-10-28\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f8aa1f373d60ee159a2aac412311edad2eaad752\"\u003e\u003ccode\u003ef8aa1f3\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/fsx/v1.62.2...service/fsx/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.100.0 to 1.101.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/84ddd08980744ac0f3bacfe7d2796c861671accc\"\u003e\u003ccode\u003e84ddd08\u003c/code\u003e\u003c/a\u003e Release 2026-05-06\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/23645b402c11575a32d1af93ec237f2f121dd285\"\u003e\u003ccode\u003e23645b4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/848eb597bd63cb770bcd11ee230f9dca68ce1ffe\"\u003e\u003ccode\u003e848eb59\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1d7b13420ed32f0809a5a4a35c630d19bfd0b6d4\"\u003e\u003ccode\u003e1d7b134\u003c/code\u003e\u003c/a\u003e Release 2026-05-05\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5bbbc97fcab2086757060561ccd1f34101ba7b57\"\u003e\u003ccode\u003e5bbbc97\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8dbb93618325675f55eb0c3eb0c7a766806dadbc\"\u003e\u003ccode\u003e8dbb936\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/369e6498c716c7e02ca7aef318ef311edd5efcbf\"\u003e\u003ccode\u003e369e649\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dc2d13fa6f1db25f1c6d804567e1ecfcdff4f040\"\u003e\u003ccode\u003edc2d13f\u003c/code\u003e\u003c/a\u003e Release 2026-05-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/da4bcffa913dc4ba46e1ce10a6268bf075547a8d\"\u003e\u003ccode\u003eda4bcff\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a8b1180254cba3e23aa6baece26783395e884d81\"\u003e\u003ccode\u003ea8b1180\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.100.0...service/s3/v1.101.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/elastic/go-elasticsearch/v8` from 8.19.4 to 8.19.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/elastic/go-elasticsearch/releases\"\u003egithub.com/elastic/go-elasticsearch/v8's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev8.19.6\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.5...v8.19.6\"\u003e8.19.6\u003c/a\u003e (2026-05-11)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e078f8ec\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev8.19.5\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.5\"\u003e8.19.5\u003c/a\u003e (2026-04-21)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e5615aed\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eesutil:\u003c/strong\u003e Add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003ef0ad701\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e Regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e13e5d5e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e9874577\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Map spec long to *int64 for esapi params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1391\"\u003e#1391\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/9a2424c77d0125cc4a915eacd5b6c293fcbe280c\"\u003e9a2424c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003efa81ccf\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/elastic/go-elasticsearch/blob/v8.19.6/CHANGELOG.md\"\u003egithub.com/elastic/go-elasticsearch/v8's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.5...v8.19.6\"\u003e8.19.6\u003c/a\u003e (2026-05-11)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e078f8ec\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.5\"\u003e8.19.5\u003c/a\u003e (2026-04-21)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e5615aed\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eesutil:\u003c/strong\u003e Add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003ef0ad701\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e Regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e13e5d5e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e9874577\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Map spec long to *int64 for esapi params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1391\"\u003e#1391\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/9a2424c77d0125cc4a915eacd5b6c293fcbe280c\"\u003e9a2424c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003efa81ccf\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/36df8bc2f994270fa8804f3f8d76eee484312c84\"\u003e\u003ccode\u003e36df8bc\u003c/code\u003e\u003c/a\u003e chore(8.19): release 8.19.6 (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1481\"\u003e#1481\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e\u003ccode\u003e078f8ec\u003c/code\u003e\u003c/a\u003e fix(client): remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/b467419b59035e4b08c71679ebe4493cbc2ff997\"\u003e\u003ccode\u003eb467419\u003c/code\u003e\u003c/a\u003e chore: bump version to 8.19.6-SNAPSHOT (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1457\"\u003e#1457\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/0349cffb1c4b495a8e3f0470bf7c8e7d44264769\"\u003e\u003ccode\u003e0349cff\u003c/code\u003e\u003c/a\u003e chore(8.19): release 8.19.5 (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1395\"\u003e#1395\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e\u003ccode\u003e5615aed\u003c/code\u003e\u003c/a\u003e feat(client): add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003e\u003ccode\u003ef0ad701\u003c/code\u003e\u003c/a\u003e feat(esutil): add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e\u003ccode\u003e13e5d5e\u003c/code\u003e\u003c/a\u003e fix(esapi): regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003e\u003ccode\u003efa81ccf\u003c/code\u003e\u003c/a\u003e fix(gen): support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e\u003ccode\u003e9874577\u003c/code\u003e\u003c/a\u003e fix(gen): accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/30b75857dfc00e975c77a63b408d4df0f754e937\"\u003e\u003ccode\u003e30b7585\u003c/code\u003e\u003c/a\u003e [Backport 8.19] fix(gen): sort required URL params deterministically (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1408\"\u003e#1408\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/clicky` from 1.21.7 to 1.21.9\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/releases\"\u003egithub.com/flanksource/clicky's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.21.9\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.21.8\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/blob/main/CHANGELOG.md\"\u003egithub.com/flanksource/clicky's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(task): Add stderr gating to prevent corruption during interactive render\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/b059cf91dda7637600922340575829cccfcb89ef\"\u003e\u003ccode\u003eb059cf9\u003c/code\u003e\u003c/a\u003e chore(release): 1.21.9 [skip ci]\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003e\u003ccode\u003ef85ce24\u003c/code\u003e\u003c/a\u003e refactor(api,mcp,rpc): extract helper functions and improve code organization\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e\u003ccode\u003e04f17df\u003c/code\u003e\u003c/a\u003e build(makefile): add git commit and build date to binary via ldflags\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e\u003ccode\u003e06e98ad\u003c/code\u003e\u003c/a\u003e feat(api,flags): add unified diff rendering and grouped flag help output\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003e\u003ccode\u003efc8746a\u003c/code\u003e\u003c/a\u003e refactor(api): simplify switch statement in parseJavaFrame\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e\u003ccode\u003e6b74c36\u003c/code\u003e\u003c/a\u003e chore(deps): clean up unused dependencies in go.sum\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e\u003ccode\u003e9345367\u003c/code\u003e\u003c/a\u003e feat(mcp): add SSE transport, tools command, and multi-client install support\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e\u003ccode\u003e6beea3b\u003c/code\u003e\u003c/a\u003e feat(formatters): add StackTrace rendering support to HTML formatters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e\u003ccode\u003e3e6e880\u003c/code\u003e\u003c/a\u003e feat(api): Add structured HTML rendering for stack traces with syntax highlig...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e\u003ccode\u003e9cb5cb9\u003c/code\u003e\u003c/a\u003e feat(mcp): Add fluent Builder API and discover-tools MCP tool\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.9\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-sql-driver/mysql` from 1.9.3 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/releases\"\u003egithub.com/go-sql-driver/mysql's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd Go 1.24 to the test matrix by \u003ca href=\"https://github.com/shogo82148\"\u003e\u003ccode\u003e@​shogo82148\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1681\"\u003ego-sql-driver/mysql#1681\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize for Go 1.22 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1695\"\u003ego-sql-driver/mysql#1695\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest stability improvement. by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1698\"\u003ego-sql-driver/mysql#1698\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esimplify collation tests by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1700\"\u003ego-sql-driver/mysql#1700\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix bigint unsigned null column scan to err type int64 by \u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eTransaction Commit/Rollback returns conn's cached error, if present by \u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd BenchmarkReceive10kRowsCompress by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1704\"\u003ego-sql-driver/mysql#1704\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eoptimize readPacket by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1705\"\u003ego-sql-driver/mysql#1705\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eMariaDB Metadata skipping and DEPRECATE_EOF by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimization: statements reuse previous column name by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1711\"\u003ego-sql-driver/mysql#1711\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate outdated MySQL internals documentation links by \u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix PING on compressed connections by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1721\"\u003ego-sql-driver/mysql#1721\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd DeepWiki badge by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1722\"\u003ego-sql-driver/mysql#1722\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate edwards25519 dependency to v1.1.1 by \u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure Dependabot for Go modules by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1755\"\u003ego-sql-driver/mysql#1755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump dominikh/staticcheck-action from 1.3.1 to 1.4.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 3 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1760\"\u003ego-sql-driver/mysql#1760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 5 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1757\"\u003ego-sql-driver/mysql#1757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix staticcheck error by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1761\"\u003ego-sql-driver/mysql#1761\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 4 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1758\"\u003ego-sql-driver/mysql#1758\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix getSystemVar buffer reuse by \u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConsolidate Dependabot update noise by grouping weekly dependency PRs by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1756\"\u003ego-sql-driver/mysql#1756\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCI: Update GitHub Actions Go matrix to 1.24–1.26 by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1763\"\u003ego-sql-driver/mysql#1763\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnhance interpolateParams to correctly handle placeholders by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1732\"\u003ego-sql-driver/mysql#1732\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1764\"\u003ego-sql-driver/mysql#1764\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erelease v1.10.0 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1765\"\u003ego-sql-driver/mysql#1765\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\"\u003ehttps://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/blob/master/CHANGELOG.md\"\u003egithub.com/go-sql-driver/mysql's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0 (2026-04-28)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eFix \u003ccode\u003egetSystemVar(\u0026quot;max_allowed_packet\u0026quot;)\u003c/code\u003e potentially returned wrong value. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\nThis affects only when \u003ccode\u003emaxAllowedPacket=0\u003c/code\u003e is set.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\nWhile older versions have reported CVEs, they do not affect go-mysql.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eUpdate Go versions to 1.24-1.26. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eEnhance interpolateParams to correctly handle placeholders. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\nThe question mark (?) within strings and comments will no longer be treated as a placeholder.\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/a065b60ab6d0c8e15468e7709c7f76acf4431647\"\u003e\u003ccode\u003ea065b60\u003c/code\u003e\u003c/a\u003e release v1.10.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1765\"\u003e#1765\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/09e4187be9c52bb13449a662d2a36e1e1789ac95\"\u003e\u003ccode\u003e09e4187\u003c/code\u003e\u003c/a\u003e modernize (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1764\"\u003e#1764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/6c44a9a0a1769e145dc91c08abe1aded2936ab63\"\u003e\u003ccode\u003e6c44a9a\u003c/code\u003e\u003c/a\u003e Enhance interpolateParams to correctly handle placeholders (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/688ce563a28598a9b733e6fc2b325050a4dcf261\"\u003e\u003ccode\u003e688ce56\u003c/code\u003e\u003c/a\u003e Update supported Go version to 1.24–1.26 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/118d07fdb51f9e523ebcdb00628812e49d7c1881\"\u003e\u003ccode\u003e118d07f\u003c/code\u003e\u003c/a\u003e Bump filippo.io/edwards25519 from 1.1.1 to 1.2.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/d6b2d3ee2cc8569b6778a7ae7ac2816e185f616b\"\u003e\u003ccode\u003ed6b2d3e\u003c/code\u003e\u003c/a\u003e Consolidate Dependabot update noise by grouping weekly dependency PRs (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1762\"\u003e#1762\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/037dfd872a7b6c88e63c53f32700dffed560120c\"\u003e\u003ccode\u003e037dfd8\u003c/code\u003e\u003c/a\u003e Fix getSystemVar buffer reuse (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/900f33035615559b6188e4fa98d57ae20af2b73b\"\u003e\u003ccode\u003e900f330\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 4 to 6 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1758\"\u003e#1758\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/ab9e3804c604d6a60b0d3136f4654f81f184757d\"\u003e\u003ccode\u003eab9e380\u003c/code\u003e\u003c/a\u003e fix staticcheck error (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1761\"\u003e#1761\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/f298c66742396b6921732744b9bb075c7faaca81\"\u003e\u003ccode\u003ef298c66\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5 to 6 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1757\"\u003e#1757\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.3...v1.10.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/google/cel-go` from 0.28.0 to 0.28.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/cel-go/releases\"\u003egithub.com/google/cel-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eRelease v0.28.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: deleted \u003ccode\u003eIntToDuration\u003c/code\u003e overload by \u003ca href=\"https://github.com/alexsnaps\"\u003e\u003ccode\u003e@​alexsnaps\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1300\"\u003egoogle/cel-go#1300\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSupport shorthand types in env yaml and REPL  by \u003ca href=\"https://github.com/jnthntatum\"\u003e\u003ccode\u003e@​jnthntatum\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1301\"\u003egoogle/cel-go#1301\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePreserve operation interrupted in ContextEval error by \u003ca href=\"https://github.com/dims\"\u003e\u003ccode\u003e@​dims\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1303\"\u003egoogle/cel-go#1303\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse shorthand type specifiers in env yaml files by \u003ca href=\"https://github.com/jnthntatum\"\u003e\u003ccode\u003e@​jnthntatum\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1305\"\u003egoogle/cel-go#1305\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCost estimation and tracking for strings extension by \u003ca href=\"https://github.com/TristonianJones\"\u003e\u003ccode\u003e@​TristonianJones\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1307\"\u003egoogle/cel-go#1307\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate repl type string for doubles by \u003ca href=\"https://github.com/TristonianJones\"\u003e\u003ccode\u003e@​TristonianJones\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1308\"\u003egoogle/cel-go#1308\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/alexsnaps\"\u003e\u003ccode\u003e@​alexsnaps\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1300\"\u003egoogle/cel-go#1300\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dims\"\u003e\u003ccode\u003e@​dims\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1303\"\u003egoogle/cel-go#1303\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/google/cel-go/compare/v0.28.0...v0.28.1\"\u003ehttps://github.com/google/cel-go/compare/v0.28.0...v0.28.1\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/a82c68b770ac0cb67f7b4f76166827c14b145eb8\"\u003e\u003ccode\u003ea82c68b\u003c/code\u003e\u003c/a\u003e Update repl type assessment for doubles (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1308\"\u003e#1308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/c9d70486a872fbfaf9c4cb383a005de56e499368\"\u003e\u003ccode\u003ec9d7048\u003c/code\u003e\u003c/a\u003e Cost estimation and tracking for strings extension (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1307\"\u003e#1307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/646cdc1728643aec9499e3a00236ef1007a5d3fa\"\u003e\u003ccode\u003e646cdc1\u003c/code\u003e\u003c/a\u003e Use shorthand type specifiers in env yaml files (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1305\"\u003e#1305\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/7263793b453228e8a47ca742afd124b3eaa8fc68\"\u003e\u003ccode\u003e7263793\u003c/code\u003e\u003c/a\u003e Preserve operation interrupted in ContextEval error (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1303\"\u003e#1303\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/b826162b7b6ac7ae048fbf23b6123ab5c99da11b\"\u003e\u003ccode\u003eb826162\u003c/code\u003e\u003c/a\u003e Support shorthand types in env yaml and REPL  (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1301\"\u003e#1301\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/339269b44af7c3cd477b55530e9cc1fe534c7f09\"\u003e\u003ccode\u003e339269b\u003c/code\u003e\u003c/a\u003e fix: deleted \u003ccode\u003eIntToDuration\u003c/code\u003e overload (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1300\"\u003e#1300\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/google/cel-go/compare/v0.28.0...v0.28.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/labstack/echo/v4` from 4.15.1 to 4.15.2\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/labstack/echo/blob/v4.15.2/CHANGELOG.md\"\u003egithub.com/labstack/echo/v4's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.15.2 - 2026-05-01\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eSecurity\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eContext.Scheme()\u003c/code\u003e should validate values taken from header by \u003ca href=\"https://github.com/aldas\"\u003e\u003ccode\u003e@​aldas\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/labstack/echo/pull/2962\"\u003elabstack/echo#2962\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eThanks to \u003ca href=\"https://github.com/shblue21\"\u003e\u003ccode\u003e@​shblue21\u003c/code\u003e\u003c/a\u003e for reporting this \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2952\"\u003eissue\u003c/a\u003e.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/25685e6f5f7b0683105d1386db46ae48eb3de028\"\u003e\u003ccode\u003e25685e6\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2963\"\u003e#2963\u003c/a\u003e from aldas/v4_changelog_4_15_2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/f9d76893c671df4da9792fc5c122eba01d43c63b\"\u003e\u003ccode\u003ef9d7689\u003c/code\u003e\u003c/a\u003e Changelog for v4.15.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/37fff28f72264196ad28761316fc7d96fd1c502d\"\u003e\u003ccode\u003e37fff28\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2962\"\u003e#2962\u003c/a\u003e from aldas/v4_valid_proto\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/ca4f38a474302aabee93c66bdd0052359882e181\"\u003e\u003ccode\u003eca4f38a\u003c/code\u003e\u003c/a\u003e Context.Scheme should validate values taken from header\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/2e527a70a73b3a93b8346384f607cdc502d3d200\"\u003e\u003ccode\u003e2e527a7\u003c/code\u003e\u003c/a\u003e Update CI, update deps\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/labstack/echo/compare/v4.15.1...v4.15.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/microsoft/go-mssqldb` from 1.9.8 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/go-mssqldb/releases\"\u003egithub.com/microsoft/go-mssqldb's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003e1.10.0\u003c/a\u003e (2026-04-25)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003eb55beeb\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003eea77c2e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd NewConnectorWithProcessQueryText for mssql driver compatibility (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/341\"\u003e#341\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/2be611f8a7b2ec5125a835e1d6efb8cfb8979a86\"\u003e2be611f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003ec10fa99\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eallow named pipe protocol support for ARM64 Windows (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/232\"\u003e#232\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/a82c05866462e56b43d42e4523576aa363a3871a\"\u003ea82c058\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003econfigure release-please with PAT and correct component mapping (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/349\"\u003e#349\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/23bac055cea5040891be595e34869b19378974ad\"\u003e23bac05\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edetect server-aborted transactions to prevent silent auto-commit (XACT_ABORT) (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/370\"\u003e#370\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e586ea53\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e9937cfe\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ehandle COLINFO (0xA5) and TABNAME (0xA4) TDS tokens returned by tables with triggers (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/343\"\u003e#343\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/7c905adac4e8e00856c3d20503902f0160f5853d\"\u003e7c905ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eimplement driver.DriverContext interface (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/365\"\u003e#365\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/1b610a0b2905dc472968842e7a8f252acdb94272\"\u003e1b610a0\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/236\"\u003e#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emake readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e65e137f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereplace broken AppVeyor badge with GitHub Actions badge (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/334\"\u003e#334\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/d3429f5bb895bdb884ae39a43d87bb384aa5353a\"\u003ed3429f5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereturn interface{} scanType for sql_variant instead of nil (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/362\"\u003e#362\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/296a83a3e25fc23add1dbb243df1a716f431de66\"\u003e296a83a\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/186\"\u003e#186\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esanitize credentials from connection string parsing errors (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/319\"\u003e#319\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/93f5ef0dd5f02c9094a22d0052fb95cd553ba971\"\u003e93f5ef0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esurface server errors from Rows.Close() during token drain (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/361\"\u003e#361\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea69792c6da6d049eaec4e672a95d55bafef48f5\"\u003eea69792\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/244\"\u003e#244\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/go-mssqldb/blob/main/CHANGELOG.md\"\u003egithub.com/microsoft/go-mssqldb's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003e1.10.0\u003c/a\u003e (2026-04-25)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003eb55beeb\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003eea77c2e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd NewConnectorWithProcessQueryText for mssql driver compatibility (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/341\"\u003e#341\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/2be611f8a7b2ec5125a835e1d6efb8cfb8979a86\"\u003e2be611f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003ec10fa99\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eallow named pipe protocol support for ARM64 Windows (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/232\"\u003e#232\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/a82c05866462e56b43d42e4523576aa363a3871a\"\u003ea82c058\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003econfigure release-please with PAT and correct component mapping (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/349\"\u003e#349\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/23bac055cea5040891be595e34869b19378974ad\"\u003e23bac05\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edetect server-aborted transactions to prevent silent auto-commit (XACT_ABORT) (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/370\"\u003e#370\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e586ea53\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e9937cfe\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ehandle COLINFO (0xA5) and TABNAME (0xA4) TDS tokens returned by tables with triggers (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/343\"\u003e#343\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/7c905adac4e8e00856c3d20503902f0160f5853d\"\u003e7c905ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eimplement driver.DriverContext interface (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/365\"\u003e#365\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/1b610a0b2905dc472968842e7a8f252acdb94272\"\u003e1b610a0\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/236\"\u003e#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emake readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e65e137f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereplace broken AppVeyor badge with GitHub Actions badge (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/334\"\u003e#334\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/d3429f5bb895bdb884ae39a43d87bb384aa5353a\"\u003ed3429f5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereturn interface{} scanType for sql_variant instead of nil (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/362\"\u003e#362\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/296a83a3e25fc23add1dbb243df1a716f431de66\"\u003e296a83a\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/186\"\u003e#186\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esanitize credentials from connection string parsing errors (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/319\"\u003e#319\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/93f5ef0dd5f02c9094a22d0052fb95cd553ba971\"\u003e93f5ef0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esurface server errors from Rows.Close() during token drain (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/361\"\u003e#361\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea69792c6da6d049eaec4e672a95d55bafef48f5\"\u003eea69792\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/244\"\u003e#244\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.6\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded new \u003ccode\u003eserverCertificate\u003c/code\u003e connection parameter for byte-for-byte certificate validation, matching Microsoft.Data.SqlClient behavior. This parameter skips hostname validation, chain validation, and expiry checks, only verifying that the server's certificate exactly matches the provided file. This is useful when the server's hostname doesn't match the certificate CN/SAN. (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/304\"\u003e#304\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eThe existing \u003ccode\u003ecertificate\u003c/code\u003e parameter maintains backward compatibility with traditional X.509 chain validation including hostname checks, expiry validation, and chain-of-trust verification.\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eserverCertificate\u003c/code\u003e cannot be used with \u003ccode\u003ecertificate\u003c/code\u003e or \u003ccode\u003ehostnameincertificate\u003c/code\u003e parameters to prevent conflicting validation methods.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.3\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix parsing of ADO connection strings with double-quoted values containing semicolons (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/282\"\u003e#282\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.2\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix race condition in message queue query model (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/277\"\u003e#277\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.1\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix bulk insert failure with datetime values near midnight due to day overflow (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/271\"\u003e#271\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/f92e6f0abf7607819f70b66191e6732c02c78f57\"\u003e\u003ccode\u003ef92e6f0\u003c/code\u003e\u003c/a\u003e chore(main): release 1.10.0 (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/351\"\u003e#351\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/03094d02c4fd74c8a95e6feb36ec5d3d8b93f592\"\u003e\u003ccode\u003e03094d0\u003c/code\u003e\u003c/a\u003e ci: add least-privilege permissions and pin actions to SHA (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/354\"\u003e#354\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e\u003ccode\u003e65e137f\u003c/code\u003e\u003c/a\u003e fix: make readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003e\u003ccode\u003ec10fa99\u003c/code\u003e\u003c/a\u003e feat: add nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e\u003ccode\u003e9937cfe\u003c/code\u003e\u003c/a\u003e fix: expose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/429c61d44f20e08cc2a5ff1bbd2a33cfe65b1b15\"\u003e\u003ccode\u003e429c61d\u003c/code\u003e\u003c/a\u003e chore(deps): bump googleapis/release-please-action from 4.4.1 to 5.0.0 in the...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003e\u003ccode\u003eea77c2e\u003c/code\u003e\u003c/a\u003e feat: add FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/04d26c2da5fe6aebf1f04727c09a14a8cd36af56\"\u003e\u003ccode\u003e04d26c2\u003c/code\u003e\u003c/a\u003e ci: add devcontainer build validation workflow (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/355\"\u003e#355\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003e\u003ccode\u003eb55beeb\u003c/code\u003e\u003c/a\u003e feat: add devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e\u003ccode\u003e586ea53\u003c/code\u003e\u003c/a\u003e fix: detect server-aborted transactions to prevent silent auto-commit (XACT_A...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/onsi/ginkgo/v2` from 2.28.2 to 2.29.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/ginkgo/releases\"\u003egithub.com/onsi/ginkgo/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.29.0\u003c/h2\u003e\n\u003ch2\u003e2.29.0\u003c/h2\u003e\n\u003cp\u003e\u003ccode\u003eGinkgoHelperGo\u003c/code\u003e makes it easier to write test helpers that need to run in goroutines.  Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.\u003c/p\u003e\n\u003cp\u003e\u003ccode\u003eginkgo outline\u003c/code\u003e now includes entries defined in \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e\u003c/p\u003e\n\u003ch2\u003ev2.28.3\u003c/h2\u003e\n\u003ch2\u003e2.28.3\u003c/h2\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cp\u003eBump all dependencies\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md\"\u003egithub.com/onsi/ginkgo/v2's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.29.0\u003c/h2\u003e\n\u003cp\u003e\u003ccode\u003eGinkgoHelperGo\u003c/code\u003e makes it easier to write test helpers that need to run in goroutines.  Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.\u003c/p\u003e\n\u003cp\u003e\u003ccode\u003eginkgo outline\u003c/code\u003e now includes entries defined in \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e\u003c/p\u003e\n\u003ch2\u003e2.28.3\u003c/h2\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cp\u003eBump all dependencies\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/04b5bcbe4eee911a1baf506eda1e7e811c978937\"\u003e\u003ccode\u003e04b5bcb\u003c/code\u003e\u003c/a\u003e v2.29.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/124232a4531c77a7f31a036e0150e06fa78b2af8\"\u003e\u003cco...\n\n_Description has been truncated_","html_url":"https://github.com/flanksource/canary-checker/pull/2969","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/flanksource%2Fcanary-checker/issues/2969","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2969/packages"}},{"old_version":"1.62.1","new_version":"1.62.2","update_type":"patch","path":null,"pr_created_at":"2026-05-26T06:08:59.000Z","version_change":"1.62.1 → 1.62.2","issue":{"uuid":"4521826753","node_id":"PR_kwDOExunxM7fSXzO","number":5326,"state":"open","title":"chore: Bump cloud.google.com/go/storage from 1.62.1 to 1.62.2","user":"dependabot[bot]","labels":["dependencies","automerge"],"assignees":["thomaspoignant"],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-26T06:08:59.000Z","updated_at":"2026-05-26T06:14:07.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore: Bump","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.1 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.1\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/thomaspoignant/go-feature-flag/pull/5326","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/thomaspoignant%2Fgo-feature-flag/issues/5326","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/5326/packages"}},{"old_version":"1.62.1","new_version":"1.62.2","update_type":"patch","path":null,"pr_created_at":"2026-05-25T23:48:27.000Z","version_change":"1.62.1 → 1.62.2","issue":{"uuid":"4520173193","node_id":"PR_kwDOA1vjzM7fNANs","number":23047,"state":"open","title":"Build(deps): Bump cloud.google.com/go/storage from 1.62.1 to 1.62.2","user":"dependabot[bot]","labels":["cncf-cla: yes","size/S","needs-ok-to-test","dependencies","go"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-25T23:48:27.000Z","updated_at":"2026-05-25T23:50:06.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Build(deps): Bump","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.1 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.1\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/kubernetes/minikube/pull/23047","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/kubernetes%2Fminikube/issues/23047","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/23047/packages"}},{"old_version":"1.62.1","new_version":"1.62.2","update_type":"patch","path":null,"pr_created_at":"2026-05-25T09:01:30.000Z","version_change":"1.62.1 → 1.62.2","issue":{"uuid":"4515697668","node_id":"PR_kwDOAF9vR87e-h5n","number":208,"state":"closed","title":"chore: Bump cloud.google.com/go/storage from 1.62.1 to 1.62.2","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-06-01T01:38:20.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-25T09:01:30.000Z","updated_at":"2026-06-01T01:38:21.000Z","time_to_close":578210,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore: Bump","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.1 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.1\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/icco/wallpapers/pull/208","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/icco%2Fwallpapers/issues/208","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/208/packages"}},{"old_version":"1.62.1","new_version":"1.62.2","update_type":"patch","path":null,"pr_created_at":"2026-05-25T02:30:36.000Z","version_change":"1.62.1 → 1.62.2","issue":{"uuid":"4513844770","node_id":"PR_kwDOQPyv8s7e4kJf","number":494,"state":"open","title":"chore(deps): bump the go-google-cloud group across 3 directories with 3 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-25T02:30:36.000Z","updated_at":"2026-05-25T02:32:21.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"go-google-cloud","update_count":3,"packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"},{"name":"google.golang.org/grpc","old_version":"1.80.0","new_version":"1.81.1"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"},{"name":"google.golang.org/grpc","old_version":"1.80.0","new_version":"1.81.1"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-google-cloud group with 1 update in the /src/asya-crew/cmd/dlq-worker directory: [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go).\nBumps the go-google-cloud group with 1 update in the /src/asya-crew/cmd/scaler-pubsub directory: [google.golang.org/api](https://github.com/googleapis/google-api-go-client).\nBumps the go-google-cloud group with 1 update in the /src/asya-sidecar directory: [google.golang.org/api](https://github.com/googleapis/google-api-go-client).\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/api` from 0.276.0 to 0.280.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/releases\"\u003egoogle.golang.org/api's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.280.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.279.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.278.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3582\"\u003e#3582\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/76b1187e506ac0f48caac67907dd0805b253f74c\"\u003e76b1187\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3584\"\u003e#3584\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e36c88361d11545583325c3ac6bdbd9cf1f1a7d0\"\u003ee36c883\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.277.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.277.0\"\u003e0.277.0\u003c/a\u003e (2026-04-29)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3567\"\u003e#3567\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/39582952e4eac1b744499f8a8063a4a5f1ce7d6b\"\u003e3958295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3571\"\u003e#3571\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ca9851efc573231ca1ed9c6fea4bc77d6052d0bb\"\u003eca9851e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3574\"\u003e#3574\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8efb1afa0e5d9cc454f721124bba3881f3935e3c\"\u003e8efb1af\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3575\"\u003e#3575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/de49bb519cab881f74e5b9ba11e263a2b9a4ad2e\"\u003ede49bb5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3577\"\u003e#3577\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ce68c87d9dc6c144b6df578df725470b30cf83d6\"\u003ece68c87\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3578\"\u003e#3578\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8be033e24e0c6ddb08a3df72c0a8997d21623a22\"\u003e8be033e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3579\"\u003e#3579\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bc6990e20803f2ff2fd1b77995f6e9180ab2302b\"\u003ebc6990e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3580\"\u003e#3580\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/2de1a5aff3f3b6e53dff00da297c5d249ac8d791\"\u003e2de1a5a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3581\"\u003e#3581\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/0c219d90e90899c93215558f3ea309c9732bf7ea\"\u003e0c219d9\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md\"\u003egoogle.golang.org/api's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3582\"\u003e#3582\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/76b1187e506ac0f48caac67907dd0805b253f74c\"\u003e76b1187\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3584\"\u003e#3584\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e36c88361d11545583325c3ac6bdbd9cf1f1a7d0\"\u003ee36c883\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.277.0\"\u003e0.277.0\u003c/a\u003e (2026-04-29)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3567\"\u003e#3567\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/39582952e4eac1b744499f8a8063a4a5f1ce7d6b\"\u003e3958295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3571\"\u003e#3571\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ca9851efc573231ca1ed9c6fea4bc77d6052d0bb\"\u003eca9851e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3574\"\u003e#3574\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8efb1afa0e5d9cc454f721124bba3881f3935e3c\"\u003e8efb1af\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3575\"\u003e#3575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/de49bb519cab881f74e5b9ba11e263a2b9a4ad2e\"\u003ede49bb5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3577\"\u003e#3577\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ce68c87d9dc6c144b6df578df725470b30cf83d6\"\u003ece68c87\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3578\"\u003e#3578\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8be033e24e0c6ddb08a3df72c0a8997d21623a22\"\u003e8be033e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3579\"\u003e#3579\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bc6990e20803f2ff2fd1b77995f6e9180ab2302b\"\u003ebc6990e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3580\"\u003e#3580\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/2de1a5aff3f3b6e53dff00da297c5d249ac8d791\"\u003e2de1a5a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3581\"\u003e#3581\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/0c219d90e90899c93215558f3ea309c9732bf7ea\"\u003e0c219d9\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eidtoken:\u003c/strong\u003e Avoid double impersonation in tokenSourceFromBytes (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3576\"\u003e#3576\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/75172cf5cb7bfc260c22e481323355306f684a09\"\u003e75172cf\u003c/a\u003e), refs \u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/2301\"\u003e#2301\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3887b09ecbbaf25fba1bf52227ad5ca4f89e9968\"\u003e\u003ccode\u003e3887b09\u003c/code\u003e\u003c/a\u003e chore(main): release 0.280.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3592\"\u003e#3592\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003e\u003ccode\u003ef82d204\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e7314e1377c0dd4e132a681b3130abc5843dbd\"\u003e\u003ccode\u003e13e7314\u003c/code\u003e\u003c/a\u003e chore(all): update all (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3597\"\u003e#3597\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003e\u003ccode\u003eae2f330\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e\u003ccode\u003e4c77865\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e\u003ccode\u003e13e1ad2\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e\u003ccode\u003e0382916\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e\u003ccode\u003e054d4b6\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e\u003ccode\u003e55ba2fa\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e446d4cdeb5e63cd6916051edd2c56588eede309\"\u003e\u003ccode\u003ee446d4c\u003c/code\u003e\u003c/a\u003e chore(main): release 0.279.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3586\"\u003e#3586\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.280.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/grpc` from 1.80.0 to 1.81.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/grpc/grpc-go/releases\"\u003egoogle.golang.org/grpc's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eRelease 1.81.1\u003c/h2\u003e\n\u003ch1\u003eSecurity\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003exds/rbac: Fix a potential authorization bypass caused by incorrectly falling through URI/DNS SANs to Subject Distinguished Name (DN) when matching the authenticated principal name. With this fix, only the first non-empty identity source will be used, as per \u003ca href=\"https://github.com/grpc/proposal/blob/master/A41-xds-rbac.md\"\u003egRFC A41\u003c/a\u003e. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9111\"\u003e#9111\u003c/a\u003e)\n\u003cul\u003e\n\u003cli\u003eSpecial Thanks: \u003ca href=\"https://github.com/al4an444\"\u003e\u003ccode\u003e@​al4an444\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eBug Fixes\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003eotel: Segregate client and server RPC information used for metrics and traces, to avoid one overwriting the other. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9081\"\u003e#9081\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eRelease 1.81.0\u003c/h2\u003e\n\u003ch1\u003eBehavior Changes\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003ebalancer/rls: Switch gauge metrics to asynchronous emission (once per collection cycle) to reduce telemetry noise and align with other gRPC language implementations. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8808\"\u003e#8808\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eDependencies\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003eMinimum supported Go version is now 1.25. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8969\"\u003e#8969\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eBug Fixes\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003exds: Use the leaf cluster's security config for the TLS handshake instead of the aggregate cluster's config. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8956\"\u003e#8956\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003etransport: Send a \u003ccode\u003eRST_STREAM\u003c/code\u003e when receiving an \u003ccode\u003eEND_STREAM\u003c/code\u003e when the stream is not already half-closed. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8832\"\u003e#8832\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Fix ADS resource name validation to prevent a panic. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8970\"\u003e#8970\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eNew Features\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003egrpc/stats: Add support for custom labels in per-call metrics (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A108-otel-custom-per-call-label.md\"\u003egRFC A108\u003c/a\u003e). (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9008\"\u003e#9008\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Add support for Server Name Indication (SNI) and SAN validation (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A101-SNI-setting-and-SNI-SAN-validation.md\"\u003egRFC A101\u003c/a\u003e). Disabled by default. To enable, set \u003ccode\u003eGRPC_EXPERIMENTAL_XDS_SNI=true\u003c/code\u003e environment variable. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9016\"\u003e#9016\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Add support to control which fields get propagated from ORCA backend metric reports to LRS load reports (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A85-lrs-custom-metrics-changes.md\"\u003egRFC A85\u003c/a\u003e). Disabled by default. To enable, set \u003ccode\u003eGRPC_EXPERIMENTAL_XDS_ORCA_LRS_PROPAGATION=true\u003c/code\u003e. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9005\"\u003e#9005\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Add metrics to track xDS client connectivity and cached resource state (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A78-grpc-metrics-wrr-pf-xds.md\"\u003egRFC A78\u003c/a\u003e). (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8807\"\u003e#8807\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003estats/otel: Enhance \u003ccode\u003egrpc.subchannel.disconnections\u003c/code\u003e metric by adding disconnection reason to the \u003ccode\u003egrpc.disconnect_error\u003c/code\u003e label (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A94-subchannel-otel-metrics.md\"\u003egRFC A94\u003c/a\u003e). This provides granular insights into why subchannels are closing. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8973\"\u003e#8973\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003emem: Add \u003ccode\u003emem.Buffer.Slice()\u003c/code\u003e API to slice the buffer like a slice. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8977\"\u003e#8977\u003c/a\u003e)\n\u003cul\u003e\n\u003cli\u003eSpecial Thanks: \u003ca href=\"https://github.com/ash2k\"\u003e\u003ccode\u003e@​ash2k\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003ePerformance Improvements\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003ealts: Pool read buffers to lower memory utilization when sockets are unreadable. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8964\"\u003e#8964\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003etransport: Pool HTTP/2 framer read buffers to reduce idle memory consumption. Currently limited to Linux for ALTS and non-encrypted transports (TCP, Unix). To disable, set \u003ccode\u003eGRPC_GO_EXPERIMENTAL_HTTP_FRAMER_READ_BUFFER_POOLING=false\u003c/code\u003e and report any issues. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9032\"\u003e#9032\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/caf0772c2bcb8bc15d43eb53448e921f34f0b7e8\"\u003e\u003ccode\u003ecaf0772\u003c/code\u003e\u003c/a\u003e Change version from 1.81.1-dev to 1.81.1 (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9122\"\u003e#9122\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/6ccbeebf058ede71e43a5ac28fada2a736573215\"\u003e\u003ccode\u003e6ccbeeb\u003c/code\u003e\u003c/a\u003e Cherry-pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9111\"\u003e#9111\u003c/a\u003e into v1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9121\"\u003e#9121\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/b33c29e41b438e371c8504de9bdf64a80098cc29\"\u003e\u003ccode\u003eb33c29e\u003c/code\u003e\u003c/a\u003e Cherry-pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9081\"\u003e#9081\u003c/a\u003e into v1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9102\"\u003e#9102\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/c45fae6d06a5c192b7b96418a2bc26a96b856834\"\u003e\u003ccode\u003ec45fae6\u003c/code\u003e\u003c/a\u003e Change version to 1.81.1-dev (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9063\"\u003e#9063\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/cb18228317ff523e63d931b4058b0329585b7dcd\"\u003e\u003ccode\u003ecb18228\u003c/code\u003e\u003c/a\u003e Change version to 1.81.0 (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9062\"\u003e#9062\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/96748f973e20bbfcafa19a8bdffc85ad5da138d1\"\u003e\u003ccode\u003e96748f9\u003c/code\u003e\u003c/a\u003e Cherry-pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9105\"\u003e#9105\u003c/a\u003e to 1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9106\"\u003e#9106\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/91832222f0144f76527b630ca55cfea6e1aa015a\"\u003e\u003ccode\u003e9183222\u003c/code\u003e\u003c/a\u003e Cherry pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9055\"\u003e#9055\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9032\"\u003e#9032\u003c/a\u003e to v1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9095\"\u003e#9095\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/5cba6da4211f3b130238c792937f5921741b616a\"\u003e\u003ccode\u003e5cba6da\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;deps: update dependencies for all modules (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9065\"\u003e#9065\u003c/a\u003e)\u0026quot; (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9067\"\u003e#9067\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/af8a9364aa7523ab24d214e9ef13e6ad64d5c5f9\"\u003e\u003ccode\u003eaf8a936\u003c/code\u003e\u003c/a\u003e deps: update dependencies for all modules (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9065\"\u003e#9065\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/cdc60dfaaadde45e16aa3c28237c0e655a722c1a\"\u003e\u003ccode\u003ecdc60df\u003c/code\u003e\u003c/a\u003e transport: optimize heap allocations in ready reader and update syscall conne...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/grpc/grpc-go/compare/v1.80.0...v1.81.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/api` from 0.276.0 to 0.280.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/releases\"\u003egoogle.golang.org/api's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.280.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.279.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.278.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3582\"\u003e#3582\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/76b1187e506ac0f48caac67907dd0805b253f74c\"\u003e76b1187\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3584\"\u003e#3584\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e36c88361d11545583325c3ac6bdbd9cf1f1a7d0\"\u003ee36c883\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.277.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.277.0\"\u003e0.277.0\u003c/a\u003e (2026-04-29)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3567\"\u003e#3567\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/39582952e4eac1b744499f8a8063a4a5f1ce7d6b\"\u003e3958295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3571\"\u003e#3571\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ca9851efc573231ca1ed9c6fea4bc77d6052d0bb\"\u003eca9851e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3574\"\u003e#3574\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8efb1afa0e5d9cc454f721124bba3881f3935e3c\"\u003e8efb1af\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3575\"\u003e#3575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/de49bb519cab881f74e5b9ba11e263a2b9a4ad2e\"\u003ede49bb5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3577\"\u003e#3577\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ce68c87d9dc6c144b6df578df725470b30cf83d6\"\u003ece68c87\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3578\"\u003e#3578\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8be033e24e0c6ddb08a3df72c0a8997d21623a22\"\u003e8be033e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3579\"\u003e#3579\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bc6990e20803f2ff2fd1b77995f6e9180ab2302b\"\u003ebc6990e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3580\"\u003e#3580\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/2de1a5aff3f3b6e53dff00da297c5d249ac8d791\"\u003e2de1a5a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3581\"\u003e#3581\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/0c219d90e90899c93215558f3ea309c9732bf7ea\"\u003e0c219d9\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md\"\u003egoogle.golang.org/api's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3582\"\u003e#3582\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/76b1187e506ac0f48caac67907dd0805b253f74c\"\u003e76b1187\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3584\"\u003e#3584\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e36c88361d11545583325c3ac6bdbd9cf1f1a7d0\"\u003ee36c883\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.277.0\"\u003e0.277.0\u003c/a\u003e (2026-04-29)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3567\"\u003e#3567\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/39582952e4eac1b744499f8a8063a4a5f1ce7d6b\"\u003e3958295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3571\"\u003e#3571\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ca9851efc573231ca1ed9c6fea4bc77d6052d0bb\"\u003eca9851e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3574\"\u003e#3574\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8efb1afa0e5d9cc454f721124bba3881f3935e3c\"\u003e8efb1af\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3575\"\u003e#3575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/de49bb519cab881f74e5b9ba11e263a2b9a4ad2e\"\u003ede49bb5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3577\"\u003e#3577\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ce68c87d9dc6c144b6df578df725470b30cf83d6\"\u003ece68c87\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3578\"\u003e#3578\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8be033e24e0c6ddb08a3df72c0a8997d21623a22\"\u003e8be033e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3579\"\u003e#3579\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bc6990e20803f2ff2fd1b77995f6e9180ab2302b\"\u003ebc6990e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3580\"\u003e#3580\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/2de1a5aff3f3b6e53dff00da297c5d249ac8d791\"\u003e2de1a5a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3581\"\u003e#3581\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/0c219d90e90899c93215558f3ea309c9732bf7ea\"\u003e0c219d9\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eidtoken:\u003c/strong\u003e Avoid double impersonation in tokenSourceFromBytes (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3576\"\u003e#3576\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/75172cf5cb7bfc260c22e481323355306f684a09\"\u003e75172cf\u003c/a\u003e), refs \u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/2301\"\u003e#2301\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/3887b09ecbbaf25fba1bf52227ad5ca4f89e9968\"\u003e\u003ccode\u003e3887b09\u003c/code\u003e\u003c/a\u003e chore(main): release 0.280.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3592\"\u003e#3592\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003e\u003ccode\u003ef82d204\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e7314e1377c0dd4e132a681b3130abc5843dbd\"\u003e\u003ccode\u003e13e7314\u003c/code\u003e\u003c/a\u003e chore(all): update all (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3597\"\u003e#3597\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003e\u003ccode\u003eae2f330\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e\u003ccode\u003e4c77865\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e\u003ccode\u003e13e1ad2\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e\u003ccode\u003e0382916\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e\u003ccode\u003e054d4b6\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e\u003ccode\u003e55ba2fa\u003c/code\u003e\u003c/a\u003e feat(all): auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e446d4cdeb5e63cd6916051edd2c56588eede309\"\u003e\u003ccode\u003ee446d4c\u003c/code\u003e\u003c/a\u003e chore(main): release 0.279.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3586\"\u003e#3586\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.280.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/grpc` from 1.80.0 to 1.81.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/grpc/grpc-go/releases\"\u003egoogle.golang.org/grpc's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eRelease 1.81.1\u003c/h2\u003e\n\u003ch1\u003eSecurity\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003exds/rbac: Fix a potential authorization bypass caused by incorrectly falling through URI/DNS SANs to Subject Distinguished Name (DN) when matching the authenticated principal name. With this fix, only the first non-empty identity source will be used, as per \u003ca href=\"https://github.com/grpc/proposal/blob/master/A41-xds-rbac.md\"\u003egRFC A41\u003c/a\u003e. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9111\"\u003e#9111\u003c/a\u003e)\n\u003cul\u003e\n\u003cli\u003eSpecial Thanks: \u003ca href=\"https://github.com/al4an444\"\u003e\u003ccode\u003e@​al4an444\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eBug Fixes\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003eotel: Segregate client and server RPC information used for metrics and traces, to avoid one overwriting the other. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9081\"\u003e#9081\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eRelease 1.81.0\u003c/h2\u003e\n\u003ch1\u003eBehavior Changes\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003ebalancer/rls: Switch gauge metrics to asynchronous emission (once per collection cycle) to reduce telemetry noise and align with other gRPC language implementations. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8808\"\u003e#8808\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eDependencies\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003eMinimum supported Go version is now 1.25. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8969\"\u003e#8969\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eBug Fixes\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003exds: Use the leaf cluster's security config for the TLS handshake instead of the aggregate cluster's config. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8956\"\u003e#8956\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003etransport: Send a \u003ccode\u003eRST_STREAM\u003c/code\u003e when receiving an \u003ccode\u003eEND_STREAM\u003c/code\u003e when the stream is not already half-closed. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8832\"\u003e#8832\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Fix ADS resource name validation to prevent a panic. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8970\"\u003e#8970\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eNew Features\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003egrpc/stats: Add support for custom labels in per-call metrics (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A108-otel-custom-per-call-label.md\"\u003egRFC A108\u003c/a\u003e). (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9008\"\u003e#9008\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Add support for Server Name Indication (SNI) and SAN validation (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A101-SNI-setting-and-SNI-SAN-validation.md\"\u003egRFC A101\u003c/a\u003e). Disabled by default. To enable, set \u003ccode\u003eGRPC_EXPERIMENTAL_XDS_SNI=true\u003c/code\u003e environment variable. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9016\"\u003e#9016\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Add support to control which fields get propagated from ORCA backend metric reports to LRS load reports (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A85-lrs-custom-metrics-changes.md\"\u003egRFC A85\u003c/a\u003e). Disabled by default. To enable, set \u003ccode\u003eGRPC_EXPERIMENTAL_XDS_ORCA_LRS_PROPAGATION=true\u003c/code\u003e. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9005\"\u003e#9005\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003exds: Add metrics to track xDS client connectivity and cached resource state (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A78-grpc-metrics-wrr-pf-xds.md\"\u003egRFC A78\u003c/a\u003e). (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8807\"\u003e#8807\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003estats/otel: Enhance \u003ccode\u003egrpc.subchannel.disconnections\u003c/code\u003e metric by adding disconnection reason to the \u003ccode\u003egrpc.disconnect_error\u003c/code\u003e label (\u003ca href=\"https://github.com/grpc/proposal/blob/master/A94-subchannel-otel-metrics.md\"\u003egRFC A94\u003c/a\u003e). This provides granular insights into why subchannels are closing. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8973\"\u003e#8973\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003emem: Add \u003ccode\u003emem.Buffer.Slice()\u003c/code\u003e API to slice the buffer like a slice. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8977\"\u003e#8977\u003c/a\u003e)\n\u003cul\u003e\n\u003cli\u003eSpecial Thanks: \u003ca href=\"https://github.com/ash2k\"\u003e\u003ccode\u003e@​ash2k\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003ePerformance Improvements\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003ealts: Pool read buffers to lower memory utilization when sockets are unreadable. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/8964\"\u003e#8964\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003etransport: Pool HTTP/2 framer read buffers to reduce idle memory consumption. Currently limited to Linux for ALTS and non-encrypted transports (TCP, Unix). To disable, set \u003ccode\u003eGRPC_GO_EXPERIMENTAL_HTTP_FRAMER_READ_BUFFER_POOLING=false\u003c/code\u003e and report any issues. (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9032\"\u003e#9032\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/caf0772c2bcb8bc15d43eb53448e921f34f0b7e8\"\u003e\u003ccode\u003ecaf0772\u003c/code\u003e\u003c/a\u003e Change version from 1.81.1-dev to 1.81.1 (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9122\"\u003e#9122\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/6ccbeebf058ede71e43a5ac28fada2a736573215\"\u003e\u003ccode\u003e6ccbeeb\u003c/code\u003e\u003c/a\u003e Cherry-pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9111\"\u003e#9111\u003c/a\u003e into v1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9121\"\u003e#9121\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/b33c29e41b438e371c8504de9bdf64a80098cc29\"\u003e\u003ccode\u003eb33c29e\u003c/code\u003e\u003c/a\u003e Cherry-pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9081\"\u003e#9081\u003c/a\u003e into v1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9102\"\u003e#9102\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/c45fae6d06a5c192b7b96418a2bc26a96b856834\"\u003e\u003ccode\u003ec45fae6\u003c/code\u003e\u003c/a\u003e Change version to 1.81.1-dev (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9063\"\u003e#9063\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/cb18228317ff523e63d931b4058b0329585b7dcd\"\u003e\u003ccode\u003ecb18228\u003c/code\u003e\u003c/a\u003e Change version to 1.81.0 (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9062\"\u003e#9062\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/96748f973e20bbfcafa19a8bdffc85ad5da138d1\"\u003e\u003ccode\u003e96748f9\u003c/code\u003e\u003c/a\u003e Cherry-pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9105\"\u003e#9105\u003c/a\u003e to 1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9106\"\u003e#9106\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/91832222f0144f76527b630ca55cfea6e1aa015a\"\u003e\u003ccode\u003e9183222\u003c/code\u003e\u003c/a\u003e Cherry pick \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9055\"\u003e#9055\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9032\"\u003e#9032\u003c/a\u003e to v1.81.x (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9095\"\u003e#9095\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/5cba6da4211f3b130238c792937f5921741b616a\"\u003e\u003ccode\u003e5cba6da\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;deps: update dependencies for all modules (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9065\"\u003e#9065\u003c/a\u003e)\u0026quot; (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9067\"\u003e#9067\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/af8a9364aa7523ab24d214e9ef13e6ad64d5c5f9\"\u003e\u003ccode\u003eaf8a936\u003c/code\u003e\u003c/a\u003e deps: update dependencies for all modules (\u003ca href=\"https://redirect.github.com/grpc/grpc-go/issues/9065\"\u003e#9065\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/grpc/grpc-go/commit/cdc60dfaaadde45e16aa3c28237c0e655a722c1a\"\u003e\u003ccode\u003ecdc60df\u003c/code\u003e\u003c/a\u003e transport: optimize heap allocations in ready reader and update syscall conne...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/grpc/grpc-go/compare/v1.80.0...v1.81.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `google.golang.org/api` from 0.276.0 to 0.280.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/releases\"\u003egoogle.golang.org/api's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.280.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.279.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.278.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3582\"\u003e#3582\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/76b1187e506ac0f48caac67907dd0805b253f74c\"\u003e76b1187\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3584\"\u003e#3584\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e36c88361d11545583325c3ac6bdbd9cf1f1a7d0\"\u003ee36c883\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.277.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.277.0\"\u003e0.277.0\u003c/a\u003e (2026-04-29)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3567\"\u003e#3567\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/39582952e4eac1b744499f8a8063a4a5f1ce7d6b\"\u003e3958295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3571\"\u003e#3571\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ca9851efc573231ca1ed9c6fea4bc77d6052d0bb\"\u003eca9851e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3574\"\u003e#3574\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8efb1afa0e5d9cc454f721124bba3881f3935e3c\"\u003e8efb1af\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3575\"\u003e#3575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/de49bb519cab881f74e5b9ba11e263a2b9a4ad2e\"\u003ede49bb5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3577\"\u003e#3577\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ce68c87d9dc6c144b6df578df725470b30cf83d6\"\u003ece68c87\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3578\"\u003e#3578\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/8be033e24e0c6ddb08a3df72c0a8997d21623a22\"\u003e8be033e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3579\"\u003e#3579\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/bc6990e20803f2ff2fd1b77995f6e9180ab2302b\"\u003ebc6990e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3580\"\u003e#3580\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/2de1a5aff3f3b6e53dff00da297c5d249ac8d791\"\u003e2de1a5a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3581\"\u003e#3581\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/0c219d90e90899c93215558f3ea309c9732bf7ea\"\u003e0c219d9\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md\"\u003egoogle.golang.org/api's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.279.0...v0.280.0\"\u003e0.280.0\u003c/a\u003e (2026-05-19)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3591\"\u003e#3591\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/55ba2fab69ee14286ad052f57ed90a726b071e86\"\u003e55ba2fa\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3593\"\u003e#3593\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/054d4b6054450d2be21f50fad64145a4e0125424\"\u003e054d4b6\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3594\"\u003e#3594\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/03829161b8cd77bf11f4a3a5d07a43f6b1904fbe\"\u003e0382916\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3595\"\u003e#3595\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/13e1ad2eeb540d19709df87ce9a0cfdb632f1bf3\"\u003e13e1ad2\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3596\"\u003e#3596\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/4c77865748dda2086de226e9401531c934cd909f\"\u003e4c77865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3598\"\u003e#3598\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/ae2f33001826f523ecc6d2f141244e55fbac45c0\"\u003eae2f330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3599\"\u003e#3599\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/f82d2049187ed2ab7ee27831a1a78887c5969ca4\"\u003ef82d204\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.278.0...v0.279.0\"\u003e0.279.0\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3585\"\u003e#3585\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/09db0e346a6b567747dceee3872229a62c95124c\"\u003e09db0e3\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3587\"\u003e#3587\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e87e376dbd590cffb3632c378e1ade4a9dacf3ce\"\u003ee87e376\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3590\"\u003e#3590\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/d4241eaef9ab3daad4fd4aaeccc118795cfc58a7\"\u003ed4241ea\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.277.0...v0.278.0\"\u003e0.278.0\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3582\"\u003e#3582\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/76b1187e506ac0f48caac67907dd0805b253f74c\"\u003e76b1187\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/google-api-go-client/issues/3584\"\u003e#3584\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-api-go-client/commit/e36c88361d11545583325c3ac6bdbd9cf1f1a7d0\"\u003ee36c883\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-api-go-client/compare/v0.276.0...v0.277.0\"\u003e0.277.0\u003c/a\u003e (2026-04-29)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eall:\u003c/strong\u003e Auto-regenerate discovery clients (\u003ca href=\"https://redirect.github.com/googleapis/g...\n\n_Description has been truncated_","html_url":"https://github.com/deliveryhero/asya/pull/494","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/deliveryhero%2Fasya/issues/494","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/494/packages"}},{"old_version":"1.62.1","new_version":"1.62.2","update_type":"patch","path":null,"pr_created_at":"2026-05-21T03:23:49.000Z","version_change":"1.62.1 → 1.62.2","issue":{"uuid":"4491467977","node_id":"PR_kwDODY5jaM7dxvRb","number":2964,"state":"open","title":"chore(deps): bump the go-modules group across 1 directory with 18 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-21T03:23:49.000Z","updated_at":"2026-05-22T12:00:55.016Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"go-modules","update_count":18,"packages":[{"name":"github.com/flanksource/commons","old_version":"1.51.3","new_version":"1.51.5","repository_url":"https://github.com/flanksource/commons"},{"name":"github.com/flanksource/duty","old_version":"1.0.1310","new_version":"1.0.1311","repository_url":"https://github.com/flanksource/duty"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatch","old_version":"1.56.2","new_version":"1.57.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/configservice","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.100.0","new_version":"1.101.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/elastic/go-elasticsearch/v8","old_version":"8.19.4","new_version":"8.19.6","repository_url":"https://github.com/elastic/go-elasticsearch"},{"name":"github.com/flanksource/clicky","old_version":"1.21.7","new_version":"1.21.9","repository_url":"https://github.com/flanksource/clicky"},{"name":"github.com/go-sql-driver/mysql","old_version":"1.9.3","new_version":"1.10.0","repository_url":"https://github.com/go-sql-driver/mysql"},{"name":"github.com/google/cel-go","old_version":"0.28.0","new_version":"0.28.1","repository_url":"https://github.com/google/cel-go"},{"name":"github.com/labstack/echo/v4","old_version":"4.15.1","new_version":"4.15.2","repository_url":"https://github.com/labstack/echo"},{"name":"github.com/microsoft/go-mssqldb","old_version":"1.9.8","new_version":"1.10.0","repository_url":"https://github.com/microsoft/go-mssqldb"},{"name":"github.com/onsi/ginkgo/v2","old_version":"2.28.2","new_version":"2.29.0","repository_url":"https://github.com/onsi/ginkgo"},{"name":"github.com/prometheus/alertmanager","old_version":"0.32.0","new_version":"0.32.1","repository_url":"https://github.com/prometheus/alertmanager"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"},{"name":"k8s.io/apimachinery","old_version":"0.36.0","new_version":"0.36.1","repository_url":"https://github.com/kubernetes/apimachinery"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-modules group with 16 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/flanksource/commons](https://github.com/flanksource/commons) | `1.51.3` | `1.51.5` |\n| [github.com/flanksource/duty](https://github.com/flanksource/duty) | `1.0.1310` | `1.0.1311` |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.1` | `1.62.2` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://github.com/aws/aws-sdk-go-v2) | `1.56.2` | `1.57.0` |\n| [github.com/aws/aws-sdk-go-v2/service/configservice](https://github.com/aws/aws-sdk-go-v2) | `1.62.2` | `1.62.3` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.100.0` | `1.101.0` |\n| [github.com/elastic/go-elasticsearch/v8](https://github.com/elastic/go-elasticsearch) | `8.19.4` | `8.19.6` |\n| [github.com/flanksource/clicky](https://github.com/flanksource/clicky) | `1.21.7` | `1.21.9` |\n| [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) | `1.9.3` | `1.10.0` |\n| [github.com/google/cel-go](https://github.com/google/cel-go) | `0.28.0` | `0.28.1` |\n| [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.15.1` | `4.15.2` |\n| [github.com/microsoft/go-mssqldb](https://github.com/microsoft/go-mssqldb) | `1.9.8` | `1.10.0` |\n| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.28.2` | `2.29.0` |\n| [github.com/prometheus/alertmanager](https://github.com/prometheus/alertmanager) | `0.32.0` | `0.32.1` |\n| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.276.0` | `0.280.0` |\n| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.36.0` | `0.36.1` |\n\n\nUpdates `github.com/flanksource/commons` from 1.51.3 to 1.51.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/commons/releases\"\u003egithub.com/flanksource/commons's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.51.5\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.4...v1.51.5\"\u003e1.51.5\u003c/a\u003e (2026-05-21)\u003c/h2\u003e\n\u003ch2\u003ev1.51.4\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.4\"\u003e1.51.4\u003c/a\u003e (2026-05-04)\u003c/h2\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/commons/commit/8f616949c08e644903c328fc4f3eca7db9171776\"\u003e\u003ccode\u003e8f61694\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.80 (\u003ca href=\"https://redirect.github.com/flanksource/commons/issues/315\"\u003e#315\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/commons/commit/72c1bcf52807cc782a4cce7b368e24af1832b334\"\u003e\u003ccode\u003e72c1bcf\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.79 (\u003ca href=\"https://redirect.github.com/flanksource/commons/issues/314\"\u003e#314\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/duty` from 1.0.1310 to 1.0.1311\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/duty/releases\"\u003egithub.com/flanksource/duty's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.0.1311\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/duty/compare/v1.0.1310...v1.0.1311\"\u003e1.0.1311\u003c/a\u003e (2026-05-21)\u003c/h2\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/duty/commit/b4d8a7845ccd361c7704486d2ccfacf1fe9f20bd\"\u003e\u003ccode\u003eb4d8a78\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.80 (\u003ca href=\"https://redirect.github.com/flanksource/duty/issues/1979\"\u003e#1979\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/flanksource/duty/compare/v1.0.1310...v1.0.1311\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/cloudwatch` from 1.56.2 to 1.57.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7c25c211744bdcff47a7203a7a894b1241f9da50\"\u003e\u003ccode\u003e7c25c21\u003c/code\u003e\u003c/a\u003e Release 2024-06-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b374423feaf0b04f01c7624b10915871e589b8a1\"\u003e\u003ccode\u003eb374423\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/923f54ea6016e1c70ad45ba0854e7361a72c3ba6\"\u003e\u003ccode\u003e923f54e\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f3bdfcf190150f62a7a07a03bc32d9c58a68f2e\"\u003e\u003ccode\u003e5f3bdfc\u003c/code\u003e\u003c/a\u003e track changes for string_array endpoint parameters (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2699\"\u003e#2699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b4498c633741e24ff4930313610096601dc4036\"\u003e\u003ccode\u003e2b4498c\u003c/code\u003e\u003c/a\u003e Release 2024-06-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/332d372bb946f0d50cae58f9401b9c1244e4b818\"\u003e\u003ccode\u003e332d372\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9397b8d8c05eb1528910ba81881797e7c0e53d17\"\u003e\u003ccode\u003e9397b8d\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/674e1e4412ce44325902125c935ce124d0bfaf4f\"\u003e\u003ccode\u003e674e1e4\u003c/code\u003e\u003c/a\u003e Release 2024-06-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/406eeb4367bab3ac49b75fbd2d842186e961f4f0\"\u003e\u003ccode\u003e406eeb4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/17bd894f3c3842d21d5963bc23213397557c3105\"\u003e\u003ccode\u003e17bd894\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ssm/v1.56.2...service/s3/v1.57.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/configservice` from 1.62.2 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d8ed081e9bcc22e6c5eb63fb6bbacfa38d7bcce3\"\u003e\u003ccode\u003ed8ed081\u003c/code\u003e\u003c/a\u003e Release 2025-10-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a2c9cb47051246e43a65f78696b8189aaa48c871\"\u003e\u003ccode\u003ea2c9cb4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7af054b46fade69938d2682163c4abbbf126b9c7\"\u003e\u003ccode\u003e7af054b\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2e5ed49bd27c797319223fe6454411c6dc3f62cc\"\u003e\u003ccode\u003e2e5ed49\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f3a3b6c778eed688dc91940a6d9160e7445a218f\"\u003e\u003ccode\u003ef3a3b6c\u003c/code\u003e\u003c/a\u003e remove arbitrary response read timeout in kinesis GetRecords (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3221\"\u003e#3221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/56af15521102c665ba33e5512cd66068c7c32506\"\u003e\u003ccode\u003e56af155\u003c/code\u003e\u003c/a\u003e Release 2025-10-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b23832ac9b9505202125cf5c448c72cd333c819b\"\u003e\u003ccode\u003eb23832a\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/33ea965f3eb459c22ba41a8e5da55115da5686bc\"\u003e\u003ccode\u003e33ea965\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f70c7889fa7e09fba31a68c6dbef1e178bbb9964\"\u003e\u003ccode\u003ef70c788\u003c/code\u003e\u003c/a\u003e Release 2025-10-28\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f8aa1f373d60ee159a2aac412311edad2eaad752\"\u003e\u003ccode\u003ef8aa1f3\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/fsx/v1.62.2...service/fsx/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.100.0 to 1.101.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/84ddd08980744ac0f3bacfe7d2796c861671accc\"\u003e\u003ccode\u003e84ddd08\u003c/code\u003e\u003c/a\u003e Release 2026-05-06\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/23645b402c11575a32d1af93ec237f2f121dd285\"\u003e\u003ccode\u003e23645b4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/848eb597bd63cb770bcd11ee230f9dca68ce1ffe\"\u003e\u003ccode\u003e848eb59\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1d7b13420ed32f0809a5a4a35c630d19bfd0b6d4\"\u003e\u003ccode\u003e1d7b134\u003c/code\u003e\u003c/a\u003e Release 2026-05-05\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5bbbc97fcab2086757060561ccd1f34101ba7b57\"\u003e\u003ccode\u003e5bbbc97\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8dbb93618325675f55eb0c3eb0c7a766806dadbc\"\u003e\u003ccode\u003e8dbb936\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/369e6498c716c7e02ca7aef318ef311edd5efcbf\"\u003e\u003ccode\u003e369e649\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dc2d13fa6f1db25f1c6d804567e1ecfcdff4f040\"\u003e\u003ccode\u003edc2d13f\u003c/code\u003e\u003c/a\u003e Release 2026-05-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/da4bcffa913dc4ba46e1ce10a6268bf075547a8d\"\u003e\u003ccode\u003eda4bcff\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a8b1180254cba3e23aa6baece26783395e884d81\"\u003e\u003ccode\u003ea8b1180\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.100.0...service/s3/v1.101.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/elastic/go-elasticsearch/v8` from 8.19.4 to 8.19.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/elastic/go-elasticsearch/releases\"\u003egithub.com/elastic/go-elasticsearch/v8's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev8.19.6\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.5...v8.19.6\"\u003e8.19.6\u003c/a\u003e (2026-05-11)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e078f8ec\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev8.19.5\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.5\"\u003e8.19.5\u003c/a\u003e (2026-04-21)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e5615aed\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eesutil:\u003c/strong\u003e Add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003ef0ad701\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e Regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e13e5d5e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e9874577\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Map spec long to *int64 for esapi params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1391\"\u003e#1391\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/9a2424c77d0125cc4a915eacd5b6c293fcbe280c\"\u003e9a2424c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003efa81ccf\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/elastic/go-elasticsearch/blob/v8.19.6/CHANGELOG.md\"\u003egithub.com/elastic/go-elasticsearch/v8's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.5...v8.19.6\"\u003e8.19.6\u003c/a\u003e (2026-05-11)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e078f8ec\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.5\"\u003e8.19.5\u003c/a\u003e (2026-04-21)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e5615aed\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eesutil:\u003c/strong\u003e Add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003ef0ad701\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e Regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e13e5d5e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e9874577\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Map spec long to *int64 for esapi params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1391\"\u003e#1391\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/9a2424c77d0125cc4a915eacd5b6c293fcbe280c\"\u003e9a2424c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003efa81ccf\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/36df8bc2f994270fa8804f3f8d76eee484312c84\"\u003e\u003ccode\u003e36df8bc\u003c/code\u003e\u003c/a\u003e chore(8.19): release 8.19.6 (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1481\"\u003e#1481\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e\u003ccode\u003e078f8ec\u003c/code\u003e\u003c/a\u003e fix(client): remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/b467419b59035e4b08c71679ebe4493cbc2ff997\"\u003e\u003ccode\u003eb467419\u003c/code\u003e\u003c/a\u003e chore: bump version to 8.19.6-SNAPSHOT (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1457\"\u003e#1457\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/0349cffb1c4b495a8e3f0470bf7c8e7d44264769\"\u003e\u003ccode\u003e0349cff\u003c/code\u003e\u003c/a\u003e chore(8.19): release 8.19.5 (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1395\"\u003e#1395\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e\u003ccode\u003e5615aed\u003c/code\u003e\u003c/a\u003e feat(client): add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003e\u003ccode\u003ef0ad701\u003c/code\u003e\u003c/a\u003e feat(esutil): add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e\u003ccode\u003e13e5d5e\u003c/code\u003e\u003c/a\u003e fix(esapi): regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003e\u003ccode\u003efa81ccf\u003c/code\u003e\u003c/a\u003e fix(gen): support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e\u003ccode\u003e9874577\u003c/code\u003e\u003c/a\u003e fix(gen): accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/30b75857dfc00e975c77a63b408d4df0f754e937\"\u003e\u003ccode\u003e30b7585\u003c/code\u003e\u003c/a\u003e [Backport 8.19] fix(gen): sort required URL params deterministically (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1408\"\u003e#1408\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/clicky` from 1.21.7 to 1.21.9\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/releases\"\u003egithub.com/flanksource/clicky's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.21.9\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.21.8\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/blob/main/CHANGELOG.md\"\u003egithub.com/flanksource/clicky's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(task): Add stderr gating to prevent corruption during interactive render\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/b059cf91dda7637600922340575829cccfcb89ef\"\u003e\u003ccode\u003eb059cf9\u003c/code\u003e\u003c/a\u003e chore(release): 1.21.9 [skip ci]\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003e\u003ccode\u003ef85ce24\u003c/code\u003e\u003c/a\u003e refactor(api,mcp,rpc): extract helper functions and improve code organization\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e\u003ccode\u003e04f17df\u003c/code\u003e\u003c/a\u003e build(makefile): add git commit and build date to binary via ldflags\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e\u003ccode\u003e06e98ad\u003c/code\u003e\u003c/a\u003e feat(api,flags): add unified diff rendering and grouped flag help output\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003e\u003ccode\u003efc8746a\u003c/code\u003e\u003c/a\u003e refactor(api): simplify switch statement in parseJavaFrame\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e\u003ccode\u003e6b74c36\u003c/code\u003e\u003c/a\u003e chore(deps): clean up unused dependencies in go.sum\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e\u003ccode\u003e9345367\u003c/code\u003e\u003c/a\u003e feat(mcp): add SSE transport, tools command, and multi-client install support\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e\u003ccode\u003e6beea3b\u003c/code\u003e\u003c/a\u003e feat(formatters): add StackTrace rendering support to HTML formatters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e\u003ccode\u003e3e6e880\u003c/code\u003e\u003c/a\u003e feat(api): Add structured HTML rendering for stack traces with syntax highlig...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e\u003ccode\u003e9cb5cb9\u003c/code\u003e\u003c/a\u003e feat(mcp): Add fluent Builder API and discover-tools MCP tool\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.9\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-sql-driver/mysql` from 1.9.3 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/releases\"\u003egithub.com/go-sql-driver/mysql's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd Go 1.24 to the test matrix by \u003ca href=\"https://github.com/shogo82148\"\u003e\u003ccode\u003e@​shogo82148\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1681\"\u003ego-sql-driver/mysql#1681\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize for Go 1.22 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1695\"\u003ego-sql-driver/mysql#1695\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest stability improvement. by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1698\"\u003ego-sql-driver/mysql#1698\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esimplify collation tests by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1700\"\u003ego-sql-driver/mysql#1700\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix bigint unsigned null column scan to err type int64 by \u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eTransaction Commit/Rollback returns conn's cached error, if present by \u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd BenchmarkReceive10kRowsCompress by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1704\"\u003ego-sql-driver/mysql#1704\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eoptimize readPacket by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1705\"\u003ego-sql-driver/mysql#1705\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eMariaDB Metadata skipping and DEPRECATE_EOF by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimization: statements reuse previous column name by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1711\"\u003ego-sql-driver/mysql#1711\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate outdated MySQL internals documentation links by \u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix PING on compressed connections by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1721\"\u003ego-sql-driver/mysql#1721\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd DeepWiki badge by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1722\"\u003ego-sql-driver/mysql#1722\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate edwards25519 dependency to v1.1.1 by \u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure Dependabot for Go modules by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1755\"\u003ego-sql-driver/mysql#1755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump dominikh/staticcheck-action from 1.3.1 to 1.4.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 3 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1760\"\u003ego-sql-driver/mysql#1760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 5 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1757\"\u003ego-sql-driver/mysql#1757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix staticcheck error by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1761\"\u003ego-sql-driver/mysql#1761\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 4 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1758\"\u003ego-sql-driver/mysql#1758\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix getSystemVar buffer reuse by \u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConsolidate Dependabot update noise by grouping weekly dependency PRs by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1756\"\u003ego-sql-driver/mysql#1756\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCI: Update GitHub Actions Go matrix to 1.24–1.26 by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1763\"\u003ego-sql-driver/mysql#1763\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnhance interpolateParams to correctly handle placeholders by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1732\"\u003ego-sql-driver/mysql#1732\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1764\"\u003ego-sql-driver/mysql#1764\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erelease v1.10.0 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1765\"\u003ego-sql-driver/mysql#1765\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\"\u003ehttps://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/blob/master/CHANGELOG.md\"\u003egithub.com/go-sql-driver/mysql's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0 (2026-04-28)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eFix \u003ccode\u003egetSystemVar(\u0026quot;max_allowed_packet\u0026quot;)\u003c/code\u003e potentially returned wrong value. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\nThis affects only when \u003ccode\u003emaxAllowedPacket=0\u003c/code\u003e is set.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\nWhile older versions have reported CVEs, they do not affect go-mysql.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eUpdate Go versions to 1.24-1.26. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eEnhance interpolateParams to correctly handle placeholders. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\nThe question mark (?) within strings and comments will no longer be treated as a placeholder.\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/a065b60ab6d0c8e15468e7709c7f76acf4431647\"\u003e\u003ccode\u003ea065b60\u003c/code\u003e\u003c/a\u003e release v1.10.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1765\"\u003e#1765\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/09e4187be9c52bb13449a662d2a36e1e1789ac95\"\u003e\u003ccode\u003e09e4187\u003c/code\u003e\u003c/a\u003e modernize (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1764\"\u003e#1764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/6c44a9a0a1769e145dc91c08abe1aded2936ab63\"\u003e\u003ccode\u003e6c44a9a\u003c/code\u003e\u003c/a\u003e Enhance interpolateParams to correctly handle placeholders (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/688ce563a28598a9b733e6fc2b325050a4dcf261\"\u003e\u003ccode\u003e688ce56\u003c/code\u003e\u003c/a\u003e Update supported Go version to 1.24–1.26 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/118d07fdb51f9e523ebcdb00628812e49d7c1881\"\u003e\u003ccode\u003e118d07f\u003c/code\u003e\u003c/a\u003e Bump filippo.io/edwards25519 from 1.1.1 to 1.2.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/d6b2d3ee2cc8569b6778a7ae7ac2816e185f616b\"\u003e\u003ccode\u003ed6b2d3e\u003c/code\u003e\u003c/a\u003e Consolidate Dependabot update noise by grouping weekly dependency PRs (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1762\"\u003e#1762\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/037dfd872a7b6c88e63c53f32700dffed560120c\"\u003e\u003ccode\u003e037dfd8\u003c/code\u003e\u003c/a\u003e Fix getSystemVar buffer reuse (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/900f33035615559b6188e4fa98d57ae20af2b73b\"\u003e\u003ccode\u003e900f330\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 4 to 6 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1758\"\u003e#1758\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/ab9e3804c604d6a60b0d3136f4654f81f184757d\"\u003e\u003ccode\u003eab9e380\u003c/code\u003e\u003c/a\u003e fix staticcheck error (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1761\"\u003e#1761\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/f298c66742396b6921732744b9bb075c7faaca81\"\u003e\u003ccode\u003ef298c66\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5 to 6 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1757\"\u003e#1757\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.3...v1.10.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/google/cel-go` from 0.28.0 to 0.28.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/cel-go/releases\"\u003egithub.com/google/cel-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eRelease v0.28.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: deleted \u003ccode\u003eIntToDuration\u003c/code\u003e overload by \u003ca href=\"https://github.com/alexsnaps\"\u003e\u003ccode\u003e@​alexsnaps\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1300\"\u003egoogle/cel-go#1300\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSupport shorthand types in env yaml and REPL  by \u003ca href=\"https://github.com/jnthntatum\"\u003e\u003ccode\u003e@​jnthntatum\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1301\"\u003egoogle/cel-go#1301\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePreserve operation interrupted in ContextEval error by \u003ca href=\"https://github.com/dims\"\u003e\u003ccode\u003e@​dims\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1303\"\u003egoogle/cel-go#1303\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse shorthand type specifiers in env yaml files by \u003ca href=\"https://github.com/jnthntatum\"\u003e\u003ccode\u003e@​jnthntatum\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1305\"\u003egoogle/cel-go#1305\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCost estimation and tracking for strings extension by \u003ca href=\"https://github.com/TristonianJones\"\u003e\u003ccode\u003e@​TristonianJones\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1307\"\u003egoogle/cel-go#1307\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate repl type string for doubles by \u003ca href=\"https://github.com/TristonianJones\"\u003e\u003ccode\u003e@​TristonianJones\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1308\"\u003egoogle/cel-go#1308\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/alexsnaps\"\u003e\u003ccode\u003e@​alexsnaps\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1300\"\u003egoogle/cel-go#1300\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dims\"\u003e\u003ccode\u003e@​dims\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1303\"\u003egoogle/cel-go#1303\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/google/cel-go/compare/v0.28.0...v0.28.1\"\u003ehttps://github.com/google/cel-go/compare/v0.28.0...v0.28.1\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/a82c68b770ac0cb67f7b4f76166827c14b145eb8\"\u003e\u003ccode\u003ea82c68b\u003c/code\u003e\u003c/a\u003e Update repl type assessment for doubles (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1308\"\u003e#1308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/c9d70486a872fbfaf9c4cb383a005de56e499368\"\u003e\u003ccode\u003ec9d7048\u003c/code\u003e\u003c/a\u003e Cost estimation and tracking for strings extension (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1307\"\u003e#1307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/646cdc1728643aec9499e3a00236ef1007a5d3fa\"\u003e\u003ccode\u003e646cdc1\u003c/code\u003e\u003c/a\u003e Use shorthand type specifiers in env yaml files (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1305\"\u003e#1305\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/7263793b453228e8a47ca742afd124b3eaa8fc68\"\u003e\u003ccode\u003e7263793\u003c/code\u003e\u003c/a\u003e Preserve operation interrupted in ContextEval error (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1303\"\u003e#1303\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/b826162b7b6ac7ae048fbf23b6123ab5c99da11b\"\u003e\u003ccode\u003eb826162\u003c/code\u003e\u003c/a\u003e Support shorthand types in env yaml and REPL  (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1301\"\u003e#1301\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/339269b44af7c3cd477b55530e9cc1fe534c7f09\"\u003e\u003ccode\u003e339269b\u003c/code\u003e\u003c/a\u003e fix: deleted \u003ccode\u003eIntToDuration\u003c/code\u003e overload (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1300\"\u003e#1300\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/google/cel-go/compare/v0.28.0...v0.28.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/labstack/echo/v4` from 4.15.1 to 4.15.2\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/labstack/echo/blob/v4.15.2/CHANGELOG.md\"\u003egithub.com/labstack/echo/v4's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.15.2 - 2026-05-01\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eSecurity\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eContext.Scheme()\u003c/code\u003e should validate values taken from header by \u003ca href=\"https://github.com/aldas\"\u003e\u003ccode\u003e@​aldas\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/labstack/echo/pull/2962\"\u003elabstack/echo#2962\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eThanks to \u003ca href=\"https://github.com/shblue21\"\u003e\u003ccode\u003e@​shblue21\u003c/code\u003e\u003c/a\u003e for reporting this \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2952\"\u003eissue\u003c/a\u003e.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/25685e6f5f7b0683105d1386db46ae48eb3de028\"\u003e\u003ccode\u003e25685e6\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2963\"\u003e#2963\u003c/a\u003e from aldas/v4_changelog_4_15_2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/f9d76893c671df4da9792fc5c122eba01d43c63b\"\u003e\u003ccode\u003ef9d7689\u003c/code\u003e\u003c/a\u003e Changelog for v4.15.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/37fff28f72264196ad28761316fc7d96fd1c502d\"\u003e\u003ccode\u003e37fff28\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2962\"\u003e#2962\u003c/a\u003e from aldas/v4_valid_proto\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/ca4f38a474302aabee93c66bdd0052359882e181\"\u003e\u003ccode\u003eca4f38a\u003c/code\u003e\u003c/a\u003e Context.Scheme should validate values taken from header\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/2e527a70a73b3a93b8346384f607cdc502d3d200\"\u003e\u003ccode\u003e2e527a7\u003c/code\u003e\u003c/a\u003e Update CI, update deps\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/labstack/echo/compare/v4.15.1...v4.15.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/microsoft/go-mssqldb` from 1.9.8 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/go-mssqldb/releases\"\u003egithub.com/microsoft/go-mssqldb's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003e1.10.0\u003c/a\u003e (2026-04-25)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003eb55beeb\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003eea77c2e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd NewConnectorWithProcessQueryText for mssql driver compatibility (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/341\"\u003e#341\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/2be611f8a7b2ec5125a835e1d6efb8cfb8979a86\"\u003e2be611f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003ec10fa99\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eallow named pipe protocol support for ARM64 Windows (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/232\"\u003e#232\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/a82c05866462e56b43d42e4523576aa363a3871a\"\u003ea82c058\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003econfigure release-please with PAT and correct component mapping (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/349\"\u003e#349\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/23bac055cea5040891be595e34869b19378974ad\"\u003e23bac05\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edetect server-aborted transactions to prevent silent auto-commit (XACT_ABORT) (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/370\"\u003e#370\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e586ea53\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e9937cfe\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ehandle COLINFO (0xA5) and TABNAME (0xA4) TDS tokens returned by tables with triggers (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/343\"\u003e#343\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/7c905adac4e8e00856c3d20503902f0160f5853d\"\u003e7c905ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eimplement driver.DriverContext interface (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/365\"\u003e#365\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/1b610a0b2905dc472968842e7a8f252acdb94272\"\u003e1b610a0\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/236\"\u003e#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emake readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e65e137f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereplace broken AppVeyor badge with GitHub Actions badge (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/334\"\u003e#334\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/d3429f5bb895bdb884ae39a43d87bb384aa5353a\"\u003ed3429f5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereturn interface{} scanType for sql_variant instead of nil (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/362\"\u003e#362\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/296a83a3e25fc23add1dbb243df1a716f431de66\"\u003e296a83a\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/186\"\u003e#186\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esanitize credentials from connection string parsing errors (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/319\"\u003e#319\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/93f5ef0dd5f02c9094a22d0052fb95cd553ba971\"\u003e93f5ef0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esurface server errors from Rows.Close() during token drain (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/361\"\u003e#361\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea69792c6da6d049eaec4e672a95d55bafef48f5\"\u003eea69792\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/244\"\u003e#244\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/go-mssqldb/blob/main/CHANGELOG.md\"\u003egithub.com/microsoft/go-mssqldb's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003e1.10.0\u003c/a\u003e (2026-04-25)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003eb55beeb\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003eea77c2e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd NewConnectorWithProcessQueryText for mssql driver compatibility (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/341\"\u003e#341\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/2be611f8a7b2ec5125a835e1d6efb8cfb8979a86\"\u003e2be611f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003ec10fa99\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eallow named pipe protocol support for ARM64 Windows (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/232\"\u003e#232\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/a82c05866462e56b43d42e4523576aa363a3871a\"\u003ea82c058\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003econfigure release-please with PAT and correct component mapping (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/349\"\u003e#349\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/23bac055cea5040891be595e34869b19378974ad\"\u003e23bac05\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edetect server-aborted transactions to prevent silent auto-commit (XACT_ABORT) (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/370\"\u003e#370\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e586ea53\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e9937cfe\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ehandle COLINFO (0xA5) and TABNAME (0xA4) TDS tokens returned by tables with triggers (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/343\"\u003e#343\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/7c905adac4e8e00856c3d20503902f0160f5853d\"\u003e7c905ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eimplement driver.DriverContext interface (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/365\"\u003e#365\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/1b610a0b2905dc472968842e7a8f252acdb94272\"\u003e1b610a0\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/236\"\u003e#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emake readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e65e137f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereplace broken AppVeyor badge with GitHub Actions badge (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/334\"\u003e#334\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/d3429f5bb895bdb884ae39a43d87bb384aa5353a\"\u003ed3429f5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereturn interface{} scanType for sql_variant instead of nil (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/362\"\u003e#362\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/296a83a3e25fc23add1dbb243df1a716f431de66\"\u003e296a83a\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/186\"\u003e#186\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esanitize credentials from connection string parsing errors (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/319\"\u003e#319\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/93f5ef0dd5f02c9094a22d0052fb95cd553ba971\"\u003e93f5ef0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esurface server errors from Rows.Close() during token drain (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/361\"\u003e#361\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea69792c6da6d049eaec4e672a95d55bafef48f5\"\u003eea69792\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/244\"\u003e#244\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.6\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded new \u003ccode\u003eserverCertificate\u003c/code\u003e connection parameter for byte-for-byte certificate validation, matching Microsoft.Data.SqlClient behavior. This parameter skips hostname validation, chain validation, and expiry checks, only verifying that the server's certificate exactly matches the provided file. This is useful when the server's hostname doesn't match the certificate CN/SAN. (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/304\"\u003e#304\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eThe existing \u003ccode\u003ecertificate\u003c/code\u003e parameter maintains backward compatibility with traditional X.509 chain validation including hostname checks, expiry validation, and chain-of-trust verification.\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eserverCertificate\u003c/code\u003e cannot be used with \u003ccode\u003ecertificate\u003c/code\u003e or \u003ccode\u003ehostnameincertificate\u003c/code\u003e parameters to prevent conflicting validation methods.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.3\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix parsing of ADO connection strings with double-quoted values containing semicolons (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/282\"\u003e#282\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.2\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix race condition in message queue query model (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/277\"\u003e#277\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.1\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix bulk insert failure with datetime values near midnight due to day overflow (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/271\"\u003e#271\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/f92e6f0abf7607819f70b66191e6732c02c78f57\"\u003e\u003ccode\u003ef92e6f0\u003c/code\u003e\u003c/a\u003e chore(main): release 1.10.0 (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/351\"\u003e#351\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/03094d02c4fd74c8a95e6feb36ec5d3d8b93f592\"\u003e\u003ccode\u003e03094d0\u003c/code\u003e\u003c/a\u003e ci: add least-privilege permissions and pin actions to SHA (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/354\"\u003e#354\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e\u003ccode\u003e65e137f\u003c/code\u003e\u003c/a\u003e fix: make readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003e\u003ccode\u003ec10fa99\u003c/code\u003e\u003c/a\u003e feat: add nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e\u003ccode\u003e9937cfe\u003c/code\u003e\u003c/a\u003e fix: expose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/429c61d44f20e08cc2a5ff1bbd2a33cfe65b1b15\"\u003e\u003ccode\u003e429c61d\u003c/code\u003e\u003c/a\u003e chore(deps): bump googleapis/release-please-action from 4.4.1 to 5.0.0 in the...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003e\u003ccode\u003eea77c2e\u003c/code\u003e\u003c/a\u003e feat: add FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/04d26c2da5fe6aebf1f04727c09a14a8cd36af56\"\u003e\u003ccode\u003e04d26c2\u003c/code\u003e\u003c/a\u003e ci: add devcontainer build validation workflow (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/355\"\u003e#355\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003e\u003ccode\u003eb55beeb\u003c/code\u003e\u003c/a\u003e feat: add devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e\u003ccode\u003e586ea53\u003c/code\u003e\u003c/a\u003e fix: detect server-aborted transactions to prevent silent auto-commit (XACT_A...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/onsi/ginkgo/v2` from 2.28.2 to 2.29.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/ginkgo/releases\"\u003egithub.com/onsi/ginkgo/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.29.0\u003c/h2\u003e\n\u003ch2\u003e2.29.0\u003c/h2\u003e\n\u003cp\u003e\u003ccode\u003eGinkgoHelperGo\u003c/code\u003e makes it easier to write test helpers that need to run in goroutines.  Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.\u003c/p\u003e\n\u003cp\u003e\u003ccode\u003eginkgo outline\u003c/code\u003e now includes entries defined in \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e\u003c/p\u003e\n\u003ch2\u003ev2.28.3\u003c/h2\u003e\n\u003ch2\u003e2.28.3\u003c/h2\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cp\u003eBump all dependencies\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summar...\n\n_Description has been truncated_","html_url":"https://github.com/flanksource/canary-checker/pull/2964","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/flanksource%2Fcanary-checker/issues/2964","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2964/packages"}},{"old_version":"1.62.1","new_version":"1.62.2","update_type":"patch","path":null,"pr_created_at":"2026-05-20T08:58:31.000Z","version_change":"1.62.1 → 1.62.2","issue":{"uuid":"4484828122","node_id":"PR_kwDOO2nR4c7dcUaD","number":416,"state":"closed","title":"chore(deps): bump the gomod group across 1 directory with 2 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-21T02:39:48.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-20T08:58:31.000Z","updated_at":"2026-05-21T02:39:50.000Z","time_to_close":63677,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"gomod","update_count":2,"packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/google/go-containerregistry","old_version":"0.21.5","new_version":"0.21.6","repository_url":"https://github.com/google/go-containerregistry"}],"path":null,"ecosystem":"go"},"body":"Bumps the gomod group with 2 updates in the / directory: [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) and [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry).\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/google/go-containerregistry` from 0.21.5 to 0.21.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/go-containerregistry/releases\"\u003egithub.com/google/go-containerregistry's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.21.6\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: update dependencies to use new azure sdk components by \u003ca href=\"https://github.com/gaganhr94\"\u003e\u003ccode\u003e@​gaganhr94\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2262\"\u003egoogle/go-containerregistry#2262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: restore resp.Body in retryError so CheckError can parse it by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2264\"\u003egoogle/go-containerregistry#2264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/registry: return 202 Accepted for PATCH chunk uploads by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2265\"\u003egoogle/go-containerregistry#2265\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFollow OCI distribution spec for artifactType and annotations by \u003ca href=\"https://github.com/malt3\"\u003e\u003ccode\u003e@​malt3\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2269\"\u003egoogle/go-containerregistry#2269\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eactions: attach Codecov token to coverage tests on main by \u003ca href=\"https://github.com/Subserial\"\u003e\u003ccode\u003e@​Subserial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2270\"\u003egoogle/go-containerregistry#2270\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: use DeleteScope (with \u0026quot;delete\u0026quot; action) for manifest deletion by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2266\"\u003egoogle/go-containerregistry#2266\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: limit concurrent layer pulls by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2271\"\u003egoogle/go-containerregistry#2271\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/registry: reject corrupt disk blobs by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2272\"\u003egoogle/go-containerregistry#2272\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emutate: close layer readers during export by \u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2277\"\u003egoogle/go-containerregistry#2277\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ecrane/flatten: preserve image media type when flattening by \u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2267\"\u003egoogle/go-containerregistry#2267\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump goreleaser/goreleaser-action from 7.0.0 to 7.2.1 in the actions group across 1 directory by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2273\"\u003egoogle/go-containerregistry#2273\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump go.opentelemetry.io/otel from 1.36.0 to 1.41.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2278\"\u003egoogle/go-containerregistry#2278\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump the go-deps group across 3 directories with 6 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2280\"\u003egoogle/go-containerregistry#2280\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReplace go-homedir with os.UserHomeDir by \u003ca href=\"https://github.com/jammie-jelly\"\u003e\u003ccode\u003e@​jammie-jelly\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2282\"\u003egoogle/go-containerregistry#2282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/name: only treat .localhost as non-HTTPS, not .local by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2281\"\u003egoogle/go-containerregistry#2281\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: block unspecified IPs (0.0.0.0, ::) in validateRealmURL by \u003ca href=\"https://github.com/marwan9696\"\u003e\u003ccode\u003e@​marwan9696\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2285\"\u003egoogle/go-containerregistry#2285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest(mutate): add Extract round-trip test for filesystem object preservation by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2283\"\u003egoogle/go-containerregistry#2283\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexperiments: remove deprecated support for estargz by \u003ca href=\"https://github.com/thaJeztah\"\u003e\u003ccode\u003e@​thaJeztah\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2288\"\u003egoogle/go-containerregistry#2288\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump aws-actions/configure-aws-credentials from 6.1.0 to 6.1.1 in the actions group by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2289\"\u003egoogle/go-containerregistry#2289\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: limit HTTP response body reads to prevent OOM by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2296\"\u003egoogle/go-containerregistry#2296\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump the go-deps group across 3 directories with 6 updates by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2297\"\u003egoogle/go-containerregistry#2297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: block redirects from token server to private/link-local addresses (SSRF fix) by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2292\"\u003egoogle/go-containerregistry#2292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003epkg/v1/mutate: preserve relative symlinks that stay within rootfs in Extract by \u003ca href=\"https://github.com/anishesg\"\u003e\u003ccode\u003e@​anishesg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2279\"\u003egoogle/go-containerregistry#2279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003evalidate: skip non-layer layers by \u003ca href=\"https://github.com/imjasonh\"\u003e\u003ccode\u003e@​imjasonh\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2298\"\u003egoogle/go-containerregistry#2298\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: validate foreign layer URLs to prevent SSRF (fixes \u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2259\"\u003e#2259\u003c/a\u003e) by \u003ca href=\"https://github.com/evilgensec\"\u003e\u003ccode\u003e@​evilgensec\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2293\"\u003egoogle/go-containerregistry#2293\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremote: block SSRF via private-IP Location headers in blob uploads by \u003ca href=\"https://github.com/adilburaksen\"\u003e\u003ccode\u003e@​adilburaksen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2295\"\u003egoogle/go-containerregistry#2295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(mutate): preserve config blob and layers for non-Docker OCI artifacts by \u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2286\"\u003egoogle/go-containerregistry#2286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: preserve per-occurrence layer identity in mutate.Image.Layers() by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2299\"\u003egoogle/go-containerregistry#2299\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: retry HTTP 429 (Too Many Requests) by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2301\"\u003egoogle/go-containerregistry#2301\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etransport: allow bearer realm at same host:port as registry by \u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2302\"\u003egoogle/go-containerregistry#2302\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate go version to 1.26.3 by \u003ca href=\"https://github.com/Subserial\"\u003e\u003ccode\u003e@​Subserial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2300\"\u003egoogle/go-containerregistry#2300\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/gaganhr94\"\u003e\u003ccode\u003e@​gaganhr94\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2262\"\u003egoogle/go-containerregistry#2262\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/alliasgher\"\u003e\u003ccode\u003e@​alliasgher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2264\"\u003egoogle/go-containerregistry#2264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/malt3\"\u003e\u003ccode\u003e@​malt3\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2269\"\u003egoogle/go-containerregistry#2269\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/gnix0\"\u003e\u003ccode\u003e@​gnix0\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2271\"\u003egoogle/go-containerregistry#2271\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/blackwell-systems\"\u003e\u003ccode\u003e@​blackwell-systems\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2281\"\u003egoogle/go-containerregistry#2281\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/marwan9696\"\u003e\u003ccode\u003e@​marwan9696\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2285\"\u003egoogle/go-containerregistry#2285\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/anishesg\"\u003e\u003ccode\u003e@​anishesg\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2279\"\u003egoogle/go-containerregistry#2279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/adilburaksen\"\u003e\u003ccode\u003e@​adilburaksen\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2295\"\u003egoogle/go-containerregistry#2295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/iahsanGill\"\u003e\u003ccode\u003e@​iahsanGill\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/go-containerregistry/pull/2299\"\u003egoogle/go-containerregistry#2299\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\"\u003ehttps://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/53f7e39e15bfd6aeea6a5f733ee1a8fcf54c15cf\"\u003e\u003ccode\u003e53f7e39\u003c/code\u003e\u003c/a\u003e Update go version to 1.26.3 (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2300\"\u003e#2300\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/bf87c3bfe4cc3218ac0baa364545d72729d2906d\"\u003e\u003ccode\u003ebf87c3b\u003c/code\u003e\u003c/a\u003e transport: allow bearer realm at same host:port as registry (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2302\"\u003e#2302\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/c55facddfbd7fc3d648c6fdda9860b350b013a76\"\u003e\u003ccode\u003ec55facd\u003c/code\u003e\u003c/a\u003e transport: retry HTTP 429 (Too Many Requests) (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2301\"\u003e#2301\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/68a569e4a0eb927d36ccb0fcdf4578425c03b5a2\"\u003e\u003ccode\u003e68a569e\u003c/code\u003e\u003c/a\u003e fix: preserve per-occurrence layer identity in Layers() (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2299\"\u003e#2299\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/35b354b436879457221028f05a580fe1c0deccbc\"\u003e\u003ccode\u003e35b354b\u003c/code\u003e\u003c/a\u003e fix(mutate): preserve config blob and layers for non-Docker OCI artifacts (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2\"\u003e#2\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/e5983f2a67ec46b76984ce6de85de08a44eee955\"\u003e\u003ccode\u003ee5983f2\u003c/code\u003e\u003c/a\u003e remote: block SSRF via private-IP Location headers in blob uploads (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2295\"\u003e#2295\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/6dad820da7de0d619f1127c46914f2eaf58e3b46\"\u003e\u003ccode\u003e6dad820\u003c/code\u003e\u003c/a\u003e remote: validate foreign layer URLs to prevent SSRF (fixes \u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2259\"\u003e#2259\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2293\"\u003e#2293\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/78bdf1b7e2105cdfcd8f23509992c78357ce16ed\"\u003e\u003ccode\u003e78bdf1b\u003c/code\u003e\u003c/a\u003e validate: skip non-layer layers (\u003ca href=\"https://redirect.github.com/google/go-containerregistry/issues/2298\"\u003e#2298\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/c29d91cdc394cb288270f4dd04a31f81054946f4\"\u003e\u003ccode\u003ec29d91c\u003c/code\u003e\u003c/a\u003e pkg/v1/mutate: preserve relative symlinks that stay within rootfs in Extract ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-containerregistry/commit/a70d75a6915ed3137792206dac4bca21d1924959\"\u003e\u003ccode\u003ea70d75a\u003c/code\u003e\u003c/a\u003e transport: block redirects from token server to private/link-local addresses ...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/google/go-containerregistry/compare/v0.21.5...v0.21.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore \u003cdependency name\u003e major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)\n- `@dependabot ignore \u003cdependency name\u003e` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)\n- `@dependabot unignore \u003cdependency name\u003e` will remove all of the ignore conditions of the specified dependency\n- `@dependabot unignore \u003cdependency name\u003e \u003cignore condition\u003e` will remove the ignore condition of the specified dependency and ignore conditions\n\n\n\u003c/details\u003e","html_url":"https://github.com/chainguard-forks/kaniko/pull/416","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/chainguard-forks%2Fkaniko/issues/416","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/416/packages"}},{"old_version":"1.62.1","new_version":"1.62.2","update_type":"patch","path":null,"pr_created_at":"2026-05-20T01:36:14.000Z","version_change":"1.62.1 → 1.62.2","issue":{"uuid":"4482405246","node_id":"PR_kwDOLqiqvs7dUjgn","number":57,"state":"open","title":"deps: bump cloud.google.com/go/storage from 1.62.1 to 1.62.2","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-20T01:36:14.000Z","updated_at":"2026-05-20T01:36:26.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.62.1 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.62.1\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/nandlabs/golly-gcp/pull/57","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/nandlabs%2Fgolly-gcp/issues/57","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/57/packages"}},{"old_version":"1.62.1","new_version":"1.62.2","update_type":"patch","path":null,"pr_created_at":"2026-05-19T22:07:02.000Z","version_change":"1.62.1 → 1.62.2","issue":{"uuid":"4481404529","node_id":"PR_kwDOHIqlR87dRY6D","number":1977,"state":"open","title":"chore(deps): bump the go-modules group across 1 directory with 31 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-19T22:07:02.000Z","updated_at":"2026-05-19T22:07:57.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"go-modules","update_count":31,"packages":[{"name":"cloud.google.com/go/bigquery","old_version":"1.76.0","new_version":"1.77.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/logging","old_version":"1.16.0","new_version":"1.18.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob","old_version":"1.6.4","new_version":"1.7.0","repository_url":"https://github.com/Azure/azure-sdk-for-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.41.6","new_version":"1.41.7","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.32.16","new_version":"1.32.17","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs","old_version":"1.69.1","new_version":"1.74.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/eks","old_version":"1.82.1","new_version":"1.83.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/sqs","old_version":"1.42.26","new_version":"1.42.27","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/eko/gocache/store/go_cache/v4","old_version":"4.2.4","new_version":"4.2.5","repository_url":"https://github.com/eko/gocache"},{"name":"github.com/flanksource/clicky","old_version":"1.21.4","new_version":"1.21.9","repository_url":"https://github.com/flanksource/clicky"},{"name":"github.com/flanksource/commons","old_version":"1.51.3","new_version":"1.51.4","repository_url":"https://github.com/flanksource/commons"},{"name":"github.com/flanksource/deps","old_version":"1.0.28","new_version":"1.0.32","repository_url":"https://github.com/flanksource/deps"},{"name":"github.com/go-git/go-git/v5","old_version":"5.18.0","new_version":"5.19.1","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/go-sql-driver/mysql","old_version":"1.9.3","new_version":"1.10.0","repository_url":"https://github.com/go-sql-driver/mysql"},{"name":"github.com/google/cel-go","old_version":"0.28.0","new_version":"0.28.1","repository_url":"https://github.com/google/cel-go"},{"name":"github.com/invopop/jsonschema","old_version":"0.13.0","new_version":"0.14.0","repository_url":"https://github.com/invopop/jsonschema"},{"name":"github.com/labstack/echo/v4","old_version":"4.15.1","new_version":"4.15.2","repository_url":"https://github.com/labstack/echo"},{"name":"github.com/microsoft/go-mssqldb","old_version":"1.9.8","new_version":"1.10.0","repository_url":"https://github.com/microsoft/go-mssqldb"},{"name":"github.com/nats-io/nats.go","old_version":"1.51.0","new_version":"1.52.0","repository_url":"https://github.com/nats-io/nats.go"},{"name":"github.com/onsi/ginkgo/v2","old_version":"2.28.1","new_version":"2.29.0","repository_url":"https://github.com/onsi/ginkgo"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"},{"name":"k8s.io/apimachinery","old_version":"0.35.4","new_version":"0.36.1","repository_url":"https://github.com/kubernetes/apimachinery"},{"name":"modernc.org/sqlite","old_version":"1.49.1","new_version":"1.50.1"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.99.1","new_version":"1.101.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-modules group with 25 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [cloud.google.com/go/bigquery](https://github.com/googleapis/google-cloud-go) | `1.76.0` | `1.77.0` |\n| [cloud.google.com/go/logging](https://github.com/googleapis/google-cloud-go) | `1.16.0` | `1.18.0` |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.1` | `1.62.2` |\n| [github.com/Azure/azure-sdk-for-go/sdk/storage/azblob](https://github.com/Azure/azure-sdk-for-go) | `1.6.4` | `1.7.0` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.6` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.16` | `1.32.17` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs](https://github.com/aws/aws-sdk-go-v2) | `1.69.1` | `1.74.0` |\n| [github.com/aws/aws-sdk-go-v2/service/eks](https://github.com/aws/aws-sdk-go-v2) | `1.82.1` | `1.83.0` |\n| [github.com/aws/aws-sdk-go-v2/service/sqs](https://github.com/aws/aws-sdk-go-v2) | `1.42.26` | `1.42.27` |\n| [github.com/eko/gocache/store/go_cache/v4](https://github.com/eko/gocache) | `4.2.4` | `4.2.5` |\n| [github.com/flanksource/clicky](https://github.com/flanksource/clicky) | `1.21.4` | `1.21.9` |\n| [github.com/flanksource/commons](https://github.com/flanksource/commons) | `1.51.3` | `1.51.4` |\n| [github.com/flanksource/deps](https://github.com/flanksource/deps) | `1.0.28` | `1.0.32` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.18.0` | `5.19.1` |\n| [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) | `1.9.3` | `1.10.0` |\n| [github.com/google/cel-go](https://github.com/google/cel-go) | `0.28.0` | `0.28.1` |\n| [github.com/invopop/jsonschema](https://github.com/invopop/jsonschema) | `0.13.0` | `0.14.0` |\n| [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.15.1` | `4.15.2` |\n| [github.com/microsoft/go-mssqldb](https://github.com/microsoft/go-mssqldb) | `1.9.8` | `1.10.0` |\n| [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) | `1.51.0` | `1.52.0` |\n| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.28.1` | `2.29.0` |\n| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.276.0` | `0.280.0` |\n| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.35.4` | `0.36.1` |\n| [modernc.org/sqlite](https://gitlab.com/cznic/sqlite) | `1.49.1` | `1.50.1` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.99.1` | `1.101.0` |\n\n\nUpdates `cloud.google.com/go/bigquery` from 1.76.0 to 1.77.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/7cd251203fc35859882ecda532b7debaff378374\"\u003e\u003ccode\u003e7cd2512\u003c/code\u003e\u003c/a\u003e chore(main): release spanner 1.77.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11634\"\u003e#11634\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/28f00304ebb13abfd0da2f45b9b79de093cca1ec\"\u003e\u003ccode\u003e28f0030\u003c/code\u003e\u003c/a\u003e chore(all): fix out-of-sync version.go files (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11684\"\u003e#11684\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/655de36dce9cfd32ef88cb58037dbf655b93da21\"\u003e\u003ccode\u003e655de36\u003c/code\u003e\u003c/a\u003e feat(spanner): Support REPEATABLE_READ for RW transaction (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11654\"\u003e#11654\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/60dc167a3e9c2876fe55a4f50bd7e0682f953d67\"\u003e\u003ccode\u003e60dc167\u003c/code\u003e\u003c/a\u003e fix(aiplatform): remove VertexAISearch.engine option (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11681\"\u003e#11681\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/3f23a9176f29a0a69b9d57b16f44b72eb3096d0c\"\u003e\u003ccode\u003e3f23a91\u003c/code\u003e\u003c/a\u003e fix(aiplatform): An existing google.api.http annotation \u003ccode\u003ehttp_uri\u003c/code\u003e is changed...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/e87cedc467cbb5205ebe67855e2a95a5edb98bba\"\u003e\u003ccode\u003ee87cedc\u003c/code\u003e\u003c/a\u003e chore: remove resourcesettings (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11678\"\u003e#11678\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d662a4537c3883d13a612e335477ca875b5cf479\"\u003e\u003ccode\u003ed662a45\u003c/code\u003e\u003c/a\u003e feat(spanner): add option for LastStatement in transaction (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11638\"\u003e#11638\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9e508d066bdaa7e41c251fa0ba7eb9b23587c3a0\"\u003e\u003ccode\u003e9e508d0\u003c/code\u003e\u003c/a\u003e chore: release main (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/11623\"\u003e#11623\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/601e74202ca6bf28506f06f27abc1d99018f9dc5\"\u003e\u003ccode\u003e601e742\u003c/code\u003e\u003c/a\u003e feat(bigquery/reservation): Add a new field \u003ccode\u003ereplication_status\u003c/code\u003e to `.google....\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1eb601ee788e5fbc0a9f55cde580493191782df3\"\u003e\u003ccode\u003e1eb601e\u003c/code\u003e\u003c/a\u003e chore(firestore): expose the Firestore.executePipeline API to the preview bra...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/spanner/v1.76.0...spanner/v1.77.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/logging` from 1.16.0 to 1.18.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/logging's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003erecommender: v1.18.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/recommender/v1.17.0...recommender/v1.18.0\"\u003ev1.18.0\u003c/a\u003e (2026-05-07)\u003c/h2\u003e\n\u003ch2\u003estoragetransfer: v1.18.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storagetransfer/v1.17.0...storagetransfer/v1.18.0\"\u003ev1.18.0\u003c/a\u003e (2026-05-07)\u003c/h2\u003e\n\u003ch2\u003eservicedirectory: v1.17.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/servicedirectory/v1.16.0...servicedirectory/v1.17.0\"\u003ev1.17.0\u003c/a\u003e (2026-05-07)\u003c/h2\u003e\n\u003ch2\u003etranslate: v1.17.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/translate/v1.16.0...translate/v1.17.0\"\u003ev1.17.0\u003c/a\u003e (2026-05-07)\u003c/h2\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/blob/main/documentai/CHANGES.md\"\u003ecloud.google.com/go/logging's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/documentai/v1.17.0...documentai/v1.18.0\"\u003e1.18.0\u003c/a\u003e (2023-03-22)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edocumentai:\u003c/strong\u003e Add ImportProcessorVersion in v1beta3 (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c967961ed95750e173af0193ec8d0974471f43ff\"\u003ec967961\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/documentai/v1.16.0...documentai/v1.17.0\"\u003e1.17.0\u003c/a\u003e (2023-03-15)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edocumentai:\u003c/strong\u003e Added hints.language_hints field in OcrConfig (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/7522\"\u003e#7522\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/b2c40c3df916691b82f1b384eac5bc953960960a\"\u003eb2c40c3\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ad8792d691c5eda8f65debddc2e0aa2e682c7bfe\"\u003e\u003ccode\u003ead8792d\u003c/code\u003e\u003c/a\u003e chore: release main (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10399\"\u003e#10399\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4fa43082511e153044084c1e6736553de41a9894\"\u003e\u003ccode\u003e4fa4308\u003c/code\u003e\u003c/a\u003e feat(kms): support Key Access Justifications policy configuration (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10398\"\u003e#10398\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/661369863abd0ca4df057e3f82af70ac9027f6ad\"\u003e\u003ccode\u003e6613698\u003c/code\u003e\u003c/a\u003e chore(main): release bigtable 1.25.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10396\"\u003e#10396\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/18fa7e4961d055939078833d0442a415fac96ae6\"\u003e\u003ccode\u003e18fa7e4\u003c/code\u003e\u003c/a\u003e feat(bigtable): add string type to supported Bigtable type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10306\"\u003e#10306\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d8bd2c1ffc4f27503a74ded438d8bfbdd7707c63\"\u003e\u003ccode\u003ed8bd2c1\u003c/code\u003e\u003c/a\u003e fix(storage): allow empty soft delete on Create (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10394\"\u003e#10394\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/36b70b73fa7e61615dee32d094beafab106a8e9e\"\u003e\u003ccode\u003e36b70b7\u003c/code\u003e\u003c/a\u003e chore(spanner): use previous version of cloud.google.com/go (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10390\"\u003e#10390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/2cfca6b8f3c6c623a1907054c20f8d597e173ebe\"\u003e\u003ccode\u003e2cfca6b\u003c/code\u003e\u003c/a\u003e chore(main): release pubsub 1.39.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10173\"\u003e#10173\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/110d4a3cb8c45635fa66b1df34e8e3da9d38a41e\"\u003e\u003ccode\u003e110d4a3\u003c/code\u003e\u003c/a\u003e chore: release main (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10392\"\u003e#10392\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/abac5c6eec859477c6d390b116ea8954213ba585\"\u003e\u003ccode\u003eabac5c6\u003c/code\u003e\u003c/a\u003e chore(dataplex): deprecate SearchEntriesResult.snippets (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10377\"\u003e#10377\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/426a8c27a9d11f24e8c331b6375f87d29829e021\"\u003e\u003ccode\u003e426a8c2\u003c/code\u003e\u003c/a\u003e feat(pubsub): make lease management RPCs concurrent (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/10238\"\u003e#10238\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/kms/v1.16.0...kms/v1.18.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/Azure/azure-sdk-for-go/sdk/storage/azblob` from 1.6.4 to 1.7.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/Azure/azure-sdk-for-go/releases\"\u003egithub.com/Azure/azure-sdk-for-go/sdk/storage/azblob's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003esdk/storage/azblob/v1.7.0\u003c/h2\u003e\n\u003ch2\u003e1.7.0 (2026-05-14)\u003c/h2\u003e\n\u003ch3\u003eFeatures Added\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eIncludes all features from \u003ccode\u003e1.7.0-beta.1\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003esdk/storage/azblob/v1.7.0-beta.1\u003c/h2\u003e\n\u003ch2\u003e1.7.0-beta.1 (2026-04-23)\u003c/h2\u003e\n\u003ch3\u003eFeatures Added\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for service version 2026-04-06.\u003c/li\u003e\n\u003cli\u003eAdded support for Delete Blob Conditional Tier.\u003c/li\u003e\n\u003cli\u003eAdded support for Server-side Encryption Rekeying.\u003c/li\u003e\n\u003cli\u003eAdded cross-tenant support for Principal-Bound User Delegation SAS.\u003c/li\u003e\n\u003cli\u003eAdded support for Dynamic User Delegation SAS.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBugs Fixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for error code \u003ccode\u003eIncrementalCopyOfEarlierSnapshotNotAllowed\u003c/code\u003e. This replaces \u003ccode\u003eIncrementalCopyOfEralierVersionSnapshotNotAllowed\u003c/code\u003e which has been deprecated.\u003c/li\u003e\n\u003cli\u003eAdded support for missing SKU name values.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003esdk/storage/azfile/v1.7.0-beta.1\u003c/h2\u003e\n\u003ch2\u003e1.7.0-beta.1 (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eFeatures Added\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for service version 2026-06-06.\u003c/li\u003e\n\u003cli\u003eAdded support for uploading up to 4 MiB of data with Create File API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/624babab3d2e3a95628afa61d1474a035cc7d094\"\u003e\u003ccode\u003e624baba\u003c/code\u003e\u003c/a\u003e bump azcore version number\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/ce7217c3f5f5a2f88f3a5d1ded48da338f3d8d06\"\u003e\u003ccode\u003ece7217c\u003c/code\u003e\u003c/a\u003e Prep for azcore v1.7.0 release (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/21149\"\u003e#21149\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/62a8079d41783914d9a5f585bcdb6f6b91223e5c\"\u003e\u003ccode\u003e62a8079\u003c/code\u003e\u003c/a\u003e Add support for shallow cloning azcore.Client instances (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/21065\"\u003e#21065\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/21098\"\u003e#21098\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/47286b065b0e3aa7d367fb20212aad3a143e6343\"\u003e\u003ccode\u003e47286b0\u003c/code\u003e\u003c/a\u003e Add flag to enable skipping of dependency checks (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/21146\"\u003e#21146\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/ee762d4420eb57051cdebe55e55b107dae4f6bfc\"\u003e\u003ccode\u003eee762d4\u003c/code\u003e\u003c/a\u003e Fix populating module name in telemetry policy (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20967\"\u003e#20967\u003c/a\u003e) (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20971\"\u003e#20971\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/02431759c00a99a31e159e9905c392b8f430c897\"\u003e\u003ccode\u003e0243175\u003c/code\u003e\u003c/a\u003e Prep azcore v1.6.1 for release (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20961\"\u003e#20961\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/9c9d62a1d612cf1f9e6902ddd3c538abd90b955c\"\u003e\u003ccode\u003e9c9d62a\u003c/code\u003e\u003c/a\u003e Increment package version after release of azcore (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20740\"\u003e#20740\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/36f766d2feba70f64bed923c23b57602998e16c8\"\u003e\u003ccode\u003e36f766d\u003c/code\u003e\u003c/a\u003e add sdk/resourcemanager/cosmos/armcosmos live test (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20705\"\u003e#20705\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/c005ed6159fdf2104077694b5f89e7063a0cc586\"\u003e\u003ccode\u003ec005ed6\u003c/code\u003e\u003c/a\u003e sdk/resourcemanager/network/armnetwork live test (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20331\"\u003e#20331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Azure/azure-sdk-for-go/commit/5fa7df4852a100f4a7502d5064ae54b0aceb8260\"\u003e\u003ccode\u003e5fa7df4\u003c/code\u003e\u003c/a\u003e add sdk/resourcemanager/compute/armcompute live test (\u003ca href=\"https://redirect.github.com/Azure/azure-sdk-for-go/issues/20048\"\u003e#20048\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/Azure/azure-sdk-for-go/compare/sdk/storage/azblob/v1.6.4...sdk/azcore/v1.7.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2` from 1.41.6 to 1.41.7\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2223642aeafb3b46ae924667ee47d31a1cf5a9d5\"\u003e\u003ccode\u003e2223642\u003c/code\u003e\u003c/a\u003e Release 2026-04-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/04c7e460121eafa42577be08289bd0da0de091b2\"\u003e\u003ccode\u003e04c7e46\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f5692571a7afce76e1573da3fbf2180a2c297cc\"\u003e\u003ccode\u003e5f56925\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/aac6d2b8fefd47203d3b4bd5f229ca275272ec62\"\u003e\u003ccode\u003eaac6d2b\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdaead7d2074e479fc56da77491fe65737413664\"\u003e\u003ccode\u003ebdaead7\u003c/code\u003e\u003c/a\u003e upgrade to smithy-go v1.25.1 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3399\"\u003e#3399\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/008e12cf64f41c37faeb705f6ce4b77471756f9f\"\u003e\u003ccode\u003e008e12c\u003c/code\u003e\u003c/a\u003e Release 2026-04-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef109d91f0b772aaebc472633edf13ec0fd907ce\"\u003e\u003ccode\u003eef109d9\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6411e6379e509956413b866481ee2362a7cdfc68\"\u003e\u003ccode\u003e6411e63\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e5bf970956db306bf7b5b1bdd8ca71e8cca766b5\"\u003e\u003ccode\u003ee5bf970\u003c/code\u003e\u003c/a\u003e Release 2026-04-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdbb88c9400c80ed2487f7b498a54c6206b5c62a\"\u003e\u003ccode\u003ebdbb88c\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.41.6...v1.41.7\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/config` from 1.32.16 to 1.32.17\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2223642aeafb3b46ae924667ee47d31a1cf5a9d5\"\u003e\u003ccode\u003e2223642\u003c/code\u003e\u003c/a\u003e Release 2026-04-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/04c7e460121eafa42577be08289bd0da0de091b2\"\u003e\u003ccode\u003e04c7e46\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f5692571a7afce76e1573da3fbf2180a2c297cc\"\u003e\u003ccode\u003e5f56925\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/aac6d2b8fefd47203d3b4bd5f229ca275272ec62\"\u003e\u003ccode\u003eaac6d2b\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdaead7d2074e479fc56da77491fe65737413664\"\u003e\u003ccode\u003ebdaead7\u003c/code\u003e\u003c/a\u003e upgrade to smithy-go v1.25.1 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3399\"\u003e#3399\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/008e12cf64f41c37faeb705f6ce4b77471756f9f\"\u003e\u003ccode\u003e008e12c\u003c/code\u003e\u003c/a\u003e Release 2026-04-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef109d91f0b772aaebc472633edf13ec0fd907ce\"\u003e\u003ccode\u003eef109d9\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6411e6379e509956413b866481ee2362a7cdfc68\"\u003e\u003ccode\u003e6411e63\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e5bf970956db306bf7b5b1bdd8ca71e8cca766b5\"\u003e\u003ccode\u003ee5bf970\u003c/code\u003e\u003c/a\u003e Release 2026-04-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdbb88c9400c80ed2487f7b498a54c6206b5c62a\"\u003e\u003ccode\u003ebdbb88c\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.32.16...config/v1.32.17\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/credentials` from 1.19.15 to 1.19.16\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2223642aeafb3b46ae924667ee47d31a1cf5a9d5\"\u003e\u003ccode\u003e2223642\u003c/code\u003e\u003c/a\u003e Release 2026-04-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/04c7e460121eafa42577be08289bd0da0de091b2\"\u003e\u003ccode\u003e04c7e46\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f5692571a7afce76e1573da3fbf2180a2c297cc\"\u003e\u003ccode\u003e5f56925\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/aac6d2b8fefd47203d3b4bd5f229ca275272ec62\"\u003e\u003ccode\u003eaac6d2b\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdaead7d2074e479fc56da77491fe65737413664\"\u003e\u003ccode\u003ebdaead7\u003c/code\u003e\u003c/a\u003e upgrade to smithy-go v1.25.1 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3399\"\u003e#3399\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/008e12cf64f41c37faeb705f6ce4b77471756f9f\"\u003e\u003ccode\u003e008e12c\u003c/code\u003e\u003c/a\u003e Release 2026-04-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef109d91f0b772aaebc472633edf13ec0fd907ce\"\u003e\u003ccode\u003eef109d9\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6411e6379e509956413b866481ee2362a7cdfc68\"\u003e\u003ccode\u003e6411e63\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e5bf970956db306bf7b5b1bdd8ca71e8cca766b5\"\u003e\u003ccode\u003ee5bf970\u003c/code\u003e\u003c/a\u003e Release 2026-04-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdbb88c9400c80ed2487f7b498a54c6206b5c62a\"\u003e\u003ccode\u003ebdbb88c\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/credentials/v1.19.15...credentials/v1.19.16\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs` from 1.69.1 to 1.74.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4ad9d5996fd752f0756be2dbbdd4f8a4841fe362\"\u003e\u003ccode\u003e4ad9d59\u003c/code\u003e\u003c/a\u003e Release 2025-01-22\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5ad8437a282f45f876255b6410b00ad74b512796\"\u003e\u003ccode\u003e5ad8437\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/903ab00324d065403132ea5e19abc51c7b5bd0ac\"\u003e\u003ccode\u003e903ab00\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/847821e55367b6185db008b95c72887767949b07\"\u003e\u003ccode\u003e847821e\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d2c7a1901f52750bad242315cef97902048b8fdf\"\u003e\u003ccode\u003ed2c7a19\u003c/code\u003e\u003c/a\u003e Update README.md (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2980\"\u003e#2980\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e5689c9ef90df930b7634fb952411db6a6c00cab\"\u003e\u003ccode\u003ee5689c9\u003c/code\u003e\u003c/a\u003e add client config to disable logging skipped output checksum validation (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2976\"\u003e#2976\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/560c44d97a1f92bf73a6d5e54b6f458edb92080a\"\u003e\u003ccode\u003e560c44d\u003c/code\u003e\u003c/a\u003e Release 2025-01-21\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c45f0a58aac89ca19f2a8801b63346b8c2c61d70\"\u003e\u003ccode\u003ec45f0a5\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/54e903f52e99876a6c131e2eb314ae83c85c9c3c\"\u003e\u003ccode\u003e54e903f\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3464887a31a8d47392c7c9ee9e1b2ce70fa7a27d\"\u003e\u003ccode\u003e3464887\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ecs/v1.69.1...service/s3/v1.74.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/eks` from 1.82.1 to 1.83.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e9a97206aff1d25c17ee29c183c87cdf09c168f0\"\u003e\u003ccode\u003ee9a9720\u003c/code\u003e\u003c/a\u003e Release 2025-07-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ea7d5affedd3acf3978516c21d73fbd74dc280b0\"\u003e\u003ccode\u003eea7d5af\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/84d256486dc3316060d451df775c11f855ef02cb\"\u003e\u003ccode\u003e84d2564\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b51b97681c6a48351099b4814ea30f9a2c7781ec\"\u003e\u003ccode\u003eb51b976\u003c/code\u003e\u003c/a\u003e update min go version in README (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3130\"\u003e#3130\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/eef5dc435e96e2cc8a08008467461652bcefe5ea\"\u003e\u003ccode\u003eeef5dc4\u003c/code\u003e\u003c/a\u003e Release 2025-07-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bde06472b5d2fea25a3c4df6aff8f8e89e8ccbf0\"\u003e\u003ccode\u003ebde0647\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2f67ffa7312a43cbbb1c036c17034f4ccbb36df2\"\u003e\u003ccode\u003e2f67ffa\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7fd9b449d1dc055c0e0e4b190e46a567812cb799\"\u003e\u003ccode\u003e7fd9b44\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/47c51f3b3e3861429bfcbfa33b91590e2dc8385c\"\u003e\u003ccode\u003e47c51f3\u003c/code\u003e\u003c/a\u003e Release 2025-06-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5392ccec827ad8d552323634de62d70d50f045bb\"\u003e\u003ccode\u003e5392cce\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/eks/v1.82.1...service/s3/v1.83.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/sqs` from 1.42.26 to 1.42.27\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2223642aeafb3b46ae924667ee47d31a1cf5a9d5\"\u003e\u003ccode\u003e2223642\u003c/code\u003e\u003c/a\u003e Release 2026-04-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/04c7e460121eafa42577be08289bd0da0de091b2\"\u003e\u003ccode\u003e04c7e46\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f5692571a7afce76e1573da3fbf2180a2c297cc\"\u003e\u003ccode\u003e5f56925\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/aac6d2b8fefd47203d3b4bd5f229ca275272ec62\"\u003e\u003ccode\u003eaac6d2b\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdaead7d2074e479fc56da77491fe65737413664\"\u003e\u003ccode\u003ebdaead7\u003c/code\u003e\u003c/a\u003e upgrade to smithy-go v1.25.1 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3399\"\u003e#3399\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/008e12cf64f41c37faeb705f6ce4b77471756f9f\"\u003e\u003ccode\u003e008e12c\u003c/code\u003e\u003c/a\u003e Release 2026-04-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef109d91f0b772aaebc472633edf13ec0fd907ce\"\u003e\u003ccode\u003eef109d9\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6411e6379e509956413b866481ee2362a7cdfc68\"\u003e\u003ccode\u003e6411e63\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e5bf970956db306bf7b5b1bdd8ca71e8cca766b5\"\u003e\u003ccode\u003ee5bf970\u003c/code\u003e\u003c/a\u003e Release 2026-04-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/bdbb88c9400c80ed2487f7b498a54c6206b5c62a\"\u003e\u003ccode\u003ebdbb88c\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/sqs/v1.42.26...service/sqs/v1.42.27\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/sts` from 1.42.0 to 1.42.1\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5aa6e2b081b5d1b038a0cc5d9198c7a37abf6b4c\"\u003e\u003ccode\u003e5aa6e2b\u003c/code\u003e\u003c/a\u003e Release 2023-11-09\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7dbcd52c14c8f992cb2fec090d826ab30881155e\"\u003e\u003ccode\u003e7dbcd52\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9b178445e4365543a410efefd6b0262c2ea3eb84\"\u003e\u003ccode\u003e9b17844\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/efa54869c68f9d770c9b83fda176c452906688ce\"\u003e\u003ccode\u003eefa5486\u003c/code\u003e\u003c/a\u003e Allowlist bucket owner header (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2358\"\u003e#2358\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5118d3bcdd253fbfd02b8e44966ba7a79ecfbf59\"\u003e\u003ccode\u003e5118d3b\u003c/code\u003e\u003c/a\u003e Release 2023-11-08\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f3c195fc3bcd7f20ae84bf0f999dc89e2487eaee\"\u003e\u003ccode\u003ef3c195f\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f24b6a0665313f69c97fd3fa62b351358962bda4\"\u003e\u003ccode\u003ef24b6a0\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f5a08768ef820ff5efd62a49ba50c61c9ca5dbcb\"\u003e\u003ccode\u003ef5a0876\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3674c3886336f797ad40b18bb1db8c35f4c7ed91\"\u003e\u003ccode\u003e3674c38\u003c/code\u003e\u003c/a\u003e Release 2023-11-07\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b856b28d54158b2e3596afcd799cfbafddd843ca\"\u003e\u003ccode\u003eb856b28\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.42.0...service/s3/v1.42.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/eko/gocache/store/go_cache/v4` from 4.2.4 to 4.2.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/eko/gocache/releases\"\u003egithub.com/eko/gocache/store/go_cache/v4's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estore/redis/v4.2.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eHide mock interfaces from users by \u003ca href=\"https://github.com/Neo2308\"\u003e\u003ccode\u003e@​Neo2308\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eko/gocache/pull/296\"\u003eeko/gocache#296\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Neo2308\"\u003e\u003ccode\u003e@​Neo2308\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/eko/gocache/pull/296\"\u003eeko/gocache#296\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/eko/gocache/compare/store/memcache/v4.2.3...store/redis/v4.2.5\"\u003ehttps://github.com/eko/gocache/compare/store/memcache/v4.2.3...store/redis/v4.2.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003estore/go_cache/v4.2.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump github.com/sirupsen/logrus from 1.4.2 to 1.8.3 in /store/pegasus by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/eko/gocache/pull/301\"\u003eeko/gocache#301\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/eko/gocache/compare/lib/v4.2.3...store/go_cache/v4.2.5\"\u003ehttps://github.com/eko/gocache/compare/lib/v4.2.3...store/go_cache/v4.2.5\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eko/gocache/commit/003ae3928bcde9581120a0e1074d6a1977490aa6\"\u003e\u003ccode\u003e003ae39\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/eko/gocache/issues/296\"\u003e#296\u003c/a\u003e from Neo2308/feature/master/hide-mock-interfaces\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eko/gocache/commit/42bb50edc504371c7d671993c46d20cc533c4734\"\u003e\u003ccode\u003e42bb50e\u003c/code\u003e\u003c/a\u003e Rename import to resolve warnings\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eko/gocache/commit/21cb8b5ee6a4c79316f5a4155cab7a82fc154931\"\u003e\u003ccode\u003e21cb8b5\u003c/code\u003e\u003c/a\u003e Added mocks\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eko/gocache/commit/c0e14c13972af4d418435d799085454034c54a00\"\u003e\u003ccode\u003ec0e14c1\u003c/code\u003e\u003c/a\u003e Hide mock interfaces from users\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eko/gocache/commit/277d34a9a5b9b5c2cfe73c490b80530c97280982\"\u003e\u003ccode\u003e277d34a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/eko/gocache/issues/295\"\u003e#295\u003c/a\u003e from eko/memcache-mocks\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eko/gocache/commit/762bf996a5ff5d6c5560274fbd27c03f9f983ee8\"\u003e\u003ccode\u003e762bf99\u003c/code\u003e\u003c/a\u003e Store memcache: moved from golang/mock to mockery\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/eko/gocache/compare/store/redis/v4.2.4...store/redis/v4.2.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/clicky` from 1.21.4 to 1.21.9\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/releases\"\u003egithub.com/flanksource/clicky's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.21.9\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.21.8\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/blob/main/CHANGELOG.md\"\u003egithub.com/flanksource/clicky's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(task): Add stderr gating to prevent corruption during interactive render\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/b059cf91dda7637600922340575829cccfcb89ef\"\u003e\u003ccode\u003eb059cf9\u003c/code\u003e\u003c/a\u003e chore(release): 1.21.9 [skip ci]\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003e\u003ccode\u003ef85ce24\u003c/code\u003e\u003c/a\u003e refactor(api,mcp,rpc): extract helper functions and improve code organization\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e\u003ccode\u003e04f17df\u003c/code\u003e\u003c/a\u003e build(makefile): add git commit and build date to binary via ldflags\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e\u003ccode\u003e06e98ad\u003c/code\u003e\u003c/a\u003e feat(api,flags): add unified diff rendering and grouped flag help output\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003e\u003ccode\u003efc8746a\u003c/code\u003e\u003c/a\u003e refactor(api): simplify switch statement in parseJavaFrame\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e\u003ccode\u003e6b74c36\u003c/code\u003e\u003c/a\u003e chore(deps): clean up unused dependencies in go.sum\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e\u003ccode\u003e9345367\u003c/code\u003e\u003c/a\u003e feat(mcp): add SSE transport, tools command, and multi-client install support\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e\u003ccode\u003e6beea3b\u003c/code\u003e\u003c/a\u003e feat(formatters): add StackTrace rendering support to HTML formatters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e\u003ccode\u003e3e6e880\u003c/code\u003e\u003c/a\u003e feat(api): Add structured HTML rendering for stack traces with syntax highlig...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e\u003ccode\u003e9cb5cb9\u003c/code\u003e\u003c/a\u003e feat(mcp): Add fluent Builder API and discover-tools MCP tool\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.4...v1.21.9\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/commons` from 1.51.3 to 1.51.4\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/commons/releases\"\u003egithub.com/flanksource/commons's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.51.4\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.4\"\u003e1.51.4\u003c/a\u003e (2026-05-04)\u003c/h2\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/commons/commit/72c1bcf52807cc782a4cce7b368e24af1832b334\"\u003e\u003ccode\u003e72c1bcf\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.79 (\u003ca href=\"https://redirect.github.com/flanksource/commons/issues/314\"\u003e#314\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.4\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/deps` from 1.0.28 to 1.0.32\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/deps/commit/0fc237557a50c9d982b03c43b6c34efe06f5cd6e\"\u003e\u003ccode\u003e0fc2375\u003c/code\u003e\u003c/a\u003e fix(registry): add remaining mission-control plugins\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/deps/commit/a428074cf25e83c1a94c392e3e8cb4c1c4d7a876\"\u003e\u003ccode\u003ea428074\u003c/code\u003e\u003c/a\u003e fix(registry): update mission-control plugin release assets\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/deps/commit/de2a0fa1ac33fbe8194666b9dbd53dfeb73e416a\"\u003e\u003ccode\u003ede2a0fa\u003c/code\u003e\u003c/a\u003e feat(registry): add mission-control plugin packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/deps/commit/f71a624c3718f38aae48a1f0a168494869290bae\"\u003e\u003ccode\u003ef71a624\u003c/code\u003e\u003c/a\u003e chore: disable flaky tests\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/flanksource/deps/compare/v1.0.28...v1.0.32\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-git/go-git/v5` from 5.18.0 to 5.19.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-git/go-git/releases\"\u003egithub.com/go-git/go-git/v5's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev5.19.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ev5: plumbing: transport/ssh, Shell-quote path by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2068\"\u003ego-git/go-git#2068\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: git: submodule, Fix relative URL resolution by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2070\"\u003ego-git/go-git#2070\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: git: submodule, canonical remote for relative URLs by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2074\"\u003ego-git/go-git#2074\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: git: submodule, error on remote without URLs by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2078\"\u003ego-git/go-git#2078\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: plumbing: format/idxfile, Validate offset64 indices by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2084\"\u003ego-git/go-git#2084\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: *: Reject malformed variable-length integers by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2092\"\u003ego-git/go-git#2092\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: plumbing: format/packfile, Tighten delta validation by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2091\"\u003ego-git/go-git#2091\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: Add \u003ccode\u003eworktreeFilesystem\u003c/code\u003e wrapper for worktree and hardening by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2100\"\u003ego-git/go-git#2100\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: config: validate submodule names by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2082\"\u003ego-git/go-git#2082\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: Update module github.com/go-git/go-git/v5 to v5.19.0 [SECURITY] (releases/v5.x) by \u003ca href=\"https://github.com/go-git-renovate\"\u003e\u003ccode\u003e@​go-git-renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2111\"\u003ego-git/go-git#2111\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: git: Allow MkdirAll on worktree-root paths by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2117\"\u003ego-git/go-git#2117\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: git: Stop validating symlink target paths by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2116\"\u003ego-git/go-git#2116\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: plumbing: format decoder input bounds and contracts by \u003ca href=\"https://github.com/hiddeco\"\u003e\u003ccode\u003e@​hiddeco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2125\"\u003ego-git/go-git#2125\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eplumbing: format/packfile, cap delta chain depth in parser by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2137\"\u003ego-git/go-git#2137\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.19.0...v5.19.1\"\u003ehttps://github.com/go-git/go-git/compare/v5.19.0...v5.19.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev5.19.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ebuild: Update module github.com/go-git/go-git/v5 to v5.18.0 [SECURITY] (releases/v5.x) by \u003ca href=\"https://github.com/go-git-renovate\"\u003e\u003ccode\u003e@​go-git-renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2010\"\u003ego-git/go-git#2010\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: Bump sha1cd and go-billy by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2060\"\u003ego-git/go-git#2060\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ev5: Align object encoding with upstream by \u003ca href=\"https://github.com/pjbgf\"\u003e\u003ccode\u003e@​pjbgf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-git/pull/2065\"\u003ego-git/go-git#2065\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.18.0...v5.19.0\"\u003ehttps://github.com/go-git/go-git/compare/v5.18.0...v5.19.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/3c3be601aa6c0fd0d536c0d1e4f898b4c60e65fe\"\u003e\u003ccode\u003e3c3be60\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2137\"\u003e#2137\u003c/a\u003e from go-git/validate-v5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/3fba897bd9e84b1aec170fa708b80e297b7d6cf6\"\u003e\u003ccode\u003e3fba897\u003c/code\u003e\u003c/a\u003e plumbing: format/packfile, cap delta chain depth in parser\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/a97d6601c85e017bb64c2b0f2e3169f6ef6a6709\"\u003e\u003ccode\u003ea97d660\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2125\"\u003e#2125\u003c/a\u003e from hiddeco/v5/format-input-bounds\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/aeaa125c8af8e4c4c95b574c22c5633e97fc436e\"\u003e\u003ccode\u003eaeaa125\u003c/code\u003e\u003c/a\u003e plumbing: format/objfile, require Header before Read\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/1f38e171218526ea254a73187a52f0648253c1b8\"\u003e\u003ccode\u003e1f38e17\u003c/code\u003e\u003c/a\u003e plumbing: format/packfile, bound inflate size\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/f7545a02529e03998d6a7219140dc0e6644ad337\"\u003e\u003ccode\u003ef7545a0\u003c/code\u003e\u003c/a\u003e plumbing: format/idxfile, bound nr by file size\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/170b88181f385913a457a08b68c88956fb3f8e4f\"\u003e\u003ccode\u003e170b881\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2116\"\u003e#2116\u003c/a\u003e from pjbgf/symlink-v5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/7b6d994467f06630268904aa3c441b6de7248b31\"\u003e\u003ccode\u003e7b6d994\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2117\"\u003e#2117\u003c/a\u003e from hiddeco/v5/worktree-fs-mkdirall-root-noop\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/f0709b32f8fbb87c16cd63c6762d2cd515f36541\"\u003e\u003ccode\u003ef0709b3\u003c/code\u003e\u003c/a\u003e git: Stop validating symlink target paths\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/776d00f11d336f26862d0f2bab987b217f3a7844\"\u003e\u003ccode\u003e776d00f\u003c/code\u003e\u003c/a\u003e git: Allow MkdirAll on worktree-root paths\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-git/go-git/compare/v5.18.0...v5.19.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-sql-driver/mysql` from 1.9.3 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/releases\"\u003egithub.com/go-sql-driver/mysql's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd Go 1.24 to the test matrix by \u003ca href=\"https://github.com/shogo82148\"\u003e\u003ccode\u003e@​shogo82148\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1681\"\u003ego-sql-driver/mysql#1681\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize for Go 1.22 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1695\"\u003ego-sql-driver/mysql#1695\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest stability improvement. by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1698\"\u003ego-sql-driver/mysql#1698\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esimplify collation tests by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1700\"\u003ego-sql-driver/mysql#1700\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix bigint unsigned null column scan to err type int64 by \u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eTransaction Commit/Rollback returns conn's cached error, if present by \u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd BenchmarkReceive10kRowsCompress by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1704\"\u003ego-sql-driver/mysql#1704\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eoptimize readPacket by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1705\"\u003ego-sql-driver/mysql#1705\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eMariaDB Metadata skipping and DEPRECATE_EOF by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimization: statements reuse previous column name by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1711\"\u003ego-sql-driver/mysql#1711\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate outdated MySQL internals documentation links by \u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix PING on compressed connections by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1721\"\u003ego-sql-driver/mysql#1721\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd DeepWiki badge by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1722\"\u003ego-sql-driver/mysql#1722\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate edwards25519 dependency to v1.1.1 by \u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure Dependabot for Go modules by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1755\"\u003ego-sql-driver/mysql#1755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump dominikh/staticcheck-action from 1.3.1 to 1.4.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 3 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1760\"\u003ego-sql-driver/mysql#1760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 5 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1757\"\u003ego-sql-driver/mysql#1757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix staticcheck error by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1761\"\u003ego-sql-driver/mysql#1761\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 4 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1758\"\u003ego-sql-driver/mysql#1758\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix getSystemVar buffer reuse by \u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConsolidate Dependabot update noise by grouping weekly dependency PRs by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1756\"\u003ego-sql-driver/mysql#1756\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCI: Update GitHub Actions Go matrix to 1.24–1.26 by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1763\"\u003ego-sql-driver/mysql#1763\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnhance interpolateParams to correctly handle placeholders by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1732\"\u003ego-sql-driver/mysql#1732\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1764\"\u003ego-sql-driver/mysql#1764\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erelease v1.10.0 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1765\"\u003ego-sql-driver/mysql#1765\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\"\u003ehttps://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/blob/master/CHANGELOG.md\"\u003egithub.com/go-sql-driver/mysql's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0 (2026-04-28)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eFix \u003ccode\u003egetSystemVar(\u0026quot;max_allowed_packet\u0026quot;)\u003c/code\u003e potentially returned wrong value. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\nThis affects only when \u003ccode\u003emaxAllowedPacket=0\u003c/code\u003e is set.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\nWhile older versions have reported CVEs, they do not affect go-mysql.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eUpdate Go versions to 1.24-1.26. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eEnhance interpolateParams to correctly handle placeholders. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\nThe question mark (?) within strings and comments will no longer be treated as a placeholder.\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/a065b60ab6d0c8e15468e7709c7f76acf4431647\"\u003e\u003ccode\u003ea065b60\u003c/code\u003e\u003c/a\u003e release v1.10.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1765\"\u003e#1765\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/09e4187be9c52bb13449a662d2a36e1e1789ac95\"\u003e\u003ccode\u003e09e4187\u003c/code\u003e\u003c/a\u003e modernize (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1764\"\u003e#1764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/6c44a9a0a1769e145dc91c08abe1aded2936ab63\"\u003e\u003ccode\u003e6c44a9a\u003c/code\u003e\u003c/a\u003e Enhance interpolateParams to correctly handle placeholders (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/688ce563a28598a9b733e6fc2b325050a4dcf261\"\u003e\u003ccode\u003e688ce56\u003c/code\u003e\u003c/a\u003e Update supported Go version to 1.24–1.26 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/118d07fdb51f9e523ebcdb00628812e49d7c1881\"\u003e\u003ccode\u003e118d07f\u003c/code\u003e\u003c/a\u003e Bump filippo.io/edwards25519 from 1.1.1 to 1.2.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/d6b2d3ee2cc8569b6778a7ae7ac2816e185f616b\"\u003e\u003ccode\u003ed6b2d3e\u003c/code\u003e\u003c/a\u003e Consolidate Dependabot update noise by grouping weekly dependency PRs (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1762\"\u003e#1762\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/037dfd872a7b6c88e63c53f32700dffed560120c\"\u003e\u003ccode\u003e037dfd8\u003c/code\u003e\u003c/a\u003e Fix getSystemVar buffer reuse (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/co...\n\n_Description has been truncated_","html_url":"https://github.com/flanksource/duty/pull/1977","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/flanksource%2Fduty/issues/1977","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/1977/packages"}},{"old_version":"1.62.1","new_version":"1.62.2","update_type":"patch","path":null,"pr_created_at":"2026-05-19T05:46:20.000Z","version_change":"1.62.1 → 1.62.2","issue":{"uuid":"4474750279","node_id":"PR_kwDODY5jaM7c7v7g","number":2958,"state":"closed","title":"chore(deps): bump the go-modules group across 1 directory with 17 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":2,"pull_request":true,"closed_at":"2026-05-21T03:19:24.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-19T05:46:20.000Z","updated_at":"2026-05-21T03:19:26.000Z","time_to_close":163984,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"go-modules","update_count":17,"packages":[{"name":"github.com/flanksource/commons","old_version":"1.51.3","new_version":"1.51.4","repository_url":"https://github.com/flanksource/commons"},{"name":"cloud.google.com/go/storage","old_version":"1.62.1","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatch","old_version":"1.56.2","new_version":"1.57.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/configservice","old_version":"1.62.2","new_version":"1.62.3","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.100.0","new_version":"1.101.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/elastic/go-elasticsearch/v8","old_version":"8.19.4","new_version":"8.19.6","repository_url":"https://github.com/elastic/go-elasticsearch"},{"name":"github.com/flanksource/clicky","old_version":"1.21.7","new_version":"1.21.9","repository_url":"https://github.com/flanksource/clicky"},{"name":"github.com/go-sql-driver/mysql","old_version":"1.9.3","new_version":"1.10.0","repository_url":"https://github.com/go-sql-driver/mysql"},{"name":"github.com/google/cel-go","old_version":"0.28.0","new_version":"0.28.1","repository_url":"https://github.com/google/cel-go"},{"name":"github.com/labstack/echo/v4","old_version":"4.15.1","new_version":"4.15.2","repository_url":"https://github.com/labstack/echo"},{"name":"github.com/microsoft/go-mssqldb","old_version":"1.9.8","new_version":"1.10.0","repository_url":"https://github.com/microsoft/go-mssqldb"},{"name":"github.com/onsi/ginkgo/v2","old_version":"2.28.2","new_version":"2.29.0","repository_url":"https://github.com/onsi/ginkgo"},{"name":"github.com/prometheus/alertmanager","old_version":"0.32.0","new_version":"0.32.1","repository_url":"https://github.com/prometheus/alertmanager"},{"name":"google.golang.org/api","old_version":"0.276.0","new_version":"0.280.0","repository_url":"https://github.com/googleapis/google-api-go-client"},{"name":"k8s.io/apimachinery","old_version":"0.36.0","new_version":"0.36.1","repository_url":"https://github.com/kubernetes/apimachinery"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-modules group with 15 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/flanksource/commons](https://github.com/flanksource/commons) | `1.51.3` | `1.51.4` |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.62.1` | `1.62.2` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://github.com/aws/aws-sdk-go-v2) | `1.56.2` | `1.57.0` |\n| [github.com/aws/aws-sdk-go-v2/service/configservice](https://github.com/aws/aws-sdk-go-v2) | `1.62.2` | `1.62.3` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.100.0` | `1.101.0` |\n| [github.com/elastic/go-elasticsearch/v8](https://github.com/elastic/go-elasticsearch) | `8.19.4` | `8.19.6` |\n| [github.com/flanksource/clicky](https://github.com/flanksource/clicky) | `1.21.7` | `1.21.9` |\n| [github.com/go-sql-driver/mysql](https://github.com/go-sql-driver/mysql) | `1.9.3` | `1.10.0` |\n| [github.com/google/cel-go](https://github.com/google/cel-go) | `0.28.0` | `0.28.1` |\n| [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.15.1` | `4.15.2` |\n| [github.com/microsoft/go-mssqldb](https://github.com/microsoft/go-mssqldb) | `1.9.8` | `1.10.0` |\n| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.28.2` | `2.29.0` |\n| [github.com/prometheus/alertmanager](https://github.com/prometheus/alertmanager) | `0.32.0` | `0.32.1` |\n| [google.golang.org/api](https://github.com/googleapis/google-api-go-client) | `0.276.0` | `0.280.0` |\n| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.36.0` | `0.36.1` |\n\n\nUpdates `github.com/flanksource/commons` from 1.51.3 to 1.51.4\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/commons/releases\"\u003egithub.com/flanksource/commons's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.51.4\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.4\"\u003e1.51.4\u003c/a\u003e (2026-05-04)\u003c/h2\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/commons/commit/72c1bcf52807cc782a4cce7b368e24af1832b334\"\u003e\u003ccode\u003e72c1bcf\u003c/code\u003e\u003c/a\u003e chore: bump gomplate to v3.24.79 (\u003ca href=\"https://redirect.github.com/flanksource/commons/issues/314\"\u003e#314\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/flanksource/commons/compare/v1.51.3...v1.51.4\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `cloud.google.com/go/storage` from 1.62.1 to 1.62.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/cloudwatch` from 1.56.2 to 1.57.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7c25c211744bdcff47a7203a7a894b1241f9da50\"\u003e\u003ccode\u003e7c25c21\u003c/code\u003e\u003c/a\u003e Release 2024-06-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b374423feaf0b04f01c7624b10915871e589b8a1\"\u003e\u003ccode\u003eb374423\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/923f54ea6016e1c70ad45ba0854e7361a72c3ba6\"\u003e\u003ccode\u003e923f54e\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5f3bdfcf190150f62a7a07a03bc32d9c58a68f2e\"\u003e\u003ccode\u003e5f3bdfc\u003c/code\u003e\u003c/a\u003e track changes for string_array endpoint parameters (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2699\"\u003e#2699\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b4498c633741e24ff4930313610096601dc4036\"\u003e\u003ccode\u003e2b4498c\u003c/code\u003e\u003c/a\u003e Release 2024-06-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/332d372bb946f0d50cae58f9401b9c1244e4b818\"\u003e\u003ccode\u003e332d372\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9397b8d8c05eb1528910ba81881797e7c0e53d17\"\u003e\u003ccode\u003e9397b8d\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/674e1e4412ce44325902125c935ce124d0bfaf4f\"\u003e\u003ccode\u003e674e1e4\u003c/code\u003e\u003c/a\u003e Release 2024-06-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/406eeb4367bab3ac49b75fbd2d842186e961f4f0\"\u003e\u003ccode\u003e406eeb4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/17bd894f3c3842d21d5963bc23213397557c3105\"\u003e\u003ccode\u003e17bd894\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ssm/v1.56.2...service/s3/v1.57.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/configservice` from 1.62.2 to 1.62.3\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d8ed081e9bcc22e6c5eb63fb6bbacfa38d7bcce3\"\u003e\u003ccode\u003ed8ed081\u003c/code\u003e\u003c/a\u003e Release 2025-10-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a2c9cb47051246e43a65f78696b8189aaa48c871\"\u003e\u003ccode\u003ea2c9cb4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7af054b46fade69938d2682163c4abbbf126b9c7\"\u003e\u003ccode\u003e7af054b\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2e5ed49bd27c797319223fe6454411c6dc3f62cc\"\u003e\u003ccode\u003e2e5ed49\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f3a3b6c778eed688dc91940a6d9160e7445a218f\"\u003e\u003ccode\u003ef3a3b6c\u003c/code\u003e\u003c/a\u003e remove arbitrary response read timeout in kinesis GetRecords (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3221\"\u003e#3221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/56af15521102c665ba33e5512cd66068c7c32506\"\u003e\u003ccode\u003e56af155\u003c/code\u003e\u003c/a\u003e Release 2025-10-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b23832ac9b9505202125cf5c448c72cd333c819b\"\u003e\u003ccode\u003eb23832a\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/33ea965f3eb459c22ba41a8e5da55115da5686bc\"\u003e\u003ccode\u003e33ea965\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f70c7889fa7e09fba31a68c6dbef1e178bbb9964\"\u003e\u003ccode\u003ef70c788\u003c/code\u003e\u003c/a\u003e Release 2025-10-28\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f8aa1f373d60ee159a2aac412311edad2eaad752\"\u003e\u003ccode\u003ef8aa1f3\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/fsx/v1.62.2...service/fsx/v1.62.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.100.0 to 1.101.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/84ddd08980744ac0f3bacfe7d2796c861671accc\"\u003e\u003ccode\u003e84ddd08\u003c/code\u003e\u003c/a\u003e Release 2026-05-06\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/23645b402c11575a32d1af93ec237f2f121dd285\"\u003e\u003ccode\u003e23645b4\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/848eb597bd63cb770bcd11ee230f9dca68ce1ffe\"\u003e\u003ccode\u003e848eb59\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1d7b13420ed32f0809a5a4a35c630d19bfd0b6d4\"\u003e\u003ccode\u003e1d7b134\u003c/code\u003e\u003c/a\u003e Release 2026-05-05\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/5bbbc97fcab2086757060561ccd1f34101ba7b57\"\u003e\u003ccode\u003e5bbbc97\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8dbb93618325675f55eb0c3eb0c7a766806dadbc\"\u003e\u003ccode\u003e8dbb936\u003c/code\u003e\u003c/a\u003e Update endpoints model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/369e6498c716c7e02ca7aef318ef311edd5efcbf\"\u003e\u003ccode\u003e369e649\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dc2d13fa6f1db25f1c6d804567e1ecfcdff4f040\"\u003e\u003ccode\u003edc2d13f\u003c/code\u003e\u003c/a\u003e Release 2026-05-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/da4bcffa913dc4ba46e1ce10a6268bf075547a8d\"\u003e\u003ccode\u003eda4bcff\u003c/code\u003e\u003c/a\u003e Regenerated Clients\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a8b1180254cba3e23aa6baece26783395e884d81\"\u003e\u003ccode\u003ea8b1180\u003c/code\u003e\u003c/a\u003e Update API model\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.100.0...service/s3/v1.101.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/elastic/go-elasticsearch/v8` from 8.19.4 to 8.19.6\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/elastic/go-elasticsearch/releases\"\u003egithub.com/elastic/go-elasticsearch/v8's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev8.19.6\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.5...v8.19.6\"\u003e8.19.6\u003c/a\u003e (2026-05-11)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e078f8ec\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev8.19.5\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.5\"\u003e8.19.5\u003c/a\u003e (2026-04-21)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e5615aed\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eesutil:\u003c/strong\u003e Add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003ef0ad701\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e Regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e13e5d5e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e9874577\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Map spec long to *int64 for esapi params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1391\"\u003e#1391\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/9a2424c77d0125cc4a915eacd5b6c293fcbe280c\"\u003e9a2424c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003efa81ccf\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/elastic/go-elasticsearch/blob/v8.19.6/CHANGELOG.md\"\u003egithub.com/elastic/go-elasticsearch/v8's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.5...v8.19.6\"\u003e8.19.6\u003c/a\u003e (2026-05-11)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e (*elasticsearch.Client).ToTyped() is removed. Use elasticsearch.NewTypedFrom(c) instead.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e078f8ec\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.5\"\u003e8.19.5\u003c/a\u003e (2026-04-21)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e params previously typed *int on ~20 esapi endpoints are now *int64 to match the spec long type. Call sites passing untyped integer literals keep compiling; call sites passing a typed int variable need an int64(...) cast.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eclient:\u003c/strong\u003e Add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e5615aed\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eesutil:\u003c/strong\u003e Add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003ef0ad701\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eesapi:\u003c/strong\u003e Regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e13e5d5e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e9874577\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Map spec long to *int64 for esapi params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1391\"\u003e#1391\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/9a2424c77d0125cc4a915eacd5b6c293fcbe280c\"\u003e9a2424c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003egen:\u003c/strong\u003e Support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e) (\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003efa81ccf\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/36df8bc2f994270fa8804f3f8d76eee484312c84\"\u003e\u003ccode\u003e36df8bc\u003c/code\u003e\u003c/a\u003e chore(8.19): release 8.19.6 (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1481\"\u003e#1481\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/078f8ec58ee588a6b059d0fb9cffe05e6cf26433\"\u003e\u003ccode\u003e078f8ec\u003c/code\u003e\u003c/a\u003e fix(client): remove (*Client).ToTyped() to fix binary-size regression (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1477\"\u003e#1477\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/b467419b59035e4b08c71679ebe4493cbc2ff997\"\u003e\u003ccode\u003eb467419\u003c/code\u003e\u003c/a\u003e chore: bump version to 8.19.6-SNAPSHOT (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1457\"\u003e#1457\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/0349cffb1c4b495a8e3f0470bf7c8e7d44264769\"\u003e\u003ccode\u003e0349cff\u003c/code\u003e\u003c/a\u003e chore(8.19): release 8.19.5 (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1395\"\u003e#1395\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/5615aed0f4d300552262af28932ba8c067b032e7\"\u003e\u003ccode\u003e5615aed\u003c/code\u003e\u003c/a\u003e feat(client): add (*Client).ToTyped() conversion method (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1450\"\u003e#1450\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/f0ad701d50fcc751d93283e5e8e9a6fb4826500c\"\u003e\u003ccode\u003ef0ad701\u003c/code\u003e\u003c/a\u003e feat(esutil): add FlushJitter option to BulkIndexer (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1439\"\u003e#1439\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/13e5d5e2688f61c21cfaf663c165f4f9d8301d50\"\u003e\u003ccode\u003e13e5d5e\u003c/code\u003e\u003c/a\u003e fix(esapi): regenerate esapi with *int64 for long-typed params (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1414\"\u003e#1414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/fa81ccfdd75b0471dc2a4ac2e801d93203421f99\"\u003e\u003ccode\u003efa81ccf\u003c/code\u003e\u003c/a\u003e fix(gen): support *int64 fields in gen-tests output (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1417\"\u003e#1417\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/98745779b3636d84944d26ead07d7f81356d1961\"\u003e\u003ccode\u003e9874577\u003c/code\u003e\u003c/a\u003e fix(gen): accept bool form for deprecated in URL parts and paths (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1413\"\u003e#1413\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elastic/go-elasticsearch/commit/30b75857dfc00e975c77a63b408d4df0f754e937\"\u003e\u003ccode\u003e30b7585\u003c/code\u003e\u003c/a\u003e [Backport 8.19] fix(gen): sort required URL params deterministically (\u003ca href=\"https://redirect.github.com/elastic/go-elasticsearch/issues/1408\"\u003e#1408\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/elastic/go-elasticsearch/compare/v8.19.4...v8.19.6\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/flanksource/clicky` from 1.21.7 to 1.21.9\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/releases\"\u003egithub.com/flanksource/clicky's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.21.9\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.21.8\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/flanksource/clicky/blob/main/CHANGELOG.md\"\u003egithub.com/flanksource/clicky's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.8...v1.21.9\"\u003e1.21.9\u003c/a\u003e (2026-05-12)\u003c/h2\u003e\n\u003ch3\u003e♻️ Code Refactoring\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,mcp,rpc:\u003c/strong\u003e extract helper functions and improve code organization (\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003ef85ce24\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e simplify switch statement in parseJavaFrame (\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003efc8746a\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e✨ Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eapi,flags:\u003c/strong\u003e add unified diff rendering and grouped flag help output (\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e06e98ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e add stack trace parsing and rendering with source resolution (\u003ca href=\"https://github.com/flanksource/clicky/commit/a76d8ecbecef68009b4d7ee34d93da6d0d1e119f\"\u003ea76d8ec\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eapi:\u003c/strong\u003e Add structured HTML rendering for stack traces with syntax highlighting (\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e3e6e880\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eentity:\u003c/strong\u003e add hidden _id column to wrapped entities (\u003ca href=\"https://github.com/flanksource/clicky/commit/43aca2c10e03c08bab6db98ea84362f396b6b363\"\u003e43aca2c\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eexamples:\u003c/strong\u003e Add syntax highlighting and stack trace rendering support (\u003ca href=\"https://github.com/flanksource/clicky/commit/cd1558abad79dd467471a1ef10cb900541fabe7e\"\u003ecd1558a\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eformatters:\u003c/strong\u003e add StackTrace rendering support to HTML formatters (\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e6beea3b\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e Add fluent Builder API and discover-tools MCP tool (\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e9cb5cb9\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003emcp:\u003c/strong\u003e add SSE transport, tools command, and multi-client install support (\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e9345367\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e📦 Build System\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003emakefile:\u003c/strong\u003e add git commit and build date to binary via ldflags (\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e04f17df\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e🔧 Maintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003edeps:\u003c/strong\u003e clean up unused dependencies in go.sum (\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e6b74c36\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.8\"\u003e1.21.8\u003c/a\u003e (2026-05-01)\u003c/h2\u003e\n\u003ch3\u003e⚠ BREAKING CHANGES\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eEntity type signature changed from Entity[T, ListOpts] to Entity[T, ListOpts, R]. Action and BulkAction are now factory functions returning interface types; update action definitions to use Action(), ActionWithFlags(), BulkAction(), BulkFilterAction(), or BulkActionWithFilter().\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003echore(gitignore): ignore entity webapp dist directory\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd examples/enitity/webapp/dist/ to gitignore to prevent build artifacts from being tracked in version control.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(entity): Add explicit HTTP method override for entity operations\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eAdd optional Method field to EntityOperation and ActionInfo to allow explicit HTTP method specification for generated RPC/OpenAPI routes. This enables actions to override the default inferred HTTP method (e.g., using GET for a records action instead of the inferred POST).\u003c/p\u003e\n\u003cp\u003eThe Method field is propagated through the command annotation system and checked during HTTP method inference in the RPC converter, allowing fine-grained control over operation semantics.\u003c/p\u003e\n\u003cp\u003eIncludes test coverage for entity actions with explicit GET method using nested entity paths.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efeat(task): Add stderr gating to prevent corruption during interactive render\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/b059cf91dda7637600922340575829cccfcb89ef\"\u003e\u003ccode\u003eb059cf9\u003c/code\u003e\u003c/a\u003e chore(release): 1.21.9 [skip ci]\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/f85ce248eb44808aaf0590856c96c1233ff83a03\"\u003e\u003ccode\u003ef85ce24\u003c/code\u003e\u003c/a\u003e refactor(api,mcp,rpc): extract helper functions and improve code organization\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/04f17df0c43337c9d09ea29de792ed1a682788b4\"\u003e\u003ccode\u003e04f17df\u003c/code\u003e\u003c/a\u003e build(makefile): add git commit and build date to binary via ldflags\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/06e98adcbdfe4c4bced613d1bc3c92cc7d15d9b9\"\u003e\u003ccode\u003e06e98ad\u003c/code\u003e\u003c/a\u003e feat(api,flags): add unified diff rendering and grouped flag help output\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/fc8746a3dc8495f07d1d6025fb30f54aec7d34a0\"\u003e\u003ccode\u003efc8746a\u003c/code\u003e\u003c/a\u003e refactor(api): simplify switch statement in parseJavaFrame\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6b74c36624f1c7679fb03f40d9770840c47f9856\"\u003e\u003ccode\u003e6b74c36\u003c/code\u003e\u003c/a\u003e chore(deps): clean up unused dependencies in go.sum\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9345367ddf29b9d0bbf1eb60da3f9add27493df3\"\u003e\u003ccode\u003e9345367\u003c/code\u003e\u003c/a\u003e feat(mcp): add SSE transport, tools command, and multi-client install support\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/6beea3b4a1e20086316b40593595203a762391b1\"\u003e\u003ccode\u003e6beea3b\u003c/code\u003e\u003c/a\u003e feat(formatters): add StackTrace rendering support to HTML formatters\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/3e6e880e9c3895332fbd5c8bb0c94eb158c161d1\"\u003e\u003ccode\u003e3e6e880\u003c/code\u003e\u003c/a\u003e feat(api): Add structured HTML rendering for stack traces with syntax highlig...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/flanksource/clicky/commit/9cb5cb964e37147e2d22bccff68c89c1e4997ad9\"\u003e\u003ccode\u003e9cb5cb9\u003c/code\u003e\u003c/a\u003e feat(mcp): Add fluent Builder API and discover-tools MCP tool\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/flanksource/clicky/compare/v1.21.7...v1.21.9\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-sql-driver/mysql` from 1.9.3 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/releases\"\u003egithub.com/go-sql-driver/mysql's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eadd Go 1.24 to the test matrix by \u003ca href=\"https://github.com/shogo82148\"\u003e\u003ccode\u003e@​shogo82148\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1681\"\u003ego-sql-driver/mysql#1681\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize for Go 1.22 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1695\"\u003ego-sql-driver/mysql#1695\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest stability improvement. by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1698\"\u003ego-sql-driver/mysql#1698\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esimplify collation tests by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1700\"\u003ego-sql-driver/mysql#1700\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix bigint unsigned null column scan to err type int64 by \u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eTransaction Commit/Rollback returns conn's cached error, if present by \u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd BenchmarkReceive10kRowsCompress by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1704\"\u003ego-sql-driver/mysql#1704\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eoptimize readPacket by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1705\"\u003ego-sql-driver/mysql#1705\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eMariaDB Metadata skipping and DEPRECATE_EOF by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimization: statements reuse previous column name by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1711\"\u003ego-sql-driver/mysql#1711\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate outdated MySQL internals documentation links by \u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix PING on compressed connections by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1721\"\u003ego-sql-driver/mysql#1721\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd DeepWiki badge by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1722\"\u003ego-sql-driver/mysql#1722\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate edwards25519 dependency to v1.1.1 by \u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConfigure Dependabot for Go modules by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1755\"\u003ego-sql-driver/mysql#1755\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump dominikh/staticcheck-action from 1.3.1 to 1.4.1 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 3 to 4 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1760\"\u003ego-sql-driver/mysql#1760\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 5 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1757\"\u003ego-sql-driver/mysql#1757\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix staticcheck error by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1761\"\u003ego-sql-driver/mysql#1761\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 4 to 6 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1758\"\u003ego-sql-driver/mysql#1758\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix getSystemVar buffer reuse by \u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eConsolidate Dependabot update noise by grouping weekly dependency PRs by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1756\"\u003ego-sql-driver/mysql#1756\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCI: Update GitHub Actions Go matrix to 1.24–1.26 by \u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1763\"\u003ego-sql-driver/mysql#1763\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnhance interpolateParams to correctly handle placeholders by \u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1732\"\u003ego-sql-driver/mysql#1732\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emodernize by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1764\"\u003ego-sql-driver/mysql#1764\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erelease v1.10.0 by \u003ca href=\"https://github.com/methane\"\u003e\u003ccode\u003e@​methane\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1765\"\u003ego-sql-driver/mysql#1765\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/elonnzhang\"\u003e\u003ccode\u003e@​elonnzhang\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1612\"\u003ego-sql-driver/mysql#1612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brad-defined\"\u003e\u003ccode\u003e@​brad-defined\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1691\"\u003ego-sql-driver/mysql#1691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rusher\"\u003e\u003ccode\u003e@​rusher\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1708\"\u003ego-sql-driver/mysql#1708\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/demouth\"\u003e\u003ccode\u003e@​demouth\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1714\"\u003ego-sql-driver/mysql#1714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/williamhaw\"\u003e\u003ccode\u003e@​williamhaw\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1749\"\u003ego-sql-driver/mysql#1749\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1759\"\u003ego-sql-driver/mysql#1759\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/morgo\"\u003e\u003ccode\u003e@​morgo\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1754\"\u003ego-sql-driver/mysql#1754\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Copilot\"\u003e\u003ccode\u003e@​Copilot\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/pull/1762\"\u003ego-sql-driver/mysql#1762\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\"\u003ehttps://github.com/go-sql-driver/mysql/compare/v1.9.2...v1.10.0\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-sql-driver/mysql/blob/master/CHANGELOG.md\"\u003egithub.com/go-sql-driver/mysql's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0 (2026-04-28)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eFix \u003ccode\u003egetSystemVar(\u0026quot;max_allowed_packet\u0026quot;)\u003c/code\u003e potentially returned wrong value. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\nThis affects only when \u003ccode\u003emaxAllowedPacket=0\u003c/code\u003e is set.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eBump filippo.io/edwards25519 from 1.1.1 to 1.2.0. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\nWhile older versions have reported CVEs, they do not affect go-mysql.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eUpdate Go versions to 1.24-1.26. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eEnhance interpolateParams to correctly handle placeholders. (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\nThe question mark (?) within strings and comments will no longer be treated as a placeholder.\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/a065b60ab6d0c8e15468e7709c7f76acf4431647\"\u003e\u003ccode\u003ea065b60\u003c/code\u003e\u003c/a\u003e release v1.10.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1765\"\u003e#1765\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/09e4187be9c52bb13449a662d2a36e1e1789ac95\"\u003e\u003ccode\u003e09e4187\u003c/code\u003e\u003c/a\u003e modernize (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1764\"\u003e#1764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/6c44a9a0a1769e145dc91c08abe1aded2936ab63\"\u003e\u003ccode\u003e6c44a9a\u003c/code\u003e\u003c/a\u003e Enhance interpolateParams to correctly handle placeholders (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1732\"\u003e#1732\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/688ce563a28598a9b733e6fc2b325050a4dcf261\"\u003e\u003ccode\u003e688ce56\u003c/code\u003e\u003c/a\u003e Update supported Go version to 1.24–1.26 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1763\"\u003e#1763\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/118d07fdb51f9e523ebcdb00628812e49d7c1881\"\u003e\u003ccode\u003e118d07f\u003c/code\u003e\u003c/a\u003e Bump filippo.io/edwards25519 from 1.1.1 to 1.2.0 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1756\"\u003e#1756\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/d6b2d3ee2cc8569b6778a7ae7ac2816e185f616b\"\u003e\u003ccode\u003ed6b2d3e\u003c/code\u003e\u003c/a\u003e Consolidate Dependabot update noise by grouping weekly dependency PRs (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1762\"\u003e#1762\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/037dfd872a7b6c88e63c53f32700dffed560120c\"\u003e\u003ccode\u003e037dfd8\u003c/code\u003e\u003c/a\u003e Fix getSystemVar buffer reuse (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1754\"\u003e#1754\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/900f33035615559b6188e4fa98d57ae20af2b73b\"\u003e\u003ccode\u003e900f330\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 4 to 6 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1758\"\u003e#1758\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/ab9e3804c604d6a60b0d3136f4654f81f184757d\"\u003e\u003ccode\u003eab9e380\u003c/code\u003e\u003c/a\u003e fix staticcheck error (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1761\"\u003e#1761\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-sql-driver/mysql/commit/f298c66742396b6921732744b9bb075c7faaca81\"\u003e\u003ccode\u003ef298c66\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5 to 6 (\u003ca href=\"https://redirect.github.com/go-sql-driver/mysql/issues/1757\"\u003e#1757\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-sql-driver/mysql/compare/v1.9.3...v1.10.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/google/cel-go` from 0.28.0 to 0.28.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/cel-go/releases\"\u003egithub.com/google/cel-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003eRelease v0.28.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: deleted \u003ccode\u003eIntToDuration\u003c/code\u003e overload by \u003ca href=\"https://github.com/alexsnaps\"\u003e\u003ccode\u003e@​alexsnaps\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1300\"\u003egoogle/cel-go#1300\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSupport shorthand types in env yaml and REPL  by \u003ca href=\"https://github.com/jnthntatum\"\u003e\u003ccode\u003e@​jnthntatum\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1301\"\u003egoogle/cel-go#1301\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePreserve operation interrupted in ContextEval error by \u003ca href=\"https://github.com/dims\"\u003e\u003ccode\u003e@​dims\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1303\"\u003egoogle/cel-go#1303\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse shorthand type specifiers in env yaml files by \u003ca href=\"https://github.com/jnthntatum\"\u003e\u003ccode\u003e@​jnthntatum\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1305\"\u003egoogle/cel-go#1305\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCost estimation and tracking for strings extension by \u003ca href=\"https://github.com/TristonianJones\"\u003e\u003ccode\u003e@​TristonianJones\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1307\"\u003egoogle/cel-go#1307\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate repl type string for doubles by \u003ca href=\"https://github.com/TristonianJones\"\u003e\u003ccode\u003e@​TristonianJones\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1308\"\u003egoogle/cel-go#1308\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/alexsnaps\"\u003e\u003ccode\u003e@​alexsnaps\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1300\"\u003egoogle/cel-go#1300\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dims\"\u003e\u003ccode\u003e@​dims\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/google/cel-go/pull/1303\"\u003egoogle/cel-go#1303\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/google/cel-go/compare/v0.28.0...v0.28.1\"\u003ehttps://github.com/google/cel-go/compare/v0.28.0...v0.28.1\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/a82c68b770ac0cb67f7b4f76166827c14b145eb8\"\u003e\u003ccode\u003ea82c68b\u003c/code\u003e\u003c/a\u003e Update repl type assessment for doubles (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1308\"\u003e#1308\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/c9d70486a872fbfaf9c4cb383a005de56e499368\"\u003e\u003ccode\u003ec9d7048\u003c/code\u003e\u003c/a\u003e Cost estimation and tracking for strings extension (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1307\"\u003e#1307\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/646cdc1728643aec9499e3a00236ef1007a5d3fa\"\u003e\u003ccode\u003e646cdc1\u003c/code\u003e\u003c/a\u003e Use shorthand type specifiers in env yaml files (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1305\"\u003e#1305\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/7263793b453228e8a47ca742afd124b3eaa8fc68\"\u003e\u003ccode\u003e7263793\u003c/code\u003e\u003c/a\u003e Preserve operation interrupted in ContextEval error (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1303\"\u003e#1303\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/b826162b7b6ac7ae048fbf23b6123ab5c99da11b\"\u003e\u003ccode\u003eb826162\u003c/code\u003e\u003c/a\u003e Support shorthand types in env yaml and REPL  (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1301\"\u003e#1301\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/cel-go/commit/339269b44af7c3cd477b55530e9cc1fe534c7f09\"\u003e\u003ccode\u003e339269b\u003c/code\u003e\u003c/a\u003e fix: deleted \u003ccode\u003eIntToDuration\u003c/code\u003e overload (\u003ca href=\"https://redirect.github.com/google/cel-go/issues/1300\"\u003e#1300\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/google/cel-go/compare/v0.28.0...v0.28.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/labstack/echo/v4` from 4.15.1 to 4.15.2\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/labstack/echo/blob/v4.15.2/CHANGELOG.md\"\u003egithub.com/labstack/echo/v4's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.15.2 - 2026-05-01\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eSecurity\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eContext.Scheme()\u003c/code\u003e should validate values taken from header by \u003ca href=\"https://github.com/aldas\"\u003e\u003ccode\u003e@​aldas\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/labstack/echo/pull/2962\"\u003elabstack/echo#2962\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eThanks to \u003ca href=\"https://github.com/shblue21\"\u003e\u003ccode\u003e@​shblue21\u003c/code\u003e\u003c/a\u003e for reporting this \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2952\"\u003eissue\u003c/a\u003e.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/25685e6f5f7b0683105d1386db46ae48eb3de028\"\u003e\u003ccode\u003e25685e6\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2963\"\u003e#2963\u003c/a\u003e from aldas/v4_changelog_4_15_2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/f9d76893c671df4da9792fc5c122eba01d43c63b\"\u003e\u003ccode\u003ef9d7689\u003c/code\u003e\u003c/a\u003e Changelog for v4.15.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/37fff28f72264196ad28761316fc7d96fd1c502d\"\u003e\u003ccode\u003e37fff28\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/labstack/echo/issues/2962\"\u003e#2962\u003c/a\u003e from aldas/v4_valid_proto\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/ca4f38a474302aabee93c66bdd0052359882e181\"\u003e\u003ccode\u003eca4f38a\u003c/code\u003e\u003c/a\u003e Context.Scheme should validate values taken from header\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/labstack/echo/commit/2e527a70a73b3a93b8346384f607cdc502d3d200\"\u003e\u003ccode\u003e2e527a7\u003c/code\u003e\u003c/a\u003e Update CI, update deps\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/labstack/echo/compare/v4.15.1...v4.15.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/microsoft/go-mssqldb` from 1.9.8 to 1.10.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/go-mssqldb/releases\"\u003egithub.com/microsoft/go-mssqldb's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003e1.10.0\u003c/a\u003e (2026-04-25)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003eb55beeb\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003eea77c2e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd NewConnectorWithProcessQueryText for mssql driver compatibility (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/341\"\u003e#341\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/2be611f8a7b2ec5125a835e1d6efb8cfb8979a86\"\u003e2be611f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003ec10fa99\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eallow named pipe protocol support for ARM64 Windows (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/232\"\u003e#232\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/a82c05866462e56b43d42e4523576aa363a3871a\"\u003ea82c058\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003econfigure release-please with PAT and correct component mapping (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/349\"\u003e#349\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/23bac055cea5040891be595e34869b19378974ad\"\u003e23bac05\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edetect server-aborted transactions to prevent silent auto-commit (XACT_ABORT) (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/370\"\u003e#370\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e586ea53\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e9937cfe\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ehandle COLINFO (0xA5) and TABNAME (0xA4) TDS tokens returned by tables with triggers (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/343\"\u003e#343\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/7c905adac4e8e00856c3d20503902f0160f5853d\"\u003e7c905ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eimplement driver.DriverContext interface (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/365\"\u003e#365\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/1b610a0b2905dc472968842e7a8f252acdb94272\"\u003e1b610a0\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/236\"\u003e#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emake readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e65e137f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereplace broken AppVeyor badge with GitHub Actions badge (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/334\"\u003e#334\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/d3429f5bb895bdb884ae39a43d87bb384aa5353a\"\u003ed3429f5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereturn interface{} scanType for sql_variant instead of nil (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/362\"\u003e#362\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/296a83a3e25fc23add1dbb243df1a716f431de66\"\u003e296a83a\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/186\"\u003e#186\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esanitize credentials from connection string parsing errors (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/319\"\u003e#319\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/93f5ef0dd5f02c9094a22d0052fb95cd553ba971\"\u003e93f5ef0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esurface server errors from Rows.Close() during token drain (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/361\"\u003e#361\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea69792c6da6d049eaec4e672a95d55bafef48f5\"\u003eea69792\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/244\"\u003e#244\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/microsoft/go-mssqldb/blob/main/CHANGELOG.md\"\u003egithub.com/microsoft/go-mssqldb's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003e1.10.0\u003c/a\u003e (2026-04-25)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eadd devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003eb55beeb\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003eea77c2e\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd NewConnectorWithProcessQueryText for mssql driver compatibility (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/341\"\u003e#341\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/2be611f8a7b2ec5125a835e1d6efb8cfb8979a86\"\u003e2be611f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eadd nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003ec10fa99\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eallow named pipe protocol support for ARM64 Windows (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/232\"\u003e#232\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/a82c05866462e56b43d42e4523576aa363a3871a\"\u003ea82c058\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003econfigure release-please with PAT and correct component mapping (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/349\"\u003e#349\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/23bac055cea5040891be595e34869b19378974ad\"\u003e23bac05\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edetect server-aborted transactions to prevent silent auto-commit (XACT_ABORT) (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/370\"\u003e#370\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e586ea53\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eexpose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e9937cfe\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ehandle COLINFO (0xA5) and TABNAME (0xA4) TDS tokens returned by tables with triggers (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/343\"\u003e#343\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/7c905adac4e8e00856c3d20503902f0160f5853d\"\u003e7c905ad\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eimplement driver.DriverContext interface (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/365\"\u003e#365\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/1b610a0b2905dc472968842e7a8f252acdb94272\"\u003e1b610a0\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/236\"\u003e#236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emake readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e65e137f\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereplace broken AppVeyor badge with GitHub Actions badge (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/334\"\u003e#334\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/d3429f5bb895bdb884ae39a43d87bb384aa5353a\"\u003ed3429f5\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ereturn interface{} scanType for sql_variant instead of nil (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/362\"\u003e#362\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/296a83a3e25fc23add1dbb243df1a716f431de66\"\u003e296a83a\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/186\"\u003e#186\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003esanitize credentials from connection string parsing errors (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/319\"\u003e#319\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/93f5ef0dd5f02c9094a22d0052fb95cd553ba971\"\u003e93f5ef0\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003esurface server errors from Rows.Close() during token drain (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/361\"\u003e#361\u003c/a\u003e) (\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea69792c6da6d049eaec4e672a95d55bafef48f5\"\u003eea69792\u003c/a\u003e), closes \u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/244\"\u003e#244\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.6\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded new \u003ccode\u003eserverCertificate\u003c/code\u003e connection parameter for byte-for-byte certificate validation, matching Microsoft.Data.SqlClient behavior. This parameter skips hostname validation, chain validation, and expiry checks, only verifying that the server's certificate exactly matches the provided file. This is useful when the server's hostname doesn't match the certificate CN/SAN. (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/304\"\u003e#304\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eThe existing \u003ccode\u003ecertificate\u003c/code\u003e parameter maintains backward compatibility with traditional X.509 chain validation including hostname checks, expiry validation, and chain-of-trust verification.\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eserverCertificate\u003c/code\u003e cannot be used with \u003ccode\u003ecertificate\u003c/code\u003e or \u003ccode\u003ehostnameincertificate\u003c/code\u003e parameters to prevent conflicting validation methods.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.3\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix parsing of ADO connection strings with double-quoted values containing semicolons (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/282\"\u003e#282\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.2\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix race condition in message queue query model (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/277\"\u003e#277\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.9.1\u003c/h2\u003e\n\u003ch3\u003eBug fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix bulk insert failure with datetime values near midnight due to day overflow (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/271\"\u003e#271\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e... (truncated)\u003c/p\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/f92e6f0abf7607819f70b66191e6732c02c78f57\"\u003e\u003ccode\u003ef92e6f0\u003c/code\u003e\u003c/a\u003e chore(main): release 1.10.0 (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/351\"\u003e#351\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/03094d02c4fd74c8a95e6feb36ec5d3d8b93f592\"\u003e\u003ccode\u003e03094d0\u003c/code\u003e\u003c/a\u003e ci: add least-privilege permissions and pin actions to SHA (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/354\"\u003e#354\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/65e137f4896c9f3de6036967afe4722ad6a21a41\"\u003e\u003ccode\u003e65e137f\u003c/code\u003e\u003c/a\u003e fix: make readCancelConfirmation respect context cancellation (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/359\"\u003e#359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/c10fa9936a1733ef3f1a50d66b6046445bee3294\"\u003e\u003ccode\u003ec10fa99\u003c/code\u003e\u003c/a\u003e feat: add nullable civil types for date/time parameters (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/9937cfe437d437d86d96b347514cd1ccbb5485f9\"\u003e\u003ccode\u003e9937cfe\u003c/code\u003e\u003c/a\u003e fix: expose TrustServerCertificate in msdsn.Config and URL round-trip (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/312\"\u003e#312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/429c61d44f20e08cc2a5ff1bbd2a33cfe65b1b15\"\u003e\u003ccode\u003e429c61d\u003c/code\u003e\u003c/a\u003e chore(deps): bump googleapis/release-please-action from 4.4.1 to 5.0.0 in the...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/ea77c2edc7b1c65047cd431975ca38565b567a5f\"\u003e\u003ccode\u003eea77c2e\u003c/code\u003e\u003c/a\u003e feat: add FailoverPartnerSPN connection string parameter (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/327\"\u003e#327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/04d26c2da5fe6aebf1f04727c09a14a8cd36af56\"\u003e\u003ccode\u003e04d26c2\u003c/code\u003e\u003c/a\u003e ci: add devcontainer build validation workflow (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/355\"\u003e#355\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/b55beebc209f142248f556e3586ce2396be1955c\"\u003e\u003ccode\u003eb55beeb\u003c/code\u003e\u003c/a\u003e feat: add devcontainer for VS Code and GitHub Codespaces (\u003ca href=\"https://redirect.github.com/microsoft/go-mssqldb/issues/317\"\u003e#317\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/microsoft/go-mssqldb/commit/586ea53b337210693883d554f12a6b9c07e2cca2\"\u003e\u003ccode\u003e586ea53\u003c/code\u003e\u003c/a\u003e fix: detect server-aborted transactions to prevent silent auto-commit (XACT_A...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/microsoft/go-mssqldb/compare/v1.9.8...v1.10.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/onsi/ginkgo/v2` from 2.28.2 to 2.29.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/ginkgo/releases\"\u003egithub.com/onsi/ginkgo/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.29.0\u003c/h2\u003e\n\u003ch2\u003e2.29.0\u003c/h2\u003e\n\u003cp\u003e\u003ccode\u003eGinkgoHelperGo\u003c/code\u003e makes it easier to write test helpers that need to run in goroutines.  Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.\u003c/p\u003e\n\u003cp\u003e\u003ccode\u003eginkgo outline\u003c/code\u003e now includes entries defined in \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e\u003c/p\u003e\n\u003ch2\u003ev2.28.3\u003c/h2\u003e\n\u003ch2\u003e2.28.3\u003c/h2\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cp\u003eBump all dependencies\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md\"\u003egithub.com/onsi/ginkgo/v2's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e2.29.0\u003c/h2\u003e\n\u003cp\u003e\u003ccode\u003eGinkgoHelperGo\u003c/code\u003e makes it easier to write test helpers that need to run in goroutines.  Specifically, it makes managing the failure state and capturing failure panics correctly straightforward.\u003c/p\u003e\n\u003cp\u003e\u003ccode\u003eginkgo outline\u003c/code\u003e now includes entries defined in \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e\u003c/p\u003e\n\u003ch2\u003e2.28.3\u003c/h2\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cp\u003eBump all dependencies\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/04b5bcbe4eee911a1baf506eda1e7e811c978937\"\u003e\u003ccode\u003e04b5bcb\u003c/code\u003e\u003c/a\u003e v2.29.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/124232a4531c77a7f31a036e0150e06fa78b2af8\"\u003e\u003ccode\u003e124232a\u003c/code\u003e\u003c/a\u003e docs: GinkgoHelperGo\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/ad9cee80bdfda573e94f1b05f2bd4afa1a2fe815\"\u003e\u003ccode\u003ead9cee8\u003c/code\u003e\u003c/a\u003e feat: GinkgoHelperGo, with integration tests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/9e56a0a2a090eb83af696381161bdb996c69bcac\"\u003e\u003ccode\u003e9e56a0a\u003c/code\u003e\u003c/a\u003e chore: refactor devcontainer for better maintenance\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/3d235a96ac0...\n\n_Description has been truncated_","html_url":"https://github.com/flanksource/canary-checker/pull/2958","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/flanksource%2Fcanary-checker/issues/2958","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/2958/packages"}},{"old_version":"1.56.0","new_version":"1.62.2","update_type":"minor","path":"/backend","pr_created_at":"2026-05-19T05:12:28.000Z","version_change":"1.56.0 → 1.62.2","issue":{"uuid":"4474597000","node_id":"PR_kwDORt7LTs7c7Q0K","number":76,"state":"open","title":"chore(deps): bump cloud.google.com/go/storage from 1.56.0 to 1.62.2 in /backend","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-19T05:12:28.000Z","updated_at":"2026-05-19T05:12:29.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps)","packages":[{"name":"cloud.google.com/go/storage","old_version":"1.56.0","new_version":"1.62.2","repository_url":"https://github.com/googleapis/google-cloud-go"}],"path":"/backend","ecosystem":"go"},"body":"Bumps [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) from 1.56.0 to 1.62.2.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/googleapis/google-cloud-go/releases\"\u003ecloud.google.com/go/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003estorage: v1.62.2\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.62.1...storage/v1.62.2\"\u003ev1.62.2\u003c/a\u003e (2026-05-18)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eenable open telemetry attrs (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14426\"\u003e#14426\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/74eab64d\"\u003e74eab64d\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003erestore metadata operations timeout in gRPC (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14575\"\u003e#14575\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/275ff562\"\u003e275ff562\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSet default chunkRetryDeadline to 32s in NewWriterFromAppendableObject (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14458\"\u003e#14458\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/ec7c7d66\"\u003eec7c7d66\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003erefactor userProject metadata propagation in ListObjects  (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14533\"\u003e#14533\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fbb543e3\"\u003efbb543e3\u003c/a\u003e)\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003estorage: v1.59.3\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/storage/v1.59.2...storage/v1.59.3\"\u003ev1.59.3\u003c/a\u003e (2026-05-05)\u003c/h2\u003e\n\u003ch3\u003eBug Fixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003ehandle MRD hang corner case (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14509\"\u003e#14509\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/1ca3b6f0\"\u003e1ca3b6f0\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/blockquote\u003e\n\u003c/details\u003e\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/50a575507ac6f3bdcc926dceda45cfa4c943a637\"\u003e\u003ccode\u003e50a5755\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260518T161338Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14610\"\u003e#14610\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/585840ff8168325dea801e13c398055692c0fe32\"\u003e\u003ccode\u003e585840f\u003c/code\u003e\u003c/a\u003e spanner: skip flaky TestIntegration_DbRemovalRecovery (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14607\"\u003e#14607\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8bf88faa8738e9ca6684d9e28e2f0c05ff1eda1\"\u003e\u003ccode\u003ef8bf88f\u003c/code\u003e\u003c/a\u003e test(spanner): retry query after database recreation in integration test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9168ab887eb52ea8f4b45425f493d14ff047d3b6\"\u003e\u003ccode\u003e9168ab8\u003c/code\u003e\u003c/a\u003e chore(librariangen): tweak release preview test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14599\"\u003e#14599\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/f8b9a93aefedc167db7c7a28140d47ef2f1e3a82\"\u003e\u003ccode\u003ef8b9a93\u003c/code\u003e\u003c/a\u003e fix(spanner/spannertest): Support UUID as a base data type (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14117\"\u003e#14117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/a42fd83b04237b9f04e54cf0de86978c97ad5a04\"\u003e\u003ccode\u003ea42fd83\u003c/code\u003e\u003c/a\u003e fix(internal/librariange): release preview support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14588\"\u003e#14588\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d9448309a64e756a5facdfbd6ffa9d51f27c0610\"\u003e\u003ccode\u003ed944830\u003c/code\u003e\u003c/a\u003e fix(datastore): add retries to emulator (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14591\"\u003e#14591\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/c5aaedcf817fd97f9a822666e02fbb89bfcbcc60\"\u003e\u003ccode\u003ec5aaedc\u003c/code\u003e\u003c/a\u003e chore: migrate Go configuration in librarian.yaml (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14587\"\u003e#14587\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a0e84978507e32473aa923e525b6803defd1d3f\"\u003e\u003ccode\u003e8a0e849\u003c/code\u003e\u003c/a\u003e doc(agentplatform): Add notes and quick examples to the README\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/033f4fe394f6f1c36dd31eaebf0ac0daef7bb744\"\u003e\u003ccode\u003e033f4fe\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260514T191310Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14589\"\u003e#14589\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/compute/v1.56.0...storage/v1.62.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=cloud.google.com/go/storage\u0026package-manager=go_modules\u0026previous-version=1.56.0\u0026new-version=1.62.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n\u003cdetails\u003e\n\u003csummary\u003eDependabot commands and options\u003c/summary\u003e\n\u003cbr /\u003e\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@dependabot rebase` will rebase this PR\n- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@dependabot show \u003cdependency name\u003e ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n\n\u003c/details\u003e","html_url":"https://github.com/MrStevenRAdams/marketmate-platform/pull/76","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/MrStevenRAdams%2Fmarketmate-platform/issues/76","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/76/packages"}}]}