[PR #395] [CLOSED] fix(deps): update go modules #1429

Closed
opened 2025-12-29 02:30:02 +01:00 by adam · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/juanfont/headscale/pull/395
Author: @ghost
Created: 3/5/2022
Status: Closed

Base: mainHead: renovateaction/gomod


📝 Commits (1)

  • 8cb2627 fix(deps): update go modules

📊 Changes

2 files changed (+12 additions, -4 deletions)

View changed files

📝 go.mod (+4 -4)
📝 go.sum (+8 -0)

📄 Description

This PR contains the following updates:

Package Type Update Change
github.com/grpc-ecosystem/grpc-gateway/v2 require minor v2.7.3 -> v2.8.0
github.com/klauspost/compress require minor v1.14.4 -> v1.15.0
google.golang.org/genproto require digest 15d65a4 -> 325a892
gorm.io/gorm require patch v1.23.1 -> v1.23.2

Release Notes

grpc-ecosystem/grpc-gateway

v2.8.0

Compare Source

Overview

This release introduces the new WithHealthzEndpoint which makes it easy to forward your gRPC health check endpoint to your gRPC-gateway server, and fixes a long standing bug in protoc-gen-openapiv2 where path parameters were included in both the path and the body of the generated spec (#​1670 and #​1015).

What's Changed

New Contributors

Full Changelog: https://github.com/grpc-ecosystem/grpc-gateway/compare/v2.7.3...v2.8.0

klauspost/compress

v1.15.0

Compare Source

What's Changed

Both compression and decompression now supports "synchronous" stream operations. This means that whenever "concurrency" is set to 1, they will operate without spawning goroutines.

Stream decompression is now faster on asynchronous, since the goroutine allocation much more effectively splits the workload. On typical streams this will typically use 2 cores fully for decompression. When a stream has finished decoding no goroutines will be left over, so decoders can now safely be pooled and still be garbage collected.

While the release has been extensively tested, it is recommended to do testing when upgrading.

Full Changelog: https://github.com/klauspost/compress/compare/v1.14.4...v1.15.0

go-gorm/gorm

v1.23.2

Compare Source


Configuration

📅 Schedule: At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, click this checkbox.

This PR has been generated by Renovate Bot.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/juanfont/headscale/pull/395 **Author:** [@ghost](https://github.com/ghost) **Created:** 3/5/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `renovateaction/gomod` --- ### 📝 Commits (1) - [`8cb2627`](https://github.com/juanfont/headscale/commit/8cb2627d7d2e5d9cf0590680b8ce56a1f5408d09) fix(deps): update go modules ### 📊 Changes **2 files changed** (+12 additions, -4 deletions) <details> <summary>View changed files</summary> 📝 `go.mod` (+4 -4) 📝 `go.sum` (+8 -0) </details> ### 📄 Description This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/grpc-ecosystem/grpc-gateway/v2](https://togithub.com/grpc-ecosystem/grpc-gateway) | require | minor | `v2.7.3` -> `v2.8.0` | | [github.com/klauspost/compress](https://togithub.com/klauspost/compress) | require | minor | `v1.14.4` -> `v1.15.0` | | [google.golang.org/genproto](https://togithub.com/googleapis/go-genproto) | require | digest | `15d65a4` -> `325a892` | | [gorm.io/gorm](https://togithub.com/go-gorm/gorm) | require | patch | `v1.23.1` -> `v1.23.2` | --- ### Release Notes <details> <summary>grpc-ecosystem/grpc-gateway</summary> ### [`v2.8.0`](https://togithub.com/grpc-ecosystem/grpc-gateway/releases/v2.8.0) [Compare Source](https://togithub.com/grpc-ecosystem/grpc-gateway/compare/v2.7.3...v2.8.0) #### Overview This release introduces the new `WithHealthzEndpoint` which makes it easy to forward your gRPC health check endpoint to your gRPC-gateway server, and fixes a long standing bug in `protoc-gen-openapiv2` where path parameters were included in both the path and the body of the generated spec ([#&#8203;1670](https://togithub.com/grpc-ecosystem/grpc-gateway/issues/1670) and [#&#8203;1015](https://togithub.com/grpc-ecosystem/grpc-gateway/issues/1015)). #### What's Changed - Include Package in Service Tags when Option is Enabled by [@&#8203;dkiswanto](https://togithub.com/dkiswanto) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/2519](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/2519) - Add `WithHealthzEndpoint` as `ServeMuxOption` to register a `/healthz`endpoint by [@&#8203;brumhard](https://togithub.com/brumhard) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/2319](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/2319) - protoc-gen-openapiv2: remove path parameters from body parameters by [@&#8203;oyvindwe](https://togithub.com/oyvindwe) in [https://github.com/grpc-ecosystem/grpc-gateway/pull/2553](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/2553) #### New Contributors - [@&#8203;dkiswanto](https://togithub.com/dkiswanto) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/2519](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/2519) - [@&#8203;brumhard](https://togithub.com/brumhard) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/2319](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/2319) - [@&#8203;oyvindwe](https://togithub.com/oyvindwe) made their first contribution in [https://github.com/grpc-ecosystem/grpc-gateway/pull/2553](https://togithub.com/grpc-ecosystem/grpc-gateway/pull/2553) **Full Changelog**: https://github.com/grpc-ecosystem/grpc-gateway/compare/v2.7.3...v2.8.0 </details> <details> <summary>klauspost/compress</summary> ### [`v1.15.0`](https://togithub.com/klauspost/compress/releases/v1.15.0) [Compare Source](https://togithub.com/klauspost/compress/compare/v1.14.4...v1.15.0) #### What's Changed - zstd: Refactor decoder by [@&#8203;klauspost](https://togithub.com/klauspost) in [https://github.com/klauspost/compress/pull/498](https://togithub.com/klauspost/compress/pull/498) - zstd: Add stream encoding without goroutines by [@&#8203;klauspost](https://togithub.com/klauspost) in [https://github.com/klauspost/compress/pull/505](https://togithub.com/klauspost/compress/pull/505) Both compression and decompression now supports "synchronous" stream operations. This means that whenever "concurrency" is set to 1, they will operate without spawning goroutines. Stream decompression is now faster on asynchronous, since the goroutine allocation much more effectively splits the workload. On typical streams this will typically use 2 cores fully for decompression. When a stream has finished decoding no goroutines will be left over, so decoders can now safely be pooled and still be garbage collected. While the release has been extensively tested, it is recommended to do testing when upgrading. - huff0: Prevent single blocks exceeding 16 bits by [@&#8203;klauspost](https://togithub.com/klauspost) in [https://github.com/klauspost/compress/pull/507](https://togithub.com/klauspost/compress/pull/507) - flate: Inline literal emission by [@&#8203;klauspost](https://togithub.com/klauspost) in [https://github.com/klauspost/compress/pull/509](https://togithub.com/klauspost/compress/pull/509) - gzhttp: Add zstd to transport by [@&#8203;klauspost](https://togithub.com/klauspost) in [https://github.com/klauspost/compress/pull/400](https://togithub.com/klauspost/compress/pull/400) - gzhttp: Make content-type optional by [@&#8203;klauspost](https://togithub.com/klauspost) in [https://github.com/klauspost/compress/pull/510](https://togithub.com/klauspost/compress/pull/510) **Full Changelog**: https://github.com/klauspost/compress/compare/v1.14.4...v1.15.0 </details> <details> <summary>go-gorm/gorm</summary> ### [`v1.23.2`](https://togithub.com/go-gorm/gorm/compare/v1.23.1...v1.23.2) [Compare Source](https://togithub.com/go-gorm/gorm/compare/v1.23.1...v1.23.2) </details> --- ### Configuration 📅 **Schedule**: At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, click this checkbox. --- This PR has been generated by [Renovate Bot](https://togithub.com/renovatebot/renovate). --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
adam added the pull-request label 2025-12-29 02:30:02 +01:00
adam closed this issue 2025-12-29 02:30:02 +01:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/headscale#1429