Fixes
New
-
Add handling for git path addition with new test coverage. 8ad5c82
Enhances the
Git
class by adding theadd_path
method, improving control over tracked files. Includes comprehensive test cases to validate subpath handling, handle command failures, and ensure robustness against invalid inputs. Also includes minor refactoring with updated exception handling and code comments. -
Added tests for
utils.is_subpath
. 4e993ed -
Add support for 'moveable_tags' configuration option. 2a2f1e6
This update introduces a new 'moveable_tags' field in the configuration model, with appropriate defaults. Test fixture files have been updated to reflect this change. This allows better handling of tags that can be relocated during versioning operations.
-
Add support for 'moveable_tags' configuration option. dd1efa5
This update introduces a new 'moveable_tags' field in the configuration model, with appropriate defaults. Test fixture files have been updated to reflect this change. This allows better handling of tags that can be relocated during versioning operations.
-
Added additional logging verbosity configuration in setup_logging. 2b420b8
Updated the logging verbosity levels to include formatting options for different verbosity levels. Added a new level (3) with detailed output including file path and line number. Refactored setup_logging to properly handle verbosity and log format settings.
Other
-
Merge remote-tracking branch 'origin/moving-tags' into moving-tags. a2b7bd1
-
[pre-commit.ci] pre-commit autoupdate. d03b1da
updates: - github.com/astral-sh/ruff-pre-commit: v0.8.6 → v0.9.2
-
[pre-commit.ci] pre-commit autoupdate. 584711b
updates: - github.com/astral-sh/ruff-pre-commit: v0.8.4 → v0.8.6
-
[pre-commit.ci] pre-commit autoupdate. c583694
updates: - github.com/astral-sh/ruff-pre-commit: v0.8.3 → v0.8.4
-
Bump softprops/action-gh-release from 1 to 2 in the github-actions group. 787c241
Bumps the github-actions group with 1 update: softprops/action-gh-release.
Updates
softprops/action-gh-release
from 1 to 2
updated-dependencies: - dependency-name: softprops/action-gh-release
dependency-type: direct:production
update-type: version-update:semver-major
dependency-group: github-actionssigned-off-by: dependabot[bot] [email protected]
Updates
-
Updated some tests. 4013d86
-
Remove legacy SCM implementation and add new SCM tests. ddbe21e
Replaced the outdated
scm_old.py
with a focused and updated SCM implementation. Added extensive tests for the newSCMInfo
behavior, path handling, and commit/tag logic, ensuring robust functionality for Git and Mercurial. Updated fixtures and test configurations accordingly. -
Rename
scm.py
toscm_old.py
and add new utility functions. dac965dRefactored SCM-related imports to use the renamed
scm_old.py
for better module organization. Introducedis_subpath
utility to simplify path checks and added support for moveable tags in version control systems. These changes improve code structure and extend functionality for tagging.