~mvo/snapd/+git/snapd-mvo:base-core20-core18

Last commit made on 2023-10-10
Get this branch:
git clone -b base-core20-core18 https://git.launchpad.net/~mvo/snapd/+git/snapd-mvo

Branch merges

Branch information

Name:
base-core20-core18
Repository:
lp:~mvo/snapd/+git/snapd-mvo

Recent commits

56d05ff... by Michael Vogt

WIP

1738368... by Michael Vogt

many: apparmor_parser needs to run with snapdtool.CommandFromSystemSnap()

816aa2f... by Michael Vogt

snapcraft.yaml: mksquashfs needs libzstd1 on 20.04

9db53d7... by Michael Vogt

tests: fix test failure in snapd-snap test due to outdated apparmor (LP:2024637)

b3dd9ad... by Michael Vogt

Merge remote-tracking branch 'upstream/master' into base-core20-core18

0c216c3... by Philip Meulengracht

tests/main: remove unsupported core16 tests

6bbede4... by Andrew Phelps

i/builtin: fix u2f tests that was broken by adding new device

e9e76c1... by Michael Vogt

Merge remote-tracking branch 'upstream/master' into base-core20-core18

5238d05... by Stijn Bannink

interfaces/builtin: added support for Token2 U2F keys (#12984)

Co-authored-by: RomanNovacek <email address hidden>

b4f263b... by Alfonso Sanchez-Beato

many: replace exec.CombinedOutput when output is parsed

Some invocations to external programs used exec.CombinedOutput, that
combines stdout and strerr into a single byte array. This can be an
issue if this output is parsed, as many programs print debug output or
warnings to stderr and that data is unexpected by the parsers. This
patch changes to using osutil.RunSplitOutput or osutil.RunCmd (that
return separately stdout and stderr) when we need to parse stdout, and
also in some other cases when printing separately both streams could
be helpful. Fixes LP #1885597.