Verifying the Release
In order to verify the release, you'll need to have gpg
or gpg2
installed on your system. Once you've obtained a copy (and hopefully verified that as well), you'll first need to import the keys that have signed this release if you haven't done so already:
gpg --keyserver hkps://keyserver.ubuntu.com --recv-keys F4FC70F07310028424EFC20A8E4256593F177720
Once you have his PGP key you can verify the release (assuming manifest-v0.2.13-alpha.txt
and manifest-v0.2.13-alpha.sig
are in the current directory) with:
gpg --verify manifest-v0.2.13-alpha.sig manifest-v0.2.13-alpha.txt
You should see the following if the verification was successful:
gpg: Signature made Do 25 Nov 2021 10:41:18 CET
gpg: using RSA key F4FC70F07310028424EFC20A8E4256593F177720
gpg: Good signature from "Oliver Gugger <gugger@gmail.com>" [ultimate]
Primary key fingerprint: F4FC 70F0 7310 0284 24EF C20A 8E42 5659 3F17 7720
That will verify the signature on the main manifest page which ensures integrity and authenticity of the binaries you've downloaded locally. Next, depending on your operating system you should then re-calculate the sha256
sum of the binary, and compare that with the following hashes:
cat manifest-v0.2.13-alpha.txt
One can use the shasum -a 256 <file name here>
tool in order to re-compute the sha256
hash of the target binary for your operating system. The produced hash should be compared with the hashes listed above and they should match exactly.
Finally, you can also verify the tag itself with the following command:
git verify-tag v0.2.13-alpha
Release Notes (since v0.2.11-alpha, auto generated)
What's Changed
- Upgrade go to 1.19 in Dockerfile by @andrei-21 in #167
- build(deps): bump google.golang.org/grpc from 1.41.0 to 1.53.0 by @dependabot in #168
- mod+cmd/frcli: bump lnd version to v0.17.0-beta by @guggero in #171
- build(deps): bump golang.org/x/net from 0.10.0 to 0.17.0 by @dependabot in #172
- build(deps): bump google.golang.org/grpc from 1.53.0 to 1.56.3 by @dependabot in #173
- build(deps): bump go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc from 0.25.0 to 0.46.0 by @dependabot in #174
- build(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 by @dependabot in #179
- accounting: increase client gRPC max receive size, bump lndclient to fix large message issue by @guggero in #178
- Record fees for self initiated sweeps to self (utxo management) by @mrfelton in #180
- faraday: bump LND dependecy to v0.17.4-beta by @bhandras in #183
- Include outgoing payment description in audit memo by @mrfelton in #182
- config: allow tls cert validity duration to be configured by @mrfelton in #185
- version: bump to v0.2.13-alpha by @guggero in #186
New Contributors
- @andrei-21 made their first contribution in #167
- @mrfelton made their first contribution in #180
- @bhandras made their first contribution in #183
Full Changelog: v0.2.11-alpha...v0.2.13-alpha