Libvcs

Latest version: v0.35.0

Safety actively analyzes 723607 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 7 of 14

0.16.1

Bug fix

Temporarily add `Faker` as a dependency (due to pytest), track longterm fix on (411)

0.16.0

New features

- Added a [pytest plugin](https://libvcs.git-pull.com/pytest-plugin.html). Create fresh, temporarily
repos on your machine locally for git, mercurial, and svn (409)

0.15.0

Breaking changes

- Moves (408):

- `libvcs.parse` -> `libvcs.url`
- `libvcs.projects` -> `libvcs.sync`

- Renames (408):

- `BaseProject` -> `BaseSync`
- `MercurialProject` -> `HgSync`
- `SubversionProject` -> `SvnSync`
- `GitProject` -> `GitSync`

- Deprecate custom functions in favor of standard library:
- `which()` in favor of {func}`shutil.which`, via 397
- `mkdir_p()` in favor of {func}`os.makedirs` and {meth}`pathlib.Path.mkdir` w/ `parents=True`,
via 399

Development

- Remove `.pre-commit-config.yaml`: This can be done less obtrusively via flake8 and having the user
run the tools themselves.
- Add [flake8-bugbear](https://github.com/PyCQA/flake8-bugbear) (#379)
- Add [flake8-comprehensions](https://github.com/adamchainz/flake8-comprehensions) (#402)

Documentation

- Render changelog in [`linkify_issues`] (396, 403)
- Fix Table of contents rendering with sphinx autodoc with [`sphinx_toctree_autodoc_fix`] (403)
- Deprecate `sphinx-autoapi`, per above fixing the table of contents issue (403)

This also removes the need to workaround autoapi bugs.

[`linkify_issues`]: https://gp-libs.git-pull.com/linkify_issues/
[`sphinx_toctree_autodoc_fix`]: https://gp-libs.git-pull.com/sphinx_toctree_autodoc_fix/

0.14.0

What's new

- New and improved logo
- **Improved typings**

Now [`mypy --strict`] compliant (390)

[`mypy --strict`]: https://mypy.readthedocs.io/en/stable/command_line.html#cmdoption-mypy-strict

- **Parser**: Experimental VCS URL parsing added (376, 381, 384, 386):

VCS Parsers return {func}`dataclasses.dataclass` instances. The new tools support validation,
parsing, mutating and exporting into URLs consumable by the VCS.

::: {warning}

APIs are unstable and subject to break until we get it right.

:::

- {mod}`libvcs.url.git`

- {class}`~libvcs.url.git.GitBaseURL` - Parse git URLs, `git(1)` compatible

- {meth}`~libvcs.url.git.GitBaseURL.is_valid`
- {meth}`~libvcs.url.git.GitBaseURL.to_url` - export `git clone`-compatible URL

- {class}`~libvcs.url.git.GitPipURL` - Pip URLs, {meth}`~libvcs.url.git.GitPipURL.is_valid`,
{meth}`~libvcs.url.git.GitPipURL.to_url`

- {class}`~libvcs.url.git.GitURL` - Compatibility focused,
{meth}`~libvcs.url.git.GitURL.is_valid` {meth}`~libvcs.url.git.GitURL.to_url`

- {mod}`libvcs.url.hg`

- {class}`~libvcs.url.hg.HgURL` - Parse Mercurial URLs
- {meth}`~libvcs.url.hg.HgURL.is_valid`
- {meth}`~libvcs.url.hg.HgURL.to_url` - export `hg clone`-compatible URL

- {mod}`libvcs.url.svn`

- {class}`~libvcs.url.svn.SvnURL` - Parse Subversion URLs
- {meth}`~libvcs.url.svn.SvnURL.is_valid`
- {meth}`~libvcs.url.svn.SvnURL.to_url` - export `svn checkout`-compatible URL

Detection can be extended through writing {class}`~libvcs.url.base.Matcher`s and adding them to
the classes' {class}`~libvcs.url.base.MatcherRegistry`

You can write your own VCS parser by implementing {class}`~libvcs.url.base.URLProtocol`, but it
would be most efficient if you studied the source of the `git(1)` parser to see how it's done.

Breaking changes

- 391 Removed `flat` keyword argument for {class}`libvcs.sync.git.GitSync`. This was unused and the
equivalent can be retrieved via `.to_dict()` on `GitRemote`
- 379 Support for `git+git` URLs removed. Pip removed these in 21.0 due to them being insecure
[^pip-git+git]
- 372 Typings moved from `libvcs.types` -> {mod}`libvcs._internal.types`
- 377 Remove deprecated functions and exceptions

- Removed `libvcs.shortcuts`
- Removed `libvcs.shortcuts.create_project_from_pip_url()`: This will be replaced in future
versions by 376 / parsing utilities
- Moved `libvcs.shortcuts.create_project()` to {func}`libvcs._internal.shortcuts.create_project`
- Removed {exc}`libvcs.exc.InvalidPipURL`

[^pip-git+git]: pip removes `git+git` <https://github.com/pypa/pip/pull/7543>

Fixes

- Minor spelling fix in Git's `convert_pip_url()` exception
- Fix mercurial cloning in {class}`libvcs.sync.hg.HgSync`

_Backport from 0.13.1_

Typings

- Rename `VcsLiteral` -> `VCSLiteral`

_Backport from 0.13.4_

- {func}`~libvcs.shortcuts.create_project`: Add overloads that return the typed project (e.g.,
{class}`~libvcs.sync.git.GitSync`)

_Backport from 0.13.3_

Cleanup

- 378 380 Remove duplicate `uses_netloc` scheme for `git+ssh` (this was in cpython since 2.7 / 3.1
[^git+ssh][^python:bugs:8657])

[^git+ssh]: `uses_netloc` added `'git'` and `'git+ssh'` in {mod}`urllib.parse`

[python/cpythonead169d]

[python/cpythonead169d]: https://github.com/python/cpython/commit/ead169d3114ed0f1041b5b59ca20293449608c50

[^python:bugs:8657]: <https://bugs.python.org/issue8657>

0.13.6

Development

- Move `libvcs.shortcuts` to {mod}`libvcs._internal.shortcuts`

0.13.5

Development

- Note upcoming deprecation of `create_project_from_pip_url` in v0.14
- Note `create_project` becoming internal API in upcoming release v0.14
- Fix import in `libvcs.shortcuts` (in v0.14 this module will not exist)

Page 7 of 14

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.