chore(deps): update module github.com/oapi-codegen/runtime to v1.6.0 #34

Open
renovate-bot wants to merge 1 commits from renovate/github.com-oapi-codegen-runtime-1.x into main
Collaborator

This PR contains the following updates:

Package Change Age Confidence
github.com/oapi-codegen/runtime v1.4.2v1.6.0 age confidence

Release Notes

oapi-codegen/runtime (github.com/oapi-codegen/runtime)

v1.6.0: Allow customization of parameter encoding

Compare Source

This is a small release which adds a global encoding setting on the runtime, to allow users to customize how to handle spaces in query arguments. This is a new minor release, since we're adding new API, even though this is a very minor feature. I imagine that in the future, we will add more settings, rather than making behavior assumptions.

🚀 New features and improvements

📦 Dependency updates

  • chore(deps): update module github.com/golangci/golangci-lint to v2.12.2 (#​112) @​renovate[bot]

Sponsors

We would like to thank our sponsors for their support during this release.

Sponsors

We would like to thank our sponsors for their support during this release.

DevZero logo

Cybozu logo

v1.5.0: : RFC3339 durations, and bug fixes

Compare Source

This is mainly a bugfix release, but we're bumping the minor version since we also introduce a new type, Duration into our types/ package, which allows for parsing and emitting RFC3339 durations. Rather than trying to parse a duration string into a time.Duration, which requires assumptions that may not be right for everyone, we decided not to make those decisions and just store all possible fields as provided. Users can convert this to Go Duration as they see fit.

🚀 New features and improvements

🐛 Bug fixes

📝 Documentation updates

📦 Dependency updates

6 changes

Sponsors

We would like to thank our sponsors for their support during this release.

DevZero logo

Cybozu logo


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/oapi-codegen/runtime](https://github.com/oapi-codegen/runtime) | `v1.4.2` → `v1.6.0` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2foapi-codegen%2fruntime/v1.6.0?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2foapi-codegen%2fruntime/v1.4.2/v1.6.0?slim=true) | --- ### Release Notes <details> <summary>oapi-codegen/runtime (github.com/oapi-codegen/runtime)</summary> ### [`v1.6.0`](https://github.com/oapi-codegen/runtime/releases/tag/v1.6.0): Allow customization of parameter encoding [Compare Source](https://github.com/oapi-codegen/runtime/compare/v1.5.0...v1.6.0) This is a small release which adds a global encoding setting on the runtime, to allow users to customize how to handle spaces in query arguments. This is a new minor release, since we're adding new API, even though this is a very minor feature. I imagine that in the future, we will add more settings, rather than making behavior assumptions. #### 🚀 New features and improvements - Allow customizing default query encoder ([#&#8203;145](https://github.com/oapi-codegen/runtime/issues/145)) [@&#8203;mromaszewicz](https://github.com/mromaszewicz) #### 📦 Dependency updates - chore(deps): update module github.com/golangci/golangci-lint to v2.12.2 ([#&#8203;112](https://github.com/oapi-codegen/runtime/issues/112)) @&#8203;[renovate\[bot\]](https://github.com/apps/renovate) #### Sponsors We would like to thank our sponsors for their support during this release. #### Sponsors We would like to thank our sponsors for their support during this release. <p align="center"> <a href="https://www.devzero.io/lp/dev-environment?utm_campaign=github&utm_source=oapi-codegen%20repo&utm_medium=github%20sponsorship"> <picture> <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/oapi-codegen/oapi-codegen/v2.6.0/.github/sponsors/devzero-light.svg"> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/oapi-codegen/oapi-codegen/v2.6.0/.github/sponsors/devzero-dark.svg"> <img alt="DevZero logo" src="https://raw.githubusercontent.com/oapi-codegen/oapi-codegen/v2.6.0/.github/sponsors/devzero-dark.svg" height="100px"> </picture> </a> </p> <p align="center"> <a href="https://cybozu.co.jp/?utm_source=oapi-codegen+repo&utm_medium=github+sponsorship"> <img alt="Cybozu logo" src="https://raw.githubusercontent.com/oapi-codegen/oapi-codegen/v2.6.0/.github/sponsors/cybozu.svg" height="100px"> </a> </p> ### [`v1.5.0`](https://github.com/oapi-codegen/runtime/releases/tag/v1.5.0): : RFC3339 durations, and bug fixes [Compare Source](https://github.com/oapi-codegen/runtime/compare/v1.4.2...v1.5.0) This is mainly a bugfix release, but we're bumping the minor version since we also introduce a new type, `Duration` into our `types/` package, which allows for parsing and emitting RFC3339 durations. Rather than trying to parse a duration string into a `time.Duration`, which requires assumptions that may not be right for everyone, we decided not to make those decisions and just store all possible fields as provided. Users can convert this to Go Duration as they see fit. #### 🚀 New features and improvements - Add types.Duration for the RFC 3339 duration format ([#&#8203;144](https://github.com/oapi-codegen/runtime/issues/144)) [@&#8203;mromaszewicz](https://github.com/mromaszewicz) #### 🐛 Bug fixes - Let generated code declare whether styled parameter values are escaped ([#&#8203;143](https://github.com/oapi-codegen/runtime/issues/143)) [@&#8203;mromaszewicz](https://github.com/mromaszewicz) - Prefer the form struct tag over json for form encoding ([#&#8203;140](https://github.com/oapi-codegen/runtime/issues/140)) [@&#8203;mromaszewicz](https://github.com/mromaszewicz) - Support binding deepObject parameters into map\[string]interface{} ([#&#8203;139](https://github.com/oapi-codegen/runtime/issues/139)) [@&#8203;mromaszewicz](https://github.com/mromaszewicz) #### 📝 Documentation updates - Explain how to send nested objects when style serialization fails ([#&#8203;141](https://github.com/oapi-codegen/runtime/issues/141)) [@&#8203;mromaszewicz](https://github.com/mromaszewicz) #### 📦 Dependency updates <details> <summary>6 changes</summary> - fix(deps): update module github.com/labstack/echo/v5 to v5.3.0 ([#&#8203;142](https://github.com/oapi-codegen/runtime/issues/142)) @&#8203;[renovate\[bot\]](https://github.com/apps/renovate) - chore(deps): update golang/govulncheck-action action to v1.1.0 ([#&#8203;137](https://github.com/oapi-codegen/runtime/issues/137)) @&#8203;[renovate\[bot\]](https://github.com/apps/renovate) - chore(deps): update oapi-codegen/actions action to v0.8.0 ([#&#8203;130](https://github.com/oapi-codegen/runtime/issues/130)) @&#8203;[renovate\[bot\]](https://github.com/apps/renovate) - fix(deps): update module github.com/labstack/echo/v5 to v5.2.1 - autoclosed ([#&#8203;126](https://github.com/oapi-codegen/runtime/issues/126)) @&#8203;[renovate\[bot\]](https://github.com/apps/renovate) - chore(deps): update release-drafter/release-drafter action to v7.5.1 - autoclosed ([#&#8203;124](https://github.com/oapi-codegen/runtime/issues/124)) @&#8203;[renovate\[bot\]](https://github.com/apps/renovate) - chore(deps): update github/codeql-action action to v4.37.0 ([#&#8203;123](https://github.com/oapi-codegen/runtime/issues/123)) @&#8203;[renovate\[bot\]](https://github.com/apps/renovate) </details> #### Sponsors We would like to thank our sponsors for their support during this release. <p align="center"> <a href="https://www.devzero.io/lp/dev-environment?utm_campaign=github&utm_source=oapi-codegen%20repo&utm_medium=github%20sponsorship"> <picture> <source media="(prefers-color-scheme: light)" srcset="https://raw.githubusercontent.com/oapi-codegen/oapi-codegen/v2.6.0/.github/sponsors/devzero-light.svg"> <source media="(prefers-color-scheme: dark)" srcset="https://raw.githubusercontent.com/oapi-codegen/oapi-codegen/v2.6.0/.github/sponsors/devzero-dark.svg"> <img alt="DevZero logo" src="https://raw.githubusercontent.com/oapi-codegen/oapi-codegen/v2.6.0/.github/sponsors/devzero-dark.svg" height="100px"> </picture> </a> </p> <p align="center"> <a href="https://cybozu.co.jp/?utm_source=oapi-codegen+repo&utm_medium=github+sponsorship"> <img alt="Cybozu logo" src="https://raw.githubusercontent.com/oapi-codegen/oapi-codegen/v2.6.0/.github/sponsors/cybozu.svg" height="100px"> </a> </p> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yMzMuNCIsInVwZGF0ZWRJblZlciI6IjQzLjI2My45IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBzIiwiZ28iXX0=-->
renovate-bot added the depsgo labels 2026-07-13 06:02:58 +02:00
renovate-bot added 1 commit 2026-07-24 06:03:06 +02:00
chore(deps): update module github.com/oapi-codegen/runtime to v1.6.0
renovate/stability-days Updates have met minimum release age requirement
f2df4ac66d
renovate-bot force-pushed renovate/github.com-oapi-codegen-runtime-1.x from a0424fdb0e to f2df4ac66d 2026-07-24 06:03:06 +02:00 Compare
renovate-bot changed title from chore(deps): update module github.com/oapi-codegen/runtime to v1.5.0 to chore(deps): update module github.com/oapi-codegen/runtime to v1.6.0 2026-07-24 06:03:06 +02:00
Some checks are pending
renovate/stability-days Updates have met minimum release age requirement
This pull request can be merged automatically.
This branch is out-of-date with the base branch
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/github.com-oapi-codegen-runtime-1.x:renovate/github.com-oapi-codegen-runtime-1.x
git checkout renovate/github.com-oapi-codegen-runtime-1.x
Sign in to join this conversation.
No Reviewers
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: t.behrendt/ionosDnsClient#34