Skip to content

Tags: treeverse/dvc

Tags

3.64.2

Toggle 3.64.2's commit message

Partially verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
We cannot verify signatures from co-authors, and some of the co-authors attributed to this commit require their commits to be signed.
feat(webdav): add bearer_token_command for dynamic token acquisition (#…

…10917)

Co-authored-by: GreenHatHG <[email protected]>
Co-authored-by: skshetry <[email protected]>

3.64.1

Toggle 3.64.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
exp: add support for --no-hydra flag (#10866)

3.64.0

Toggle 3.64.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[pre-commit.ci] pre-commit autoupdate (#10908)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

3.63.0

Toggle 3.63.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(data status): handle missing DVC repo at Git HEAD (#10862)

Avoid raising errors in `data_status()` when Git HEAD does not contain a DVC
repository. Instead, fall back to an empty index.

Tests now cover both unborn and committed Git repos, with and without subdirs.

3.62.0

Toggle 3.62.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[pre-commit.ci] pre-commit autoupdate (#10836)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

3.61.0

Toggle 3.61.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
[pre-commit.ci] pre-commit autoupdate (#10797)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>

3.60.1

Toggle 3.60.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
(fix) `DVC_SITE_CACHE_DIR` environment variable should override `core…

….site_cache_dir` (#10778)

* Prioritize DVC_SITE_CACHE_DIR over core.site_cache_dir

* Add tests for proper prioritization of env var and config

* Tests require python-3.9 compatible typing, use Optional

* Remove comment

* Fixup

3.60.0

Toggle 3.60.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
bench: check for dvc_bin.version instead of dvc_rev (#10764)

* bench: check for dvc_bin.version instead of dvc_rev

* Update dvc/testing/benchmarks/cli/stories/use_cases/test_sharing.py

* Update dvc/testing/benchmarks/cli/stories/use_cases/test_sharing.py

3.59.2

Toggle 3.59.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
repo: try to support opening uninitialized/broken repositories (#10736)

This `_get_remote_config()` should use `uninitialized=True` so that it supports
more broader kinds of broken/partially-initialized repositories, including some that have
`.dvc` directory missing, or `.git` directory missing.

This partially reverts #10719. #10608 is also fixed, and no longer requires `core.no_scm` to be passed.
This was already supported by `dvc.api.get_url` as it uses `uninitialized=True`, but this was not respected
in `_get_remote_config()` where it would fail before.

That said, this whole `open_repo`/`_get_remote_config` is terribly broken. For one, it is opening
a local repository, and forcing it's remote config to a repository opened with `Repo(rev=...)`,
where the config may be different.

3.59.1

Toggle 3.59.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
ls/ls-url: do not show entry with size<=0 for a directory (#10687)

ls/ls-url: do not show size=0 when the entry is a directory