Skip to content

build(deps): bump the gomod-backward-compatible group with 5 updates#1187

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/gomod-backward-compatible-0848c2eb19
Open

build(deps): bump the gomod-backward-compatible group with 5 updates#1187
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/gomod-backward-compatible-0848c2eb19

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 1, 2026

Bumps the gomod-backward-compatible group with 5 updates:

Package From To
github.com/go-co-op/gocron/v2 2.19.1 2.21.1
github.com/mattn/go-sqlite3 1.14.37 1.14.42
github.com/oapi-codegen/runtime 1.3.0 1.4.0
github.com/urfave/cli/v3 3.7.0 3.8.0
golang.org/x/crypto 0.48.0 0.50.0

Updates github.com/go-co-op/gocron/v2 from 2.19.1 to 2.21.1

Release notes

Sourced from github.com/go-co-op/gocron/v2's releases.

v2.21.1

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.21.0...v2.21.1

v2.21.0

What's Changed

Test Suite

Full Changelog: go-co-op/gocron@v2.20.0...v2.21.0

v2.20.0

What's Changed

Performance improvements

Fixes

Docs

New Contributors

Full Changelog: go-co-op/gocron@v2.19.1...v2.20.0

Commits
  • 8e553c0 fix: remove jobs and respect stopTime in NextRuns when WithStopDateTime is se...
  • 54f6bd8 test: enhancements to testing speed and reliablity (#920)
  • 9b8a3f7 Expose job schedule information via Schedule() method on Job interface (#...
  • 2e69a26 feat: add IsRunning() and LastRunCompletedAt() to Job interface (#918)
  • 1e25a3b feat: add WithDSTPolicy option for DST spring-forward handling (#917)
  • 89567e9 perf: replace string allocation with bytes.Compare in Jobs() UUID sort (#914)
  • a6875f0 Fix CronJob duplicate execution during DST fall-back (#912)
  • c304de1 feat: add ShutdownWithContext and StopJobsWithContext (#913)
  • 5b307f5 docs: clarify NextRun/NextRuns require scheduler to be started (#910)
  • 102b2b2 Change GitHub Sponsors username in FUNDING.yml
  • See full diff in compare view

Updates github.com/mattn/go-sqlite3 from 1.14.37 to 1.14.42

Commits
  • 5df13a0 Merge pull request #1387 from mattn/codex/stmt-cache
  • e302e5c document that _stmt_cache_size is per connection
  • 867dcbf move reset/clear into putCachedStmt and always finalize on failure
  • 0e58fa4 simplify prepareWithCache to call prepare instead of duplicating logic
  • e9f47da do not bail out on finalize error in closeCachedStmtsLocked
  • 325cb8d remove redundant stmtCacheSize check in putCachedStmt
  • 061c2a5 check stmtCacheSize before acquiring mutex in takeCachedStmt
  • efa9b1c add opt-in statement cache
  • 8d12439 Merge pull request #1386 from mattn/perf/reduce-cgo-overhead
  • 89f4bbe fix build with SQLITE_ENABLE_UNLOCK_NOTIFY
  • Additional commits viewable in compare view

Updates github.com/oapi-codegen/runtime from 1.3.0 to 1.4.0

Release notes

Sourced from github.com/oapi-codegen/runtime's releases.

Parameter handling improvements and fixes

This release fixes some missing edge cases in parameter binding and styling. We now handle all the permutations of style and explode, for the first time. Lots of tests have been added to catch regressions.

🚀 New features and improvements

  • Improve deepobject unmarshalling to support nullable.Nullable and encode.TextUnmarshaler (#45) @​j-waters
  • feat: support spaceDelimited and pipeDelimited query parameter binding (#117) @​mromaszewicz

🐛 Bug fixes

  • Fix form/explode=false incorrectly splitting primitive string values on commas (#119) @​f-kanari

📦 Dependency updates

  • fix(deps): update module github.com/labstack/echo/v4 to v4.15.1 (#105) @renovate[bot]
  • fix(deps): update module github.com/labstack/echo/v5 to v5.1.0 (#120) @renovate[bot]
  • chore(deps): update release-drafter/release-drafter action to v7 (#113) @renovate[bot]

Sponsors

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

Fix a parameter binding regression

v1.3.0 introduced a regression around binding styled parameters into primitive type destinations. This regression was due to a fix in binding matrix and label parameters. Sorry about that.

🐛 Bug fixes

Sponsors

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

... (truncated)

Commits
  • 247b459 fix(deps): update module github.com/labstack/echo/v4 to v4.15.1 (#105)
  • 1d38dfa fix(deps): update module github.com/labstack/echo/v5 to v5.1.0 (#120)
  • be9ed17 chore(deps): update release-drafter/release-drafter action to v7 (#113)
  • 77570f9 Fix form/explode=false incorrectly splitting primitive string values on comma...
  • dfe6f3b feat: support spaceDelimited and pipeDelimited query parameter binding (#117)
  • 5ea8c65 Improve deepobject unmarshalling to support nullable.Nullable and encode.Text...
  • 00e51fe Fix regression in binding simple parameters (#115)
  • See full diff in compare view

Updates github.com/urfave/cli/v3 from 3.7.0 to 3.8.0

Release notes

Sourced from github.com/urfave/cli/v3's releases.

v3.8.0

What's Changed

New Contributors

Full Changelog: urfave/cli@v3.7.0...v3.8.0

Commits
  • 78e356c Merge pull request #2296 from idelchi/issue_2292
  • 4d20bae Fix formatting and whitespace in command_test.go
  • 7b90614 Merge branch 'main' into issue_2292
  • 41c4f5f Merge pull request #2297 from idelchi/issue_2293
  • d3f9586 Merge pull request #2295 from dearchap/issue_2275
  • 195aaff Fix:(issue_2293) --flag="" no longer rejected as missing argument
  • b4f42d3 Fix:(issue_2292) Empty positional args no longer break parse loop
  • 94d2512 Fix:(issue_2275) Make flag action execution consistent
  • a2d0cf1 Merge pull request #2290 from dearchap/issue_2281
  • 1f0c188 Fix:(issue_2281) Remove incorrect check for local flag for set
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.48.0 to 0.50.0

Commits
  • 03ca0dc go.mod: update golang.org/x dependencies
  • 8400f4a ssh: respect signer's algorithm preference in pickSignatureAlgorithm
  • 81c6cb3 ssh: swap cbcMinPaddingSize to cbcMinPacketSize to get encLength
  • 982eaa6 go.mod: update golang.org/x dependencies
  • 159944f ssh,acme: clean up tautological/impossible nil conditions
  • a408498 acme: only require prompt if server has terms of service
  • cab0f71 all: upgrade go directive to at least 1.25.0 [generated]
  • 2f26647 x509roots/fallback: update bundle
  • See full diff in compare view

Dependabot 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.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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)
  • @dependabot ignore <dependency name> 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)
  • @dependabot ignore <dependency name> 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)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the gomod-backward-compatible group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/go-co-op/gocron/v2](https://github.com/go-co-op/gocron) | `2.19.1` | `2.21.1` |
| [github.com/mattn/go-sqlite3](https://github.com/mattn/go-sqlite3) | `1.14.37` | `1.14.42` |
| [github.com/oapi-codegen/runtime](https://github.com/oapi-codegen/runtime) | `1.3.0` | `1.4.0` |
| [github.com/urfave/cli/v3](https://github.com/urfave/cli) | `3.7.0` | `3.8.0` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.48.0` | `0.50.0` |


Updates `github.com/go-co-op/gocron/v2` from 2.19.1 to 2.21.1
- [Release notes](https://github.com/go-co-op/gocron/releases)
- [Commits](go-co-op/gocron@v2.19.1...v2.21.1)

Updates `github.com/mattn/go-sqlite3` from 1.14.37 to 1.14.42
- [Release notes](https://github.com/mattn/go-sqlite3/releases)
- [Commits](mattn/go-sqlite3@v1.14.37...v1.14.42)

Updates `github.com/oapi-codegen/runtime` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/oapi-codegen/runtime/releases)
- [Commits](oapi-codegen/runtime@v1.3.0...v1.4.0)

Updates `github.com/urfave/cli/v3` from 3.7.0 to 3.8.0
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](urfave/cli@v3.7.0...v3.8.0)

Updates `golang.org/x/crypto` from 0.48.0 to 0.50.0
- [Commits](golang/crypto@v0.48.0...v0.50.0)

---
updated-dependencies:
- dependency-name: github.com/go-co-op/gocron/v2
  dependency-version: 2.21.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-backward-compatible
- dependency-name: github.com/mattn/go-sqlite3
  dependency-version: 1.14.42
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-backward-compatible
- dependency-name: github.com/oapi-codegen/runtime
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-backward-compatible
- dependency-name: github.com/urfave/cli/v3
  dependency-version: 3.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-backward-compatible
- dependency-name: golang.org/x/crypto
  dependency-version: 0.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-backward-compatible
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels May 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Development

Successfully merging this pull request may close these issues.

0 participants