diff --git a/debian/control b/debian/control
index 40349ab2741646b12ef839bb6edcaf8156a40360..a9a394deb876034ecb152ae95e6ddc9132373fc3 100644
--- a/debian/control
+++ b/debian/control
@@ -21,21 +21,21 @@ Build-Depends: curl,
                python3-sphinx,
                python3-sphinxcontrib.httpdomain,
                python3-yaml,
-               python3-swh.core (>= 0.0.20~),
+               python3-swh.core (>= 0.0.40~),
                python3-swh.model (>= 0.0.15~),
-               python3-swh.storage (>= 0.0.95~),
-               python3-swh.indexer.storage (>= 0.0.46~),
-               python3-swh.vault (>= 0.0.1~)
+               python3-swh.storage (>= 0.0.101~),
+               python3-swh.indexer.storage (>= 0.0.47~),
+               python3-swh.vault (>= 0.0.2~)
 Standards-Version: 3.9.6
 Homepage: https://forge.softwareheritage.org/diffusion/DWUI/
 
 Package: python3-swh.web
 Architecture: all
-Depends: python3-swh.core (>= 0.0.20~),
+Depends: python3-swh.core (>= 0.0.40~),
          python3-swh.model (>= 0.0.15~),
-         python3-swh.storage (>= 0.0.95~),
-         python3-swh.indexer.storage (>= 0.0.46~),
-         python3-swh.vault (>= 0.0.1~),
+         python3-swh.storage (>= 0.0.101~),
+         python3-swh.indexer.storage (>= 0.0.47~),
+         python3-swh.vault (>= 0.0.2~),
          ${misc:Depends},
          ${python3:Depends}
 Description: Software Heritage Web Applications
diff --git a/requirements-swh.txt b/requirements-swh.txt
index ce4f053c8a73e8fe91ea6ba61c94e35eed9b8f9e..64a6809264f7112729ce33aecc5fe97881385f5e 100644
--- a/requirements-swh.txt
+++ b/requirements-swh.txt
@@ -1,5 +1,5 @@
-swh.core >= 0.0.20
+swh.core >= 0.0.40
 swh.model >= 0.0.15
-swh.storage >= 0.0.96
-swh.vault >= 0.0.1
-swh.indexer.storage >= 0.0.46
+swh.storage >= 0.0.101
+swh.vault >= 0.0.2
+swh.indexer.storage >= 0.0.47
diff --git a/swh/web/config.py b/swh/web/config.py
index c0013302006b3552cbb175b46c743a1d06e229e1..dcf5a06d25e92ac978fdf3491b8f31c381a74729 100644
--- a/swh/web/config.py
+++ b/swh/web/config.py
@@ -15,12 +15,14 @@ DEFAULT_CONFIG = {
         'cls': 'remote',
         'args': {
             'url': 'http://127.0.0.1:5002/',
+            'timeout': 10,
         },
     }),
     'indexer_storage': ('dict', {
         'cls': 'remote',
         'args': {
             'url': 'http://127.0.0.1:5007/',
+            'timeout': 1,
         }
     }),
     'vault': ('string', 'http://127.0.0.1:5005/'),