This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/go_modules/google.golang.org/grpc-1.83.1
in repository https://gitbox.apache.org/repos/asf/terraform-provider-paimon.git
omit 55b9fe8 Bump google.golang.org/grpc from 1.82.1 to 1.83.1
add 0cd3f38 Align Paimon API contracts and harden provider recovery (#17)
add 2f72281 Bump apache/infrastructure-actions/allowlist-check from
69afc125e535c4c41e7f1b7470f583087e0f344b to
70a0d87acc3b1103c9377ed325b82b482e08b56f (#18)
add fcf3117 Bump zizmorcore/zizmor-action from 0.6.2 to 0.6.3 (#22)
add 87020ce Bump golang.org/x/crypto from 0.51.0 to 0.52.0 (#15)
add 9ec965c feat(client): name the missing resource in REST error
diagnostics (#23)
add c5fb412 Bump github.com/stretchr/testify from 1.12.0 to 1.12.1 in the
gomod_updates group across 1 directory (#10)
add 6e243c9 Bump zizmorcore/zizmor-action from 0.6.3 to 0.6.4 (#27)
add 48d0e5f Bump google.golang.org/grpc from 1.82.1 to 1.83.2
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 (55b9fe8)
\
N -- N -- N
refs/heads/dependabot/go_modules/google.golang.org/grpc-1.83.1 (48d0e5f)
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:
.github/workflows/asf-allowlist-check.yml | 2 +-
.github/workflows/catalog-integration.yml | 68 +++
.github/workflows/go-ci.yml | 29 +
.github/workflows/zizmor.yml | 2 +-
Makefile | 14 +-
README.md | 37 +-
dev/release/verify_registry.sh | 72 +++
docs/api-contract.md | 84 +++
docs/data-sources/database.md | 41 +-
docs/data-sources/table.md | 62 +-
docs/index.md | 117 +++-
docs/production-readiness.md | 112 ++++
docs/releasing.md | 21 +
docs/resources/column_mask.md | 56 +-
docs/resources/database.md | 37 +-
docs/resources/permission.md | 36 ++
docs/resources/row_filter.md | 55 +-
docs/resources/table.md | 174 +++++-
examples/main.tf | 4 +-
examples/{ => production}/main.tf | 54 +-
go.mod | 20 +-
go.sum | 39 +-
internal/client/client.go | 256 +++++++-
internal/client/client_test.go | 496 ++++++++++++++-
internal/client/dlf_auth.go | 77 ++-
internal/client/dlf_auth_test.go | 68 +++
internal/provider/acceptance_test.go | 34 +-
internal/provider/api_contract_test.go | 504 +++++++++++++++
internal/provider/data_source_database.go | 14 +-
internal/provider/data_source_table.go | 17 +-
internal/provider/documentation_test.go | 151 +++++
internal/provider/helpers.go | 24 +-
internal/provider/import_acceptance_test.go | 66 ++
internal/provider/management_acceptance_test.go | 200 ++++++
internal/provider/policy_semantics.go | 198 ++++++
internal/provider/production_readiness_test.go | 440 +++++++++++++
internal/provider/provider.go | 87 ++-
internal/provider/provider_management_test.go | 711 +++++++++++++++++++++-
internal/provider/provider_test.go | 6 +-
internal/provider/real_catalog_acceptance_test.go | 95 +++
internal/provider/resource_database.go | 43 +-
internal/provider/resource_permission.go | 8 +-
internal/provider/resource_policy.go | 257 ++++++--
internal/provider/resource_table.go | 208 ++++---
internal/provider/table_options.go | 72 ++-
internal/provider/table_plan.go | 206 +++++++
internal/provider/table_schema.go | 78 ++-
internal/provider/write_diagnostics.go | 45 ++
48 files changed, 5065 insertions(+), 432 deletions(-)
create mode 100644 .github/workflows/catalog-integration.yml
create mode 100755 dev/release/verify_registry.sh
create mode 100644 docs/api-contract.md
create mode 100644 docs/production-readiness.md
copy examples/{ => production}/main.tf (59%)
create mode 100644 internal/provider/api_contract_test.go
create mode 100644 internal/provider/documentation_test.go
create mode 100644 internal/provider/import_acceptance_test.go
create mode 100644 internal/provider/management_acceptance_test.go
create mode 100644 internal/provider/policy_semantics.go
create mode 100644 internal/provider/production_readiness_test.go
create mode 100644 internal/provider/real_catalog_acceptance_test.go
create mode 100644 internal/provider/table_plan.go
create mode 100644 internal/provider/write_diagnostics.go