This is an automated email from the ASF dual-hosted git repository.
github-bot pushed a change to branch
dependabot/go_modules/github.com/wolfeidau/s3iofs-1.5.2
in repository https://gitbox.apache.org/repos/asf/iceberg-go.git
discard f88fac0 build(deps): bump github.com/wolfeidau/s3iofs from 1.5.0 to
1.5.2
add abd4fb0 feat: add support for catalogs with glue implementation to
start (#51)
add d209a3f feat(catalog): add initial rest catalog impl (#58)
add 5db83a0 feat(catalog): Send X-Iceberg-Access-Delegation header to
signal support for vended credentials (#67)
add d248f24 build(deps): bump github.com/aws/aws-sdk-go-v2/config (#57)
add 812a78e build(deps): bump github.com/google/uuid from 1.3.1 to 1.6.0
(#55)
add 6832004 build(deps): bump github.com/wolfeidau/s3iofs from 1.5.0 to
1.5.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 (f88fac0)
\
N -- N -- N
refs/heads/dependabot/go_modules/github.com/wolfeidau/s3iofs-1.5.2 (6832004)
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/go-ci.yml | 2 +-
.gitignore | 6 +
README.md | 6 +-
catalog/README.md | 123 +++++++
catalog/catalog.go | 187 ++++++++++
catalog/glue.go | 216 +++++++++++
catalog/glue_test.go | 148 ++++++++
catalog/rest.go | 712 ++++++++++++++++++++++++++++++++++++
catalog/rest_internal_test.go | 123 +++++++
catalog/rest_test.go | 817 ++++++++++++++++++++++++++++++++++++++++++
cmd/iceberg/main.go | 343 ++++++++++++++++++
cmd/iceberg/output.go | 216 +++++++++++
dev/docker-compose.yml | 89 +++++
go.mod | 31 +-
go.sum | 137 ++++++-
io/s3.go | 8 +
manifest.go | 74 +++-
17 files changed, 3210 insertions(+), 28 deletions(-)
create mode 100644 catalog/README.md
create mode 100644 catalog/catalog.go
create mode 100644 catalog/glue.go
create mode 100644 catalog/glue_test.go
create mode 100644 catalog/rest.go
create mode 100644 catalog/rest_internal_test.go
create mode 100644 catalog/rest_test.go
create mode 100644 cmd/iceberg/main.go
create mode 100644 cmd/iceberg/output.go
create mode 100644 dev/docker-compose.yml