changelog 68 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917
  1. qubes-core-agent (4.0.32-1) unstable; urgency=medium
  2. [ awokd ]
  3. * grub: add noresume to kernel cmdline Under R4.0, when Debian HVMs
  4. are created from the debian-9 template, they hang on boot for 30
  5. seconds without this option.
  6. [ Marek Marczykowski-Górecki ]
  7. * rpm: add R: tar, for qubes-dom0-update
  8. [ Peter Gerber ]
  9. * setup-rwdev.sh: Only check first 1 GiB for zeros
  10. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sun, 08 Jul 2018 03:48:51 +0200
  11. qubes-core-agent (4.0.31-1) unstable; urgency=medium
  12. * debian: add Depends: qubesdb-vm
  13. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Fri, 15 Jun 2018 14:32:23 +0200
  14. qubes-core-agent (4.0.30-1) wheezy; urgency=medium
  15. [ Christopher Laprise ]
  16. * Fixes issue #3939
  17. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 05 Jun 2018 01:39:04 +0200
  18. qubes-core-agent (4.0.29-1) unstable; urgency=medium
  19. * Drop leftovers of qubes-netwatcher service
  20. * qrexec: fix handling remote domain death
  21. * network: use iptables-restore --wait if available
  22. * rpm: add BR: systemd for pre/post install macros
  23. * qubes-rpc: fix code style - indent with spaces
  24. * qvm-open-in-vm: implement --view-only option
  25. * qvm-open-in-vm: mark file as read-only if opened with --view-only
  26. * Add file managers integration for qvm-open-in-dvm --view-only
  27. * Add build-time assert for filename buffer size
  28. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 29 May 2018 00:40:11 +0200
  29. qubes-core-agent (4.0.28-1) wheezy; urgency=medium
  30. [ Peter Gerber ]
  31. * Qubes firewall: correct syntax for icmpv6 rejects
  32. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Thu, 10 May 2018 12:21:39 +0200
  33. qubes-core-agent (4.0.27-1) unstable; urgency=medium
  34. [ X4lldux ]
  35. * Move/Copy many files in one step via nautilus extension
  36. [ Marek Marczykowski-Górecki ]
  37. * centos: exclude only dconf user profile, keep dpi config
  38. * travis: add centos7
  39. * Fix packaging: 'user' group, BACKEND_VMM var
  40. * Create /etc/dconf/profile/user dynamically, if not present
  41. * Require dconf utility to (re)build /etc/dconf/db/local
  42. * Fix make clean
  43. * qubes-firewall: reject packets instead of dropping
  44. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 02 May 2018 05:05:33 +0200
  45. qubes-core-agent (4.0.26-1) unstable; urgency=medium
  46. * Change repository URLs to https
  47. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sun, 22 Apr 2018 00:29:02 +0200
  48. qubes-core-agent (4.0.25-1) unstable; urgency=medium
  49. [ Marek Marczykowski-Górecki ]
  50. * debian: don't call dconf if it isn't installed
  51. * qrexec: add qrexec-client-vm --buffer-size option
  52. [ unman ]
  53. * Add missing services in Ubuntu templates.
  54. [ Simon Gaiser ]
  55. * qrexec-fork-server: Always initialize addrlen argument of accept()
  56. [ Marek Marczykowski-Górecki ]
  57. * qrexec: fix arguments handling
  58. * Move 'qubesxdg' into qubesagent python package
  59. * Fix shell calls in Makefile
  60. * Fix waiting for application exit in qubesagent.xdg.launch
  61. * Load only test_* files when looking for tests (python)
  62. * qubes-session-autostart: do not wait for applications exit
  63. * Do not start dkms.service
  64. * network: do not assume IPv6 gateway is a link-local address
  65. * qubes-firewall: handle only traffic originating from VMs
  66. * network: make sure static NM configuration is created before NM
  67. start
  68. [ Davíð Steinn Geirsson ]
  69. * Add misc/qubes-run-terminal to launch any available terminal
  70. emulator
  71. [ Frédéric Pierret ]
  72. * Create .spec.in and Source0
  73. * Remove _builddir
  74. * spec.in: add changelog placeholder
  75. * spec.in: fix %if expressions and remove useless conditions
  76. [ Vladimir Lushnikov ]
  77. * Problem: Unable to use pkg.install with Salt in dom0 when using
  78. UpdateVM that has only yum due to incorrect options passed by Salt
  79. assuming dnf presence
  80. [ Marek Marczykowski-Górecki ]
  81. * Use only /etc/skel to provision user's home directory of new VM
  82. * Update gitignore and make clean target
  83. * qubes-firewall: signal service readiness only after initial scripts
  84. [ Frédéric Pierret ]
  85. * Fix GCC8 warnings
  86. * Add missing python-setuptools dependency
  87. * Use %{python3_pkgversion} instead of duplicating python3 targets
  88. [ Marek Marczykowski-Górecki ]
  89. * travis: update Fedora versions
  90. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 21 Apr 2018 15:10:20 +0200
  91. qubes-core-agent (4.0.24-1) unstable; urgency=medium
  92. [ Marek Marczykowski-Górecki ]
  93. * Drop Fedora < 22 support
  94. * Call qubes.PostInstall service to notify dom0 about all
  95. apps/features
  96. * dom0-updates: refactor for ease adding new actions with old yum
  97. * dom0-update: add some approximation of 'list', 'search' and
  98. 'reinstall'
  99. * Drop fakeroot for list/search actions on Debian
  100. [ Rusty Bird ]
  101. * Really enable qubes-sync-time.timer
  102. [ Frédéric Pierret ]
  103. * centos: fix conflict with dconf
  104. [ Marek Marczykowski-Górecki ]
  105. * Speed up initial /rw setup
  106. [ awokd ]
  107. * reinstal -> reinstall
  108. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 27 Feb 2018 15:17:51 +0100
  109. qubes-core-agent (4.0.23-1) unstable; urgency=medium
  110. * qrexec: launch services in login shell
  111. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Thu, 22 Feb 2018 12:43:55 +0100
  112. qubes-core-agent (4.0.22-1) unstable; urgency=medium
  113. [ Marek Marczykowski-Górecki ]
  114. * Wait for user session as X session owner
  115. [ Christopher Laprise ]
  116. * Add qubes-firewall.d feature
  117. * Add /etc/qubes path
  118. [ Marek Marczykowski-Górecki ]
  119. * qrexec: use exec_qubes_rpc_if_requested() from qubes-utils
  120. * qrexec: translate keywords in target specification on the client
  121. side
  122. * rpm: adjust dependencies
  123. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 20 Feb 2018 01:04:55 +0100
  124. qubes-core-agent (4.0.21-1) unstable; urgency=medium
  125. [ Marek Marczykowski-Górecki ]
  126. * Fix systemd-timesyncd.service startup
  127. * Do not sync VM time with clockvm if it's set to network time sync
  128. * network: reload DNS only on "up" event from NetworkManager
  129. [ Rusty Bird ]
  130. * bind-dirs.sh: don't fail on empty configuration directory
  131. [ unman ]
  132. * Stop Debian templates from forwarding by default.
  133. [ Marek Marczykowski-Górecki ]
  134. * qubes-firewall: call firewall-user-script at service startup
  135. * tests: check if qubes-firewall-user-script is called
  136. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 13 Feb 2018 04:56:43 +0100
  137. qubes-core-agent (4.0.20-1) unstable; urgency=medium
  138. * Add intel wifi drivers to suspend-module-blacklist
  139. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Mon, 29 Jan 2018 21:57:11 +0100
  140. qubes-core-agent (4.0.19-1) unstable; urgency=medium
  141. * Mount root fs with 'discard' option by default
  142. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 24 Jan 2018 01:46:25 +0100
  143. qubes-core-agent (4.0.18-1) unstable; urgency=medium
  144. * Place list of loaded modules in /var/run directly
  145. * Detach all drivers from PCI devices before suspend
  146. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 23 Jan 2018 14:17:05 +0100
  147. qubes-core-agent (4.0.17-1) unstable; urgency=medium
  148. [ Rusty Bird ]
  149. * Set 'wait-for-session=1' for 'qubes.VMShell+WaitForSession'
  150. * qvm-run-vm: appease ShellCheck without comment
  151. * qvm-run-vm: wait for X11 in DispVM case
  152. * Remove stranded block-snapshot script
  153. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Thu, 18 Jan 2018 19:30:32 +0100
  154. qubes-core-agent (4.0.16-1) unstable; urgency=medium
  155. * firewall: don't crash the whole qubes-firewall service on DNS fail
  156. * firewall: allow also related traffic
  157. * qrexec: fix infinite loop when multiple services are waiting for GUI
  158. * Fix kdialog --progressbar usage
  159. * Install KDE actions for KDE5
  160. * Enable gnome settings daemon xsettings plugin
  161. * Disable automatic scaling in GNOME/GTK applications
  162. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Fri, 12 Jan 2018 06:18:51 +0100
  163. qubes-core-agent (4.0.15-1) unstable; urgency=medium
  164. [ MB ]
  165. * Fall back to direct execution when dbus is not installed or running
  166. [ Marek Marczykowski-Górecki ]
  167. * qrexec: setup process environment when not using fork server
  168. [ Patrick Schleizer ]
  169. * make apt-get apt-transport-tor broken in Qubes non-networked
  170. TemplateVMs
  171. [ Marek Marczykowski-Górecki ]
  172. * qubes.GetImageRGBA: fix handling '-' path without explicit type
  173. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 23 Dec 2017 02:53:43 +0100
  174. qubes-core-agent (4.0.14-1) unstable; urgency=medium
  175. [ Marek Marczykowski-Górecki ]
  176. * Disable cups-browsed service together with cups
  177. [ Olivier Médoc ]
  178. * Makefile: split network install target from core agent install
  179. target
  180. * Makefile: ensure that everything is installed by default for rh
  181. based agents
  182. * archlinux: split core-agent from netvm-agent
  183. [ Olivier MEDOC ]
  184. * Makefile: add basic networking to the new install-corevm target
  185. * Makefile: fix typo created when spliting the install targets
  186. * Makefile: add network install targets to install-deb
  187. * archlinux: create a keyring package to install binary repository
  188. automatically
  189. * archlinux: fix shellcheck issues
  190. * Makefile: remove invalid reference to network dropins install target
  191. * archlinux: fix incorrect keyring being populated
  192. * archlinux: add recently splitted packages as optional dependencies
  193. of qubes-vm-core
  194. * Makefile: install-netvm shouldn't be a dependency of itself.
  195. * archlinux fix .service added twice in networking install script
  196. [ Marek Marczykowski-Górecki ]
  197. * network: configure IPv6 when enabled
  198. * network: IPv6-enabled firewall
  199. * network: drop unsolicited IPv6 neighbor advertisements by default
  200. * Fix IPv6 support in qubes-firewall
  201. * Add hint to use qvm-copy/qvm-move instead of qvm-*-to-vm
  202. [ Frédéric Pierret ]
  203. * Add support for Thunar Qubes VM tools
  204. * Disable Thunar thumbnails
  205. * Add debian package support
  206. * Fix ShellCheck comments
  207. * Fix UCA mistake and qvm-actions script
  208. [ TomZ ]
  209. * Fix language issues and usability issue
  210. [ Rusty Bird ]
  211. * qvm-{copy,move}: fix spurious deprecation message
  212. [ unman ]
  213. * Disable wpa_supplicant@.service
  214. [ Marek Marczykowski-Górecki ]
  215. * debian: use systemd-preset logic from rpm package
  216. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Fri, 15 Dec 2017 09:23:22 +0100
  217. qubes-core-agent (4.0.13-1) unstable; urgency=medium
  218. [ Marek Marczykowski-Górecki ]
  219. * Fix starting time synchronization service
  220. [ Nedyalko Andreev ]
  221. * Disable dnf plugins when downloading dom0 updates in sys-firewall
  222. * Update the arch PKGBUILD script for QubesOS 4.0
  223. * Fix the makefile for archlinux - SBINDIR is already /usr/bin
  224. * Restore the binary pacman repo and update it for QubesOS 4.0
  225. * Add the 4.0 repo to the PKGBUILD sources list
  226. [ Olivier MEDOC ]
  227. * archlinux: remove deprecated setup of pam since v4.0.3
  228. * archlinux: remove pam configuration for su and su-l
  229. * archlinux: do not mess with locales in post-install script
  230. * archlinux: ship pam.d/qrexec as a replacement of using su
  231. * archlinux: create user 'user' using bash by default instead of zsh
  232. * Makefile: avoid using python interpreter as a static name
  233. * archlinux: enforce usage of python2 in all scripts
  234. * archlinux: ensure [options] section is present in all pacman drop-
  235. ins
  236. * archlinux: remove python3 dependency
  237. * archlinux: restore setup of pam.d/su-l
  238. [ unman ]
  239. * Allow build for Xenial in 4.0
  240. [ Paul Holcomb ]
  241. * Fix Ubuntu template builds
  242. [ Marek Marczykowski-Górecki ]
  243. * network: have safe fallback in case of qubes-firewall crash/error
  244. * Dumb down meminfo-writer enabling logic
  245. * Enable qubes-firewall also in "NetVM"
  246. [ Nedyalko Andreev ]
  247. * Fix the Archlinux template update proxy to work for HTTPS URLs as
  248. well
  249. [ Rusty Bird ]
  250. * Add iptables dep to qubes-core-agent-networking RPM spec
  251. [ Marek Marczykowski-Górecki ]
  252. * network: order qubes-firewall service before enabling IP forwarding
  253. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 21 Nov 2017 04:51:27 +0100
  254. qubes-core-agent (4.0.12-1) unstable; urgency=medium
  255. * Add support for new root volume partition layout to qubes.ResizeDisk
  256. * Resize root filesystem at VM startup if needed
  257. * debian: disable timer-based apt-get
  258. * network: fix rules for network setup on new udev
  259. * Fix removing temporary file after editing in (Disp)VM
  260. * debian: cleanup after splitting qubes-core-agent
  261. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Thu, 19 Oct 2017 17:28:27 +0200
  262. qubes-core-agent (4.0.11-1) unstable; urgency=medium
  263. [ Tray Torrance ]
  264. * Add archlinux support to upgrade checker
  265. [ Nedyalko Andreev ]
  266. * Fix an incorrect grep usage in archlinux upgrade check
  267. * Simplify archlinux upgrade check
  268. [ Marek Marczykowski-Górecki ]
  269. * Add convenient wrappers for qvm-copy-to-vm and qvm-move-to-vm
  270. * qrexec: code style fix - use spaces for indentation
  271. * qrexec: use user shell instead of hardcoded /bin/sh
  272. * qubes.ResizeDisk: handle dmroot being a symlink
  273. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 07 Oct 2017 02:35:42 +0200
  274. qubes-core-agent (4.0.10-1) unstable; urgency=medium
  275. [ Marek Marczykowski-Górecki ]
  276. * centos: add package signing key, setup repository
  277. * network: fix issues found by shellcheck
  278. * qubes-rpc: fix issues found by shellcheck
  279. * init: fix issues found by shellcheck in init scripts
  280. * debian: fix shellcheck warnings in debian packaging
  281. * Fix shellcheck warnings in block-snapshot script
  282. * Fix shellcheck warnings in download-dom0-updates.sh
  283. * Few more shellcheck warnings fixes/ignores
  284. * Hint shellcheck where to look for sourced files, if in repository
  285. * travis: add shellcheck call for all scripts in the repository
  286. [ Nedyalko Andreev ]
  287. * Fix the archlinux package, use correct DROPIN dirs
  288. * Disable Oliver's binary pacman repo by default
  289. * Fix indentation and shellcheck issues for archlinux
  290. * Fix the install script after the shellcheck "fixes"
  291. * Fix the previous shellcheck-related "fixes" again
  292. [ Jussi Timperi ]
  293. * archlinux: add correct section to qubes-noupgrade.conf
  294. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 04 Oct 2017 15:19:35 +0200
  295. qubes-core-agent (4.0.9-1) unstable; urgency=medium
  296. [ Frédéric Pierret ]
  297. * dnf-qubes-hooks: handle newer DNF >= 2.x
  298. [ Marek Marczykowski-Górecki ]
  299. * travis: add fc26 build
  300. * Look for applications also in subdirectories of .../applications
  301. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 26 Sep 2017 23:09:45 +0200
  302. qubes-core-agent (4.0.8-1) unstable; urgency=medium
  303. [ Marek Marczykowski-Górecki ]
  304. * dom0-updates: do not modify yum.conf
  305. [ Frederic Pierret (Epitre) ]
  306. * Add CENTOS/RHEL support (drop fedora-release dependancy as template
  307. builder will install it anyway and here it only make harder to
  308. support non-fedora builds)
  309. * Handle fallthrough with attribute(noreturn) for consistancy and
  310. compatiblity with older GCC
  311. [ Marek Marczykowski-Górecki ]
  312. * (redo) updates-proxy: explicitly block connection looping back to
  313. the proxy IP
  314. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Fri, 15 Sep 2017 13:44:17 +0200
  315. qubes-core-agent (4.0.7-1) unstable; urgency=medium
  316. * qrexec: add configurable waiting for session before starting service
  317. * document /etc/qubes/rpc-config
  318. * qubes-rpc: add 'wait-for-session=1' option for some services
  319. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Fri, 11 Aug 2017 13:33:35 +0200
  320. qubes-core-agent (4.0.6-1) unstable; urgency=medium
  321. * Announce if qubes-firewall service is supported+enabled in this
  322. template
  323. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 29 Jul 2017 05:31:13 +0200
  324. qubes-core-agent (4.0.5-1) unstable; urgency=medium
  325. [ Marek Marczykowski-Górecki ]
  326. * qrexec: ship pam configuration for debian
  327. * rpm: add services enabling/disabling logic
  328. * qrexec: start process in a login shell
  329. [ Marta Marczykowska-Górecka ]
  330. * clock synchronization rewrite
  331. * minor amends to clock synchronization
  332. [ Marek Marczykowski-Górecki ]
  333. * clock sync: drop untrusted_ prefix after value validation, fix error
  334. msg
  335. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 12 Jul 2017 23:40:54 +0200
  336. qubes-core-agent (4.0.4-1) unstable; urgency=medium
  337. * grub: add console=tty0 to kernel cmdline
  338. * rpm: do not mess with locales in post-install script
  339. * Don't use 'su' in qubes.WaitForSession if not needed
  340. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 05 Jul 2017 14:02:22 +0200
  341. qubes-core-agent (4.0.3-1) unstable; urgency=medium
  342. [ unman ]
  343. * Enable build for Zesty
  344. [ Marek Marczykowski-Górecki ]
  345. * Do not load 'dummy-hcd' kernel module
  346. [ Vincent Penquerc'h ]
  347. * core-agent-linux: misc const fixups
  348. [ Marek Marczykowski-Górecki ]
  349. * qrexec: use PAM directly instead of calling su to setup the session
  350. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 05 Jul 2017 02:37:51 +0200
  351. qubes-core-agent (4.0.2-1) unstable; urgency=medium
  352. * Ship grub configuration
  353. * Ship Qubes 4.0 repository definition and keys
  354. * Update grub configuration
  355. * debian: install man pages
  356. * Add qrexec-client-vm man page
  357. * qrexec: exit with code 126 when service request was refused
  358. * qrexec: fix reporting exit code in qrexec-client-vm
  359. * qrexec: do not shutdown stdout socket inherited from parent
  360. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 24 Jun 2017 02:19:14 +0200
  361. qubes-core-agent (4.0.1-1) unstable; urgency=medium
  362. * Switch qubes.UpdatesProxy to socat
  363. * rpm,deb: fix dependencies
  364. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sun, 11 Jun 2017 00:02:49 +0200
  365. qubes-core-agent (4.0.0-1) unstable; urgency=medium
  366. [ Marek Marczykowski-Górecki ]
  367. * qvm-copy-to-vm: fix handling empty target VM
  368. * Rename qubes.xdg python module to qubesxdg
  369. * Disable meminfo-writer if there is any PCI device attached
  370. [ Wojtek Porczyk ]
  371. * misc: add qvm-features-request
  372. [ Marek Marczykowski-Górecki ]
  373. * Add qubes.ResizeDisk service to adjust filesystem size
  374. * network: rewrite qubes-firewall daemon
  375. * network: remove qubes-netwatcher
  376. [ qubesuser ]
  377. * network: add vif-route-qubes-nat for IP address anonymization
  378. [ Marek Marczykowski-Górecki ]
  379. * network: reformat vif-route-qubes-nat
  380. * network: change vif-route-qubes-nat parameters
  381. * network: integrate vif-route-qubes-nat into vif-route-qubes
  382. * network: keep the same MAC on vif interfaces
  383. * network: properly handle DNS addresses in vif-qubes-nat.sh
  384. * network: use /32 netmask on internal IPs in NAT providing namespace
  385. * travis: drop debootstrap workaround
  386. * Add qubes.StartApp service
  387. * dom0-updates: restructure the script to not update metadata twice
  388. * tests: make firewall tests working regardless of python version
  389. * firewall: switch to python 3
  390. * tests: add run-tests script, plug it into travis
  391. * Apply gschema overrides also to debian, rename according to
  392. guidelines
  393. * fedora,debian: update python3-daemon dependency
  394. * Remove duplicated 'close' button from titlebar of gnome applications
  395. * Ask for target VM for file-copy in dom0
  396. * travis: update to Qubes 4.0 repositories
  397. * debian: fix qubes-firewall python packaging, make it more verbose
  398. * debian,fedora: split nautilus integration into separate package
  399. * Revert "firewall: switch to python 3"
  400. * Revert "fedora,debian: update python3-daemon dependency"
  401. * debian: add missing Build-Depends: python-setuptools
  402. * debian: make haveged.service patch less intrusive...
  403. * Rename qvm-run to qvm-run-vm
  404. * Implement qrexec-based connection to updates proxy
  405. * Implement qubes.PostInstall service
  406. * Fix detection of PCI passthrough
  407. * rpm: rename qubes-core-vm to qubes-core-agent
  408. * Rename qubes-nautilus to qubes-core-agent-nautilus
  409. * Split dom0-updates handling into subpackage
  410. * rpm: make file list more verbose to ease splitting the package
  411. * Split network-related files to -networking and -network-manager
  412. packages
  413. * Remove DisposableVM savefile related files
  414. * rpm: integrate documentation into main package
  415. * Adjust dependencies for clean upgrade
  416. * rpm: drop dependency on desktop-notification-daemon
  417. * Do not report spurious failure of qubes.WaitForSession service
  418. * deb,rpm: split passwordless root access configs into separate
  419. package
  420. * Remove old vusb scripts
  421. * debian: update basic metadata of package
  422. * rpm,deb: split qrexec-agent into separate subpackage
  423. * debian: drop explicit dependency on sudo
  424. * Cleanup kernel modules loading configuration
  425. * Add qubes.VMRootShell service
  426. * Make all scripts in qubes-rpc executable
  427. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Fri, 09 Jun 2017 23:30:10 +0200
  428. qubes-core-agent (3.2.18-1) unstable; urgency=medium
  429. * debian,fedora: drop gnome-packagekit from dependencies
  430. * systemd: fix race condition between qubes-db and qubes-early-vm-
  431. config
  432. * dispvm: don't use perl to decode base64-encoded script
  433. * rpm: don't "append" to not existing /etc/yum.conf
  434. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 16 May 2017 00:54:18 +0200
  435. qubes-core-agent (3.2.17-1) unstable; urgency=medium
  436. [ Jean-Philippe Ouellet ]
  437. * Remove dates from man pages
  438. [ Robin Schneider ]
  439. * bind-dirs: Create ro if bind target exists
  440. * Fix handling of binds containing spaces
  441. * Fix more shellcheck warnings
  442. [ unman ]
  443. * If there is only 1 DNS server make both DNAT rules point to it
  444. [ Daniel Moerner ]
  445. * network: Properly handle comments in NetworkManager.conf (#2584)
  446. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 01 Apr 2017 21:45:29 +0200
  447. qubes-core-agent (3.2.16-1) unstable; urgency=medium
  448. [ Andrew David Wong ]
  449. * Update Xen bug count in sudoers comment
  450. [ Nicklaus McClendon ]
  451. * Copied needed sources to build root
  452. [ Patrick Schleizer ]
  453. * comment
  454. [ Olivier MEDOC ]
  455. * archlinux: fix community repositories URL
  456. [ Lorenzo ]
  457. * Shut down after update only if it's a template.
  458. * Shut down after update only if it's a template.
  459. [ Olivier MEDOC ]
  460. * archlinux: fix lsb_release missing
  461. * archlinux: update installer script to use systemd preset file
  462. * archlinux: fix bash syntax errors
  463. * Makefile: enforce mode 750 for directories /etc/sudoers.d and
  464. /etc/polkit-1/rules.d
  465. * archlinux: fix pacman.d dropin not activated if pacman.conf does not
  466. already contains qubes markers
  467. * archlinux: add missing qubes-rpc dependencies
  468. [ Gregorio Guidi ]
  469. * Restore functionality of disable-default-route and disable-dns-
  470. server.
  471. [ unman ]
  472. * Stop anacron from starting in Debian using existing constraint on
  473. cron
  474. * Constrain cron and anacron in Ubuntu also
  475. * Reset iptables ACCEPT rule for updates proxy if service is running
  476. * Fix build for trusty - locales-all not available
  477. * Move trusty check and locales-all fix inside source-debian-quilt-
  478. copy-in
  479. * Apply gschema override preventing previews in nautilus in Debian
  480. [ Marek Marczykowski-Górecki ]
  481. * debian: fix lintian warning - command-with-path-in-maintainer-script
  482. * debian: don't fail the upgrade if glib-compile-schemas fails
  483. [ unman ]
  484. * Stop unnecessary services in Debian
  485. [ Marek Marczykowski-Górecki ]
  486. * systemd: place user dropins in /usr/lib instead of /lib
  487. * Use online resize2fs, and run filesystem check only when needed
  488. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 07 Mar 2017 23:04:47 +0100
  489. qubes-core-agent (3.2.15-1) wheezy; urgency=medium
  490. * Fix detection of dom0 updates
  491. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sun, 04 Dec 2016 22:39:01 +0100
  492. qubes-core-agent (3.2.14-1) wheezy; urgency=medium
  493. [ unman ]
  494. * Add systemd override for haveged in xenial and stretch. (#2161)
  495. Reenable haveged.service after debian package installation
  496. [ Marek Marczykowski-Górecki ]
  497. * travis: drop debootstrap workaround
  498. [ Rusty Bird ]
  499. * v2: (vm) qvm-move-to-vm: don't "rm -rf" vm name argument
  500. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sun, 04 Dec 2016 21:57:10 +0100
  501. qubes-core-agent (3.2.13-1) wheezy; urgency=medium
  502. [ Manuel Amador (Rudd-O) ]
  503. * Make signing optional for testing, and add program checks.
  504. * Clean up early initialization and setup of /rw
  505. * Better private.img size management.
  506. * Invert logic of systemd_version_changed.
  507. * Fix VM settings running while / is readonly.
  508. * Clean up specfile unit activation aspect.
  509. * Invert logic of SKIP_SIGNING.
  510. [ Marek Marczykowski-Górecki ]
  511. * Revert "network: disable proxy_arp"
  512. [ Jean-Philippe Ouellet ]
  513. * Keep Makefile DRY
  514. [ Marek Marczykowski-Górecki ]
  515. * Refactor qubes.InstallUpdatesGUI to reduce code duplication
  516. * Ask to shutdown the template after performing update
  517. * Prefer powerpill to update Archlinux VM
  518. [ Patrick Schleizer ]
  519. * fix reload_random_seed error handling
  520. [ Marek Marczykowski-Górecki ]
  521. * Write random seed directly to /dev/urandom
  522. [ Manuel Amador (Rudd-O) ]
  523. * Initialize home_volatile for disposable VMs.
  524. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Fri, 18 Nov 2016 01:59:25 +0100
  525. qubes-core-agent (3.2.12-1) wheezy; urgency=medium
  526. [ unman ]
  527. * Remove custom mount when starting cron, in favour of bind-dirs
  528. * use bind-dirs to handle crontab persistence
  529. * Revert version and correct unit files
  530. * Remove entry in changelog as version not bumped
  531. [ Rudd-O ]
  532. * Eliminate race condition with qubes-setup-dnat-to-ns
  533. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 18 Oct 2016 15:55:40 +0200
  534. qubes-core-agent (3.2.11-1) wheezy; urgency=medium
  535. [ HW42 ]
  536. * bind-dirs: copy from ro only if bind target doesn't exists
  537. [ Marek Marczykowski-Górecki ]
  538. * network: minor setup-ip fix
  539. * Configure NetworkManager to keep /etc/resolv.conf as plain file
  540. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Mon, 03 Oct 2016 11:32:40 +0200
  541. qubes-core-agent (3.2.10-1) wheezy; urgency=medium
  542. [ HW42 ]
  543. * systemd: fix qubes-mount-home path in cleanup script
  544. * systemd: remove obsolete symlinks with rm instead of systemctl
  545. [ Marek Marczykowski-Górecki ]
  546. * network: reload NM connection after setting it up
  547. * systemd: fix syntax error in preset file
  548. [ Patrick Schleizer ]
  549. * comment legacy function
  550. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Mon, 08 Aug 2016 05:23:02 +0200
  551. qubes-core-agent (3.2.9-1) wheezy; urgency=medium
  552. [ Marek Marczykowski-Górecki ]
  553. * systemd: cleanup removed services
  554. * systemd: order qubes-mount-dirs.service before local-fs.target
  555. * systemd: load xen-privcmd module
  556. * systemd: include tor-disabling drop-ins in the package
  557. * systemd: improve ordering of systemd units
  558. [ Patrick Schleizer ]
  559. * add /usr/lib/qubes/bind-dirs.sh compatibility symlink
  560. * empty legacy function
  561. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 27 Jul 2016 06:08:56 +0200
  562. qubes-core-agent (3.2.8-1) wheezy; urgency=medium
  563. * dom0-updates: fix cleaning downloaded packages
  564. * Revert "systemd: preset xendriverdomain on update"
  565. * systemd: don't mark updates check service failed
  566. * systemd: plug random seed loading into systemd-random-seed
  567. * Include Qubes Master Key in the VM template
  568. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sun, 17 Jul 2016 04:27:04 +0200
  569. qubes-core-agent (3.2.7-1) wheezy; urgency=medium
  570. [ Marek Marczykowski-Górecki ]
  571. * systemd: preset xendriverdomain on update
  572. * rpm: fix misleading systemd warnings during upgrade
  573. [ Olivier MEDOC ]
  574. * archlinux: switch to usage of pacman.d drop-ins
  575. * archlinux: Setup default package repository
  576. * archlinux: ensure repositories are the last pacman.d files included
  577. * archlinux: fix update-proxy-configs to use pacman.d drop-ins
  578. [ Patrick Schleizer ]
  579. * fixed qubes-core-agent upgrading double package manager lock
  580. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 13 Jul 2016 22:43:06 +0200
  581. qubes-core-agent (3.2.6-1) wheezy; urgency=medium
  582. [ Patrick Schleizer ]
  583. * Do not start tor@default service in TemplateVM.
  584. [ Marek Marczykowski-Górecki ]
  585. * dom0-updates: use dnf --best --allowerasing
  586. [ Rusty Bird ]
  587. * Order network management units after network-pre.target
  588. * dvm, then xendriverdomain, then qrexec-agent
  589. * *Do* block until good random is available again
  590. * Remove 'if true' wrapper from
  591. 06a0d30d50ce4ea266532c06ef24880bf5363c1b
  592. * Enable xendriverdomain.service in 75-qubes-vm.preset
  593. [ Patrick Schleizer ]
  594. * add comment
  595. * add comment
  596. [ Olivier MEDOC ]
  597. * archlinux: update installer script in prevision of pacman.d drop-ins
  598. * archlinux: provide automatic qubes-trigger-sync-appmenus through
  599. pacman hooks
  600. * archlinux: remove unnecessary glib-compile-scheme
  601. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 13 Jul 2016 04:38:17 +0200
  602. qubes-core-agent (3.2.5-1) wheezy; urgency=medium
  603. * travis: add fc24 build
  604. * debian: add missing pkg-config build depends
  605. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Mon, 06 Jun 2016 00:18:54 +0200
  606. qubes-core-agent (3.2.4-1) wheezy; urgency=medium
  607. [ Patrick Schleizer ]
  608. * fix indent
  609. [ Marek Marczykowski-Górecki ]
  610. * dom0-updates: use dnf when available
  611. * Prefer 'dnf' over 'yum' for template update
  612. [ unman ]
  613. * Fall back to gnome utilities if kdialog not present
  614. [ Marek Marczykowski-Górecki ]
  615. * travis: initial version
  616. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sun, 05 Jun 2016 22:10:58 +0200
  617. qubes-core-agent (3.2.3-1) wheezy; urgency=medium
  618. * Cleanup R3.1->R3.2 transitional package
  619. * Update repository definitions for R3.2
  620. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 18 May 2016 23:43:22 +0200
  621. qubes-core-agent (3.2.2-1) wheezy; urgency=medium
  622. * systemd: order units checking for qubes-service after qubes-sysinit
  623. * qvm-open-in-vm: escape URL when wrapping it in HTML
  624. * Implement qubes.OpenURL service instead of wrapping URLs in HTML
  625. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 18 May 2016 03:00:12 +0200
  626. qubes-core-agent (3.2.1-1) wheezy; urgency=medium
  627. [ Marek Marczykowski-Górecki ]
  628. * qubes-rpc: fix SVG icon scaling
  629. * Fix bind-dirs.sh path
  630. [ Olivier MEDOC ]
  631. * archlinux: fix remaining loginctl privilege issues with invalid
  632. pam.d configuration
  633. [ Marek Marczykowski-Górecki ]
  634. * Remove obsolete policy files
  635. [ Patrick Schleizer ]
  636. * fixed bind-dirs legacy import function
  637. * fixed sh syntax error
  638. * minor debug xtrace output
  639. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Thu, 05 May 2016 00:05:13 +0200
  640. qubes-core-agent (3.2.0-1) wheezy; urgency=medium
  641. [ Patrick Schleizer ]
  642. * disable systemd-timesyncd
  643. [ Marek Marczykowski-Górecki ]
  644. * qrexec: write service stderr to both syslog and caller
  645. * qrexec: hide timing debug messages in vm-file-editor
  646. [ Patrick Schleizer ]
  647. * do not start the Tor service inside Qubes TemplateVMs
  648. * work on bind-dirs https://phabricator.whonix.org/T414
  649. * work on bind-dirs
  650. * work on bind-dirs
  651. * renamed: misc/bind-dirs -> vm-systemd/bind-dirs
  652. * renamed: bind-dirs -> bind-dirs.sh
  653. * run /usr/lib/qubes/bind-dirs.sh from mount-dirs.sh
  654. * use symlink_level_max rather than hardcoding 10; comment
  655. * also exit from bind-directories if file /var/run/qubes-service/qubes-
  656. dvm exists
  657. * fixed broken file copy for files in multi level directories
  658. * refactoring / code simplification
  659. [ Rusty Bird ]
  660. * qvm-move-to-vm: Remove duplicated code
  661. * qvm-move-to-vm: Use '--' before file arguments
  662. * Use && in qvm-move-to-vm
  663. [ Andrew ]
  664. * Use proper space-expanded tabs, as per the coding guidelines.
  665. * Move usage information printing to separate function, and print
  666. usage to stderr; also added some spacing.
  667. * Use proper quoting around variables.
  668. * Properly handle case of empty domain name.
  669. [ Marek Marczykowski-Górecki ]
  670. * rpm: Add bind-dirs.sh to spec file
  671. * qubes.SuspendPreAll and qubes.SuspendPostAll services
  672. * qrexec: unify service environment preparation
  673. [ Patrick Schleizer ]
  674. * use 'true' rather than ':' for consistency
  675. * minor indent
  676. [ Rusty Bird ]
  677. * Remove exec in last line of qvm-copy-to-vm
  678. [ Marek Marczykowski-Górecki ]
  679. * qrexec: add service argument support
  680. * network: run setup-ip only on xen frontend interfaces
  681. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 29 Mar 2016 14:41:34 +0200
  682. qubes-core-agent (3.1.14-1) wheezy; urgency=medium
  683. * network: use `qubes-primary-dns` QubesDB entry if present
  684. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Mon, 07 Mar 2016 13:47:01 +0100
  685. qubes-core-agent (3.1.13-1) wheezy; urgency=medium
  686. [ Marek Marczykowski-Górecki ]
  687. * sysinit: Accept also old xenbus kernel interface
  688. [ adrianx64 ]
  689. * Proposed solution for issue #1657
  690. [ Marek Marczykowski-Górecki ]
  691. * Move opening file viewer/editor into separate shell script
  692. * qubes-open: switch from mimeopen to xdg-open
  693. [ Olivier MEDOC ]
  694. * update qubes.InstallUpdateGUI to support archlinux
  695. * archlinux: add gcc and make as make dependencies
  696. * implement update proxy support for archlinux
  697. * archlinux: add Qubes Markers in pacman.conf so that changes done by
  698. qubes scripts are not inserted at the end of pacman.conf
  699. * archlinux: properly add qubes markers in pacman.conf
  700. * update-proxy: use curl instead of wget in archlinux in order to
  701. limit additional dependencies
  702. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Mon, 08 Feb 2016 05:07:39 +0100
  703. qubes-core-agent (3.1.12-1) wheezy; urgency=medium
  704. * Unload USB controllers drivers in USB VM before going to sleep
  705. * Do not try to signal NetworkManager before suspend if it isn't
  706. running
  707. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Mon, 11 Jan 2016 21:59:34 +0100
  708. qubes-core-agent (3.1.11-1) wheezy; urgency=medium
  709. [ Marek Marczykowski-Górecki ]
  710. * dom0-updates: add a message explaining yum deprecated warning
  711. [ noname ]
  712. * archlinux: Added python{2,3} as dependency. Solved python22 bug.
  713. [ Marek Marczykowski-Górecki ]
  714. * Fix time sync service
  715. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Thu, 07 Jan 2016 05:52:35 +0100
  716. qubes-core-agent (3.1.10-1) wheezy; urgency=medium
  717. * network: use more strict policy about incoming traffic
  718. * debian: add missing python-gtk2 dependency
  719. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Thu, 31 Dec 2015 02:58:29 +0100
  720. qubes-core-agent (3.1.9-1) wheezy; urgency=medium
  721. * dnf: drop shebang, it isn't standalone script
  722. * Package DNF plugin for both python2 and python3
  723. * dom0-updates: fix reporting when no updates are available
  724. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 26 Dec 2015 14:24:00 +0100
  725. qubes-core-agent (3.1.8-1) wheezy; urgency=medium
  726. [ Marek Marczykowski-Górecki ]
  727. * open-in-vm: Fix path to mimeinfo database
  728. [ Olivier MEDOC ]
  729. * archlinux: fix invalid systemd path in make install directive
  730. * archlinux: remove quotes when checking system locales (in case it
  731. has been user defined)
  732. [ MB ]
  733. * [network-proxy-setup] Permit !CONFIG_MODuLES
  734. [ Rusty Bird ]
  735. * repo description: updates-testing -> security-testing
  736. [ Marek Marczykowski-Górecki ]
  737. * debian: add security-testing repository
  738. [ Olivier MEDOC ]
  739. * archlinux: ensure systemctl reset preset correctly (need to be
  740. started twice)
  741. [ Marek Marczykowski-Górecki ]
  742. * updates-proxy: restart on network configuration change to reload DNS
  743. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sun, 20 Dec 2015 03:12:39 +0100
  744. qubes-core-agent (3.1.7-1) wheezy; urgency=medium
  745. * updates-proxy: explicitly block connection looping back to the proxy
  746. IP
  747. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Fri, 04 Dec 2015 15:32:14 +0100
  748. qubes-core-agent (3.1.6-1) wheezy; urgency=medium
  749. * Revert "network: use drop-ins for NetworkManager configuration
  750. (#1176)"
  751. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sun, 29 Nov 2015 00:34:34 +0100
  752. qubes-core-agent (3.1.5-1) wheezy; urgency=medium
  753. [ Patrick Schleizer ]
  754. * clean up /etc/tinyproxy/filter-updates
  755. [ Olivier MEDOC ]
  756. * updates-proxy: remove remaining traces of proxy filtering file from
  757. Makefile
  758. * rpm_spec: declare InstallUpdateGUI qrexec_service
  759. * archlinux: enforce minimum versionning of qubes-utils
  760. [ Patrick Schleizer ]
  761. * Prevent services from being accidentally restarted by `needrestart`.
  762. * Have qubes-sysinit create /var/run/qubes VM type files.
  763. [ Marek Marczykowski-Górecki ]
  764. * Package needrestart config only for Debian
  765. * debian: reformat Build-Depends:
  766. * debian: update build-depends for split qubes-utils package
  767. * backup: Use 'type' instead of 'which' to prevent unnecessary
  768. dependency
  769. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 28 Nov 2015 14:48:33 +0100
  770. qubes-core-agent (3.1.4-1) wheezy; urgency=medium
  771. [ Marek Marczykowski-Górecki ]
  772. * Minor improvements to packaging (based on rpmlint)
  773. [ Patrick Schleizer ]
  774. * removed confusing comments
  775. * minor indent
  776. * No longer start /etc/init.d/tinyproxy by default anymore.
  777. [ Marek Marczykowski-Górecki ]
  778. * Revert "preset disable tinyproxy by default"
  779. [ Patrick Schleizer ]
  780. * minor, removed trailing space
  781. * Improved upgrade notifications sent to QVMM.
  782. * fixed inverted logic issue in upgrades-installed-check
  783. * misc/upgrades-installed-check: handle apt-get errors
  784. [ Marek Marczykowski-Górecki ]
  785. * Explicitly fail upgrades-installed-check on other distributions
  786. [ qubesuser ]
  787. * Allow to provide customized DispVM home directly in the template VM
  788. [ Marek Marczykowski-Górecki ]
  789. * network: let NetworkManager configure VM uplink, if enabled
  790. * Use improved update-notify script also in Fedora
  791. * Implement qubes.InstallUpdatesGUI qrexec service
  792. * Really fix update-proxy rules for debian security fixes repo
  793. * updates-proxy: disable filtering at all
  794. * network: disable proxy_arp
  795. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sun, 15 Nov 2015 04:29:29 +0100
  796. qubes-core-agent (3.1.3-1) wheezy; urgency=medium
  797. [ Marek Marczykowski-Górecki ]
  798. * network: forward TCP DNS queries
  799. [ Patrick Schleizer ]
  800. * removed trailing spaces
  801. * Renamed qubes-mount-home to qubes-mount-dirs.
  802. [ Marek Marczykowski-Górecki ]
  803. * qrexec: implement buffered write to a child stdin
  804. [ Olivier MEDOC ]
  805. * archlinux: update packaging and install script to use systemd
  806. DROPINs
  807. * archlinux: force running scripts with python2 even when /usr/bin/env
  808. is used
  809. * archlinux: readd notification-daemon as a dependency
  810. * archlinux: readd lines removed by error during merge
  811. [ Patrick Schleizer ]
  812. * disable leaking TCP timestamps by default
  813. [ Marek Marczykowski-Górecki ]
  814. * rpm: add /etc/sysctl.d/20_tcp_timestamps.conf
  815. * rpm: remove duplicated entry
  816. [ Patrick Schleizer ]
  817. * cleanup /etc/apt/apt.conf.d/00notiy-hook on existing systems
  818. [ erihe251 ]
  819. * Small language fixes
  820. * Update qubes.sudoers
  821. [ Marek Marczykowski-Górecki ]
  822. * Require new enough qubes-utils package for updated libqrexec-utils
  823. * debian: install locales-all instead of custom locales generation
  824. * makefile: cleanup help message
  825. * Setup updates proxy in dnf and PackageKit
  826. * backup: fix handling backup filename with spaces
  827. * backup: improve exit code reporting
  828. [ Rusty Bird ]
  829. * qfile-unpacker: Avoid data loss by checking for child errors
  830. [ Marek Marczykowski-Górecki ]
  831. * appmenus: ignore entries with NoDisplay=true
  832. * qfile-agent: move data handling code to libqubes-rpc-filecopy
  833. [ yaqu ]
  834. * Replacing "sleep 365d" with "sleep inf"
  835. [ Marek Marczykowski-Górecki ]
  836. * No longer disable auditd
  837. * dom0-updates: prefer yum-deprecated over dnf
  838. * fedora: Add skip_if_unavailable=False to Qubes repositories
  839. [ Olivier MEDOC ]
  840. * add DROPINS for org.cups.cupsd systemd files.
  841. * dropins: make current systemd dropins specific to systemd-system in
  842. order to introduce dropins for systemd-user
  843. * dropins: implement dropins for systemd user starting with pulseaudio
  844. systemd service and socket masking
  845. [ Marek Marczykowski-Górecki ]
  846. * qrexec: add some comments, minor improvement in readability
  847. * qrexec: use #define for protocol-specified strings
  848. * dracut: disable hostonly mode
  849. * dom0-updates: use yum-deprecated instead of dnf in all calls
  850. * updates-proxy-setup: use temporary file for config snippet
  851. * Implement dnf hooks for post-update actions
  852. * fedora: do not require/use yum-plugin-post-transaction-actions in
  853. F>=22
  854. * Get rid of qubes-core-vm-kernel-placeholder
  855. * systemd: make sure that update check is started only after qrexec-
  856. agent
  857. * dom0-updates: do not use 'yum check-update -q'
  858. * Bump qubes-utils version requirement
  859. [ Patrick Schleizer ]
  860. * preset disable tinyproxy by default
  861. [ Marek Marczykowski-Górecki ]
  862. * updates-proxy: use separate directory for PID file
  863. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 11 Nov 2015 06:29:21 +0100
  864. qubes-core-agent (3.1.2-1) wheezy; urgency=medium
  865. [ Marek Marczykowski-Górecki ]
  866. * Enlarge /tmp and /dev/shm
  867. * network: use own iptables service instead of repurposing existing
  868. one
  869. [ Patrick Schleizer ]
  870. * removed iptables-persistent from Depends to improve usablity (avoid
  871. redundant debconf question)
  872. [ Marek Marczykowski-Górecki ]
  873. * debian: disable netfilter-persistent.service
  874. * Adjust progress message on file move operation
  875. * Run 'ldconfig' to update /usr/local/lib* cache, if applicable
  876. * updates-proxy: Disable 'Via: tinyproxy' header
  877. * Cleanup R3.0->R3.1 transitional package
  878. * network: use drop-ins for NetworkManager configuration (#1176)
  879. * network: fix 'qubes-uplink-eth0' NetworkManager connection (#1280)
  880. [ Patrick Schleizer ]
  881. * minor
  882. [ HW42 ]
  883. * qubes-random-seed: feed kernel rng with randomness from dom0
  884. * reload qubes-random-seed when restoring DispVM
  885. [ Marek Marczykowski-Górecki ]
  886. * systemd: actually enable qubes-random-seed service
  887. * sysvinit: load random seed from dom0 provided data
  888. * Use 'type' instead of 'which' to prevent unnecessary dependency
  889. * Add missing R: dconf to hide nm-applet when not used
  890. * dom0-updates: Fix showing package list when --check-only option was
  891. used
  892. * dom0-updates: check "yum check-update" exit code, not only its
  893. output
  894. * dom0-updates: fix hostname in error message
  895. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sun, 11 Oct 2015 03:00:00 +0200
  896. qubes-core-agent (3.1.1-1) wheezy; urgency=medium
  897. * Update repository definition for r3.1
  898. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 29 Sep 2015 16:55:35 +0200
  899. qubes-core-agent (3.1.0-1) wheezy; urgency=medium
  900. [ Patrick Schleizer ]
  901. * Allow passwordless login for user "user" (when using 'sudo xl
  902. console').
  903. * Allow passwordless login for user "user" (when using 'sudo xl
  904. console') for images being upgraded.
  905. * show error msg if qubes.ReceiveUpdates failed
  906. [ qubesuser ]
  907. * qubes-rpc: fix broken temporary file deletion in qubes.GetImageRGBA
  908. [ Patrick Schleizer ]
  909. * added missing dependency python-dbus to 'Depends:'
  910. [ Marek Marczykowski-Górecki ]
  911. * rpm: add dbus-python dependency
  912. [ qubesuser ]
  913. * qubes-rpc: fix broken temporary file deletion in qubes.GetImageRGBA
  914. * qubes-rpc: fix icon selection using pyxdg and support SVG icons
  915. [ Patrick Schleizer ]
  916. * fixed 'Debian 8 apt.config.d misconfiguration'
  917. * added missing dependency xserver-xorg-dev
  918. * - Prevent 'su -' from asking for password in Debian [based]
  919. templates. Thanks to @unman and @marmarek for suggesting the fix!
  920. Fixes https://github.com/QubesOS/qubes-issues/issues/1128. - Changed
  921. 'ifeq (1,${DEBIANBUILD})' to 'ifeq ($(shell lsb_release -is),
  922. Debian)' to make the build work outside of Qubes Builder as well.
  923. * Fixed /etc/pam.d/su.qubes. (Moved line 'auth sufficient
  924. pam_permit.so' up. May not be low '@include' lines.)
  925. * fix typo
  926. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 29 Sep 2015 16:39:55 +0200
  927. qubes-core-agent (3.0.16-1) wheezy; urgency=medium
  928. [ Marek Marczykowski-Górecki ]
  929. * debian: remove SELinux disabling code
  930. * Revert "qubes-desktop-run: Activate via DBUS when desktop file
  931. contains DBusActivatable"
  932. * qubes-desktop-run: start the Dbus service (if needed)
  933. [ Patrick Schleizer ]
  934. * added pulseaudio-kde and spice-vdagent to qubes-trigger-desktop-
  935. file-install
  936. [ Jason Mehring ]
  937. * debian: Move python-xdg to depends section in debian/control
  938. * sudoers.d: Stops QT from using the MIT-SHM X11 Shared Memory
  939. Extension
  940. [ Rusty Bird ]
  941. * Mount /dev/xvdb with fs type "auto"
  942. [ Marek Marczykowski-Górecki ]
  943. * Move .desktop launching code to python moules so it can be reused
  944. * Implement dropins for /etc/xdg/autostart (#1151)
  945. * Remove dynamically generated autostart desktop files
  946. * qubes-session-autostart: do not abort the whole process on invalid
  947. file
  948. * qubes-desktop-run: don't crash on Debian wheezy (glib < 2.36)
  949. * debian: fix /dev permissions on upgrade
  950. * systemd: fix starting cups
  951. * debian: depend on gawk
  952. * Fix show-hide-nm-applet.desktop - use OnlyShowIn=X-QUBES
  953. [ Patrick Schleizer ]
  954. * moved python-xdg from Recommends to Depends
  955. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Thu, 03 Sep 2015 02:45:30 +0200
  956. qubes-core-agent (3.0.15-1) wheezy; urgency=medium
  957. * debian: remove `Recommends: chrony`
  958. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 08 Aug 2015 23:23:38 +0200
  959. qubes-core-agent (3.0.14-1) wheezy; urgency=medium
  960. [ Marek Marczykowski-Górecki ]
  961. * kernel-placeholder: prevent xl2tpd from pulling kernel packages
  962. * qubes-core-vm-kernel-placeholder 1.0-3
  963. [ Olivier MEDOC ]
  964. * archlinux: update dependency list based on .spec file
  965. * archlinux: reorganize install script to make it more easily
  966. compareable with the .spec file
  967. * archlinux: fix syntax errors in install file
  968. [ Marek Marczykowski-Górecki ]
  969. * debian: fix permissions of /var/lib/qubes/dom0-updates
  970. [ Patrick Schleizer ]
  971. * also inform in cli if no new updates are available
  972. [ Olivier MEDOC ]
  973. * archlinux: pulseaudio should be configured in gui agent and will
  974. break installation of pulseaudio if installed in core-agent-linux
  975. * archlinux: enabled configuration of all core agent dependencies
  976. * archlinux: ensure python2 is used for all scripts and fix
  977. dependencies for qubes-desktop-run
  978. [ Jason Mehring ]
  979. * debian: Renamed incorrect filename: 00notiy-hook -> 00notify-hook
  980. * debian: Comment out deb-src line in qubes-r3.list
  981. * Use 'which' to locate fuser since fuser path is different in Fedora
  982. and Debian
  983. * debian: Change triggers to use `interest-await` (execute triggers
  984. after all packages installed)
  985. * Remove '.service' from systemd enable loop as unit_name already
  986. contains .service in name
  987. * debian: remove cups/print-applet triggers
  988. * debian: Added cups, system-config-printer to Recommends
  989. * Makefile: Add systemd drop-in support which include conditionals to
  990. prevent services from starting
  991. * fedora: Add systemd drop-in support which include conditionals to
  992. prevent services from starting
  993. * debian: Add systemd drop-in support which include conditionals to
  994. prevent services from starting
  995. * Re-aranged qubes-vm.preset to indicate which services are specificly
  996. for Fedora only
  997. * vm-systemd: Add systemd drop-in support which include conditionals
  998. to prevent services from starting
  999. [ Marek Marczykowski-Górecki ]
  1000. * archlinux: remove installOverridenServices as now handled by systemd
  1001. dropins
  1002. * fedora: do not own dropins directories
  1003. * fedora: simulate preset-all only on first install, not upgrade
  1004. * fedora: fix default locale generation
  1005. * qrexec: fix exit code from qrexec-client-vm
  1006. * qrexec: make sure that all the pipes/sockets are closed on cleanup
  1007. [ Jason Mehring ]
  1008. * qubes-desktop-file-install: Manages xdg desktop entry files
  1009. * debian: Reformat depends in control for better readability
  1010. * debian: qubes-desktop-file-install: Add misssing depend to contol
  1011. * debian: Switch to using org.mate.NotificationDaemon by default to
  1012. eliminate popups not closing
  1013. * fedora: Use 'slider' org.mate.NotificationDaemon theme
  1014. * qubes-desktop-run: Activate via DBUS when desktop file contains
  1015. DBusActivatable
  1016. [ Marek Marczykowski-Górecki ]
  1017. * Move `/usr/share/qubes/xdg` to `/var/lib/qubes/xdg`
  1018. [ Patrick Schleizer ]
  1019. * fixed "in place upgrade issue - base-passwd debconf interative
  1020. question asks 'Remove group "qubes"'"
  1021. * fixed "in place upgrade issue - base-passwd debconf interative
  1022. questi…on asks 'Remove group "qubes"'" for existing users
  1023. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 08 Aug 2015 04:16:52 +0200
  1024. qubes-core-agent (3.0.13-1) wheezy; urgency=medium
  1025. * fedora: ensure that /etc/sysconfig/iptables exists (Fedora 20)
  1026. * fedora/systemd: fix service enabling code
  1027. * network: use iptables-restore instead of iptables --wait
  1028. * network: guard iptables call with manual lock
  1029. * network: disable tx csum offload on vif interfaces
  1030. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Wed, 01 Jul 2015 07:05:53 +0200
  1031. qubes-core-agent (3.0.12-1) wheezy; urgency=medium
  1032. * dom0-updates: make the tool working on Debian
  1033. * fedora, debian: make sure that default locale is generated
  1034. * rpm: improve setting iptables rules
  1035. * Do not override file pointed by /etc/localtime symlink
  1036. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 23 Jun 2015 20:06:22 +0200
  1037. qubes-core-agent (3.0.11-1) wheezy; urgency=medium
  1038. [ Marek Marczykowski-Górecki ]
  1039. * debian: fix apt sources.list generation (missing debian version
  1040. field)
  1041. [ Jason Mehring ]
  1042. * Set a default locale if missing
  1043. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Thu, 11 Jun 2015 04:06:26 +0200
  1044. qubes-core-agent (3.0.10-1) wheezy; urgency=medium
  1045. * rpm: ensure that all the services are enabled after upgrade
  1046. * qrexec: do not show message about missing fork-sever - it isn't an
  1047. error
  1048. * rpm: add missing dependencies
  1049. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 02 Jun 2015 11:20:18 +0200
  1050. qubes-core-agent (3.0.9-1) wheezy; urgency=medium
  1051. [ Jason Mehring ]
  1052. * debian: Only notify dom0 on apt-get post hook; don't update package
  1053. index
  1054. * debian: Allow apt-get post hook to fail gracefully (won't work in
  1055. chroot)
  1056. [ Marek Marczykowski-Górecki ]
  1057. * appmenus: hide message about missing /usr/local/share/applications
  1058. * qrexec: prefer VM-local service file (if present) over default one
  1059. * rpm: mark service files as configuration to not override user
  1060. changes
  1061. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Fri, 15 May 2015 03:27:58 +0200
  1062. qubes-core-agent (3.0.8-1) wheezy; urgency=medium
  1063. [ Marek Marczykowski-Górecki ]
  1064. * Use iptables --wait only when it is supported
  1065. [ Jason Mehring ]
  1066. * debian: Update notification now notifies dom0 when an upgrade is
  1067. completed
  1068. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 28 Apr 2015 12:51:48 +0200
  1069. qubes-core-agent (3.0.7-1) wheezy; urgency=medium
  1070. [ Marek Marczykowski-Górecki ]
  1071. * debian: install qubes-download-dom0-updates.sh
  1072. * prepare-dvm: fix bashism
  1073. * network: wait for iptables lock instead of aborting
  1074. * rpm: cleanup R2->R3.0 transitional package
  1075. [ Jason Mehring ]
  1076. * whonix: Added protected-files file used to prevent scripts from
  1077. modifying files that need to be protected
  1078. * Changed location of PROTECTED_FILE_LIST to /etc/qubes/protected-
  1079. files.d
  1080. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 25 Apr 2015 02:36:55 +0200
  1081. qubes-core-agent (3.0.6-1) wheezy; urgency=medium
  1082. * qrexec: do not reset umask to 077 for every started process
  1083. * rpm/systemd: do not use preset-all during package upgrade
  1084. * systemd: disable avahi-daemon and dnf-makecache
  1085. * dispvm: do not start GUI apps during prerun
  1086. * Fix resizing of /rw partition (private.img)
  1087. * Minor fixes in mount-home.sh
  1088. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 11 Apr 2015 03:40:57 +0200
  1089. qubes-core-agent (3.0.5-1) wheezy; urgency=medium
  1090. * systemd: use presets to enable services, call preset-all
  1091. * systemd: install overridden unit file for chronyd
  1092. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 07 Apr 2015 14:58:36 +0200
  1093. qubes-core-agent (3.0.4-1) wheezy; urgency=medium
  1094. [ Marek Marczykowski-Górecki ]
  1095. * qrexec: try to recover from fork-server communication error
  1096. * rpm: add missing BuildRequires: libX11-devel
  1097. * debian: fix handling SysV units in disableSystemdUnits
  1098. * debian: update NetworkManager configuration
  1099. [ Wojtek Porczyk ]
  1100. * qubes-rpc-multiplexer: deprecate /etc/qubes_rpc, allow /usr/local
  1101. * sudoers: do not require TTY
  1102. [ Marek Marczykowski-Górecki ]
  1103. * Update repository definition: r3 -> r3.0
  1104. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Thu, 02 Apr 2015 00:55:09 +0200
  1105. qubes-core-agent (3.0.3-1) wheezy; urgency=medium
  1106. * Enable updates repos by default
  1107. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Fri, 27 Mar 2015 01:24:43 +0100
  1108. qubes-core-agent (3.0.2-1) wheezy; urgency=medium
  1109. [ Marek Marczykowski-Górecki ]
  1110. * debian: fix version number
  1111. * backup: fix qubes.Restore service - do not send garbage as backup
  1112. data
  1113. [ Jason Mehring ]
  1114. * debian: Add extend-diff-ignore options to debian packager
  1115. [ Marek Marczykowski-Górecki ]
  1116. * qrexec: fork into background after setting up qrexec-fork-server
  1117. socket
  1118. * Fix "backup: fix qubes.Restore service - do not send garbage as
  1119. backup data"
  1120. [ Jason Mehring ]
  1121. * Switched qvm-move-to-vm.{gnome,kde} scripts to use bash not sh
  1122. * Removed nautilus-actions depend and replaced with nautilus-python
  1123. * Removed code that deleted original nautilus actions
  1124. [ Marek Marczykowski-Górecki ]
  1125. * fc21: fix DispVM preparation - Xorg has new name
  1126. * dispvm: kill all process after populating caches
  1127. * dispvm: start gui agent early, do not kill Xorg
  1128. * dispvm: close only visible windows during DispVM preparation
  1129. * Move mounting /rw and /home to separate service
  1130. * dispvm: use qubes.WaitForSession to wait for gui-agent startup
  1131. * dispvm: include memory caches in "used memory" notification
  1132. * dispvm: do not restart qubesdb-daemon, use watch instead
  1133. * qrexec: simplify makefile
  1134. * qrexec: handle data vchan directly from qrexec-client-vm
  1135. * qrexec: return remote process status as qrexec-client-vm exit code
  1136. * qrexec: better handle remote process termination
  1137. * qrexec: do not break connection on duplicated SIGUSR1
  1138. * qrexec: minor readability fix
  1139. * qrexec: process vchan data queue (esp MSG_EXIT_CODE) before sending
  1140. anything
  1141. * qrexec: add option to use real stdin/out of qrexec-client-vm
  1142. * qrexec: do not leak FDs to logger process
  1143. * qrexec: execute RPC service directly (without a shell) if it has
  1144. executable bit set
  1145. * qrexec: get rid of shell in services using EOF for any signaling
  1146. * qrexec: move qrexec-client-vm to /usr/bin
  1147. * Add support for comments in qubes-suspend-module-blacklist
  1148. * Create filesystem if the private.img is empty
  1149. * Provide stub files in /rw/config
  1150. * qrexec: fix compile warning
  1151. * qrexec: do not wait for local process if no one exists
  1152. * qrexec: enable compiler optimization
  1153. * Do not load xen-usbfront automatically
  1154. * fedora: override iptables configuration on initial installation
  1155. * Update comments and xenbus intf in startup scripts regarding vchan
  1156. requirements
  1157. * dom0-update: allow to specify custom yum action
  1158. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Thu, 26 Mar 2015 23:56:25 +0100
  1159. qubes-core-agent (3.0.1-1) jessie; urgency=medium
  1160. [ Marek Marczykowski-Górecki ]
  1161. * Reenable imsettings service
  1162. * systemd: fix xenstore-ls path
  1163. [ Jason Mehring ]
  1164. * Allow hyphenated distro names in tinyproxy filter
  1165. * Change condition test to compare to a link "-L"
  1166. * debian: add xen-utils-common as a dependancy to allow Debian proxies
  1167. * debian: Added maintainers scripts (pre / postinit + rm) - Currently
  1168. in debug mode
  1169. * debian: preinst needs a group and force no password entry on adduser
  1170. * debian: Added less restrictive filter option for debian packages
  1171. Sites like sourceforge append ?downloadxxx to end
  1172. * debian: added new depends
  1173. * debian: force shell to be bash since its default is dash and many
  1174. qubes scripts rely on bash and will break in dash and added
  1175. tinyproxy user
  1176. [ HW42 ]
  1177. * move fedora specific stuff to install-rh target
  1178. * don't track debina/files (since it is autogenerated)
  1179. * use systemd in debian
  1180. * install iptables/forwarding for debian
  1181. * various patches for debian
  1182. * improve update of /etc/hosts
  1183. * make source.list multiarch compatible
  1184. * add xserver-xorg-video-dummy to the dependencies list of qubes-core-
  1185. agent
  1186. * dispvm-presun.sh needs bash
  1187. * use sleep instead os usleep since it is more portable
  1188. * debian: chown /home_volatile/user in posinst
  1189. * fix xenstore-read path in network-proxy-setup.sh for debian
  1190. * debian: add dependency on xen-utils since it's needed for
  1191. proxy/netvm
  1192. * debian: add support for qubes appmenus
  1193. [ Marek Marczykowski-Górecki ]
  1194. * debian: fix initialization of /etc/hosts
  1195. [ Jason Mehring ]
  1196. * debian: set -e added in place of set -x
  1197. * debian: Made debian proxy filter rules more restrictive
  1198. * debian: Cleanup
  1199. * debian: Prepend package name to maintainers scripts
  1200. * debian: Add qubes-update-check for Debian
  1201. * debian: Revert back to original NetworkManager, ModemManager service
  1202. names
  1203. * debian: apt-get needs to update first
  1204. * debian: Remove absolute path to xenstore-*
  1205. * debian: Added more dependancies
  1206. * debian: Added postrm disable of other Qubes packages
  1207. * debian: Added all other outstanding triggers contained in rpm_spec
  1208. as well as triggers if other packages get installed at a later date
  1209. the configurations will run on them
  1210. * debian: removed commented out depends
  1211. * debian: Added more error reporting to track down any missing
  1212. dependancies
  1213. * debian: More depends for debian as netvm and some configuration
  1214. tweaks.
  1215. [ Marek Marczykowski-Górecki ]
  1216. * network: do not use ifcfg-rh NM plugin
  1217. * network: fix NM uplink config permissions
  1218. [ Jason Mehring ]
  1219. * debian: Add new notification agent depends; remove other
  1220. * debian: Added functionality to move desktop entry config files to
  1221. /usr/share/qubes/xdg/autostart to preserve originals
  1222. * debian: Wrong variable name was used to create
  1223. /usr/share/qubes/xdg/autostart
  1224. [ Marek Marczykowski-Górecki ]
  1225. * Fix compile flags order (-lX11 moved to the end)
  1226. [ Jason Mehring ]
  1227. * debian: Updated tinyproxy filter rules
  1228. * debian: Don't display systemd info in chroot since systemd show does
  1229. not work in chroot
  1230. [ Marek Marczykowski-Górecki ]
  1231. * network: fix indentation
  1232. * Fix disabling nm-applet when NM is disabled
  1233. * debian: create tinyproxy as system user
  1234. * debian: fix generation of apt sources list file
  1235. * debian: add missing python-gi to dependencies
  1236. * debian: remove obsolete code from postinst script
  1237. * debian: fix service name in postinst script
  1238. * Update update-proxy rules for debian security fixes repo
  1239. [ HW42 ]
  1240. * debian: move not strictly required packages to Recommends-Section.
  1241. * debian: remove unneeded acpid dependency
  1242. [ Marek Marczykowski-Górecki ]
  1243. * network: set uplink configuration based on MAC (NetworkManager)
  1244. * network: fix NM config preparation
  1245. [ Jason Mehring ]
  1246. * fc21: iptables configurations conflict with fc21 yum package manager
  1247. * fc21: Remove left-over code comment
  1248. [ Marek Marczykowski-Górecki ]
  1249. * fedora: Add security-testing repo definition
  1250. * filecopy: prevent files/dirs movement outside incoming directory
  1251. during transfer
  1252. * fedora: Fix iptables config install script
  1253. * fedora: Fix iptables config installation one more time
  1254. [ HW42 ]
  1255. * don't ignore asprintf() return value
  1256. [ Marek Marczykowski-Górecki ]
  1257. * network: support for not setting DNS and/or default gateway
  1258. [ Olivier MEDOC ]
  1259. * archlinux: fix new packaging requirements related to sbin, lib64,
  1260. run ...
  1261. * archlinux: align with fedora changes related to imsettings
  1262. [ Marek Marczykowski-Górecki ]
  1263. * fedora: reduce code duplication in systemd triggers
  1264. * fedora: reload systemd only once
  1265. * systemd: allow to start cron daemon (#909)
  1266. * filecopy: fallback to "open(..., 000)" method when /proc
  1267. inaccessible
  1268. * network: support for not setting DNS and/or default gateway (v2)
  1269. * rpm: add missing R: pygobject3-base
  1270. [ HW42 ]
  1271. * debian: fix for QSB #014 requires up to date qubes-utils
  1272. * debian: postinst: use systemctl mask
  1273. * debian: postinst: use dpkg-divert
  1274. * debian: don't generate regular conf files in postinst
  1275. * debian: postinst: don't remove /etc/udev/rules.d/*
  1276. * debian: postinst: don't create /rw - it is already part of the
  1277. package
  1278. * debian: postinst: use systemctl to set default target
  1279. * debian: postinst: remove fedora specific code
  1280. * debian: postinst: enable netfilter-persistent service
  1281. * debian: postinst: cleanup
  1282. * debian: postinst: don't start systemd services
  1283. * debian: postinst: enable haveged only if installed
  1284. * debian: postinst: remove redundant and misleading trigger output
  1285. * debian: install fstab as normal config file
  1286. * debian: preinst: remove modification of /etc/modules
  1287. * remove 'bashisms' or explicit use bash
  1288. * debian: preinst: don't force the default shell to bash
  1289. * debian: prerm: remove obsolete code
  1290. * debian: preinst: cleanup user creation
  1291. [ Wojtek Porczyk ]
  1292. * spec: require linux-utils-3.0.1
  1293. [ Matt McCutchen ]
  1294. * Switch to preset file for systemd units to disable.
  1295. * Make qvm-run bidirectional and document its limitations.
  1296. [ Marek Marczykowski-Górecki ]
  1297. * debian: change systemctl set-default back to manual symlink
  1298. * network: fix handling newline in firewall rules
  1299. * qrexec: use sockets instead of pipes to communicate with child
  1300. process
  1301. * qrexec: reorganise code for upcoming change
  1302. * qrexec: add simple "fork server" to spawn new processes inside user
  1303. session
  1304. * Adjust permissions of /var/run/qubes
  1305. [ Jason Mehring ]
  1306. * debian: Remove 'exit 0' in maintainer section scripts to all other
  1307. debhelpers (if any) to also execute
  1308. * Add a qubes group and then add the user 'user' to the group
  1309. * Remove 'xen.evtchn' udev rule
  1310. * Set permissions to /proc/xen/privcmd, so a user in qubes group can
  1311. access
  1312. * debian: Converted debian package to a quilt package to allow patches
  1313. * debian: Refactor Debian quilt packaging for xen
  1314. * debian: Remove 'exit 0' in maintainer section scripts to all other
  1315. debhelpers (if any) to also execute
  1316. * Add a qubes group and then add the user 'user' to the group
  1317. * Remove 'xen.evtchn' udev rule
  1318. * Set permissions to /proc/xen/privcmd, so a user in qubes group can
  1319. access
  1320. * debian: Converted debian package to a quilt package to allow patches
  1321. * debian: Revert depends back to use libxen-dev
  1322. * debian: Move creation of directories into debian.dirs configuration
  1323. file
  1324. * debian: Remove dist target from Makefile as copy-in is now being
  1325. used
  1326. * debian: Remove unneeded patch file and README
  1327. * Make sure when user is added to qubes group that the group is
  1328. appended
  1329. [ Marek Marczykowski-Górecki ]
  1330. * qrexec: fix compile warning
  1331. * debian: reenable -Werror, mentioned warning already fixed
  1332. * debian: exclude binary packages from source archive
  1333. * updates-proxy: allow xz compressed metadata (fc21)
  1334. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Tue, 17 Feb 2015 14:14:16 +0100
  1335. qubes-core-agent (3.0.0-1) jessie; urgency=medium
  1336. [ Marek Marczykowski-Górecki ]
  1337. * Improve handling of .desktop files
  1338. * suspend: do not disable network frontend devices
  1339. * Handle tabs in /etc/hosts
  1340. [ Marek Marczykowski ]
  1341. * Update for new vchan API
  1342. * spec: add dependencies on vchan package (both R: and BR:)
  1343. * load xen-gntalloc module required by libxenvchan
  1344. * spec: get backend_vmm from env variable
  1345. * rpm: fix typo
  1346. * Use Qubes DB instead of Xenstore
  1347. * systemd: fix qubes-service handling
  1348. * dispvm: restart qubesdb at DispVM start
  1349. [ Marek Marczykowski-Górecki ]
  1350. * qrexec: remove dom0 targets from makefile
  1351. * code style: replace tabs with spaces
  1352. * qrexec: new protocol - direct data vchan connections
  1353. * Use xenstore.h instead of xs.h
  1354. * qrexec: register exec function
  1355. * Update repos and keys for Qubes R3
  1356. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 22 Nov 2014 16:24:17 +0100
  1357. qubes-core-agent (2.1.42) jessie; urgency=medium
  1358. * firewall: show error message only on actual error
  1359. * Avoid 100MB reserved space in private ext4 partition
  1360. * gui-fatal: do not run as root
  1361. * fedora: workaround slow system shutdown (#852)
  1362. * Rename qubes-yum-proxy service to qubes-updates-proxy
  1363. * Rename yum-proxy-setup service to updates-proxy-setup
  1364. * updates-proxy: add rules for debian repositories (#887)
  1365. * qrexec: check for setuid() error when calling zenity/kdialog
  1366. * Use systemd mechanism for loading kernel modules (when available)
  1367. * Add missing u2mfn module load
  1368. * archlinux: modules-load.d handled now in generic files
  1369. * debian: migrate to native systemd services
  1370. * updates-proxy-setup: support setting proxy for apt (#887)
  1371. * Introduce qubes.SetDateTime service for time synchronization
  1372. * systemd: fix 'service' path
  1373. * Include /rw in the package
  1374. * debian: custom dh_auto_clean no longer needed
  1375. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Sat, 25 Oct 2014 01:49:58 +0200
  1376. qubes-core-agent (2.1.41) jessie; urgency=medium
  1377. [ Marek Marczykowski-Górecki ]
  1378. * dispvm: slow down "spinlock" while waiting for save/restore
  1379. [ Olivier MEDOC ]
  1380. * archlinux: add notification daemon
  1381. * archlinux: follow fedora20 qubes agent improvement
  1382. * archlinux: follow fedora20 qubes agent improvement
  1383. * archlinux: enable/disable services when corresponding packages got
  1384. installed
  1385. [ Marek Marczykowski-Górecki ]
  1386. * network: use the same gateway IP generation method as backend
  1387. * Revert "network: use the same gateway IP generation method as
  1388. backend"
  1389. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Fri, 15 Aug 2014 17:45:15 +0200
  1390. qubes-core-agent (2.1.40) jessie; urgency=medium
  1391. [ Marek Marczykowski-Górecki ]
  1392. * Fix compiler warnings.
  1393. * Enable compiler optimization.
  1394. * rpm: do not disable abrt-applet autostart
  1395. * systemd: relax qubes-sysinit dependencies
  1396. * systemd: reexec systemd to ensure right version is running
  1397. * rpm: fix notification-daemon setup
  1398. * archlinux: do not fail mount /usr/lib/modules if already mounted
  1399. * version 2.1.34
  1400. * suspend: fix dbus-send invocation
  1401. * qubes-rpc: log service stderr to syslog instead of sending to dom0
  1402. (#842)
  1403. * version 2.1.35
  1404. [ Wojciech Zygmunt Porczyk ]
  1405. * misc: do not display file preview by default (#813)
  1406. [ Vincent Penquerc'h ]
  1407. * vm-file-editor: remove temporary file on exit
  1408. [ Marek Marczykowski-Górecki ]
  1409. * rpm: remove /lib/firmware/updates link
  1410. * Hide nm-applet icon earlier (#857)
  1411. * Configure only installed programs
  1412. * network: setup NM connection when its active in the ProxyVM
  1413. * version 2.1.36
  1414. * Add --dispvm to qvm-run documentation
  1415. * Fix formating
  1416. * Do not start nm-applet at all when no NetworkManager running (#857)
  1417. * version 2.1.37
  1418. * rpm: require generic "desktop-notification-daemon" not a specific
  1419. one
  1420. * rpm: enable haveged service by default (#673)
  1421. * Do not start nm-applet at all when no NetworkManager running -
  1422. update (#857)
  1423. * rpm: enable/disable services when corresponding packages got
  1424. installed
  1425. * dispvm: close all windows after apps prerun (#872)
  1426. * version 2.1.38
  1427. * systemd: do not reexec when not necessary
  1428. * version 2.1.39
  1429. * rpm: mark config files with %config(noreplace)
  1430. [ Davíð Steinn Geirsson ]
  1431. * Split install target into install-common and install-rh, and add all
  1432. target
  1433. * Fix make clean target
  1434. * Check for xenstore-read in /usr/sbin as well (default on debian)
  1435. * Use xenstore.h instead of xs.h when xen >= 4.2
  1436. * Explicitly specify /bin/bash for Makefile SHELL, since it's
  1437. required.
  1438. * Initial debian packaging
  1439. [ Marek Marczykowski-Górecki ]
  1440. * debian: update deps
  1441. * qrexec: fix loop bounds
  1442. * gitignore
  1443. * Fix bashism
  1444. * gitignore: fix binary packages declaration
  1445. * debian: add updates repo definition and key
  1446. * debian: fix qfile-unpacker perms
  1447. -- Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com> Mon, 28 Jul 2014 02:38:59 +0200
  1448. qubes-core-agent (2.1.33) jessie; urgency=low
  1449. * Initial Release.
  1450. -- Davíð Steinn Geirsson <david@dsg.is> Mon, 21 Apr 2014 01:31:55 +0000