##// END OF EJS Templates
pep-517: remove the `build-backend` key to allow for users to build extensions...
pep-517: remove the `build-backend` key to allow for users to build extensions PEP 517 changed how projects should define their build dependencies. The presence of a `pyproject.toml` file changes the behavior of `pip` to conform to PEP 517. Since we haven't updated the `setup.py` file yet (I'm not even sure we're not an edge case which would make it harder/impossible, I have not tried yet), this is a workaround to issue6589: it allows users to pass `--no-use-pep517` to pip to revert to the legacy installer. The build backend is simply assumed to be the `build_meta:__legacy__` one. Differential Revision: https://phab.mercurial-scm.org/D11393

File last commit:

r48792:bad66df9 stable
r48841:58fe6d12 stable
Show More
next
41 lines | 1.0 KiB | text/plain | TextLexer
== New Features ==
* `debugrebuildfncache` now has an option to rebuild only the index files
== Default Format Change ==
These changes affects newly created repositories (or new clone) done with
Mercurial 6.0.
== New Experimental Features ==
* Added a new `web.full-garbage-collection-rate` to control performance. See
de2e04fe4897a554b9ef433167f11ea4feb2e09c for more information
== Bug Fixes ==
* `hg fix --working-dir` now correctly works when in an uncommitted merge state
* `rhg` (Rust fast-path for `hg`) now supports the full config list syntax
* `rhg` now parses some corner-cases for revsets correctly
* Lots of Windows fixes
* Lots of miscellaneous other fixes
== Backwards Compatibility Changes ==
== Internal API Changes ==
The following functions have been removed:
* `dirstate.normal`
* `dirstate.normallookup`
* `dirstate.otherparent`
* `dirstate.add`
* `dirstate.remove`
* `dirstate.drop`
* `dirstate.__getitem__`
Miscellaneous:
* `wireprotov1peer`'s `batchable` is now a simple function and not a generator
anymore