This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/go_modules/gomod_updates-3a2e2cb45c
in repository https://gitbox.apache.org/repos/asf/terraform-provider-paimon.git
omit b00e3ef Bump github.com/stretchr/testify in the gomod_updates group
add 0646712 Harden provider lifecycle and release readiness (#14)
add a74408b Bump github.com/stretchr/testify
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (b00e3ef)
\
N -- N -- N
refs/heads/dependabot/go_modules/gomod_updates-3a2e2cb45c (a74408b)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.asf.yaml | 6 +
.github/workflows/go-ci.yml | 22 ++
.github/workflows/license-check.yml | 8 +
.github/workflows/tf-release.yml | 137 +++++++
.goreleaser.yml | 78 ++++
LICENSE => LICENSE-binary | 30 ++
Makefile | 13 +-
NOTICE-binary | 22 ++
README.md | 9 +-
build.sh | 2 +-
dev/release/rat_exclude_files.txt | 1 +
dev/release/release.sh | 53 +++
dev/release/release_rc.sh | 95 +++++
dev/release/verify_rc.sh | 58 +++
dev/update_licenses.sh | 110 ++++++
dev/validate_examples.sh | 46 +++
docs/data-sources/database.md | 7 +
docs/data-sources/table.md | 7 +
docs/index.md | 6 +
docs/releasing.md | 85 ++++
docs/resources/column_mask.md | 7 +
docs/resources/database.md | 7 +
docs/resources/permission.md | 7 +
docs/resources/row_filter.md | 7 +
docs/resources/table.md | 33 +-
examples/main.tf | 2 +-
examples/permissions/main.tf | 2 +-
go.mod | 38 +-
go.sum | 153 +++++++-
internal/client/client.go | 124 ++++--
internal/client/client_test.go | 109 ++++++
internal/client/data_type.go | 87 ++++-
internal/client/dlf_auth.go | 41 +-
internal/client/dlf_auth_test.go | 113 +++++-
internal/client/models.go | 113 ++++--
internal/provider/acceptance_test.go | 427 +++++++++++++++++++++
internal/provider/data_source_table.go | 3 +-
internal/provider/helpers.go | 23 +-
internal/provider/helpers_test.go | 64 +++
internal/provider/provider_management_test.go | 11 +-
internal/provider/provider_test.go | 131 +++++--
internal/provider/resource_database.go | 104 ++++-
internal/provider/resource_permission.go | 21 +-
internal/provider/resource_policy.go | 29 +-
internal/provider/resource_table.go | 261 ++++++++++++-
internal/provider/table_options.go | 1 +
internal/provider/table_schema.go | 195 ++++++++--
internal/provider/table_schema_changes.go | 295 ++++++++++++++
internal/provider/table_schema_changes_test.go | 319 +++++++++++++++
licenses-binary/LICENSE-fatih-color.txt | 20 +
licenses-binary/LICENSE-golang-protobuf.txt | 27 ++
licenses-binary/LICENSE-golang.org-x-net.txt | 27 ++
licenses-binary/LICENSE-golang.org-x-sys.txt | 27 ++
licenses-binary/LICENSE-golang.org-x-text.txt | 27 ++
...E-google.golang.org-genproto-googleapis-rpc.txt | 1 +
.../LICENSE-google.golang.org-grpc.txt | 1 +
.../LICENSE-google.golang.org-protobuf.txt | 27 ++
licenses-binary/LICENSE-hashicorp-go-hclog.txt | 19 +
licenses-binary/LICENSE-hashicorp-go-plugin.txt | 355 +++++++++++++++++
licenses-binary/LICENSE-hashicorp-go-uuid.txt | 364 ++++++++++++++++++
...icorp-terraform-plugin-framework-validators.txt | 355 +++++++++++++++++
...ICENSE-hashicorp-terraform-plugin-framework.txt | 355 +++++++++++++++++
.../LICENSE-hashicorp-terraform-plugin-go.txt | 355 +++++++++++++++++
.../LICENSE-hashicorp-terraform-plugin-log.txt | 355 +++++++++++++++++
...ICENSE-hashicorp-terraform-registry-address.txt | 355 +++++++++++++++++
.../LICENSE-hashicorp-terraform-svchost.txt | 355 +++++++++++++++++
licenses-binary/LICENSE-hashicorp-yamux.txt | 364 ++++++++++++++++++
licenses-binary/LICENSE-mattn-go-colorable.txt | 21 +
licenses-binary/LICENSE-mattn-go-isatty.txt | 9 +
.../LICENSE-mitchellh-go-testing-interface.txt | 21 +
LICENSE => licenses-binary/LICENSE-oklog-run.txt | 2 +-
licenses-binary/LICENSE-vmihailenco-msgpack.txt | 25 ++
licenses-binary/LICENSE-vmihailenco-tagparser.txt | 25 ++
73 files changed, 6793 insertions(+), 221 deletions(-)
create mode 100644 .github/workflows/tf-release.yml
create mode 100644 .goreleaser.yml
copy LICENSE => LICENSE-binary (83%)
create mode 100644 NOTICE-binary
create mode 100755 dev/release/release.sh
create mode 100755 dev/release/release_rc.sh
create mode 100755 dev/release/verify_rc.sh
create mode 100755 dev/update_licenses.sh
create mode 100755 dev/validate_examples.sh
create mode 100644 docs/releasing.md
create mode 100644 internal/provider/acceptance_test.go
create mode 100644 internal/provider/helpers_test.go
create mode 100644 internal/provider/table_schema_changes.go
create mode 100644 internal/provider/table_schema_changes_test.go
create mode 100644 licenses-binary/LICENSE-fatih-color.txt
create mode 100644 licenses-binary/LICENSE-golang-protobuf.txt
create mode 100644 licenses-binary/LICENSE-golang.org-x-net.txt
create mode 100644 licenses-binary/LICENSE-golang.org-x-sys.txt
create mode 100644 licenses-binary/LICENSE-golang.org-x-text.txt
copy LICENSE =>
licenses-binary/LICENSE-google.golang.org-genproto-googleapis-rpc.txt (99%)
copy LICENSE => licenses-binary/LICENSE-google.golang.org-grpc.txt (99%)
create mode 100644 licenses-binary/LICENSE-google.golang.org-protobuf.txt
create mode 100644 licenses-binary/LICENSE-hashicorp-go-hclog.txt
create mode 100644 licenses-binary/LICENSE-hashicorp-go-plugin.txt
create mode 100644 licenses-binary/LICENSE-hashicorp-go-uuid.txt
create mode 100644
licenses-binary/LICENSE-hashicorp-terraform-plugin-framework-validators.txt
create mode 100644
licenses-binary/LICENSE-hashicorp-terraform-plugin-framework.txt
create mode 100644 licenses-binary/LICENSE-hashicorp-terraform-plugin-go.txt
create mode 100644 licenses-binary/LICENSE-hashicorp-terraform-plugin-log.txt
create mode 100644
licenses-binary/LICENSE-hashicorp-terraform-registry-address.txt
create mode 100644 licenses-binary/LICENSE-hashicorp-terraform-svchost.txt
create mode 100644 licenses-binary/LICENSE-hashicorp-yamux.txt
create mode 100644 licenses-binary/LICENSE-mattn-go-colorable.txt
create mode 100644 licenses-binary/LICENSE-mattn-go-isatty.txt
create mode 100644 licenses-binary/LICENSE-mitchellh-go-testing-interface.txt
copy LICENSE => licenses-binary/LICENSE-oklog-run.txt (99%)
create mode 100644 licenses-binary/LICENSE-vmihailenco-msgpack.txt
create mode 100644 licenses-binary/LICENSE-vmihailenco-tagparser.txt