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

Bump github.com/pressly/goose/v3 from 3.5.3 to 3.10.0 #53

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

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 10, 2023

Bumps github.com/pressly/goose/v3 from 3.5.3 to 3.10.0.

Release notes

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

v3.10.0

Changelog (for humans)

  • Bumps the minimum Go version to 1.18
  • Add a new command: goose validate .. enables you to validate your SQL / Go migrations. Very handy for catching errors in CI when the migration is first written
  • Removes tls override in MySQL DSN
  • ClickHouse down migrations (deleting version) now uses set mutations_sync 2 for synchronization

Changelog

  • 2a6d7c092fd9cb8cf18559be3914a80c9fdaba01: build: bump minimum Go version to 1.18 (update CI) (#458) (@​mfridman)
  • 935e8833e84713bc96a86c61c0312b9db11b6988: build: golangci-lint add skip-pkg-cache: true (@​mfridman)
  • 7e6e5120a2ea56f47f454aaa852dea09dfbb6099: build: update CI go version references and upgrade deps (#473) (@​mfridman)
  • 0af59c1a4ea2736e5cb4092891b7d2ff84507da4: build: upgrade dependencies (#471) (@​mfridman)
  • c2f9bcbc804e55a01ec33254c4998b03e97b6f07: ci: drop 1.17 tests and add 1.20-rc.3 (#455) (@​mfridman)
  • ad906520422008360de7c76e1698f6e0a6e4a918: clickhouse: set mutations_sync 2 for delete version (#454) (@​chapsuk)
  • 8c25e3bd171fd491170f79b26ab06f8980eb4988: feat: goose validate command (#449) (@​mfridman)
  • b4af752f57daec3b65ea1ff471ad3c0582ed76a8: fix test race condition and remove verbose global in parser (#457) (@​mfridman)
  • b62288d2fe5f8bd34d256ed899dee068d1f2f9e5: fix: exclude Go test files from migrations (#474) (@​ipoerner)
  • 60610d3ae34e3e6ac840374adb20b88185eaa197: remove tls override from mysql dsn normalizing (#468) (@​jonas-jonas)

v3.9.0

Changelog

Added

  • Add support for *sql.DB-registered Go migrations (#450). Kudos to @​cbodonnell for helping with this feature.

There are 2 new func types:

// GoMigration is a Go migration func that is run within a transaction.
type GoMigration func(tx *sql.Tx) error
// GoMigrationNoTx is a Go migration func that is run outside a transaction.
type GoMigrationNoTx func(db *sql.DB) error

And 2 new functions to register Go migrations:

// AddMigrationNoTx adds Go migrations that will be run outside transaction.
func AddMigrationNoTx(up, down GoMigrationNoTx) { ... }
// AddNamedMigrationNoTx adds named Go migrations that will be run outside transaction.
func AddNamedMigrationNoTx(filename string, up, down GoMigrationNoTx) { ... }

  • Add goose env command to expose set environment variables (#443)
  • Add golangci-lint to enforce standards within the project (#456)

... (truncated)

Commits
  • 935e883 build: golangci-lint add skip-pkg-cache: true
  • 7e6e512 build: update CI go version references and upgrade deps (#473)
  • b62288d fix: exclude Go test files from migrations (#474)
  • 0af59c1 build: upgrade dependencies (#471)
  • 8c25e3b feat: goose validate command (#449)
  • 60610d3 remove tls override from mysql dsn normalizing (#468)
  • 2a6d7c0 build: bump minimum Go version to 1.18 (update CI) (#458)
  • b4af752 fix test race condition and remove verbose global in parser (#457)
  • c2f9bcb ci: drop 1.17 tests and add 1.20-rc.3 (#455)
  • ad90652 clickhouse: set mutations_sync 2 for delete version (#454)
  • Additional commits viewable in compare view

Dependabot compatibility score

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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [github.com/pressly/goose/v3](https://github.com/pressly/goose) from 3.5.3 to 3.10.0.
- [Release notes](https://github.com/pressly/goose/releases)
- [Changelog](https://github.com/pressly/goose/blob/master/.goreleaser.yml)
- [Commits](pressly/goose@v3.5.3...v3.10.0)

---
updated-dependencies:
- dependency-name: github.com/pressly/goose/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 10, 2023
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants