Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: kvcache/client-sdk-python

Tags

v0.9.1

Toggle v0.9.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: add env variables for integration tests (momentohq#63)

v0.9.0

Toggle v0.9.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: Open source and publish package to PyPI (momentohq#60)

v0.8.0

Toggle v0.8.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
feat: Disambiguate wiretypes from SDK types (momentohq#48)

v0.7.8

Toggle v0.7.8's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Services now return UNAUTHENTICATE instead of PERMISSION_DENIED (m…

…omentohq#46)

* fix: Services now return UNAUTHENTICATE instead of PERMISSION_DENIED

* fix test names

v0.7.7

Toggle v0.7.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Flatten exception hierarchy (momentohq#44)

v0.7.6

Toggle v0.7.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Handle GRPC Error Codes. (momentohq#42)

* fix: Rename Error and tighten cache name validations

Fix for momentohq#23 - CacheValueError is a confusing name for surfacing INVALID_ARGUMENT errors. It can be easily confused with something related to setting a value in Cache. Proposing `CacheValueError` is renamed to `InvalidArgumentError`

Fix for momentohq#24 - Given the type-safety in python, customers can accidentally pass unsupported types. This results in a ClientSdkException when in fact it is an Invalid Input Error. We already type check our keys, values, ttl, so just adding one for cache name. Though it may be just wise to let the type errors pass through.

* fix broken error

* fix tests

* rename errors

* remove unwanted import

* update check

* fix: use None check, not seems to checking empty str that we don't want to check on SDK

* fix: doc strings

* Update src/momento/errors.py

Co-authored-by: Ruth Linehan <[email protected]>

* fix docstrings

* rename exception

* update docstring

* Update src/momento/simple_cache_client.py

Co-authored-by: Ruth Linehan <[email protected]>

* fix error message

Co-authored-by: Ruth Linehan <[email protected]>

v0.7.5

Toggle v0.7.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add license: Apache 2.0 (momentohq#43)

v0.7.4

Toggle v0.7.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Method Names and Add Code Hints (momentohq#41)

* fix: Method Names and Add Code Hints

Bugs: momentohq#33, momentohq#30

* Update tests/test_momento.py

Co-authored-by: Ruth Linehan <[email protected]>

Co-authored-by: Ruth Linehan <[email protected]>

v0.7.3

Toggle v0.7.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Integration tests (momentohq#39)

Service now returns INVALID_ARGUMENT on empty cache header.

v0.7.2

Toggle v0.7.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix: Use relative imports (momentohq#34)

* fix: Use relative imports

* fix test

* revert unwarranted refactor