memwal 0.1.9.dev0__tar.gz → 0.1.9.dev1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (27) hide show
  1. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/CHANGELOG.md +1 -0
  2. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/PKG-INFO +1 -1
  3. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/__init__.py +1 -1
  4. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/types.py +11 -7
  5. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/pyproject.toml +1 -1
  6. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/.gitignore +0 -0
  7. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/README.md +0 -0
  8. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/examples/.env.example +0 -0
  9. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/examples/.gitignore +0 -0
  10. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/examples/async_remember_demo.py +0 -0
  11. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/examples/interactive_demo.py +0 -0
  12. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/examples/verify_credentials.py +0 -0
  13. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/client.py +0 -0
  14. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/compatibility.py +0 -0
  15. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/middleware.py +0 -0
  16. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/mock.py +0 -0
  17. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/memwal/utils.py +0 -0
  18. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/notebooks/walrus_memory_python_sdk.ipynb +0 -0
  19. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/run_tests.py +0 -0
  20. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/__init__.py +0 -0
  21. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_auth_rejected_message.py +0 -0
  22. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_client.py +0 -0
  23. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_env_presets.py +0 -0
  24. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_integration.py +0 -0
  25. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_middleware.py +0 -0
  26. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_mock.py +0 -0
  27. {memwal-0.1.9.dev0 → memwal-0.1.9.dev1}/tests/test_signing.py +0 -0
@@ -5,6 +5,7 @@
5
5
  ### Fixed
6
6
 
7
7
  - `remember_bulk_async` rejects an empty `items` list before the request and raises when the relayer returns a `job_ids` length that does not match the batch.
8
+ - restore `truncated` docs now match WALM-431 retryable semantics.
8
9
 
9
10
  ## 0.1.8
10
11
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: memwal
3
- Version: 0.1.9.dev0
3
+ Version: 0.1.9.dev1
4
4
  Summary: Python SDK for Walrus Memory — Privacy-first AI memory with Ed25519 signing
5
5
  Project-URL: Homepage, https://memory.walrus.xyz
6
6
  Project-URL: Documentation, https://memory.walrus.xyz
@@ -122,4 +122,4 @@ __all__ = [
122
122
  "RecallManualResult",
123
123
  ]
124
124
 
125
- __version__ = "0.1.9.dev0"
125
+ __version__ = "0.1.9.dev1"
@@ -206,13 +206,17 @@ class RestoreResult:
206
206
  total: int
207
207
  namespace: str
208
208
  owner: str
209
- #: True when this restore is known-incomplete: either more on-chain
210
- #: blobs were missing locally than ``limit`` allowed this call to
211
- #: restore, or the sidecar's raw on-chain candidate fetch hit its own
212
- #: cap before this namespace's blobs were even filtered out of that
213
- #: set (WALM-319) -- this can be ``True`` even when ``total == 0``,
214
- #: since a cap hit elsewhere can starve this namespace's fetch
215
- #: entirely. Raising ``limit`` only helps with the first case.
209
+ #: True when this restore is known-incomplete: more on-chain blobs were
210
+ #: missing locally than ``limit`` allowed this call to restore, or the
211
+ #: sidecar's owner-wide candidate fetch hit its cap *and* raising
212
+ #: ``limit`` can still expand that fetch (``limit < 20``). Once the cap
213
+ #: is saturated, truncation follows this call's missing-blob page, not
214
+ #: on-chain ``total``, so a fully restored namespace does not loop
215
+ #: (WALM-431 / GH #762).
216
+ #:
217
+ #: ``truncated=False`` is not proof the sidecar saw every on-chain blob.
218
+ #: Blobs beyond the owner-wide sidecar candidate cap can still be
219
+ #: missing. Follow-up field: WALM-451 (``sourceCapped``).
216
220
  #:
217
221
  #: Relayers older than WALM-319 don't send this field at all; the SDK
218
222
  #: defaults it to ``False`` in that case rather than requiring it.
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "memwal"
7
- version = "0.1.9.dev0"
7
+ version = "0.1.9.dev1"
8
8
  description = "Python SDK for Walrus Memory — Privacy-first AI memory with Ed25519 signing"
9
9
  readme = "README.md"
10
10
  license = "MIT"
File without changes
File without changes
File without changes
File without changes
File without changes