Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 928 Bytes

DEPS_MONITORING.md

File metadata and controls

22 lines (17 loc) · 928 Bytes

Since we can't use Dependabot to monitor these C packages/libraries automatically, we rely on the folllowing sources:

Libevent is monitored using an RSS reader.

OpenSSL and Zlib are monitored using a local git repo which keeps a copy of the latest version of the changelog and a daily cronjob to update it:

#!/bin/bash

pushd ~/openssl-changelog > /dev/null
wget --quiet -O cl111.txt https://www.openssl.org/news/cl111.txt || exit 1
git diff
git commit -a -m "Updated changelog" > /dev/null
popd > /dev/null