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

fix(deps): update module github.com/pressly/goose/v3 to v3.22.1 #286

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 3, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/pressly/goose/v3 v3.21.1 -> v3.22.1 age adoption passing confidence

Release Notes

pressly/goose (github.com/pressly/goose/v3)

v3.22.1

Compare Source

  • Upgrade dependencies and rebuild binaries with latest Go version (go1.23.1)

v3.22.0

Compare Source

  • Minimum Go version is now 1.21
  • Add Unwrap to PartialError (#​815)
  • Allow flags anywhere on the CLI (#​814)

goose uses the default Go flag parsing library, which means flags must be defined before the
first positional argument. We've updated this behavior to allow flags to be defined anywhere. For
more details, see blog post.

  • Update WithDisableGlobalRegistry behavior (#​783). When set, this will ignore globally-registered
    migrationse entirely instead of the previous behavior of raising an error. Specifically, the
    following check is removed:
if len(global) > 0 {
	return nil, errors.New("global registry disabled, but provider has registered go migrations")
}

This enables creating isolated goose provider(s) in legacy environments where global migrations may
be registered. Without updating this behavior, it would be impossible to use
WithDisableGlobalRegistry in combination with provider-scoped WithGoMigrations.

  • Postgres, updated schema to use identity instead of serial and make tstamp not nullable (#​556)
- id serial NOT NULL,
+ id integer PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY,

- tstamp timestamp NULL default now(),
+ tstamp timestamp NOT NULL DEFAULT now()
  • MySQL, updated schema to not use SERIAL alias (#​816)
- id serial NOT NULL,
+ id bigint(20) unsigned NOT NULL AUTO_INCREMENT,

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested a review from a team as a code owner September 3, 2024 14:35
Copy link
Contributor Author

renovate bot commented Sep 3, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 1 additional dependency was updated

Details:

Package Change
github.com/sethvargo/go-retry v0.2.4 -> v0.3.0

@renovate renovate bot requested a review from a team as a code owner September 3, 2024 14:35
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch 2 times, most recently from fc788a9 to df57270 Compare September 13, 2024 17:03
@renovate renovate bot changed the title fix(deps): update module github.com/pressly/goose/v3 to v3.22.0 fix(deps): update module github.com/pressly/goose/v3 to v3.22.1 Sep 17, 2024
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from df57270 to 9e3513b Compare September 17, 2024 13:28
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch 3 times, most recently from 933be1d to f405db1 Compare October 2, 2024 21:51
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from f405db1 to 6393ab5 Compare October 7, 2024 14:01
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 6393ab5 to a9566c6 Compare October 24, 2024 15:14
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from a9566c6 to afecd5a Compare October 24, 2024 15:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants