Mercurial > hg-stable
comparison relnotes/next @ 42948:c2676b5a9f59
narrow: don't hexify paths and double-hexify known nodes on wire (BC)
It isn't obvious, but wireprototypes.encodelist() is meant only for
binary nodeids. So when we used it for encoding hex nodeids and paths,
the encoded result was surprising and hard to read.
This patch changes the encoding to make the list of paths a
comma-separated list and the list of common nodes to be a
encodelist()-encoded list of binary nodeids (so the result is just
singly-hexified nodeids).
This is clearly a breaking change, but the feature is experimental and
we're not aware of anyone running a server using this command yet.
Differential Revision: https://phab.mercurial-scm.org/D6851
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Thu, 12 Sep 2019 21:22:59 -0700 |
parents | f10a0f5eedae |
children | a825ba8eb0a1 |
comparison
equal
deleted
inserted
replaced
42947:5fadf6103790 | 42948:c2676b5a9f59 |
---|---|
20 required for running the test suite. The test runner normally uses | 20 required for running the test suite. The test runner normally uses |
21 `sh`, so if that is a shell that doesn't support `$(command)` syntax, | 21 `sh`, so if that is a shell that doesn't support `$(command)` syntax, |
22 you can override it by setting `$HGTEST_SHELL` or by passing it to | 22 you can override it by setting `$HGTEST_SHELL` or by passing it to |
23 `run-tests.py --shell <shell>`. | 23 `run-tests.py --shell <shell>`. |
24 | 24 |
25 * The (experimental) narrow extension's wire protocol changed. If | |
26 you're using it, you'll need to make sure to upgrade server and | |
27 client at the same time. | |
28 | |
25 == Internal API Changes == | 29 == Internal API Changes == |
26 | 30 |