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 go-updates group with 5 updates #18857

Merged
merged 1 commit into from
Feb 1, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 1, 2025

Bumps the go-updates group with 5 updates:

Package From To
github.com/go-git/go-git/v5 5.13.1 5.13.2
github.com/go-resty/resty/v2 2.16.2 2.16.5
github.com/morkid/paginate 1.1.8 1.1.10
github.com/pressly/goose/v3 3.24.0 3.24.1
github.com/testcontainers/testcontainers-go 0.34.0 0.35.0

Updates github.com/go-git/go-git/v5 from 5.13.1 to 5.13.2

Release notes

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

v5.13.2

What's Changed

Full Changelog: go-git/go-git@v5.13.1...v5.13.2

Commits
  • 2c68247 Merge pull request #1383 from go-git/dependabot/go_modules/github.com/ProtonM...
  • d462c2e Merge pull request #1359 from BeChris/issue1150-v5
  • 32ac23a Merge pull request #1392 from go-git/dependabot/go_modules/github.com/pjbgf/s...
  • 93e635a build: bump github.com/pjbgf/sha1cd from 0.3.0 to 0.3.2
  • b2bb975 git: worktree_status, took into account code review remarks
  • 518ac88 git: worktree_status, fix adding dot slash files to working tree (backported ...
  • 21b3150 build: bump github.com/ProtonMail/go-crypto from 1.1.4 to 1.1.5
  • 189e7e4 Merge pull request #1361 from BeChris/issue1176-v5
  • 654815a Merge pull request #1377 from go-git/dependabot/go_modules/github.com/elazarl...
  • 91dbdb9 Merge pull request #1376 from go-git/dependabot/github_actions/github/codeql-...
  • Additional commits viewable in compare view

Updates github.com/go-resty/resty/v2 from 2.16.2 to 2.16.5

Release notes

Sourced from github.com/go-resty/resty/v2's releases.

v2.16.5

Release Notes

Bug Fixes

Documentation

Full Changelog: go-resty/resty@v2.16.4...v2.16.5

v2.16.4

Release Notes

Bug Fixes

Documentation

New Contributors

Full Changelog: go-resty/resty@v2.16.3...v2.16.4

v2.16.3

Release Notes

Full Changelog: go-resty/resty@v2.16.2...v2.16.3

Commits

Updates github.com/morkid/paginate from 1.1.8 to 1.1.10

Release notes

Sourced from github.com/morkid/paginate's releases.

v1.1.10

add programmatically pagination, no http request needed

Commits

Updates github.com/pressly/goose/v3 from 3.24.0 to 3.24.1

Release notes

Sourced from github.com/pressly/goose/v3's releases.

v3.24.1

What's Changed

  • Fix regression (v3.23.1 and v3.24.0) in postgres migration table existence check for non-default schema. (#882, #883, #884).

New Contributors

Full Changelog: pressly/goose@v3.24.0...v3.24.1

Changelog

Sourced from github.com/pressly/goose/v3's changelog.

[v3.24.1]

  • Fix regression (v3.23.1 and v3.24.0) in postgres migration table existence check for non-default schema. (#882, #883, #884).
Commits
  • dc90c17 Release v3.24.1
  • 4337eb2 fix: use current_schema for postgres TableExists, if schema is unspecified (#...
  • 779024d docs: remove depreceated call to Run and replace with RunContext (#885)
  • 3c91df1 fix: use schema name if explicitly set on table name for table existence (#883)
  • See full diff in compare view

Updates github.com/testcontainers/testcontainers-go from 0.34.0 to 0.35.0

Release notes

Sourced from github.com/testcontainers/testcontainers-go's releases.

v0.35.0

What's Changed

⚠️ Breaking Changes

  • feat(termination)!: make container termination timeout configurable (#2926) @​moogacs

The container.Terminate(ctx) method now accepts an extra variadic argument with termination options. The breaking change only affects users assigning this method to a variable, receiving a compile-time error. The rest of the users will simply satisfy the new signature with an empty slice of termination options.

The ShouldPrintBuildLog function of the ContainerRequest has been removed. Instead, a BuildLogWriter function appears, that returns the user-defined io.Writer for writing the image-build logs. In case there is no writer, and the FromDockerfile.PrintBuildLog is set to true, os.Stderr would be used.

  • feat(gcloud)!: add support to seed data when using RunBigQueryContainer (#2523) @​mtellis2

Users of the GCloud module and the WithProjectID option must handle the error that this option now returns. This can be get at compile time, as all the functional options for container customisers must return an error.

The types and functions of the PortForwarder type are now private, as they are implementation details of the library, so there is no need for them to be exposed.

Usages of the GenericProviderOptions.DefaultNetwork field must be removed, as this field is now private. The container runtime should provide the default network under the hood.

🔒 Security

🚀 Features

🐛 Bug Fixes

... (truncated)

Commits
  • add4ac3 chore: use new version (v0.35.0) in modules and examples
  • 3330dc1 feat(postgres): ssl for postgres (#2473)
  • 6ec91f1 feat(ollama): support calling the Ollama local process (#2923)
  • 632249a chore(deps): bump jinja2 from 3.1.4 to 3.1.5 (#2935)
  • 7ca837d chore(deps): bump sonarsource/sonarcloud-github-action (#2933)
  • 6f718ee feat(termination)!: make container termination timeout configurable (#2926)
  • eb5b8ed chore(deps): bump slackapi/slack-github-action from 1.26.0 to 2.0.0 (#2934)
  • cc55f13 chore(deps): bump github/codeql-action from 3.25.15 to 3.28.0 (#2932)
  • 63fad4d feat(wait): log sub match callback (#2929)
  • 4f67ae0 fix: Handle nil value in CleanupNetwork (#2928)
  • Additional commits viewable 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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 go-updates group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.13.1` | `5.13.2` |
| [github.com/go-resty/resty/v2](https://github.com/go-resty/resty) | `2.16.2` | `2.16.5` |
| [github.com/morkid/paginate](https://github.com/morkid/paginate) | `1.1.8` | `1.1.10` |
| [github.com/pressly/goose/v3](https://github.com/pressly/goose) | `3.24.0` | `3.24.1` |
| [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) | `0.34.0` | `0.35.0` |


Updates `github.com/go-git/go-git/v5` from 5.13.1 to 5.13.2
- [Release notes](https://github.com/go-git/go-git/releases)
- [Commits](go-git/go-git@v5.13.1...v5.13.2)

Updates `github.com/go-resty/resty/v2` from 2.16.2 to 2.16.5
- [Release notes](https://github.com/go-resty/resty/releases)
- [Commits](go-resty/resty@v2.16.2...v2.16.5)

Updates `github.com/morkid/paginate` from 1.1.8 to 1.1.10
- [Release notes](https://github.com/morkid/paginate/releases)
- [Commits](morkid/paginate@v1.1.8...v1.1.10)

Updates `github.com/pressly/goose/v3` from 3.24.0 to 3.24.1
- [Release notes](https://github.com/pressly/goose/releases)
- [Changelog](https://github.com/pressly/goose/blob/main/CHANGELOG.md)
- [Commits](pressly/goose@v3.24.0...v3.24.1)

Updates `github.com/testcontainers/testcontainers-go` from 0.34.0 to 0.35.0
- [Release notes](https://github.com/testcontainers/testcontainers-go/releases)
- [Commits](testcontainers/testcontainers-go@v0.34.0...v0.35.0)

---
updated-dependencies:
- dependency-name: github.com/go-git/go-git/v5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-updates
- dependency-name: github.com/go-resty/resty/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-updates
- dependency-name: github.com/morkid/paginate
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-updates
- dependency-name: github.com/pressly/goose/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-updates
- dependency-name: github.com/testcontainers/testcontainers-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Feb 1, 2025
@davidtaikocha davidtaikocha merged commit ed4471f into main Feb 1, 2025
10 checks passed
@davidtaikocha davidtaikocha deleted the dependabot/go_modules/go-updates-63e7a0de6c branch February 1, 2025 10:12
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant