changelog 67 KB

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