Skip to content

Commit 1de6bc0

Browse files
authored
Merge pull request #60 from b-long/develop
Release 0.2.18 - Update to SDK `0.6.1` and Go `1.24.5`
2 parents 35bab7e + 337c77d commit 1de6bc0

16 files changed

+70
-36
lines changed

.github/workflows/build-golang-macos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ jobs:
4747
4848
# - uses: ./.github/workflows/platform-integration-test.yaml
4949
# with:
50-
# wheel: dist/otdf_python-0.2.17-py3-none-any.whl
50+
# wheel: dist/otdf_python-0.2.18-py3-none-any.whl

.github/workflows/build-golang-ubuntu.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,12 +43,12 @@ jobs:
4343
4444
- uses: actions/cache/restore@v4
4545
with:
46-
path: dist/otdf_python-0.2.17-py3-none-any.whl
46+
path: dist/otdf_python-0.2.18-py3-none-any.whl
4747
key: ${{ runner.os }}${{ matrix.python3_version }}-data-${{ github.sha }}
4848

4949
- uses: actions/cache/save@v4
5050
with:
51-
path: dist/otdf_python-0.2.17-py3-none-any.whl
51+
path: dist/otdf_python-0.2.18-py3-none-any.whl
5252
key: ${{ runner.os }}${{ matrix.python3_version }}-data-${{ github.sha }}
5353
restore-keys: |
5454
${{ runner.os }}${{ matrix.python3_version }}-data-
@@ -61,5 +61,5 @@ jobs:
6161
needs: build
6262
uses: ./.github/workflows/platform-integration-test.yaml
6363
with:
64-
wheel: dist/otdf_python-0.2.17-py3-none-any.whl
64+
wheel: dist/otdf_python-0.2.18-py3-none-any.whl
6565
python_version: ${{ matrix.python3_version }}

.github/workflows/platform-integration-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- uses: actions/cache/restore@v4
3131
with:
32-
path: dist/otdf_python-0.2.17-py3-none-any.whl
32+
path: dist/otdf_python-0.2.18-py3-none-any.whl
3333
key: ${{ runner.os }}${{ inputs.python_version }}-data-${{ github.sha }}
3434

3535
- name: Prove that the input file is available
@@ -122,7 +122,7 @@ jobs:
122122
env:
123123
OPENTDF_CLIENT_ID: "opentdf-sdk"
124124
OPENTDF_CLIENT_SECRET: "secret"
125-
OPENTDF_HOSTNAME: "localhost:8080"
125+
OPENTDF_HOSTNAME: "http://localhost:8080"
126126
OIDC_TOKEN_ENDPOINT: "http://localhost:8888/auth/realms/opentdf/protocol/openid-connect/token"
127127
OPENTDF_KAS_URL: "http://localhost:8080/kas"
128128
INSECURE_SKIP_VERIFY: "TRUE"

.github/workflows/publish-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
CIBW_ENVIRONMENT: >
104104
PATH=$PATH:/usr/local/go/bin
105105
CIBW_BEFORE_ALL_LINUX: |
106-
curl -o go.tar.gz https://dl.google.com/go/go1.24.3.linux-amd64.tar.gz
106+
curl -o go.tar.gz https://dl.google.com/go/go1.24.5.linux-amd64.tar.gz
107107
tar -C /usr/local -xzf go.tar.gz
108108
go install github.com/go-python/[email protected]
109109
go install golang.org/x/tools/cmd/goimports@latest
@@ -154,7 +154,7 @@ jobs:
154154
CIBW_ENVIRONMENT: >
155155
PATH=$PATH:/usr/local/go/bin
156156
CIBW_BEFORE_ALL_LINUX: |
157-
curl -o go.tar.gz https://dl.google.com/go/go1.24.3.linux-arm64.tar.gz
157+
curl -o go.tar.gz https://dl.google.com/go/go1.24.5.linux-arm64.tar.gz
158158
tar -C /usr/local -xzf go.tar.gz
159159
go install github.com/go-python/[email protected]
160160
go install golang.org/x/tools/cmd/goimports@latest

