changelog 95 KB

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