File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed
Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## v0.15.0
4+ ### Added
5+ * Simple TUF role metadata model in the ` tuf.api ` package for interacting with
6+ metadata files directly, per-file without the overheads of reading and
7+ writing the entire repository at once (#1112 )
8+ * Raise ` MissingLocalRepositoryError ` in updater when local repository can not
9+ be found (#1173 )
10+
11+ ### Changed
12+ * Raise an error in ` tuf.client.updater ` when metadata is loaded without a
13+ signature (#1100 )
14+ * Print a warning in ` tuf.repository_tool ` when metadata is written without a
15+ signature (#1100 )
16+ * Remove iso8661 dependency (#1176 )
17+ * Bump dependencies: cffi (#1146 ), cryptography (#1149 ), urllib (#1179 )
18+ * Overhauled logging to be less verbose and less alarming, by removing logging
19+ in the library when an exception is raised (including the same information
20+ that was logged) and using more appropriate log levels (#1145 )
21+ * Make test output more useful by reducing and improving logging (#1145 , #1104 , #1170 )
22+ * Make the ` targets_path ` , ` metadata_path ` and ` confined_target_dirs ` fields in
23+ ` tuf.client.updater ` s mirror configuration optional (#1153 , #1166 )
24+
25+ ### Fixed
26+ * Ensure file objects and ` requests.Responses ` are closed during tests (#1147 )
27+
328## v0.14.0
429### Added
530* Added a mechanism to the Updater to disable the hash prefix for target files
Original file line number Diff line number Diff line change 7878
7979setup (
8080 name = 'tuf' ,
81- version = '0.14 .0' , # If updating version, also update it in tuf/__init__.py
81+ version = '0.15 .0' , # If updating version, also update it in tuf/__init__.py
8282 description = 'A secure updater framework for Python' ,
8383 long_description = long_description ,
8484 long_description_content_type = 'text/markdown' ,
Original file line number Diff line number Diff line change 22# setup.py has it hard-coded separately.
33# Currently, when the version is changed, it must be set in both locations.
44# TODO: Single-source the version number.
5- __version__ = "0.14 .0"
5+ __version__ = "0.15 .0"
66
77# This reference implementation produces metadata intended to conform to
88# version 1.0.0 of the TUF specification, and is expected to consume metadata
You can’t perform that action at this time.
0 commit comments