.github/workflows/publish.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ jobs:
103103
CIBW_ENVIRONMENT: >
104104
PATH=$PATH:/usr/local/go/bin
105105
CIBW_BEFORE_ALL_LINUX: |
106-
curl -o go.tar.gz https://dl.google.com/go/go1.24.3.linux-amd64.tar.gz
106+
curl -o go.tar.gz https://dl.google.com/go/go1.24.5.linux-amd64.tar.gz
107107
tar -C /usr/local -xzf go.tar.gz
108108
go install github.com/go-python/[email protected]
109109
go install golang.org/x/tools/cmd/goimports@latest
@@ -154,7 +154,7 @@ jobs:
154154
CIBW_ENVIRONMENT: >
155155
PATH=$PATH:/usr/local/go/bin
156156
CIBW_BEFORE_ALL_LINUX: |
157-
curl -o go.tar.gz https://dl.google.com/go/go1.24.3.linux-arm64.tar.gz
157+
curl -o go.tar.gz https://dl.google.com/go/go1.24.5.linux-arm64.tar.gz
158158
tar -C /usr/local -xzf go.tar.gz
159159
go install github.com/go-python/[email protected]
160160
go install golang.org/x/tools/cmd/goimports@latest

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ Install from the [Python Package Index (PyPI)](https://pypi.org):
2727
pip install otdf_python
2828

2929
# Install a pinned version
30-
pip install otdf-python==0.2.17
30+
pip install otdf-python==0.2.18
3131

3232
# Install a pinned version, from test.pypi.org
33-
pip install -i https://test.pypi.org/simple/ otdf-python==0.2.17
33+
pip install -i https://test.pypi.org/simple/ otdf-python==0.2.18
3434
```
3535

3636
## Usage

build-scripts/ci-build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,4 +72,4 @@ echo "✨✨✨ Build wheel"
7272
poetry run python3 setup.py bdist_wheel
7373

7474
echo "✨✨✨ Install wheel"
75-
pip install dist/otdf_python-0.2.17-py3-none-any.whl
75+
pip install dist/otdf_python-0.2.18-py3-none-any.whl

build-scripts/make_and_validate_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ python3 -m pip install --upgrade setuptools wheel
4747
python3 setup.py bdist_wheel
4848

4949
# Prove that the wheel can be installed
50-
pip install dist/otdf_python-0.2.17-py3-none-any.whl
50+
pip install dist/otdf_python-0.2.18-py3-none-any.whl
5151

5252
if [[ "$SKIP_TESTS" == "-s" || "$SKIP_TESTS" == "--skip-tests" ]]; then
5353
echo "Build is complete, skipping tests."

build-scripts/uv_make_and_validate_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ loud_print "Installing wheel"
7070
uv venv .venv-wheel --python 3.12 "$PY_TYPE"
7171
source "${BUILD_ROOT}/.venv-wheel/bin/activate"
7272
pip install pybindgen
73-
pip install dist/otdf_python-0.2.17-py3-none-any.whl
73+
pip install dist/otdf_python-0.2.18-py3-none-any.whl
7474

7575
if [[ "$SKIP_TESTS" == "-s" || "$SKIP_TESTS" == "--skip-tests" ]]; then
7676
echo "Build is complete, skipping tests."

go.mod

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,38 @@
11
module gotdf_python
22

3-
go 1.24.3
3+
go 1.24.5
44

5-
require github.com/opentdf/platform/sdk v0.4.4
5+
require github.com/opentdf/platform/sdk v0.6.1
66

77
require (
8-
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.6-20250425153114-8976f5be98c1.1 // indirect
9-
github.com/Masterminds/semver/v3 v3.3.1 // indirect
8+
buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go v1.36.6-20250717185734-6c6e0d3c608e.1 // indirect
9+
connectrpc.com/connect v1.18.1 // indirect
10+
github.com/Masterminds/semver/v3 v3.4.0 // indirect
1011
github.com/decred/dcrd/dcrec/secp256k1/v4 v4.4.0 // indirect
1112
github.com/goccy/go-json v0.10.5 // indirect
1213
github.com/google/uuid v1.6.0 // indirect
1314
github.com/gowebpki/jcs v1.0.1 // indirect
1415
github.com/grpc-ecosystem/go-grpc-middleware/v2 v2.3.2 // indirect
15-
github.com/grpc-ecosystem/grpc-gateway/v2 v2.26.3 // indirect
16-
github.com/lestrrat-go/blackmagic v1.0.3 // indirect
16+
github.com/grpc-ecosystem/grpc-gateway/v2 v2.27.1 // indirect
17+
github.com/lestrrat-go/blackmagic v1.0.4 // indirect
1718
github.com/lestrrat-go/httpcc v1.0.1 // indirect
1819
github.com/lestrrat-go/httprc v1.0.6 // indirect
1920
github.com/lestrrat-go/iter v1.0.2 // indirect
2021
github.com/lestrrat-go/jwx/v2 v2.1.6 // indirect
2122
github.com/lestrrat-go/option v1.0.1 // indirect
22-
github.com/opentdf/platform/lib/ocrypto v0.1.9 // indirect
23-
github.com/opentdf/platform/protocol/go v0.3.2 // indirect
23+
github.com/opentdf/platform/lib/ocrypto v0.3.0 // indirect
24+
github.com/opentdf/platform/protocol/go v0.6.2 // indirect
2425
github.com/segmentio/asm v1.2.0 // indirect
2526
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
2627
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
2728
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
28-
golang.org/x/crypto v0.38.0 // indirect
29-
golang.org/x/net v0.40.0 // indirect
29+
golang.org/x/crypto v0.40.0 // indirect
30+
golang.org/x/net v0.42.0 // indirect
3031
golang.org/x/oauth2 v0.30.0 // indirect
31-
golang.org/x/sys v0.33.0 // indirect
32-
golang.org/x/text v0.25.0 // indirect
33-
google.golang.org/genproto/googleapis/api v0.0.0-20250505200425-f936aa4a68b2 // indirect
34-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250505200425-f936aa4a68b2 // indirect
35-
google.golang.org/grpc v1.72.0 // indirect
32+
golang.org/x/sys v0.34.0 // indirect
33+
golang.org/x/text v0.27.0 // indirect
34+
google.golang.org/genproto/googleapis/api v0.0.0-20250728155136-f173205681a0 // indirect
35+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250728155136-f173205681a0 // indirect
36+
google.golang.org/grpc v1.74.2 // indirect
3637
google.golang.org/protobuf v1.36.6 // indirect
3738
)

0 commit comments

Comments
 (0)