Skip to content

Commit a741e21

Browse files
authored
v1.2.3 (#41)
* feat: start branch for v1.2.3 * chore: updated schema.proto * chore: bumped python package version * chore: reordered methods to match order in Go-SDK * chore: reordered methods, new implementation of TxFromProto and NewTxWithEntries, new ErrMetadataUnsupported Exception * chore: reordered methods to match interface definition in Golang SDK * chore: remove unused imports * feat: support for Delete * chore: renamed method amIHigherOrEqualsToVersion to serverHigherOrEqualsToVersion * feat: testcase for delete * feat: added expireableSet * feat: increased test coverage * chore: added tests for uncovered edge cases * chore: added support for verifiedGetSince * chore: use v1.2.3 for tests * Changed author to Codenotary * Fixed link in setup.py
1 parent d529c98 commit a741e21

35 files changed

+1205
-398
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
make dev
2222
- name: Start immudb container
2323
run: |
24-
docker run -d --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -v ${{ github.workspace }}/tests/certs/my.key.pem:/key.pem -p 3322:3322 codenotary/immudb:1.2.2 --signingKey=/key.pem
24+
docker run -d --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -v ${{ github.workspace }}/tests/certs/my.key.pem:/key.pem -p 3322:3322 codenotary/immudb:1.2.3 --signingKey=/key.pem
2525
docker run -d --health-cmd "immuadmin status" --health-interval 10s --health-timeout 5s --health-retries 5 -v ${{ github.workspace }}/tests/certs/my.key.pem:/key.pem -p 3333:3322 codenotary/immudb:1.1.0 --signingKey=/key.pem
2626
- name: Run tests
2727
run: |

Makefile

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ test:
2727
coverage:
2828
$(COVERAGE) run -m pytest tests
2929

30+
coverage-report:
31+
$(COVERAGE) html
32+
3033
install:
3134
$(PYTHON) setup.py install
3235

0 commit comments

Comments
 (0)