changelog 76 KB

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