changelog 89 KB

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