Skip to content
Open
Changes from all commits
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
1 change: 1 addition & 0 deletions packages/l/libpqxx/xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ package("libpqxx")
add_urls("https://github.com/jtv/libpqxx/archive/refs/tags/$(version).tar.gz",
"https://github.com/jtv/libpqxx.git")

add_versions("7.10.2", "9e109ffe12daa7b689da41dac05509f41b803f8405e38b1687b54e09df19000f")
Copy link
Contributor

Choose a reason for hiding this comment

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

high

While this new version correctly uses a SHA-256 hash, the entry for the previous version 7.10.1 on the next line uses a SHA-1 hash (9bfaf9cb5a73ac23f9b7a9dfd7ef069a6e2124fb). For consistency and to avoid using a cryptographically weak algorithm, it's recommended to update the hash for 7.10.1 to its SHA-256 equivalent in this PR. You can generate it for the file from https://github.com/jtv/libpqxx/archive/refs/tags/7.10.1.tar.gz.

add_versions("7.10.1", "9bfaf9cb5a73ac23f9b7a9dfd7ef069a6e2124fb")
add_versions("7.7.0", "2d99de960aa3016915bc69326b369fcee04425e57fbe9dad48dd3fa6203879fb")

Expand Down
Loading