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

Update module github.com/pressly/goose/v3 to v3.22.1 #7

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 13, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/pressly/goose/v3 v3.6.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,

v3.21.1

Compare Source

  • Add GetVersions method to goose.Provider, returns the current (max db) version and the latest
    (max filesystem) version. (#​756)

  • Clarify GetLatestVersion method MUST return ErrVersionNotFound if no latest migration is
    found. Previously it was returning a -1 and nil error, which was inconsistent with the rest of the
    API surface.

  • Add GetLatestVersion implementations to all existing dialects. This is an optimization to avoid
    loading all migrations when only the latest version is needed. This uses the max function in SQL
    to get the latest version_id irrespective of the order of applied migrations.

    • Refactor existing portions of the code to use the new GetLatestVersion method.

v3.21.0

Compare Source

  • Retracted. Broken release, please use v3.21.1 instead.

v3.20.0

Compare Source

  • Expand the Store interface by adding a GetLatestVersion method and make the interface public.
  • Add a (non-blocking) method to check if there are pending migrations to the goose.Provider
    (#​751):
func (p *Provider) HasPending(context.Context) (bool, error) {}

The underlying implementation does not respect the SessionLocker (if one is enabled) and can
be used to check for pending migrations without blocking or being blocked by other operations.

  • The methods .Up, .UpByOne, and .UpTo from goose.Provider will invoke .HasPending before
    acquiring a lock with SessionLocker (if enabled). This addresses an edge case in
    Kubernetes-style deployments where newer pods with long-running migrations prevent older pods -
    which have all known migrations applied - from starting up due to an advisory lock. For more
    detailhttps://github.com/pressly/goose/pull/507#discussion_r1266498077_r1266498077 and #​751.
  • Move integration tests to ./internal/testing and make it a separate Go module. This will allow
    us to have a cleaner top-level go.mod file and avoid imports unrelated to the goose project. See
    integration/README.md
    for more details. This shouldn't affect users of the goose library.

v3.19.2

Compare Source

  • Remove duckdb support. The driver uses Cgo and we've decided to remove it until we can find a
    better solution. If you were using duckdb with goose, please let us know by opening an issue.

v3.19.1

Compare Source

  • Fix selecting dialect for redshift
  • Add GOOSE_MIGRATION_DIR documentation
  • Bump github.com/opencontainers/runc to v1.1.12 (security fix)
  • Update CI tests for go1.22
  • Make goose annotations case-insensitive
    • All -- +goose annotations are now case-insensitive. This means that -- +goose Up and -- +goose up are now equivalent. This change was made to improve the user experience and to make the
      annotations more consistent.

v3.19.0

Compare Source

  • Use [v3.19.1] instead. This was tagged but not released and does not contain release binaries.

v3.18.0

Compare Source

  • Add environment variable substitution for SQL migrations. (#​604)

    • This feature is disabled by default, and can be enabled by adding an annotation to the
      migration file:

      -- +goose ENVSUB ON
    • When enabled, goose will attempt to substitute environment variables in the SQL migration
      queries until the end of the file, or until the annotation -- +goose ENVSUB OFF is found. For
      example, if the environment variable REGION is set to us_east_1, the following SQL migration
      will be substituted to SELECT * FROM regions WHERE name = 'us_east_1';

      -- +goose ENVSUB ON
      -- +goose Up
      SELECT * FROM regions WHERE name = '${REGION}';
  • Add native Turso support with libsql driver. (#​658)

  • Fixed query for list migrations in YDB (#​684)

v3.17.0

Compare Source

  • Standardised the MIT license (#​647)
  • Improve provider Apply() errors, add ErrNotApplied when attempting to rollback a migration
    that has not been previously applied. (#​660)
  • Add WithDisableGlobalRegistry option to NewProvider to disable the global registry. (#​645)
  • Add -timeout flag to CLI to set the maximum allowed duration for queries to run. Default remains
    no timeout. (#​627)
  • Add optional logging in Provider when WithVerbose option is supplied. (#​668)

⚠️ Potential Breaking Change ⚠️

  • Update goose create to use UTC time instead of local time. (#​242)

v3.16.0

Compare Source

  • Added YDB support. (#​592)
  • Fix sqlserver query to ensure DB version. (#​601)
  • Allow setting / resetting the global Go migration registry. (#​602)
    • SetGlobalMigrations and ResetGlobalMigrations functions have been added.
    • Introduce NewGoMigration for constructing Go migrations.
  • Add initial implementation of goose.NewProvider.

🎉 Read more about this new feature here:

https://pressly.github.io/goose/blog/2023/goose-provider/

The motivation behind the Provider was simple - to reduce global state and make goose easier to
consume as an imported package.

Here's a quick summary:

  • Avoid global state
  • Make Provider safe to use concurrently
  • Unlock (no pun intended) new features, such as database locking
  • Make logging configurable
  • Better error handling with proper return values
  • Double down on Go migrations
  • ... and more!

v3.15.1

Compare Source

  • Fix regression that prevented registering Go migrations that didn't have the corresponding files
    available in the filesystem. (#​588)
    • If Go migrations have been registered globally, but there are no .go files in the filesystem,
      always include them.
    • If Go migrations have been registered, and there are .go files in the filesystem, only
      include
      those migrations. This was the original motivation behind #​553.
    • If there are .go files in the filesystem but not registered, raise an error. This is to
      prevent accidentally adding valid looking Go migration files without explicitly registering
      them.

v3.15.0

Compare Source

  • Fix sqlparser to avoid skipping the last statement when it's not terminated with a semicolon
    within a StatementBegin/End block. (#​580)
  • Add go1.21 to the CI matrix.
  • Bump minimum version of module in go.mod to go1.19.
  • Fix version output when installing pre-built binaries (#​585).

v3.14.0

Compare Source

  • Filter registered Go migrations from the global map with corresponding .go files from the
    filesystem.
    • The code previously assumed all .go migrations would be in the same folder, so this should not
      be a breaking change.
    • See #​553 for more details
  • Improve output log message for applied up migrations. #​562
  • Fix an issue where AddMigrationNoTxContext was registering the wrong source because it skipped
    too many frames. #​572
  • Improve binary version output when using go install.

v3.13.4

Compare Source

  • Fix pre-built binary versioning and make small improvements to GoReleaser config.
  • Fix an edge case in the sqlparser where the last up statement may be ignored if it's
    unterminated with a semicolon and followed by a -- +goose Down annotation.
  • Trim Logger interface to Printf and Fatalf methods only. Projects that have previously
    implemented the Logger interface should not be affected, and can remove unused methods.

v3.13.3

Compare Source

Fixed a bunch of build issues, see https://github.com/pressly/goose/releases/tag/v3.13.4 for correct changelog.

v3.13.2

Compare Source

v3.13.1

Compare Source

  • Add pre-built binaries with GoReleaser and update the build process.

v3.13.0

  • Add a changelog to the project, based on Keep a Changelog.
  • Update go.mod and retract all v3.12.X tags. They were accidentally pushed and contain a
    reference to the wrong Go module.
  • Fix up and up -allowing-missing behavior.
  • Fix empty version in log output.
  • Add new context.Context-aware functions and methods, for both sql and go migrations.
  • Return error when no migration files found or dir is not a directory.

v3.11.2

Compare Source

Changelog

Full Changelog: pressly/goose@v3.11.0...v3.11.2

v3.11.1

Compare Source

v3.11.0

Compare Source

Changelog

v3.10.0

Compare Source

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 hard coded tls override in MySQL DSN
  • ClickHouse down migrations (deleting version) now uses set mutations_sync 2 for synchronization

Changelog

v3.9.0

Compare Source

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)

Fixed

  • The SQL parser better handles leading/trailing empty lines and comments (#​446). Additional tests have been added to capture edge cases with the parser.

v3.8.0

Compare Source

Changelog

v3.7.0

Compare Source

Changelog


Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 October 13, 2022 19:43
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 95b976d to 18f7090 Compare October 21, 2022 13:55
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.7.0 Update module github.com/pressly/goose/v3 to v3.10.0 Mar 11, 2023
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 18f7090 to e6cee76 Compare March 11, 2023 23:21
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from e6cee76 to 082e1e6 Compare June 1, 2023 20:25
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.10.0 Update module github.com/pressly/goose/v3 to v3.11.2 Jun 1, 2023
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 082e1e6 to 697f7e2 Compare June 30, 2023 02:51
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.11.2 Update module github.com/pressly/goose/v3 to v3.13.0 Jun 30, 2023
@renovate
Copy link
Contributor Author

renovate bot commented Jun 30, 2023

⚠ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -d -t ./...
go: downloading github.com/cockroachdb/cockroach-go/v2 v2.2.14
go: downloading github.com/jmoiron/sqlx v1.3.5
go: downloading github.com/lib/pq v1.10.6
go: downloading github.com/gin-contrib/zap v0.1.0
go: downloading github.com/gin-gonic/gin v1.8.1
go: downloading github.com/zsais/go-gin-prometheus v0.1.0
go: downloading github.com/pressly/goose/v3 v3.20.0
go: downloading go.hollow.sh/toolbox v0.4.0
go: downloading github.com/spf13/cobra v1.6.0
go: downloading go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.36.3
go: downloading go.opentelemetry.io/otel v1.20.0
go: downloading github.com/spf13/viper v1.13.0
go: downloading go.uber.org/zap v1.23.0
go: downloading github.com/XSAM/otelsql v0.16.0
go: downloading github.com/spf13/pflag v1.0.5
go: downloading github.com/friendsofgo/errors v0.9.2
go: downloading github.com/volatiletech/null/v8 v8.1.2
go: downloading github.com/volatiletech/sqlboiler/v4 v4.13.0
go: downloading go.opentelemetry.io/otel/exporters/jaeger v1.11.0
go: downloading go.opentelemetry.io/otel/sdk v1.11.0
go: downloading github.com/volatiletech/strmangle v0.0.4
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/volatiletech/randomize v0.0.1
go: downloading github.com/jackc/pgx/v4 v4.16.1
go: downloading go.opentelemetry.io/otel/trace v1.20.0
go: downloading github.com/prometheus/client_golang v1.13.0
go: downloading github.com/sirupsen/logrus v1.8.1
go: downloading github.com/gin-contrib/sse v0.1.0
go: downloading github.com/mattn/go-isatty v0.0.20
go: downloading golang.org/x/net v0.23.0
go: downloading github.com/sethvargo/go-retry v0.2.4
go: downloading go.uber.org/multierr v1.11.0
go: downloading github.com/inconshreveable/mousetrap v1.0.1
go: downloading gopkg.in/square/go-jose.v2 v2.6.0
go: downloading github.com/go-logr/logr v1.3.0
go: downloading go.opentelemetry.io/otel/metric v1.20.0
go: downloading github.com/fsnotify/fsnotify v1.6.0
go: downloading github.com/mitchellh/mapstructure v1.5.0
go: downloading github.com/spf13/afero v1.9.2
go: downloading github.com/spf13/cast v1.5.0
go: downloading github.com/spf13/jwalterweatherman v1.1.0
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading go.uber.org/atomic v1.10.0
go: downloading golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df
go: downloading golang.org/x/sys v0.18.0
go: downloading github.com/volatiletech/inflect v0.0.1
go: downloading github.com/gofrs/uuid v4.0.0+incompatible
go: downloading github.com/jackc/pgconn v1.12.1
go: downloading github.com/jackc/pgio v1.0.0
go: downloading github.com/jackc/pgproto3/v2 v2.3.0
go: downloading github.com/jackc/pgtype v1.11.0
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.1.2
go: downloading github.com/golang/protobuf v1.5.3
go: downloading github.com/prometheus/client_model v0.2.0
go: downloading github.com/prometheus/common v0.37.0
go: downloading github.com/prometheus/procfs v0.12.0
go: downloading google.golang.org/protobuf v1.33.0
go: downloading github.com/go-playground/validator/v10 v10.11.1
go: downloading github.com/pelletier/go-toml/v2 v2.0.5
go: downloading github.com/pelletier/go-toml v1.9.5
go: downloading github.com/ugorji/go/codec v1.2.7
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading github.com/goccy/go-json v0.9.11
go: downloading github.com/json-iterator/go v1.1.12
go: downloading github.com/mfridman/interpolate v0.0.2
go: downloading golang.org/x/sync v0.7.0
go: downloading golang.org/x/crypto v0.21.0
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading github.com/subosito/gotenv v1.4.1
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading gopkg.in/ini.v1 v1.67.0
go: downloading github.com/magiconair/properties v1.8.6
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading golang.org/x/text v0.14.0
go: downloading github.com/jackc/chunkreader/v2 v2.0.1
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.1
go: downloading github.com/go-playground/universal-translator v0.18.0
go: downloading github.com/leodido/go-urn v1.2.1
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.2
go: downloading github.com/go-playground/locales v0.14.0
go: downloading go.opentelemetry.io v0.1.0
go: downloading go.opentelemetry.io/otel/metric v1.25.0
go: downloading go.opentelemetry.io/otel v1.25.0
go: go.hollow.sh/dnscontroller/internal/x/db imports
	github.com/XSAM/otelsql imports
	go.opentelemetry.io/otel/metric/global: cannot find module providing package go.opentelemetry.io/otel/metric/global
go: go.hollow.sh/dnscontroller/internal/x/db imports
	github.com/XSAM/otelsql imports
	go.opentelemetry.io/otel/metric/instrument: cannot find module providing package go.opentelemetry.io/otel/metric/instrument
go: go.hollow.sh/dnscontroller/internal/x/db imports
	github.com/XSAM/otelsql imports
	go.opentelemetry.io/otel/metric/instrument/asyncfloat64: cannot find module providing package go.opentelemetry.io/otel/metric/instrument/asyncfloat64
go: go.hollow.sh/dnscontroller/internal/x/db imports
	github.com/XSAM/otelsql imports
	go.opentelemetry.io/otel/metric/instrument/asyncint64: cannot find module providing package go.opentelemetry.io/otel/metric/instrument/asyncint64
go: go.hollow.sh/dnscontroller/internal/x/db imports
	github.com/XSAM/otelsql imports
	go.opentelemetry.io/otel/metric/instrument/syncfloat64: cannot find module providing package go.opentelemetry.io/otel/metric/instrument/syncfloat64
go: go.hollow.sh/dnscontroller/internal/x/db imports
	github.com/XSAM/otelsql imports
	go.opentelemetry.io/otel/metric/unit: cannot find module providing package go.opentelemetry.io/otel/metric/unit
go: module go.opentelemetry.io/otel/exporters/jaeger is deprecated: This module is no longer supported.

@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 697f7e2 to 6877fc0 Compare July 3, 2023 20:57
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.13.0 Update module github.com/pressly/goose/v3 to v3.13.1 Jul 3, 2023
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 6877fc0 to a41460b Compare July 7, 2023 23:50
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.13.1 Update module github.com/pressly/goose/v3 to v3.13.4 Jul 7, 2023
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from a41460b to a2a7c48 Compare July 27, 2023 02:30
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.13.4 Update module github.com/pressly/goose/v3 to v3.14.0 Jul 27, 2023
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from a2a7c48 to 093cd64 Compare August 14, 2023 11:45
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.14.0 Update module github.com/pressly/goose/v3 to v3.15.0 Aug 14, 2023
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 093cd64 to 474256e Compare October 11, 2023 05:29
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.15.0 Update module github.com/pressly/goose/v3 to v3.15.1 Oct 11, 2023
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 474256e to 5c01e6d Compare November 13, 2023 08:41
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.15.1 Update module github.com/pressly/goose/v3 to v3.16.0 Nov 13, 2023
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 5c01e6d to a41375c Compare December 16, 2023 11:10
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.16.0 Update module github.com/pressly/goose/v3 to v3.17.0 Dec 16, 2023
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from a41375c to 1f8c12a Compare February 1, 2024 05:44
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.17.0 Update module github.com/pressly/goose/v3 to v3.18.0 Feb 1, 2024
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 1f8c12a to 3aff514 Compare March 12, 2024 15:24
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.18.0 Update module github.com/pressly/goose/v3 to v3.19.1 Mar 12, 2024
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 3aff514 to 0b40162 Compare March 13, 2024 22:00
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.19.1 Update module github.com/pressly/goose/v3 to v3.19.2 Mar 13, 2024
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 0b40162 to 9a1c484 Compare April 24, 2024 02:21
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.19.2 Update module github.com/pressly/goose/v3 to v3.20.0 Apr 24, 2024
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 9a1c484 to 5a6b9e4 Compare June 19, 2024 23:15
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.20.0 Update module github.com/pressly/goose/v3 to v3.21.1 Jun 19, 2024
Copy link
Contributor Author

renovate bot commented Jun 19, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -d -t ./...
go: -d flag is deprecated. -d=true is a no-op
go: downloading github.com/cockroachdb/cockroach-go/v2 v2.2.14
go: downloading github.com/jmoiron/sqlx v1.3.5
go: downloading github.com/lib/pq v1.10.6
go: downloading github.com/pressly/goose/v3 v3.22.1
go: downloading github.com/spf13/cobra v1.6.0
go: downloading github.com/spf13/viper v1.13.0
go: downloading go.hollow.sh/toolbox v0.4.0
go: downloading go.uber.org/zap v1.23.0
go: downloading github.com/gin-contrib/zap v0.1.0
go: downloading github.com/gin-gonic/gin v1.8.1
go: downloading github.com/zsais/go-gin-prometheus v0.1.0
go: downloading go.opentelemetry.io/contrib/instrumentation/github.com/gin-gonic/gin/otelgin v0.36.3
go: downloading go.opentelemetry.io/otel v1.26.0
go: downloading github.com/friendsofgo/errors v0.9.2
go: downloading github.com/volatiletech/null/v8 v8.1.2
go: downloading github.com/volatiletech/sqlboiler/v4 v4.13.0
go: downloading github.com/volatiletech/strmangle v0.0.4
go: downloading github.com/pkg/errors v0.9.1
go: downloading github.com/volatiletech/randomize v0.0.1
go: downloading github.com/XSAM/otelsql v0.16.0
go: downloading github.com/spf13/pflag v1.0.5
go: downloading go.opentelemetry.io/otel/exporters/jaeger v1.11.0
go: downloading go.opentelemetry.io/otel/sdk v1.11.0
go: downloading github.com/google/uuid v1.6.0
go: downloading github.com/jackc/pgx/v4 v4.16.1
go: downloading github.com/inconshreveable/mousetrap v1.0.1
go: downloading github.com/fsnotify/fsnotify v1.6.0
go: downloading github.com/mitchellh/mapstructure v1.5.0
go: downloading github.com/spf13/afero v1.9.2
go: downloading github.com/spf13/cast v1.5.0
go: downloading github.com/spf13/jwalterweatherman v1.1.0
go: downloading github.com/sethvargo/go-retry v0.3.0
go: downloading go.uber.org/multierr v1.11.0
go: downloading golang.org/x/net v0.28.0
go: downloading gopkg.in/square/go-jose.v2 v2.6.0
go: downloading github.com/mitchellh/go-homedir v1.1.0
go: downloading go.opentelemetry.io/otel/trace v1.26.0
go: downloading go.uber.org/atomic v1.10.0
go: downloading github.com/prometheus/client_golang v1.13.0
go: downloading github.com/sirupsen/logrus v1.8.1
go: downloading github.com/gin-contrib/sse v0.1.0
go: downloading github.com/mattn/go-isatty v0.0.20
go: downloading golang.org/x/xerrors v0.0.0-20220517211312-f3a8303e98df
go: downloading github.com/go-logr/logr v1.4.1
go: downloading go.opentelemetry.io/otel/metric v1.26.0
go: downloading github.com/volatiletech/inflect v0.0.1
go: downloading github.com/gofrs/uuid v4.0.0+incompatible
go: downloading golang.org/x/sys v0.25.0
go: downloading github.com/jackc/pgconn v1.12.1
go: downloading github.com/jackc/pgio v1.0.0
go: downloading github.com/jackc/pgproto3/v2 v2.3.0
go: downloading github.com/jackc/pgtype v1.11.0
go: downloading github.com/subosito/gotenv v1.4.1
go: downloading github.com/hashicorp/hcl v1.0.0
go: downloading gopkg.in/ini.v1 v1.67.0
go: downloading github.com/magiconair/properties v1.8.6
go: downloading github.com/pelletier/go-toml v1.9.5
go: downloading github.com/pelletier/go-toml/v2 v2.0.5
go: downloading gopkg.in/yaml.v2 v2.4.0
go: downloading gopkg.in/yaml.v3 v3.0.1
go: downloading github.com/mfridman/interpolate v0.0.2
go: downloading golang.org/x/sync v0.8.0
go: downloading golang.org/x/text v0.18.0
go: downloading golang.org/x/crypto v0.27.0
go: downloading github.com/beorn7/perks v1.0.1
go: downloading github.com/cespare/xxhash/v2 v2.1.2
go: downloading github.com/golang/protobuf v1.5.4
go: downloading github.com/prometheus/client_model v0.2.0
go: downloading github.com/prometheus/common v0.37.0
go: downloading github.com/prometheus/procfs v0.12.0
go: downloading google.golang.org/protobuf v1.33.0
go: downloading github.com/go-playground/validator/v10 v10.11.1
go: downloading github.com/ugorji/go/codec v1.2.7
go: downloading github.com/goccy/go-json v0.9.11
go: downloading github.com/json-iterator/go v1.1.12
go: downloading github.com/go-logr/stdr v1.2.2
go: downloading github.com/jackc/chunkreader/v2 v2.0.1
go: downloading github.com/jackc/pgpassfile v1.0.0
go: downloading github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761
go: downloading github.com/matttproud/golang_protobuf_extensions v1.0.1
go: downloading github.com/go-playground/universal-translator v0.18.0
go: downloading github.com/leodido/go-urn v1.2.1
go: downloading github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
go: downloading github.com/modern-go/reflect2 v1.0.2
go: downloading github.com/go-playground/locales v0.14.0
go: downloading go.opentelemetry.io v0.1.0
go: downloading go.opentelemetry.io/otel/metric v1.30.0
go: downloading go.opentelemetry.io/otel v1.30.0
go: go.hollow.sh/dnscontroller/internal/x/db imports
	github.com/XSAM/otelsql imports
	go.opentelemetry.io/otel/metric/global: cannot find module providing package go.opentelemetry.io/otel/metric/global
go: go.hollow.sh/dnscontroller/internal/x/db imports
	github.com/XSAM/otelsql imports
	go.opentelemetry.io/otel/metric/instrument: cannot find module providing package go.opentelemetry.io/otel/metric/instrument
go: go.hollow.sh/dnscontroller/internal/x/db imports
	github.com/XSAM/otelsql imports
	go.opentelemetry.io/otel/metric/instrument/asyncfloat64: cannot find module providing package go.opentelemetry.io/otel/metric/instrument/asyncfloat64
go: go.hollow.sh/dnscontroller/internal/x/db imports
	github.com/XSAM/otelsql imports
	go.opentelemetry.io/otel/metric/instrument/asyncint64: cannot find module providing package go.opentelemetry.io/otel/metric/instrument/asyncint64
go: go.hollow.sh/dnscontroller/internal/x/db imports
	github.com/XSAM/otelsql imports
	go.opentelemetry.io/otel/metric/instrument/syncfloat64: cannot find module providing package go.opentelemetry.io/otel/metric/instrument/syncfloat64
go: go.hollow.sh/dnscontroller/internal/x/db imports
	github.com/XSAM/otelsql imports
	go.opentelemetry.io/otel/metric/unit: cannot find module providing package go.opentelemetry.io/otel/metric/unit
go: module go.opentelemetry.io/otel/exporters/jaeger is deprecated: This module is no longer supported.

@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 5a6b9e4 to 5e25b80 Compare September 4, 2024 03:00
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.21.1 Update module github.com/pressly/goose/v3 to v3.22.0 Sep 4, 2024
@renovate renovate bot force-pushed the renovate/github.com-pressly-goose-v3-3.x branch from 5e25b80 to 4f034a2 Compare September 18, 2024 05:29
@renovate renovate bot changed the title Update module github.com/pressly/goose/v3 to v3.22.0 Update module github.com/pressly/goose/v3 to v3.22.1 Sep 18, 2024
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