Skip to content

Commit

Permalink
Merge pull request #569 from openlawlibrary/sbojanic/change-log-level
Browse files Browse the repository at this point in the history
Release/0.32.4
  • Loading branch information
sale3 authored Dec 3, 2024
2 parents f3a3ec6 + 289931c commit 3245314
Showing 3 changed files with 18 additions and 5 deletions.
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -13,6 +13,18 @@ and this project adheres to [Semantic Versioning][semver].

### Fixed

## [0.32.4]

### Added

### Changed

- Change log level for `repositoriesdb` messages ([569])

### Fixed

[569]: https://github.com/openlawlibrary/taf/pull/569

## [0.32.3] - 11/22/2024

### Added
@@ -1357,7 +1369,8 @@ and this project adheres to [Semantic Versioning][semver].

[keepachangelog]: https://keepachangelog.com/en/1.0.0/
[semver]: https://semver.org/spec/v2.0.0.html
[unreleased]: https://github.com/openlawlibrary/taf/compare/v0.32.3...HEAD
[unreleased]: https://github.com/openlawlibrary/taf/compare/v0.32.4...HEAD
[0.32.4]: https://github.com/openlawlibrary/taf/compare/v0.32.3...v0.32.4
[0.32.3]: https://github.com/openlawlibrary/taf/compare/v0.32.2...v0.32.3
[0.32.2]: https://github.com/openlawlibrary/taf/compare/v0.32.1...v0.32.2
[0.32.1]: https://github.com/openlawlibrary/taf/compare/v0.32.0...v0.32.1
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup

PACKAGE_NAME = "taf"
VERSION = "0.32.3"
VERSION = "0.32.4"
AUTHOR = "Open Law Library"
AUTHOR_EMAIL = "[email protected]"
DESCRIPTION = "Implementation of archival authentication"
6 changes: 3 additions & 3 deletions taf/repositoriesdb.py
Original file line number Diff line number Diff line change
@@ -535,7 +535,7 @@ def _get_deduplicated_target_or_auth_repositories(
)
all_repositories = loaded_repositories_dict.get(auth_repo.path)
if all_repositories is None:
taf_logger.error(
taf_logger.debug(
"{} defined in authentication repository {} have not been loaded",
repositories_msg,
auth_repo.path,
@@ -548,7 +548,7 @@ def _get_deduplicated_target_or_auth_repositories(
# persuming that the newest commit is the last one
for commit in commits:
if commit not in all_repositories:
taf_logger.error(
taf_logger.debug(
"{} defined in authentication repository {} at revision {} have "
"not been loaded",
repositories_msg,
@@ -630,7 +630,7 @@ def _get_repositories(auth_repo, commit=None, load_auth=False):

repositories = all_repositories.get(commit)
if repositories is None:
taf_logger.error(
taf_logger.debug(
"{} defined in authentication repository {} at revision {} have "
"not been loaded",
repositories_msg,

0 comments on commit 3245314

Please sign in to comment.