memwal 0.1.5.dev2__tar.gz → 0.1.6.dev0__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 (25) hide show
  1. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/CHANGELOG.md +11 -0
  2. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/PKG-INFO +1 -1
  3. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/memwal/__init__.py +1 -1
  4. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/memwal/client.py +2 -1
  5. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/pyproject.toml +1 -1
  6. memwal-0.1.6.dev0/tests/test_auth_rejected_message.py +9 -0
  7. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/.gitignore +0 -0
  8. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/README.md +0 -0
  9. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/examples/.env.example +0 -0
  10. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/examples/.gitignore +0 -0
  11. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/examples/async_remember_demo.py +0 -0
  12. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/examples/interactive_demo.py +0 -0
  13. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/examples/verify_credentials.py +0 -0
  14. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/memwal/compatibility.py +0 -0
  15. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/memwal/middleware.py +0 -0
  16. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/memwal/types.py +0 -0
  17. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/memwal/utils.py +0 -0
  18. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/notebooks/walrus_memory_python_sdk.ipynb +0 -0
  19. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/run_tests.py +0 -0
  20. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/tests/__init__.py +0 -0
  21. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/tests/test_client.py +0 -0
  22. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/tests/test_env_presets.py +0 -0
  23. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/tests/test_integration.py +0 -0
  24. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/tests/test_middleware.py +0 -0
  25. {memwal-0.1.5.dev2 → memwal-0.1.6.dev0}/tests/test_signing.py +0 -0
@@ -1,5 +1,16 @@
1
1
  # memwal
2
2
 
3
+ ## 0.1.6
4
+
5
+ ### Added
6
+
7
+ - Added flush helpers for pending middleware auto-saves.
8
+ - Added `truncated` to restore results for incomplete recovery.
9
+
10
+ ### Fixed
11
+
12
+ - Linked `AUTH_REJECTED` errors to troubleshooting guidance.
13
+
3
14
  ## 0.1.5
4
15
 
5
16
  ### Added
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: memwal
3
- Version: 0.1.5.dev2
3
+ Version: 0.1.6.dev0
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
@@ -116,4 +116,4 @@ __all__ = [
116
116
  "RecallManualResult",
117
117
  ]
118
118
 
119
- __version__ = "0.1.5.dev2"
119
+ __version__ = "0.1.6.dev0"
@@ -83,7 +83,8 @@ SEAL_SESSION_SAFETY_MARGIN_MS = 30_000
83
83
  AUTH_REJECTED_MESSAGE = (
84
84
  "401 from relayer: typically wrong private key, key not registered on this "
85
85
  "account, account ID mismatch, or staging/mainnet mismatch. Check .env.local "
86
- "and dashboard credentials."
86
+ "and dashboard credentials. Full troubleshooting: "
87
+ "https://docs.wal.app/walrus-memory/troubleshooting/overview#401-auth_rejected-errors"
87
88
  )
88
89
 
89
90
 
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "memwal"
7
- version = "0.1.5.dev2"
7
+ version = "0.1.6.dev0"
8
8
  description = "Python SDK for Walrus Memory — Privacy-first AI memory with Ed25519 signing"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -0,0 +1,9 @@
1
+ """Tests for the AUTH_REJECTED_MESSAGE shown on a 401 from the relayer."""
2
+
3
+ from __future__ import annotations
4
+
5
+ from memwal.client import AUTH_REJECTED_MESSAGE
6
+
7
+
8
+ def test_auth_rejected_message_points_to_troubleshooting_guide() -> None:
9
+ assert "docs.wal.app/walrus-memory/troubleshooting/overview" in AUTH_REJECTED_MESSAGE
File without changes
File without changes
File without changes
File without changes
File without changes