-
Notifications
You must be signed in to change notification settings - Fork 0
feat: Update to latest SDK #73
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
Changes from all commits
bc501c1
cc5e60d
94fd90e
3306935
cf6d2ac
3536f83
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,8 @@ | ||
| --- | ||
| default_install_hook_types: | ||
| - pre-commit | ||
| - commit-msg | ||
| - post-rewrite | ||
| exclude: | | ||
| (?x)^( | ||
| otdf_python/.* | ||
|
|
@@ -7,7 +11,7 @@ exclude: | | |
| # See https://pre-commit.com/hooks.html for more hooks# | ||
| repos: | ||
| - repo: https://github.com/pre-commit/pre-commit-hooks | ||
| rev: v5.0.0 | ||
| rev: v6.0.0 | ||
| hooks: | ||
| - id: check-yaml | ||
| - id: end-of-file-fixer | ||
|
|
@@ -40,9 +44,15 @@ repos: | |
|
|
||
| - repo: https://github.com/astral-sh/ruff-pre-commit | ||
| # Ruff version. | ||
| rev: v0.12.5 | ||
| rev: v0.12.12 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The specified revision rev: v0.4.4 |
||
| hooks: | ||
| # Run the linter. | ||
| - id: ruff | ||
| # Run the formatter. | ||
| - id: ruff-format | ||
| - repo: https://github.com/compilerla/conventional-pre-commit | ||
| rev: v4.2.0 | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| hooks: | ||
| - id: conventional-pre-commit | ||
| stages: [commit-msg,post-rewrite] | ||
| args: [--verbose,--scopes=feat,fix,docs,style,test,chore,ci] | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| { | ||
| "packages": { | ||
| ".": { | ||
| "release-type": "python" | ||
| } | ||
| } | ||
| } |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,38 +1,38 @@ | ||
| module gotdf_python | ||
|
|
||
| go 1.24.5 | ||
| go 1.24.7 | ||
|
|
||
| require github.com/opentdf/platform/sdk v0.6.1 | ||
| require github.com/opentdf/platform/sdk v0.7.0 | ||
|
|
||
| require ( | ||
| buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.6-20250717185734-6c6e0d3c608e.1 // indirect | ||
| buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.8-20250717185734-6c6e0d3c608e.1 // indirect | ||
| connectrpc.com/connect v1.18.1 // indirect | ||
| github.com/Masterminds/semver/v3 v3.4.0 // indirect | ||
| github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect | ||
| github.com/goccy/go-json v0.10.5 // indirect | ||
| github.com/google/uuid v1.6.0 // indirect | ||
| github.com/gowebpki/jcs v1.0.1 // indirect | ||
| github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2 // indirect | ||
| github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect | ||
| github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.2 // indirect | ||
| github.com/lestrrat-go/blackmagic v1.0.4 // indirect | ||
| github.com/lestrrat-go/httpcc v1.0.1 // indirect | ||
| github.com/lestrrat-go/httprc v1.0.6 // indirect | ||
| github.com/lestrrat-go/iter v1.0.2 // indirect | ||
| github.com/lestrrat-go/jwx/v2 v2.1.6 // indirect | ||
| github.com/lestrrat-go/option v1.0.1 // indirect | ||
| github.com/opentdf/platform/lib/ocrypto v0.3.0 // indirect | ||
| github.com/opentdf/platform/protocol/go v0.6.2 // indirect | ||
| github.com/opentdf/platform/lib/ocrypto v0.5.0 // indirect | ||
| github.com/opentdf/platform/protocol/go v0.8.0 // indirect | ||
| github.com/segmentio/asm v1.2.0 // indirect | ||
| github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect | ||
| github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect | ||
| github.com/xeipuuv/gojsonschema v1.2.0 // indirect | ||
| golang.org/x/crypto v0.40.0 // indirect | ||
| golang.org/x/net v0.42.0 // indirect | ||
| golang.org/x/crypto v0.41.0 // indirect | ||
| golang.org/x/net v0.43.0 // indirect | ||
| golang.org/x/oauth2 v0.30.0 // indirect | ||
| golang.org/x/sys v0.34.0 // indirect | ||
| golang.org/x/text v0.27.0 // indirect | ||
| google.golang.org/genproto/googleapis/api v0.0.0-20250728155136-f173205681a0 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20250728155136-f173205681a0 // indirect | ||
| google.golang.org/grpc v1.74.2 // indirect | ||
| google.golang.org/protobuf v1.36.6 // indirect | ||
| golang.org/x/sys v0.35.0 // indirect | ||
| golang.org/x/text v0.28.0 // indirect | ||
| google.golang.org/genproto/googleapis/api v0.0.0-20250826171959-ef028d996bc1 // indirect | ||
| google.golang.org/genproto/googleapis/rpc v0.0.0-20250826171959-ef028d996bc1 // indirect | ||
| google.golang.org/grpc v1.75.0 // indirect | ||
| google.golang.org/protobuf v1.36.8 // indirect | ||
| ) |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| [project] | ||
| name = "otdf-python" | ||
| # Should match 'setup.py' version number (used for gopy/pybindgen) | ||
| version = "0.2.18" | ||
| version = "0.2.19" | ||
| description = "Unofficial OpenTDF SDK for Python." | ||
| authors = [ | ||
| {name="b-long", email="[email protected]"} | ||
|
|
@@ -19,7 +19,7 @@ pybindgen = "^0.22.1" | |
|
|
||
| [tool.poetry] | ||
| package-mode = false | ||
| version = "0.2.18" | ||
| version = "0.2.19" | ||
|
|
||
| [tool.poetry.dependencies] | ||
| python = ">=3.10,<3.14" | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -24,7 +24,7 @@ | |
| url="https://github.com/b-long/opentdf-python-sdk", | ||
| package_data={"otdf_python": ["*.so"]}, | ||
| # Should match 'pyproject.toml' version number | ||
| version="0.2.18", | ||
| version="0.2.19", | ||
| author_email="[email protected]", | ||
| include_package_data=True, | ||
| ) | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.