changelog 84 KB

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