Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version bump for v2.10.0 #263

Merged
merged 2 commits into from
Nov 3, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 17 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,24 @@
vx.y.z - TBD
v2.10.0 - 3 November 2021
------------

Bug fixes:

* [#247](https://github.com/godaddy/tartufo/issues/247) -- the `--branch` option
for `scan-remote-repo` has not worked since v2.0.2. Versions v2.2.0 through
v2.7.0 failed silently (not scanning the branch, and returning no error).
Versions v2.8.0 and later claimed the branch did not exist, even if it did.
This option now works correctly.
* [#247](https://github.com/godaddy/tartufo/issues/247) All versions of tartufo from
v2.2.0 through v2.9.0 inclusive mishandle `scan-remote-repo`. Only the repository's
default branch was scanned, and secrets present in other branches would not be
discovered. Additionally, the `--branch branch-name` option did not operate correctly
for remote repositories. Some versions would scan nothing and report no errors, and
other versions aborted immediately, claiming the branch did not exist (even if it did).
v2.10.0 corrects these problems and may detect secrets that were not reported by previous versions.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm not sure if it will have an impact on the Markdown formatting, but these lines should be indented by 2 spaces, to keep them aligned with their bullet point. At least, that is our convention. 😄


Features:

* [#231](https://github.com/godaddy/tartufo/issues/231) Change toml parsing library to use tomlkit

Other changes:

* [#251](https://github.com/godaddy/tartufo/issues/251) Document update to use --no-fetch flag
to all scan-local-repo

v2.9.0 - 19 October 2021
------------------------
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ maintainers = ["GoDaddy <oss@godaddy.com>"]
name = "tartufo"
readme = "README.md"
repository = "https://github.com/godaddy/tartufo/"
version = "2.9.0"
version = "2.10.0"

[tool.poetry.scripts]
tartufo = "tartufo.cli:main"
Expand Down