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

store: download deltas if explicitly enabled #2017

Merged
merged 6 commits into from Sep 29, 2016

Conversation

absoludity
Copy link
Contributor

@absoludity absoludity commented Sep 28, 2016

This branch enables (via the SNAPPY_USE_DELTAS env var) the download of deltas associated with a store downloadInfo.

It is written to default back to the normal full download if there's an error, and in this branch, even when there is no error it doesn't actually do anything with the downloaded deltas anyway (other than log success and delete them again).

I'll have another branch soon which will actually use the downloaded deltas.

(Note: when running ./run-checks I see one unrelated test failure which passes if I run that test on its own - http://paste.ubuntu.com/23245672/ - is that a known flaky test? EDIT: confirmed that re-running ./run-checks and everything passed, so I'm assuming it's flaky).

Copy link
Contributor

@niemeyer niemeyer left a comment

Choose a reason for hiding this comment

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

Looks like a good start. We discussed it online too.

Some initial points:

@@ -335,6 +337,201 @@ func (t *remoteRepoTestSuite) TestDownloadSyncFails(c *C) {
c.Assert(osutil.FileExists(tmpfile.Name()), Equals, false)
}

func (t *remoteRepoTestSuite) TestDownloadWithDeltasOK(c *C) {
Copy link
Contributor

Choose a reason for hiding this comment

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

These tests all look almost exactly the same. Can we represent them as a table with the variants we're after and a single test function that loops over the table, instead of duplicating all the logic on every test?

Something like:

var deltaTests = []deltaTest{{
    foo: 1,
    bar: 2,
}, {
    baz: []string{"foo", "bar"},
}}

func (t *remoteRepoTestSuite) TestDownloadWithDeltas(c *C) {
        for _, test := range deltaTests {
                ...
        }
}

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Heh - yes. I actually prefer that style (which seems more popular in golang than in python, where I'm usually asked to split it into separate tests :) ).

Note that there are two types of tests... the first two are testing the store.Download function - and I've combined those into one with two test cases.

The other three are testing the private store.downloadDeltas function, which I've grouped together also. Much neater (as you can just compare the input and expected output).

@@ -1131,6 +1131,25 @@ func (s *Store) Download(name string, downloadInfo *snap.DownloadInfo, pbar prog
}
}()

if os.Getenv("SNAPPY_USE_DELTAS") == "1" && len(downloadInfo.Deltas) >= 0 {
Copy link
Contributor

Choose a reason for hiding this comment

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

s/>=/>/

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes. I also updated the env var to be sure it's experimental.

if err != nil {
// Just log the error and continue with the normal non-delta
// download.
logger.Noticef("cannot download deltas for %s: %v", name, err)
Copy link
Contributor

Choose a reason for hiding this comment

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

s/cannot/Cannot/, and s/succ/Succ/ below.

(lowercase on errors, uppercase on logs)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ah - good to know. Done.

@@ -1131,6 +1131,25 @@ func (s *Store) Download(name string, downloadInfo *snap.DownloadInfo, pbar prog
}
}()

if os.Getenv("SNAPPY_USE_DELTAS") == "1" && len(downloadInfo.Deltas) >= 0 {
downloadDir, err := ioutil.TempDir("", fmt.Sprintf("%s-deltas", name))
Copy link
Contributor

Choose a reason for hiding this comment

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

name+"-deltas" is nicer for these trivial cases.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

@@ -1178,6 +1197,38 @@ var download = func(name, downloadURL string, user *auth.UserState, s *Store, w
return err
}

// downloadDeltas downloads the deltas associated with a downloadInfo, returning the paths.
func (s *Store) downloadDeltas(name string, downloadDir string, downloadInfo *snap.DownloadInfo, pbar progress.Meter, user *auth.UserState) ([]string, error) {
deltaPaths := []string{}
Copy link
Contributor

@niemeyer niemeyer Sep 28, 2016

Choose a reason for hiding this comment

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

deltaPaths := make([]string, 0, len(downloadInfo.Deltas)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.... and then removed when updating to only ever return a single delta path.

}
deltaName := fmt.Sprintf("%s_%d_%d_delta.%s", name, deltaInfo.FromRevision, deltaInfo.ToRevision, deltaInfo.Format)

w, err := os.Create(path.Join(downloadDir, deltaName))
Copy link
Contributor

Choose a reason for hiding this comment

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

This needs to be closed somewhen.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Right, they can be closed as soon as each delta download completes, which I've added.

deltaName := fmt.Sprintf("%s_%d_%d_delta.%s", name, deltaInfo.FromRevision, deltaInfo.ToRevision, deltaInfo.Format)

w, err := os.Create(path.Join(downloadDir, deltaName))
if err != nil {
Copy link
Contributor

Choose a reason for hiding this comment

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

Also needs to collect after itself on errors. This function may create multiple files, and these need to be removed before returning if something bad happened.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

The call-site (store.Download) provides a working directory within which the delta is downloaded (and on the next branch, the result of applying the delta will be constructed), and cleans the directory up. I initially had downloadDelta creating the directory itself, but it seemed less clean to have the call-site having to delete the directory created by downloadDelta.

Let me know what you prefer.

@niemeyer niemeyer changed the title Download deltas (but do nothing with them yet) when env var is set. store: download deltas if explicitly enabled Sep 28, 2016
Copy link
Contributor Author

@absoludity absoludity left a comment

Choose a reason for hiding this comment

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

Thanks Gustavo - for the feedback here and on chat.

All the suggestions have been done below - details below.

Also, based on the chat, I've realised I got ahead of myself supporting future possibilities which we haven't set in stone. So I've simplified to implement only the initial delta download support (carefully so that we can move to, for example, support multiple deltas later, without breaking old clients).

The metadata endpoint of the store returns a list of deltas as it can be queried currently for multiple formats, and in the future we'd like to consider sending consecutive deltas when a direct one is not available. Nonetheless, I've simplified this initial snapd implementation so that the client only requests a single format (defaults to xdelta), and therefore only expects a single delta to download. If it receives more than one, it ignores deltas and does the normal full download (ie. if we change both the store and snapd in the future to send/receive multiple deltas, the worst-case for an out-of-date client is that it downloads full snaps).

Thanks

@@ -1131,6 +1131,25 @@ func (s *Store) Download(name string, downloadInfo *snap.DownloadInfo, pbar prog
}
}()

if os.Getenv("SNAPPY_USE_DELTAS") == "1" && len(downloadInfo.Deltas) >= 0 {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Yes. I also updated the env var to be sure it's experimental.

@@ -1131,6 +1131,25 @@ func (s *Store) Download(name string, downloadInfo *snap.DownloadInfo, pbar prog
}
}()

if os.Getenv("SNAPPY_USE_DELTAS") == "1" && len(downloadInfo.Deltas) >= 0 {
downloadDir, err := ioutil.TempDir("", fmt.Sprintf("%s-deltas", name))
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

if err != nil {
// Just log the error and continue with the normal non-delta
// download.
logger.Noticef("cannot download deltas for %s: %v", name, err)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ah - good to know. Done.

@@ -1178,6 +1197,38 @@ var download = func(name, downloadURL string, user *auth.UserState, s *Store, w
return err
}

// downloadDeltas downloads the deltas associated with a downloadInfo, returning the paths.
func (s *Store) downloadDeltas(name string, downloadDir string, downloadInfo *snap.DownloadInfo, pbar progress.Meter, user *auth.UserState) ([]string, error) {
deltaPaths := []string{}
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.... and then removed when updating to only ever return a single delta path.

}
deltaName := fmt.Sprintf("%s_%d_%d_delta.%s", name, deltaInfo.FromRevision, deltaInfo.ToRevision, deltaInfo.Format)

w, err := os.Create(path.Join(downloadDir, deltaName))
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Right, they can be closed as soon as each delta download completes, which I've added.

deltaName := fmt.Sprintf("%s_%d_%d_delta.%s", name, deltaInfo.FromRevision, deltaInfo.ToRevision, deltaInfo.Format)

w, err := os.Create(path.Join(downloadDir, deltaName))
if err != nil {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

The call-site (store.Download) provides a working directory within which the delta is downloaded (and on the next branch, the result of applying the delta will be constructed), and cleans the directory up. I initially had downloadDelta creating the directory itself, but it seemed less clean to have the call-site having to delete the directory created by downloadDelta.

Let me know what you prefer.

@@ -335,6 +337,201 @@ func (t *remoteRepoTestSuite) TestDownloadSyncFails(c *C) {
c.Assert(osutil.FileExists(tmpfile.Name()), Equals, false)
}

func (t *remoteRepoTestSuite) TestDownloadWithDeltasOK(c *C) {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Heh - yes. I actually prefer that style (which seems more popular in golang than in python, where I'm usually asked to split it into separate tests :) ).

Note that there are two types of tests... the first two are testing the store.Download function - and I've combined those into one with two test cases.

The other three are testing the private store.downloadDeltas function, which I've grouped together also. Much neater (as you can just compare the input and expected output).

Copy link
Contributor

@niemeyer niemeyer left a comment

Choose a reason for hiding this comment

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

A few more points, and it's perhaps good to go in IMO.

func (s *Store) downloadDelta(name string, downloadDir string, downloadInfo *snap.DownloadInfo, pbar progress.Meter, user *auth.UserState) (string, error) {

if len(downloadInfo.Deltas) != 1 {
return "", errors.New("Store returned more than one delta")
Copy link
Contributor

Choose a reason for hiding this comment

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

s/S/s/ (errors lowercase, logs uppercase)

Copy link
Contributor

Choose a reason for hiding this comment

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

Same below.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Sorry - you did mention that earlier for logs, but managed to forget it when creating those errors. Done.

deltaInfo := downloadInfo.Deltas[0]

if deltaInfo.Format != s.deltaFormat {
return "", errors.New("Store returned delta with format " + deltaInfo.Format)
Copy link
Contributor

Choose a reason for hiding this comment

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

return "", fmt.Errorf("store returned delta with format %q", deltaInfo.Format)

so it's quoted.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

w, err := os.Create(path.Join(downloadDir, deltaName))
if err != nil {
return "", err
}
Copy link
Contributor

Choose a reason for hiding this comment

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

defer w.Close()

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done... although I did the similar defer func(){} to ensure we check the error on w.Close() and return that error unless there's an error being returned already (and either way deleting the file in that case). Let me know if that's not what you wanted.


err = download(deltaName, url, user, s, w, pbar)
if err != nil {
return "", err
Copy link
Contributor

Choose a reason for hiding this comment

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

Leaking an open file here, without the defer above.

@@ -335,6 +337,181 @@ func (t *remoteRepoTestSuite) TestDownloadSyncFails(c *C) {
c.Assert(osutil.FileExists(tmpfile.Name()), Equals, false)
}

type downloadBehaviour []struct {
URL string
Error bool
Copy link
Contributor

Choose a reason for hiding this comment

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

These can all lowercase. Ideally we should use uppercase specifically when we intend things to be exported somehow, either from the package or via marshaling.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

var deltaTests = []struct {
Downloads downloadBehaviour
Info snap.DownloadInfo
ExpectedContent string
Copy link
Contributor

Choose a reason for hiding this comment

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

Same.. expectedContent, etc.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

...and Done.

Authenticated bool
Format string
ExpectedURL string
ExpectedPath string
Copy link
Contributor

Choose a reason for hiding this comment

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

Same here.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

Copy link
Contributor Author

@absoludity absoludity left a comment

Choose a reason for hiding this comment

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

Thanks again @niemeyer . All updated, details below (one slight difference from what you suggested for the defer w.Close())

func (s *Store) downloadDelta(name string, downloadDir string, downloadInfo *snap.DownloadInfo, pbar progress.Meter, user *auth.UserState) (string, error) {

if len(downloadInfo.Deltas) != 1 {
return "", errors.New("Store returned more than one delta")
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Sorry - you did mention that earlier for logs, but managed to forget it when creating those errors. Done.

deltaInfo := downloadInfo.Deltas[0]

if deltaInfo.Format != s.deltaFormat {
return "", errors.New("Store returned delta with format " + deltaInfo.Format)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

w, err := os.Create(path.Join(downloadDir, deltaName))
if err != nil {
return "", err
}
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done... although I did the similar defer func(){} to ensure we check the error on w.Close() and return that error unless there's an error being returned already (and either way deleting the file in that case). Let me know if that's not what you wanted.

@@ -335,6 +337,181 @@ func (t *remoteRepoTestSuite) TestDownloadSyncFails(c *C) {
c.Assert(osutil.FileExists(tmpfile.Name()), Equals, false)
}

type downloadBehaviour []struct {
URL string
Error bool
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

var deltaTests = []struct {
Downloads downloadBehaviour
Info snap.DownloadInfo
ExpectedContent string
Copy link
Contributor Author

Choose a reason for hiding this comment

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

...and Done.

Authenticated bool
Format string
ExpectedURL string
ExpectedPath string
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

deltaInfo := downloadInfo.Deltas[0]

if deltaInfo.Format != s.deltaFormat {
return "", fmt.Errorf("store returned delta with format %q", deltaInfo.Format)
Copy link
Contributor

Choose a reason for hiding this comment

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

if I saw this error I wouldn't know what the expected delta format was without digging a lot more

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I've updated it to:

fmt.Errorf("store returned a download delta with the wrong format (%q instead of the configured %s format)", deltaInfo.Format, s.deltaFormat)

let me know if this is more obvious.

Copy link
Contributor

Choose a reason for hiding this comment

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

yep! thanks

if err != nil {
return "", err
}

Copy link
Contributor

Choose a reason for hiding this comment

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

so at this point the file is downloaded and stored somewhere, but you have no guarantees that it ever made it to disc. This treatment is fine for tempfiles (such as what Download does) but not at all fine for things you expect to be on permanent storage. You need to download to a temporary filename (in the same directory you want it to then live), and on success sync the file, rename it, and sync the directory. Take a look at AtomicWriteFileChown in osutil/io.go.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We chatted about this - and you mentioned that it is fine without a w.Sync() even, as xdelta doesn't go through raw io, but goes through the vfs.

@@ -1059,9 +1060,9 @@ func (s *Store) ListRefresh(installed []*RefreshCandidate, user *auth.UserState)
Data: jsonData,
}

if os.Getenv("SNAPPY_USE_DELTAS") == "1" {
if os.Getenv("SNAPPY_USE_DELTAS_EXPERIMENTAL") == "1" {
Copy link
Contributor

Choose a reason for hiding this comment

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

can you make it SNAPD_ while you're at it? sorry to be nitpicky, and I know there are some env vars that are SNAPPY_, but I'm trying to have things that only affect snapd be SNAPD_

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

Copy link
Contributor

Choose a reason for hiding this comment

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

thanks!

Copy link
Contributor Author

@absoludity absoludity left a comment

Choose a reason for hiding this comment

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

Thanks @chipaca . Updated except for the delta-download-to-permanent-storage which we chatted about, as per below.

@@ -1059,9 +1060,9 @@ func (s *Store) ListRefresh(installed []*RefreshCandidate, user *auth.UserState)
Data: jsonData,
}

if os.Getenv("SNAPPY_USE_DELTAS") == "1" {
if os.Getenv("SNAPPY_USE_DELTAS_EXPERIMENTAL") == "1" {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Done.

deltaInfo := downloadInfo.Deltas[0]

if deltaInfo.Format != s.deltaFormat {
return "", fmt.Errorf("store returned delta with format %q", deltaInfo.Format)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

I've updated it to:

fmt.Errorf("store returned a download delta with the wrong format (%q instead of the configured %s format)", deltaInfo.Format, s.deltaFormat)

let me know if this is more obvious.

if err != nil {
return "", err
}

Copy link
Contributor Author

Choose a reason for hiding this comment

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

We chatted about this - and you mentioned that it is fine without a w.Sync() even, as xdelta doesn't go through raw io, but goes through the vfs.

Michael Nelson added 6 commits September 29, 2016 10:11
 * Be explicit about the expected content of info.DownloadInfo.Deltas
 * Merge similar tests with test cases.
 * Use a more explicitly experimental env var name
 * Other minor fixes.
only expect a single delta download in response.
Defer the close of the delta download to ensure it always happens.
Test structs don't need public attributes.
Add more context to delta-related error message.
@chipaca chipaca merged commit 58da1b0 into snapcore:master Sep 29, 2016
mwhudson pushed a commit to mwhudson/snapd that referenced this pull request Mar 5, 2019
Imported using git-ubuntu import.

Changelog parent: d92891f

New changelog entries:
  * New upstream release, LP: #1637215:
    - release: os-release on core has changed
    - tests: /dev/ptmx does not work on powerpc, skip here
    - docs: moved to github.com/snapcore/snapd/wiki (snapcore#2258)
    - debian: golang is not installable on powerpc, use golang-any
  * New upstream release, LP: #1637215:
    - overlord/ifacestate: add unit tests for undo of setup-snap-
      security (snapcore#2243)
    - daemon,overlord,snap,tests: download to .partial in final dir
      (snapcore#2237)
    - overlord/state: marshaling tests for lanes (snapcore#2245)
    - overlord/state: introduce state lanes (snapcore#2241)
    - overlord/snapstate: fix revert+refresh (snapcore#2224)
    - interfaces/sytemd: enable/disable generated service units (snapcore#2229)
    - many: fix incorrect security files generation on undo
    - overlord/snapstate: add dynamic snapdX.Y assumes (snapcore#2227)
    - interfaces: network-manager: give slot full read-write access to
      /run/NetworkManager
    - docs: update the name of the command for the cross-build
    - overlord/snapstate: fix missing argument to Noticef
    - snapstate: ensure gadget/core/kernel can not be disabled (snapcore#2218)
    - asserts: limit to 1y only if len(models) == 0 (snapcore#2219)
    - debian: only install share/locale if available (missing on
      powerpc)
    - overlrod/snapstate: fix revert followed by refresh to old-current
      (snapcore#2214)
    - interfaces/builtin: network-manager and bluez can change hostname
      (snapcore#2204)
    - snap: switch the auto-import dir to /run/snapd/auto-import
    - docs: less details about cloud.cfg as requested in trello (snapcore#2206)
    - spread.yaml: Ensure ubuntu user has passwordless sudo for
      autopkgtests (snapcore#2201)
    - interfaces/builtin: add dcdbas-control interface
    - boot: do not set boot to try mode if the revision is unchanged
    - interfaces: add shutdown interface (snapcore#2162)
    - interfaces: add system-power-control interface
    - many: use the new systemd backend for configuring GPIOs
    - overlord/ifacestate: setup security for slots before plugs
    - snap: spool assertion candidates if snapd is not up yet
    - store,daemon,overlord: download things to a partials dir
    - asserts,daemon: implement system-user-authority header/concept
    - interfaces/builtin: home base declaration rule using on-classic
      for its policy
    - interfaces/builtin: finish decl based checks
    - asserts: bump snap-declaration to allow signing with new-style
      plugs and slots
    - overlord: checks for kernel installation/refresh based on model
      assertion and previous kernel
    - tests/lib/fakestore: fix logic to distinguish assertion not found
      errors
    - client: add a few explicit error types (around the request cycle)
    - tests/lib/fakestore/cmd/fakestore: make it log, and fix a typo
    - overlord/snapstate: two bugs for one
    - snappy: disable auto-import of assertions on classic (snapcore#2122)
    - overlord/snapstate: move trash cleanup to a cleanup handler
      (snapcore#2173)
    - daemon: make create-user --known fail on classic without --force-
      managed (snapcore#2123)
    - asserts,interfaces/policy: implement on-classic plug/slot
      constraints
    - overlord: check that the first installed gadget matches the model
      assertion
    - tests: use the snapd-control-consumer snap from the store
    - cmd/snap: make snap run not talk to snapd for finding the revision
    - snap/squashfs: try to hard link instead of copying. Also, switch
      to osutil.CopyFile for cp invocation.
    - store: send supported max-format when retrieving assertions
    - snapstate, devicestate: do not remove seed
    - boot,image,overlord,partition: read/write boot variables in single
      operation
    - tests: reenable ubuntu-core tests on qemu
    - asserts,interfaces/policy: allow OR-ing of subrule constraints in
      plug/slot rules
    - many: move from flags as ints to flags as structs-of-bools (snapcore#2156)
    - many: add supports for keeping and finding assertions with
      different format iterations
    - snap: stop using ubuntu-core-launcher, use snap-confine
    - many: introduce an assertion format iteration concept, refuse to
      add unsupported assertion
    - interfaces: tweak wording and comment
    - spread.yaml: dump apparmor denials on spread failure
    - tests: unflake ubuntu-core-reboot (snapcore#2150)
    - cmd/snap: tweak unknown command error message (snapcore#2139)
    - client,daemon,cmd: add payment-declined error kind (snapcore#2107)
    - cmd/snap: update remove command help (snapcore#2145)
    - many: removed frameworks target and fixed service files (snapcore#2138)
    - asserts,snap: validate attributes to a JSON-compatible type subset
      (snapcore#2140)
    - asserts: remove unused serial-proof type
    - tests: skip auto-import tests on systems without test keys (snapcore#2142)
    - overlord/devicestate: don't spam the debug log on classic (snapcore#2141)
    - cmd/snap: simplify auto-import mountinfo parsing (snapcore#2135)
    - tests: run ubuntu-core upgrades on isolated machine (snapcore#2137)
    - overlord/devicestate: recover seeding from old external approach
      (snapcore#2134)
    - overlord: merge overlord/boot pkg into overlord/devicestate
      (snapcore#2118)
    - daemon: add postCreateUserSuite test suite (snapcore#2124)
    - tests: abort tests if an update process is scheduled (snapcore#2119)
    - snapstate: avoid reboots if nothing in the boot setup has changed
      (snapcore#2117)
    - cmd/snap: do not auto-import from loop or non-dev devices (snapcore#2121)
    - tests: add spread test for `snap auto-import` (snapcore#2126)
    - tests: add test for auto-mount assertion import (snapcore#2127)
    - osutil: add missing unit tests for IsMounted (snapcore#2133)
    - tests: check for failure creating user on managed ubuntu-core
      systems (snapcore#2096)
    - snap: ignore /dev/loop addings from udev (snapcore#2111)
    - tests: remove snapd.boot-ok reference (snapcore#2109)
    - tests: enable tests related to the home interface in all-snaps
      (snapcore#2106)
    - snapstate: only import defaults from gadget on install (snapcore#2105)
    - many: move firstboot code into the snapd daemon (snapcore#2033)
    - store: send correct JSON type of string for expected payment
      amount (snapcore#2103)
    - cmd/snap: rename is-managed to managed and tune (snapcore#2102)
    - interfaces,overlord/ifacestate: initial cleaning up of no arg
      AutoConnect related bits (snapcore#2090)
    - client, cmd: prompt for password when buying (snapcore#2086)
    - snapstate: fix hanging `snap remove` if snap is no longer mounted
    - image: support gadget specific cloud.conf file (snapcore#2101)
    - cmd/snap,ctlcmd: fix behavior of snap(ctl) get (snapcore#2093)
    - store: local users download from the anonymous url (snapcore#2100)
    - docs/hooks.md: fix typos (snapcore#2099)
    - many: check installation of slots and plugs against declarations
    - docs: fix missing "=" in the systemd-active docs
    - store: do not set store auth for local users (snapcore#2092)
    - interfaces,overlord/ifacestate: use declaration-based checking for
      auto-connect (snapcore#2071)
    - overlord, daemon, snap: support gadget config defaults (snapcore#2082)The
      main semantic changes are:
    - tests: fix snap-disconnect tests after core rename (snapcore#2088)
    - client,daemon,overlord,cmd: add /v2/users and create-user on auto-
      import (snapcore#2074)
    - many: abbreviated forms of disconnect (snapcore#2066)
    - asserts: require lowercase model until insensitive matching is
      ready (snapcore#2076)
    - cmd/snap: add version command, same as --version (snapcore#2075)
    - all: use "core" by default but allow "ubuntu-core" still (snapcore#2070)
    - overlord/devicestate, docs/hooks.md: nest prepare-device
      configuration options
    - daemon: fix login API to return local macaroons (snapcore#2078)
    - daemon: do not hardcode UID in userLookup (snapcore#2080)
    - client, cmd: connect fixes (snapcore#2026)
    - many: preparations for switching most of autoconnect to use the
      declarationsfor now:
    - overlord/auth: update CheckMacaroon to verify local snapd
      macaroons (snapcore#2069)
    - cmd/snap: trivial auto-import and download tweaks (snapcore#2067)
    - interfaces: add repo.ResolveConnect that handles name resolution
    - interfaces/policy: introduce InstallCandidate and its checks
    - interfaces/policy,overlord: check connection requests against the
      declarations in ifacestate
    - many: setup snapd macaroon for local users (snapcore#2051)Next step: do
      snapd macaroons verification.
    - interfaces/policy: implement snap-id/publisher-id checks
    - many: change Connect to take ConnRef instead of strings (snapcore#2060)
    - snap: auto mount block devices and import assertions (snapcore#2047)
    - daemon: add `snap create-user --force-managed` support (snapcore#2041)
    - docs: remove references to removed buying features (snapcore#2057)
    - interfaces,docs: allow sharing SNAP{,_DATA,_COMMON} via content
      iface (snapcore#2063)
    - interfaces: add Plug/Slot/Connection reference helpers (snapcore#2056)
    - client,daemon,cmd/snap: improve create-user APIs (snapcore#2054)
    - many: introduce snap refresh --ignore-validation <snap> to
      override refresh validation (snapcore#2052)
    - daemon: add support for `snap create-user --known` (snapcore#2040)
    - interfaces/policy: start of interface policy checking code based
      on declarations (snapcore#2050)
    - overlord/configstate: support nested configuration (snapcore#2039)
    - asserts,interfaces/builtin,overlord/assertstate: introduce base-
      declaration (snapcore#2037)
    - interfaces: builtin: Allow writing DHCP lease files to
      /run/NetworkManager/dhcp (snapcore#2049)
    - many: remove all traces of the /v2/buy/methods endpoint (snapcore#2045)
    - tests: add external spread backend (snapcore#1918)
    - asserts: parse the slot rules in snap-declarations (snapcore#2035)
    - interfaces: allow read of /etc/ld.so.preload by default for armhf
      on series 16 (snapcore#2048)
    - store: change purchase to order and store clean up first pass
      (snapcore#2043)
    - daemon, store: switch to new store APIs in snapd (snapcore#2036)
    - many: add email to UserState (snapcore#2038)
    - asserts: support parsing the plugs stanza i.e. plug rules in snap-
      declarations (snapcore#2027)
    - store: apply deltas if explicitly enabled (snapcore#2031)
    - tests: fix create-key/snap-sign test isolation (snapcore#2032)
    - snap/implicit: don't restrict the camera iface to clasic (snapcore#2025)
    - client, cmd: change buy command to match UX document (snapcore#2011)
    - coreconfig: nuke it. Also, ignore po/snappy.pot. (snapcore#2030)
    - store: download deltas if explicitly enabled (snapcore#2017)
    - many: allow use of the system user assertion with create-user
      (snapcore#1990)
    - asserts,overlord,snap: add prepare-device hook for device
      registration (snapcore#2005)
    - debian: adjust packaging for trusty/deputy systemd (snapcore#2003)
    - asserts: introduce AttributeConstraints (snapcore#2015)
    - interface/builtin: access system bus on screen-inhibit-control
    - tests: add firewall-control interface test (snapcore#2009)
    - snapstate: pass errors from ListRefresh in updateInfo (snapcore#2018)
    - README: add links to IRC, mailing list and social media (snapcore#2022)
    - docs: add `configure` hook to hooks list (snapcore#2024)LP: #1596629
    - cmd/snap,configstate: rename apply-config variables to configure.
      (snapcore#2023)
    - store: retry download on 500 (snapcore#2019)
    - interfaces/builtin: support time and date settings via
      'org.freedesktop.timedate1 (snapcore#1832)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
3 participants