PlaywrightCapture 1.41.2__tar.gz → 1.41.3__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: PlaywrightCapture
3
- Version: 1.41.2
3
+ Version: 1.41.3
4
4
  Summary: A simple library to capture websites using playwright
5
5
  License-Expression: BSD-3-Clause
6
6
  License-File: LICENSE
@@ -1237,9 +1237,10 @@ class Capture():
1237
1237
  self.should_retry = True
1238
1238
 
1239
1239
  # Collect storage state, including IndexedDB, to capture the full browser state.
1240
+ # 2026-09-08: add WebAuth credentials
1240
1241
  try:
1241
1242
  async with timeout(15):
1242
- to_return['storage'] = await self.context.storage_state(indexed_db=True)
1243
+ to_return['storage'] = await self.context.storage_state(indexed_db=True, credentials=True)
1243
1244
  except (TimeoutError, asyncio.TimeoutError):
1244
1245
  self.logger.warning("Unable to get storage (timeout).")
1245
1246
  errors.append("Unable to get the storage (timeout).")
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "PlaywrightCapture"
3
- version = "1.41.2"
3
+ version = "1.41.3"
4
4
  description = "A simple library to capture websites using playwright"
5
5
  authors = [
6
6
  {name="Raphaël Vinot", email= "raphael.vinot@circl.lu"}
@@ -53,7 +53,7 @@ recaptcha = [
53
53
  types-beautifulsoup4 = "^4.12.0.20250516"
54
54
  pytest = "^9.1.1"
55
55
  mypy = "^2.3.1"
56
- types-dateparser = "^1.4.2.20260813"
56
+ types-dateparser = "^1.4.3.20260907"
57
57
  types-pytz = "^2026.3.1.20260727"
58
58
 
59
59