mercurial/bundlecaches.py
changeset 50309 d68462736492
parent 49648 9be765b82a90
child 50518 f2bcb56a1d39
--- a/mercurial/bundlecaches.py	Wed Mar 08 15:43:23 2023 +0100
+++ b/mercurial/bundlecaches.py	Wed Mar 08 15:23:22 2023 +0100
@@ -60,6 +60,7 @@
 _bundlespeccgversions = {
     b'v1': b'01',
     b'v2': b'02',
+    b'v3': b'03',
     b'packed1': b's1',
     b'bundle2': b'02',  # legacy
 }
@@ -82,6 +83,14 @@
         b'tagsfnodescache': True,
         b'revbranchcache': True,
     },
+    b'v3': {
+        b'changegroup': True,
+        b'cg.version': b'03',
+        b'obsolescence': False,
+        b'phases': True,
+        b'tagsfnodescache': True,
+        b'revbranchcache': True,
+    },
     b'streamv2': {
         b'changegroup': False,
         b'cg.version': b'02',