1. 10 Jun, 2022 7 commits
  2. 19 Mar, 2022 1 commit
  3. 02 Mar, 2022 1 commit
  4. 20 Feb, 2022 3 commits
  5. 19 Jan, 2022 4 commits
    • Andreas Henriksson's avatar
      Update debian/changelog · 87665522
      Andreas Henriksson authored
      87665522
    • Andreas Henriksson's avatar
      Install extra cert keys for testing · f70545f7
      Andreas Henriksson authored
      ```
      === RUN   TestMutualTLSClientConnection
          mender_test.go:1037:
                      Error Trace:    mender_test.go:1037
                      Error:          Received unexpected error:
                                      open ../client/test/server.key: no such file or directory
                      Test:           TestMutualTLSClientConnection
      --- FAIL: TestMutualTLSClientConnection (0.00s)
      ```
      
      Add all found *.key files while at it... not just the
      client/test/server.key.
      f70545f7
    • Andreas Henriksson's avatar
      Install dummy certificates for tests · 7170ff19
      Andreas Henriksson authored
      The support/demo.crt is needed by:
      
      ```
      === RUN   TestInstallDemoCertificateLocalTrust
      
      The device type property is used to determine which Mender Artifact are compatible with this device.
      Enter a name for the device type (e.g. raspberrypi3): [xps]
      Are you connecting this device to hosted.mender.io? [Y/n]
      Demo mode uses short poll intervals and assumes the default demo server setup. (Recommended for testing.)
      Do you want to run the client in demo mode? [Y/n]
      Set the IP of the Mender Server: [127.0.0.1]     setup_test.go:309:
              	Error Trace:	setup_test.go:309
              	Error:      	Received unexpected error:
              	            	open ../support/demo.crt: no such file or directory
              	Test:       	TestInstallDemoCertificateLocalTrust
          setup_test.go:312:
              	Error Trace:	setup_test.go:312
              	Error:      	Not equal:
              	            	expected: 2
              	            	actual  : 0
              	Test:       	TestInstallDemoCertificateLocalTrust
      --- FAIL: TestInstallDemoCertificateLocalTrust (0.00s)
      FAIL
      FAIL	github.com/mendersoftware/mender/cli	2.744s
      ```
      
      The client/* paths where apparently outdated since the files
      that where mentioned no longer exists, so remove/replace
      them with all crt files found under client (new paths) while at it.
      7170ff19
    • Andreas Henriksson's avatar
      Build-dep on dbus-daemon for tests · 6e633bf2
      Andreas Henriksson authored
      The dbus/dbus_test.go code explicitly tries to execute `dbus-daemon`
      from PATH, so build-depend on the package (and the explicit
      implementation rather than a virtual package as
      default-dbus-session-bus as the tests use a specific binary).
      6e633bf2
  6. 01 Dec, 2021 1 commit
  7. 07 Nov, 2021 3 commits
  8. 17 Aug, 2021 9 commits
  9. 13 Apr, 2021 2 commits
    • Andreas Henriksson's avatar
      Update debian/changelog · a08be5a5
      Andreas Henriksson authored
      a08be5a5
    • Andreas Henriksson's avatar
      Recommend libubootenv-tool instead of u-boot-tools · af729b0b
      Andreas Henriksson authored
      fw_printenv/fw_setenv command moved from being provided by u-boot-tools
      package to instead be provided by libubootenv-tool (which is a new
      implementation based on libubootenv).
      
      Versions less than 0.3-3 of libubootenv-tool's fw_printenv missed
      disabling debug output, which caused other tools who parses the output
      to break (including mender). We thus have a versioned recommends on that
      version (or alternatively the old u-boot-tools version before
      fw_printenv/fw_setenv was dropped).
      af729b0b
  10. 23 Nov, 2020 4 commits
  11. 21 Nov, 2020 2 commits
  12. 27 Jul, 2020 3 commits
    • Andreas Henriksson's avatar
      Update debian/changelog · 0fcf43d8
      Andreas Henriksson authored
      0fcf43d8
    • Andreas Henriksson's avatar
      Bump mender-artifact build-dep to >= 3.4.0 · 09527bd1
      Andreas Henriksson authored
      Apparently there's been an incompatible API change...
      
      src/github.com/mendersoftware/mender/installer/installer.go:219:2: cannot use map[string]interface {} value as type map[string]string in return argument
      dh_auto_build: error: cd obj-x86_64-linux-gnu && go install -trimpath -v -p 5 -ldflags "-X github.com/mendersoftware/mender/conf.Version=2.3.0-1" github.com/mendersoftware/mender github.com/mendersoftware/mender/app github.com/mendersoftware/mender/cli github.com/mendersoftware/mender/client github.com/mendersoftware/mender/client/test github.com/mendersoftware/mender/conf github.com/mendersoftware/mender/datastore github.com/mendersoftware/mender/device github.com/mendersoftware/mender/installer github.com/mendersoftware/mender/inventory github.com/mendersoftware/mender/log/syslog github.com/mendersoftware/mender/statescript github.com/mendersoftware/mender/store github.com/mendersoftware/mender/system github.com/mendersoftware/mender/system/testing github.com/mendersoftware/mender/tests github.com/mendersoftware/mender/utils returned exit code 2
      make[1]: *** [debian/rules:18: override_dh_auto_build] Error 25
      make[1]: Leaving directory '/build/mender-client-2.3.0'
      make: *** [debian/rules:15: build] Error 2
      09527bd1
    • Andreas Henriksson's avatar