Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the gomod-dependencies group across 1 directory with 15 updates #197

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 17, 2024

Bumps the gomod-dependencies group with 12 updates in the /server directory:

Package From To
github.com/disgoorg/disgo 0.17.2 0.18.7
github.com/docker/docker 25.0.4+incompatible 27.0.0+incompatible
github.com/gin-contrib/cors 1.7.0 1.7.2
github.com/gin-gonic/gin 1.9.1 1.10.0
github.com/go-git/go-git/v5 5.11.0 5.12.0
github.com/google/go-containerregistry 0.19.0 0.19.2
github.com/gorilla/websocket 1.5.1 1.5.3
github.com/jmoiron/sqlx 1.3.5 1.4.0
github.com/loopfz/gadgeto 0.11.3 0.11.4
github.com/prometheus/client_golang 1.19.0 1.19.1
gorm.io/driver/postgres 1.5.7 1.5.9
modernc.org/sqlite 1.29.3 1.30.1

Updates github.com/disgoorg/disgo from 0.17.2 to 0.18.7

Release notes

Sourced from github.com/disgoorg/disgo's releases.

v0.18.7

What's Changed

Full Changelog: disgoorg/disgo@v0.18.6...v0.18.7

v0.18.6 - Additions and fixes

What's Changed

Breaking Changes

  • ConnectionTypeTwitter has been renamed to ConnectionTypeX
  • channels.GetReactions now accepts 3 new parameters: reactionType, after and before

New Contributors

Full Changelog: disgoorg/disgo@v0.18.5...v0.18.6

v0.18.5 - Bug fix and more

What's Changed

Full Changelog: disgoorg/disgo@v0.18.4...v0.18.5

v0.18.4 - Consistency fix

What's Changed

Breaking Changes

  • PollCreateBuilder.SetPollAnswers -> SetAnswers, PollCreateBuilder.AddPollAnswer -> AddAnswer

Full Changelog: disgoorg/disgo@v0.18.3...v0.18.4

v0.18.3 - Polls!

... (truncated)

Commits
  • 49119a6 fix error when creating or updating global application command
  • fd872a1 Add member profiles automod rule (#256)
  • 5bb14bb fix stuck at mutex when reconnecting and error happens in Gateway.Open (#361)
  • 3599a10 Rename InteractionGuild funcs to PartialGuild()
  • b81270a Handle group DMs (channels) (#360)
  • d934f63 Add guild onboarding + home audit log events (#258)
  • ee8814f Properly uncache members + events on guild delete
  • 71cd768 Add InteractionGuild (#276)
  • 9356c13 Add Type to EventMessageReactionAdd/Remove
  • fbf9a5d Add query params to channels.GetReactions (#301)
  • Additional commits viewable in compare view

Updates github.com/docker/docker from 25.0.4+incompatible to 27.0.0+incompatible

Release notes

Sourced from github.com/docker/docker's releases.

v27.0.0-rc.1

27.0.0-rc.1

For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:

New

  • Add support to docker stack deploy for driver_opts in a service's networks. docker/cli#5125
  • containerd image store: Add --platform flag to docker image push and improve the default behavior when not all platforms of the multi-platform image are available locally. docker/cli#4984, moby/moby#47679

Bug fixes and enhancements

  • Fix a bug causing the docker CLI to leak UNIX sockets in $TMPDIR in some cases. docker/cli#5146
  • Don't ignore a custom seccomp profile when used in conjunction with --privileged moby/moby#47500
  • rootless: overlay2: support native overlay diff when using rootless-mode in kernel 5.11 and above moby/moby#47605
  • Fix the StartInterval default value of healthcheck to reflect the documented value of 5s. moby/moby#47799
  • Allow sysctls to be set per-interface during container creation and network connection. moby/moby#47686
  • A ULA base prefix is automatically added to default-address-pools if this parameter wasn't manually configured, or if it contains no IPv6 prefixes. This ULA prefix is derived from the Engine host ID such that it's unique across hosts and over time. moby/moby#47853
  • Enable ip6tables by default, it is no longer --experimental. moby/moby#47747
  • Introduce a new subnet allocator that can deal with IPv6 address pools of any size moby/moby#47768
  • For IPv6-enabled bridge networks, do not attempt to replace the bridge's kernel-assigned link local address with fe80::1. moby/moby#47787
  • Fix docker save and docker load not ending on the daemon side when the operation was cancelled (eg. Ctrl+C) moby/moby#47629
  • Container's StartedAt property is now recorded before container startup, guaranteeing that the StartedAt is always before FinishedAt. moby/moby#47003
  • Run an internal resolver on the default bridge network to forward DNS requests to external resolvers, even if they are on localhost addresses, or IPv6 addresses when the default bridge does not have IPv6 connectivity. To preserve existing behavior, the internal resolver on the default bridge will not resolve container names, unlike the resolver on user-defined networks. Do not use Google's DNS servers as a fallback when no external DNS servers are supplied in configuration via --dns or available from the host's resolv.conf. moby/moby#47602
  • If firewalld is running on the host, create policy docker-forwarding to allow forwarding from any zone to the docker zone. This makes it possible to configure a bridge network with a routable IPv6 address, and no masquerading. moby/moby#47745
  • IPv6 can now be enabled by default on all custom networks using dockerd --default-network-opt=bridge=com.docker.network.enable_ipv6=true (and the matching json option). moby/moby#47867
  • The internal DNS resolver used by Windows containers on Windows will now forward requests to external DNS servers by-default, this enables nslookup to resolve external hostnames. This behaviour can be disabled via daemon.json, using "features": { "windows-dns-proxy": false }, the feature flag will be removed in a future release. moby/moby#47826
  • Document the use of driver-opt in the CLI for setting per-interface sysctls. docker/cli#4994
  • Print a warning when the CLI does not have permissions to read the configuration file. docker/cli#5077

API

  • containerd image store: POST /images/{name}/push now supports a platform parameter (JSON encoded OCI Platform type) that allows selecting a specific platform-manifest from the multi-platform image. This is experimental and may change in future API versions. moby/moby#47679
  • ContainerList api returns container annotations. moby/moby#47866
  • Deprecate the daemon flag --api-cors-header and the corresponding daemon.json config param. These will be removed in the next major release. moby/moby#45313
  • Client API callback functions client.RequestPrivilegeFunc, client.ImageSearchOptions.AcceptPermissionsFunc and image.ImportOptions.PrivilegeFunc now require a context parameter. moby/moby#47536
  • Remove deprecated ImageImportOptions, ImageCreateOptions, ImagePullOptions, ImagePushOptions, ImageListOptions, ImageRemoveOptions aliases for Image types. moby/moby#47900
  • Move ExecConfig, ContainerExecInspect, ContainersPruneReport, ContainerPathStat, CopyToContainerOptions, ExecStartCheck and ContainerStats to api/types/container; ImagesPruneReport, ImageImportSource and ImageLoadResponse to api/types/image; ExecStartOptions to api/types/backend; VolumesPruneReport to api/types/volume; EventsOptions to api/types/events; ImageSearchOptions to api/types/registry. moby/moby#47936
  • Deprecate non-standard (config) fields in image inspect output. The Config field returned by this endpoint (used for "image inspect") returned additional fields that are not part of the image's configuration and not part of the [Docker Image Spec] and the [OCI Image Spec]. These fields are never set (and always return the default value for the type), but are not omitted in the response when left empty. As these fields were not intended to be part of the image configuration response, they are deprecated, and will be removed in the future API versions. The following fields are currently included in the API response, but are not part of the underlying image's Config, and deprecated:
    • Hostname

... (truncated)

Commits

Updates github.com/gin-contrib/cors from 1.7.0 to 1.7.2

Release notes

Sourced from github.com/gin-contrib/cors's releases.

v1.7.2

Changelog

Enhancements

  • f952c06051ba36d87edf074af15b36a56e5d6e16: chore: improve changelog generation and categorization (@​appleboy)
  • c4d5284215fd8858cb5b88b3c5d5fab2a6b43d91: chore: update dependencies and refactor imports (@​appleboy)

Build process updates

  • 064064f7214ebfe75a019e6534b92f1ce709065e: ci: update Go workflow linting action to v5 (@​appleboy)

v1.7.1

Changelog

Enhancements

  • 71a48a2 chore: update third-party dependencies to latest versions

Others

  • 88cbcd0 ci: update GitHub Actions workflows for Go projects
  • 84d0919 test: refactor CORS tests and expand coverage
Commits
  • 064064f ci: update Go workflow linting action to v5
  • c4d5284 chore: update dependencies and refactor imports
  • f952c06 chore: improve changelog generation and categorization
  • 71a48a2 chore: update third-party dependencies to latest versions
  • 88cbcd0 ci: update GitHub Actions workflows for Go projects
  • 84d0919 test: refactor CORS tests and expand coverage
  • See full diff in compare view

Updates github.com/gin-gonic/gin from 1.9.1 to 1.10.0

Release notes

Sourced from github.com/gin-gonic/gin's releases.

v1.10.0

Changelog

Features

  • 5f458dd1a6d631f324e4af9a4f5429ffdf199342: feat(auth): add proxy-server authentication (#3877) (@​EndlessParadox1)
  • 7a865dcf1dbe6ec52e074b1ddce830d278eb72cf: feat(bind): ShouldBindBodyWith shortcut and change doc (#3871) (@​RedCrazyGhost)
  • a18219566ca25fc51e6d2886bed849c6c3a0cd12: feat(binding): Support custom BindUnmarshaler for binding. (#3933) (@​dkkb)
  • fd1faaded01aef14a3955ec076f1cbeb9cb87775: feat(binding): support override default binding implement (#3514) (@​ssfyn)
  • ac5e84d93ce34359bfd2f346cb2971ea754d83e3: feat(engine): Added OptionFunc and With (#3572) (@​flc1125)
  • c6ae2e69666a2b36203b29650ee75d172c725c66: feat(logger): ability to skip logs based on user-defined logic (#3593) (@​palvaneh)

Bug fixes

  • d4e413648824333726ef65de5defc457e9dbf095: Revert "fix(uri): query binding bug (#3236)" (#3899) (@​appleboy)
  • 3dc1cd6572b4e3a0cd170a15debe546c2c72294f: fix(binding): binding error while not upload file (#3819) (#3820) (@​clearcodecn)
  • 82bcd6d39bfe9c22032764ff3b0b6f8ef1673e49: fix(binding): dereference pointer to struct (#3199) (@​echovl)
  • 2b1da2b0b38dfc5d5841266037c0c8b249eca1dd: fix(context): make context Value method adhere to Go standards (#3897) (@​FarmerChillax)
  • f70dd00b00bc0a46cb18b55bfe1f918d5d29b511: fix(engine): fix unit test (#3878) (@​flc1125)
  • 86ff4a64c7efe1a1c875529835eeef9e15de1e86: fix(header): Allow header according to RFC 7231 (HTTP 405) (#3759) (@​Crocmagnon)
  • 09f8224593e31edf3c58ab3f13bc31ef53473733: fix(route): Add fullPath in context copy (#3784) (@​KarthikReddyPuli)
  • 9f598a31aafb92d675f38f1c8371e4ac76f858bf: fix(router): catch-all conflicting wildcard (#3812) (@​FirePing32)
  • 4a40f8f1a49b9086b461d97e167c3b9628d8b923: fix(sec): upgrade golang.org/x/crypto to 0.17.0 (#3832) (@​chncaption)
  • 386d244068db3693f938db4ead6d1f5f85942e3f: fix(tree): correctly expand the capacity of params (#3502) (@​georgijd-form3)
  • 8790d08909fc4d193c6c787c9c72f3089168f411: fix(uri): query binding bug (#3236) (@​illiafox)
  • 44d0dd70924dd154e3b98bc340accc53484efa9c: fix: Add pointer support for url query params (#3659) (#3666) (@​omkar-foss)
  • 646312aef6a34095476ac846b0920db5fb24b2ea: fix: protect Context.Keys map when call Copy method (#3873) (@​kingcanfish)

Enhancements

  • d4a64265f21993368c90602c18e778bf04ef36db: chore(CI): update release args (#3595) (@​qloog)
  • bb3519d26f52835cf00e5e430b52651a9c378c97: chore(IP): add TrustedPlatform constant for Fly.io. (#3839) (@​ab)
  • 1b3c0859693fc85290c01ba098b1440d4776549f: chore(debug): add ability to override the debugPrint statement (#2337) (@​josegonzalez)
  • a64286a7760be2031209686ce4d36e99d42dd419: chore(deps): update dependencies to latest versions (#3835) (@​appleboy)
  • 9c61295efeea99f6c9d1722294f1bf61d8e464d6: chore(header): Add support for RFC 9512: application/yaml (#3851) (@​vincentbernat)
  • a481ee2897af1e368de5c919fbeb21b89aa26fc7: chore(http): use white color for HTTP 1XX (#3741) (@​viralparmarme)
  • c964ad370bbe007f1b18a7570f058a66f05fbe1f: chore(optimize): the ShouldBindUri method of the Context struct (#3911) (@​1911860538)
  • 739d2d9c80e0298dafb5df1c30bae35d63935d6c: chore(perf): Optimize the Copy method of the Context struct (#3859) (@​1911860538)
  • 3ea8bd99fbb4e499d70a0c8e1ce2ce4b7c6348b6: chore(refactor): modify interface check way (#3855) (@​demoManito)
  • ab8042e9e5370bbe0e93ea5adc6e74ae4c5df95e: chore(request): check reader if it's nil before reading (#3419) (@​noahyao1024)
  • 0d9dbbb44551a872d30fd89d4d55ba0515d646fd: chore(security): upgrade Protobuf for CVE-2024-24786 (#3893) (@​Fotkurz)
  • ecdbbbe9483dd12222f2085f717a2c7cb5ac55fe: chore: refactor CI and update dependencies (#3848) (@​appleboy)
  • 39089af62535b27aa63608f341c0a339aa88f64e: chore: refactor configuration files for better readability (#3951) (@​appleboy)
  • 160c1730efd30046239c802d5b9f895a708c3f4c: chore: update GitHub Actions configuration (#3792) (@​appleboy)
  • 0397e5e0c0f8f8176c29f7edd8f1bff8e45df780: chore: update changelog categories and improve documentation (#3917) (@​appleboy)
  • 62b50cfbc0de877207ff74c160a23dff6394f563: chore: update dependencies to latest versions (#3694) (@​appleboy)
  • 638aa19e7d30513f7bc777c62ff8558fd5f90ea5: chore: update external dependencies to latest versions (#3950) (@​appleboy)
  • c6f90df4e0c888c69524307cc35952ec2e7ead41: chore: update various Go dependencies to latest versions (#3901) (@​appleboy)

Build process updates

  • 78f4687875d72d10392f8a77008cbefdec4c0aa0: build(codecov): Added a codecov configuration (#3891) (@​flc1125)
  • 56dc72c4d5b1076fc9c6b81f57299739c11910b8: ci(Makefile): vet command add .PHONY (#3915) (@​imalasong)
  • 8ab47c694ea93fdb442b617961ce9b3171151749: ci(lint): update tooling and workflows for consistency (#3834) (@​appleboy)
  • 8acbe657f1c140e3fba38f869978cab2376500c9: ci(release): refactor changelog regex patterns and exclusions (#3914) (@​appleboy)
  • 000fdb3ac95c7c318440afbd98eaf60f7430a1db: ci(testing): add go1.22 version (#3842) (@​appleboy)

Documentation updates

... (truncated)

Changelog

Sourced from github.com/gin-gonic/gin's changelog.

Gin v1.10.0

Features

Bug fixes

Enhancements

Build process updates

... (truncated)

Commits
  • 75ccf94 feat: update version constant to v1.10.0 (#3952)
  • 39089af chore: refactor configuration files for better readability (#3951)
  • 638aa19 chore: update external dependencies to latest versions (#3950)
  • a182195 feat(binding): Support custom BindUnmarshaler for binding. (#3933)
  • b4f66e9 chore(deps): bump github.com/bytedance/sonic from 1.11.3 to 1.11.6 (#3940)
  • f80ade7 chore(deps): bump golangci/golangci-lint-action from 4 to 5 (#3941)
  • 0397e5e chore: update changelog categories and improve documentation (#3917)
  • c6f90df chore: update various Go dependencies to latest versions (#3901)
  • 8acbe65 ci(release): refactor changelog regex patterns and exclusions (#3914)
  • 56dc72c ci(Makefile): vet command add .PHONY (#3915)
  • Additional commits viewable in compare view

Updates github.com/go-git/go-git/v5 from 5.11.0 to 5.12.0

Release notes

Sourced from github.com/go-git/go-git/v5's releases.

v5.12.0

What's Changed

New Contributors

Full Changelog: go-git/go-git@v5.11.0...v5.12.0

Commits
  • 302ddde Merge pull request #1060 from go-git/dependabot/go_modules/github.com/gliderl...
  • 6bba34d build: bump github.com/gliderlabs/ssh from 0.3.6 to 0.3.7
  • feaeb36 Merge pull request #937 from matejrisek/feature/rename-short-fields
  • 7959a42 Merge pull request #1052 from go-git/dependabot/go_modules/github.com/skeema/...
  • 4c17ce7 build: bump github.com/skeema/knownhosts from 1.2.1 to 1.2.2
  • 3f77e6f Merge pull request #1048 from pjbgf/fix-reset-validation
  • 6af38e0 Merge pull request #1047 from avoidalone/master
  • e6c3e58 Merge pull request #1044 from pjbgf/ff-merge
  • 04f7b23 *: fix some comments
  • f4f1a87 Merge pull request #971 from nodivbyzero/fix-177-diff-print-file-stats
  • Additional commits viewable in compare view

Updates github.com/google/go-containerregistry from 0.19.0 to 0.19.2

Release notes

Sourced from github.com/google/go-containerregistry's releases.

v0.19.2

What's Changed

New Contributors

Full Changelog: google/go-containerregistry@v0.19.1...v0.19.2

v0.19.1

What's Changed

Full Changelog: google/go-containerregistry@v0.19.0...v0.19.1

Commits

Updates github.com/gorilla/websocket from 1.5.1 to 1.5.3

Release notes

Sourced from github.com/gorilla/websocket's releases.

v1.5.3

Important change

This reverts the websockets package back to gorilla/websocket@931041c

What's Changed

…h 15 updates

Bumps the gomod-dependencies group with 12 updates in the /server directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/disgoorg/disgo](https://github.com/disgoorg/disgo) | `0.17.2` | `0.18.7` |
| [github.com/docker/docker](https://github.com/docker/docker) | `25.0.4+incompatible` | `27.0.0+incompatible` |
| [github.com/gin-contrib/cors](https://github.com/gin-contrib/cors) | `1.7.0` | `1.7.2` |
| [github.com/gin-gonic/gin](https://github.com/gin-gonic/gin) | `1.9.1` | `1.10.0` |
| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.11.0` | `5.12.0` |
| [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry) | `0.19.0` | `0.19.2` |
| [github.com/gorilla/websocket](https://github.com/gorilla/websocket) | `1.5.1` | `1.5.3` |
| [github.com/jmoiron/sqlx](https://github.com/jmoiron/sqlx) | `1.3.5` | `1.4.0` |
| [github.com/loopfz/gadgeto](https://github.com/loopfz/gadgeto) | `0.11.3` | `0.11.4` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.19.0` | `1.19.1` |
| [gorm.io/driver/postgres](https://github.com/go-gorm/postgres) | `1.5.7` | `1.5.9` |
| [modernc.org/sqlite](https://gitlab.com/cznic/sqlite) | `1.29.3` | `1.30.1` |



Updates `github.com/disgoorg/disgo` from 0.17.2 to 0.18.7
- [Release notes](https://github.com/disgoorg/disgo/releases)
- [Commits](disgoorg/disgo@v0.17.2...v0.18.7)

Updates `github.com/docker/docker` from 25.0.4+incompatible to 27.0.0+incompatible
- [Release notes](https://github.com/docker/docker/releases)
- [Commits](https://github.com/docker/docker/commits)

Updates `github.com/gin-contrib/cors` from 1.7.0 to 1.7.2
- [Release notes](https://github.com/gin-contrib/cors/releases)
- [Changelog](https://github.com/gin-contrib/cors/blob/master/.goreleaser.yaml)
- [Commits](gin-contrib/cors@v1.7.0...v1.7.2)

Updates `github.com/gin-gonic/gin` from 1.9.1 to 1.10.0
- [Release notes](https://github.com/gin-gonic/gin/releases)
- [Changelog](https://github.com/gin-gonic/gin/blob/master/CHANGELOG.md)
- [Commits](gin-gonic/gin@v1.9.1...v1.10.0)

Updates `github.com/go-git/go-git/v5` from 5.11.0 to 5.12.0
- [Release notes](https://github.com/go-git/go-git/releases)
- [Commits](go-git/go-git@v5.11.0...v5.12.0)

Updates `github.com/google/go-containerregistry` from 0.19.0 to 0.19.2
- [Release notes](https://github.com/google/go-containerregistry/releases)
- [Changelog](https://github.com/google/go-containerregistry/blob/main/.goreleaser.yml)
- [Commits](google/go-containerregistry@v0.19.0...v0.19.2)

Updates `github.com/gorilla/websocket` from 1.5.1 to 1.5.3
- [Release notes](https://github.com/gorilla/websocket/releases)
- [Commits](gorilla/websocket@v1.5.1...v1.5.3)

Updates `github.com/jmoiron/sqlx` from 1.3.5 to 1.4.0
- [Release notes](https://github.com/jmoiron/sqlx/releases)
- [Commits](jmoiron/sqlx@v1.3.5...v1.4.0)

Updates `github.com/loopfz/gadgeto` from 0.11.3 to 0.11.4
- [Release notes](https://github.com/loopfz/gadgeto/releases)
- [Commits](loopfz/gadgeto@v0.11.3...v0.11.4)

Updates `github.com/prometheus/client_golang` from 1.19.0 to 1.19.1
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.19.0...v1.19.1)

Updates `golang.org/x/crypto` from 0.21.0 to 0.23.0
- [Commits](golang/crypto@v0.21.0...v0.23.0)

Updates `golang.org/x/net` from 0.22.0 to 0.25.0
- [Commits](golang/net@v0.22.0...v0.25.0)

Updates `gorm.io/driver/postgres` from 1.5.7 to 1.5.9
- [Commits](go-gorm/postgres@v1.5.7...v1.5.9)

Updates `gorm.io/gorm` from 1.25.7 to 1.25.10
- [Release notes](https://github.com/go-gorm/gorm/releases)
- [Commits](go-gorm/gorm@v1.25.7...v1.25.10)

Updates `modernc.org/sqlite` from 1.29.3 to 1.30.1
- [Commits](https://gitlab.com/cznic/sqlite/compare/v1.29.3...v1.30.1)

---
updated-dependencies:
- dependency-name: github.com/disgoorg/disgo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-dependencies
- dependency-name: github.com/docker/docker
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gomod-dependencies
- dependency-name: github.com/gin-contrib/cors
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-dependencies
- dependency-name: github.com/gin-gonic/gin
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-dependencies
- dependency-name: github.com/go-git/go-git/v5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-dependencies
- dependency-name: github.com/google/go-containerregistry
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-dependencies
- dependency-name: github.com/gorilla/websocket
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-dependencies
- dependency-name: github.com/jmoiron/sqlx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-dependencies
- dependency-name: github.com/loopfz/gadgeto
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-dependencies
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-dependencies
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-dependencies
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-dependencies
- dependency-name: gorm.io/driver/postgres
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-dependencies
- dependency-name: gorm.io/gorm
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-dependencies
- dependency-name: modernc.org/sqlite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants