-
Notifications
You must be signed in to change notification settings - Fork 16
/
ChangeLog
1755 lines (1076 loc) · 55.1 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2022-10-08 Angelo Naselli <[email protected]>
- Release 0.3.22
- Fedora remixes may have release number which doesn't match the Fedora one.
Repo URLs contain Fedora's releasever. To solve this issue has been added a
reading of a user-defined variables values from dnf variable directories.
2022-10-05 Angelo Naselli <[email protected]>
- Release 0.3.21
- Don't return dependencies and weak dependencies in updates
- Make GetRepo handling missing repo options without breaking
- Removed "failovermethod" repo option that does not exist in dnf anymore
- Added a workaround for rpm path with escaped spaces
- dnf group_install & group_remove need the grp.ig, not the dnf.comps.Group object
- Added a specific function for get_packages using "standard fields" such as decription, size and group to speed up GetPackages
- Improved time spent in _get_id.
- build transaction in history_undo
- Fixed 'dnf.history' has no attribute 'open_history'
2020-04-04 Neal Gompa <[email protected]>
* dnfdaemon.spec: Bump spec for 0.3.20 release
2020-04-04 Neal Gompa <[email protected]>
* dnfdaemon.spec: Raise minimum version of DNF to 4.2.6 and drop
conflicts The minimum verified version this worked with was DNF
4.2.6 but there is no longer an expectation that the Python API
should significantly break with new major versions. Also, we're
removing conflicts to upcoming major versions. If it becomes a
problem, we can re-add them...
2020-04-04 Neal Gompa <[email protected]>
* Makefile, dnfdaemon.spec, python/dnfdaemon/Makefile,
python/dnfdaemon/client/Makefile: Remove Python 2 support from
dnfdaemon Python 2 is dead in Fedora and other Linux distributions
as Python 2 is now EOL per the CPython developers. Thus, we no
longer will support Python 2 dnfdaemon clients. Reference:
https://fedoraproject.org/wiki/Changes/Mass_Python_2_Package_Removal
2020-03-01 Angelo Naselli <[email protected]>
* daemon/dnfdaemon-system.py: With a hugh transaction, number of
bytes to dowload could be greater than Int32, moreover byte number
should be more than 0 so let's use Unsigend to avoid crashes
2020-01-06 Angelo Naselli <[email protected]>
* python/dnfdaemon/server/__init__.py: Fix GetRepo crash for
Atrribute error
2019-12-28 Angelo Naselli <[email protected]>
* python/dnfdaemon/server/backend.py: imported code from "dnf clean
metadata" command
2019-10-15 Adam Williamson <[email protected]>
* daemon/dnfdaemon-session.py, daemon/dnfdaemon-system.py:
check_lock: treat 'locked by other' differently to 'not locked'
check_lock currently claims the daemon is locked by another app even
if the problem is actually that it *isn't locked at all*. We should
distinguish these two cases. Also, here and in a few other places
we refer to this as either a 'dnf lock' or a 'yum lock'. AFAICT it
is not either of those things, it is a lock that is internal to the
daemon. You can happily perform operations with dnf *directly* while
this lock is held. It's confusing to describe this as a 'dnf lock'
when that isn't what it is, so this changes the description to
'dnfdaemon lock' in a few places. Signed-off-by: Adam Williamson
2018-09-17 Adam Williamson <[email protected]>
* python/dnfdaemon/server/__init__.py: Handle additional DNF
transaction callback actions in DNF 3 See
https://bugzilla.redhat.com/show_bug.cgi?id=1624652 and
https://bugzilla.redhat.com/show_bug.cgi?id=1630113 . It seems that
a change in DNF 3 causes transaction callbacks to use actions that
aren't included in the callback API definition or docs. Because
dnfdaemon/dnfdragora currently kinda assume they know all *possible*
callback actions, this winds up causing dnfdragora to crash if it
tries to handle a callback with one of these unknown actions. This
commit adds the extra actions to the const <-> string dict in
dnfdaemon's TransactionProgress callback, so that in the dbus
RPMProgress message it sends out, the action will be a string, as
dnfdragora's handler for the message expects. A companion commit for
dnfdragora will add handling for the new string values, and also
make it not crash if an unexpected action shows up. Signed-off-by:
Adam Williamson <[email protected]>
2018-09-17 Adam Williamson <[email protected]>
* python/dnfdaemon/server/backend.py: Handle removal of
dnf.repo._md_expire_cache() in DNF 3.4 DNF 3.4 removed
_md_expire_cache(), which we were still using. Let's follow how
upstream replaced it, by using the expire() method of the underlying
librepo repo object...unfortunately this is still using private
interfaces, but I don't see a way to do it using public ones.
Signed-off-by: Adam Williamson <[email protected]>
2018-07-22 Neal Gompa <[email protected]>
* Makefile, python/dnfdaemon/Makefile,
python/dnfdaemon/client/Makefile: Enforce usage of versioned Python
interpreter in Makefiles The Makefiles for dnfdaemon previously
assumed that '/usr/bin/python' pointed to Python 2. However, as
support for Python 2 winds down over the next two years, this is not
guaranteed to remain true. Consequently, Fedora has split out
'/usr/bin/python' from the 'python2' package in order to enforce
that packages do not use '/usr/bin/python' by default. Since the
assumption was wrong in the Makefiles to begin with, it is better to
go ahead and fix it in the Makefiles. Reference:
https://fedoraproject.org/wiki/Changes/Move_usr_bin_python_into_separate_package
2018-06-27 Neal Gompa <[email protected]>
* ChangeLog: Finalize 0.3.19 release
2018-06-27 Neal Gompa <[email protected]>
* dnfdaemon.spec: Add missing %files section for selinux subpackage
2018-06-23 Daniel Mach <[email protected]>
* dnfdaemon.spec: Spec change for 0.3.19 release.
2018-06-21 Daniel Mach <[email protected]>
* python/dnfdaemon/server/__init__.py,
python/dnfdaemon/server/backend.py: Fix code to work with DNF 3
history and transactions.
2017-10-30 Eduard Čuba <[email protected]>
* test/support.py: [tests]: use SWDB instead of YumDB and
GroupPersistor
2017-10-23 Eduard Čuba <[email protected]>
* dnfdaemon.spec, python/dnfdaemon/server/__init__.py: support for
DNF 2.8 Dnf 2.8 introduces unified software database which changes
some non-API calls
2018-06-23 Neal Gompa <[email protected]>
* Makefile: Makefile: master branch is actually 'master' now
2018-04-11 Angelo Naselli <[email protected]>
* python/dnfdaemon/server/__init__.py: Add missing repo data (size
and packages) to json
https://github.com/manatools/dnfdragora/issues/97
2017-12-10 Angelo Naselli <[email protected]>
* python/dnfdaemon/server/__init__.py: Correctly managed undo
operation
2017-05-24 Neal Gompa <[email protected]>
* ChangeLog: Finalize 0.3.18 release
2017-05-24 Neal Gompa <[email protected]>
* dnfdaemon.spec: Finalize spec for 0.3.18 release
2017-05-24 Jaroslav Mracek <[email protected]>
* python/dnfdaemon/server/backend.py: Add new keyword for
progress.start (RhBug:1454854) It reflect API changes in
dnf-2.5.0-1 https://bugzilla.redhat.com/show_bug.cgi?id=1454854
2017-05-01 Angelo Naselli <[email protected]>
* python/dnfdaemon/server/backend.py: fix rh bug 1444830 update info
"filename" has been removed from hawkey
2017-04-14 Neal Gompa <[email protected]>
* ChangeLog: Finalize 0.3.17 release
2017-04-14 Neal Gompa <[email protected]>
* dnfdaemon.spec: Finalize spec for 0.3.17 release
2017-04-14 Neal Gompa <[email protected]>
* Makefile: Small cleanups to the Makefile Offer variable for
systemd unit install location and fixup definitions of some
variables
2017-03-30 Neal Gompa <[email protected]>
* Makefile: Change Makefile to use manatools-dev branch
2017-03-30 Neal Gompa <[email protected]>
* dnfdaemon.spec: spec: Bump to dnf 2.2.0 min, slight fixes to spec
2017-03-30 Neal Gompa <[email protected]>
* python/dnfdaemon/server/__init__.py: Add new transaction callback
identifiers from DNF 2.2.0
2017-03-22 Neal Gompa <[email protected]>
* README.md: dnf-daemon is under active development again dnfdaemon
development now is actively developed as part of the manatools
development.
2017-03-20 Angelo Naselli <[email protected]>
* python/dnfdaemon/server/__init__.py: fixed install method if not
for local rpm
2017-03-19 Angelo Naselli <[email protected]>
* python/dnfdaemon/server/__init__.py: DNF 2.0 API change for
installation of RPMs from URI/file path In DNF 2.0, add_remote_rpm
became add_remote_rpms using and returning list of packages, so
Install() needed to change accordingly
2017-02-20 Angelo Naselli <[email protected]>
* python/dnfdaemon/server/__init__.py: Fixed get_config() call to
work with DNF 2.0
2017-02-07 Angelo Naselli <[email protected]>
* python/dnfdaemon/server/__init__.py: Fixed GetRepo() call to work
with DNF 2.0
2017-03-22 Tim Lauridsen <[email protected]>
* README.md: Update README.md
2016-08-29 Tim Lauridsen <[email protected]>
Merge pull request #6 from j-mracek/develop Optimize code for
dnf-2.0
2016-08-24 Jaroslav Mracek <[email protected]>
* dnfdaemon.spec, python/dnfdaemon/server/__init__.py,
python/dnfdaemon/server/backend.py: Optimize code for dnf-2.0
2016-05-25 Tim Lauridsen <[email protected]>
merge release 0.3.16
2016-05-25 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2016-05-25 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: bumped version to 0.3.16
2016-05-25 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py,
python/dnfdaemon/server/backend.py: fixes issues with use of non
public gpg API in dnf 1.1.9 (rhbz #1338564)
2016-05-10 Tim Lauridsen <[email protected]>
Merge branch 'release-devel' into develop
2016-05-10 Tim Lauridsen <[email protected]>
Merge branch 'release-0.3.15' into develop
2016-05-10 Tim Lauridsen <[email protected]>
merge dnfdaemon-0.3.15 release
2016-05-10 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2016-05-10 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: bumped version to 0.3.15
2016-05-10 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/backend.py: Show all kernel packages as
updates
2016-05-10 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py,
python/dnfdaemon/server/backend.py: workaround for
dnf.Base.reset(sack=True) in hawkey 6.0.3
https://bugzilla.redhat.com/show_bug.cgi?id=1332067
2016-04-29 Tim Lauridsen <[email protected]>
Merge branch 'release-0.3.14' into develop
2016-04-29 Tim Lauridsen <[email protected]>
merge dnfdaemon-0.3.14 release
2016-04-29 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2016-04-29 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: bumped version to 0.3.14
2016-04-29 Tim Lauridsen <[email protected]>
* python/dnfdaemon/client/__init__.py: fallback to use
GObject.G_MAXINT
2016-04-29 Tim Lauridsen <[email protected]>
Merge branch 'release-0.3.13' into develop
2016-04-29 Tim Lauridsen <[email protected]>
merge dnfdaemon-0.3.13 release
2016-04-29 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2016-04-29 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: bumped version to 0.3.13
2015-12-15 Tim Lauridsen <[email protected]>
* Makefile: change the release Makefile target to the gitflow model
2015-12-07 Tim Lauridsen <[email protected]>
* python/dnfdaemon/client/__init__.py: fix: dreprecated
GObject.G_MAXINT in rawhide
2015-12-01 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, python/dnfdaemon/server/__init__.py: use public
API for RPM transaction progress (dnf >= 1.1.0) (Fixes
timlau/yumex-dnf:#65)
2015-11-28 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2015-11-28 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: bumped version to 0.3.12
2015-11-28 Tim Lauridsen <[email protected]>
* Makefile, dbus/dnfdaemon.service,
dbus/org.baseurl.DnfSystem.service, dnfdaemon.spec: Added systemd
service for org.baseurl.DnfSystem
2015-11-18 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2015-11-18 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: bumped version to 0.3.11
2015-11-18 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: fix problems with gpgkey
import (fixes timlau/yumex-dnf#71)
2015-10-09 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: policycoreutils-python ->
policycoreutils-python-utils only for f23 and later
2015-10-05 Tim Lauridsen <[email protected]>
Merge pull request #1 from genodeftest/patch-1 Remove
deprecated python option `-tt`
2015-10-02 Christian Stadelmann <[email protected]>
* daemon/dnfdaemon-system.py: Remove deprecated python option `-tt`
2015-10-02 Christian Stadelmann <[email protected]>
* daemon/dnfdaemon-session.py: Remove deprecated python option `-tt`
2015-09-30 Tim Lauridsen <[email protected]>
* python/dnfdaemon/client/__init__.py,
python/dnfdaemon/server/__init__.py: Remove some logging noise from
print statements (#52)
2015-09-30 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: require policycoreutils-python-utils instead of
policycoreutils-python RHBZ #1246612
2015-09-30 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2015-09-30 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: bumped version to 0.3.10
2015-06-09 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: fix: remember enable repos,
when resetting base
2015-06-09 Tim Lauridsen <[email protected]>
* python/dnfdaemon/client/__init__.py,
python/dnfdaemon/server/__init__.py,
python/dnfdaemon/server/backend.py: Add support for getting all
available updates, using 'update_all' filter.
2015-06-03 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/backend.py: read settings from dnf.conf on
local system
2015-06-01 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: cleanup: pep8 fixes
2015-06-01 Tim Lauridsen <[email protected]>
* python/dnfdaemon/client/__init__.py: Client API exception can
contain a message
2015-06-01 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-system.py, python/dnfdaemon/client/__init__.py:
fix: server & client API much match
2015-06-01 Tim Lauridsen <[email protected]>
* python/dnfdaemon/client/__init__.py: fix: don't reset API version
to 0
2015-06-01 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-session.py, daemon/dnfdaemon-system.py,
python/dnfdaemon/client/__init__.py,
python/dnfdaemon/server/__init__.py: added check for daemon API
version (timlau/yumex-dnf#43)
2015-05-27 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2015-05-27 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, python/dnfdaemon/client/__init__.py,
python/dnfdaemon/server/__init__.py: bumped version to 0.3.9
2015-05-27 Tim Lauridsen <[email protected]>
* Makefile: build: remove python-sphinx from get-builds make target
2015-05-22 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-system.py, docs/server.rst,
python/dnfdaemon/client/__init__.py,
python/dnfdaemon/server/__init__.py,
python/dnfdaemon/server/backend.py, test/test_common.py: auto calc
max download errors, disable the manual setting via RunTransaction
2015-05-21 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/backend.py, test/support.py,
test/test_common.py: added automatic calc of max errors + unit test
2015-05-19 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: HistoryUndo should return
boolean, not int
2015-05-18 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py, test/test_common.py:
GetTransaction should only return current transaction
BuildTransaction should resolve and return current transaction
2015-05-18 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-system.py, python/dnfdaemon/client/__init__.py,
python/dnfdaemon/server/__init__.py: added HistoryUndo to undo a
history transaction (timlau/yumex-dnf#7)
2015-05-14 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py,
python/dnfdaemon/server/backend.py: Apply cached config before sack
is loaded
2015-05-14 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: config settings should be
remember until daemon is closed. (timlau/yumex-dnf#24)
2015-05-14 Tim Lauridsen <[email protected]>
* Makefile: build: use --setopt=installonly_limit=0 on dnf cmds
2015-05-13 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/backend.py: make download error handling
better drpm and mirror switch is not errors
2015-05-13 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py, test/test_common.py:
optimize: AddTransaction should not resolve
2015-05-13 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: fix: traceback is
GetGroupPackages is called before GetGroups (RhBug: # 1221030)
2015-05-12 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: add missing part for
get_attribute('requires') (timlau\yumex-dnf#8)
2015-05-12 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: separate gpgcheck issues and
other transaction errors
2015-05-12 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py, test/test_common.py: added
requires fake attributes It returns a {} with requirement strings
and a list of providing packages. (timlau/yumex-dnf#8)
2015-05-12 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/backend.py: only get real updates and
installonlypkgs in GetPackages('updates'), not other installs pulled
in by the depsolve.
2015-05-11 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: make search for packages case
in-sensitive by default.
2015-05-06 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2015-05-06 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, python/dnfdaemon/server/__init__.py: bumped
version to 0.3.8
2015-05-05 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/backend.py: fix: make fetching of
available updates better Make repo priority and other excluding
work. (Rhbug: 1217155)
2015-04-28 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: fix: reinstall in
add_transaction, should always use the available po, not the
installed one.
2015-04-27 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: fix: fake attribute
'downgrades' return installed package if the main package is a
downgrade
2015-04-27 Tim Lauridsen <[email protected]>
* Makefile: build: makefile targets for reinstall and updates test
builds
2015-04-27 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py, test/test_common.py: fix:
downgrades return wrong action Added unit test for actions
2015-04-27 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: cleanup: some debug printing
2015-04-27 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py: fix: return the right return
code when gpgkey import verification is needed. fix: use the right
TransactionEvent for signature check
2015-04-27 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-system.py, python/dnfdaemon/server/__init__.py:
add basics for handling gpg checks
2015-04-26 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2015-04-26 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: bumped version to 0.3.7
2015-04-23 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py, test/support.py,
test/test_common.py: add support for pkg filelist Added test for
updateinfo updated
2015-04-23 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/backend.py: Added issued date to
updateinfo
2015-04-21 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py,
python/dnfdaemon/server/backend.py: added/removed some FIXME/TODO
comments
2015-04-20 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py,
python/dnfdaemon/server/backend.py, test/support.py,
test/test_common.py: Adding support for UpdateInfo (dnf update
advisories)
2015-04-16 Tim Lauridsen <[email protected]>
* test/test_common.py: cleanup unit test for print() statements
2015-04-15 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2015-04-15 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, python/dnfdaemon/server/__init__.py: bumped
version to 0.3.6
2015-04-15 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py, test/test_common.py: fix:
obsolete is an install, not an update
2015-04-15 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2015-04-15 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, python/dnfdaemon/server/__init__.py: bumped
version to 0.3.5
2015-04-15 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py,
python/dnfdaemon/server/backend.py, test/test_common.py,
test/test_data/repos/main.repo: fix: use same cachedir as dnf cli
cleanup some unit tests and removed some debug printing
2015-04-15 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/backend.py: fix not using same cachedir
than dnf cli
2015-04-14 Tim Lauridsen <[email protected]>
* test/test_common.py, test/test_data/repos/broken.repo: Adding
testcases for installing a package with broken deps
2015-04-14 Tim Lauridsen <[email protected]>
* test/test_common.py, test/test_data/repos/@System.repo,
test/test_data/repos/main.repo: added unit test for package with
multiple obsoletes
2015-04-13 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: require dnf 0.6.3, not 0.6.5
2015-04-12 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2015-04-12 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: bumped version to 0.3.4
2015-04-12 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2015-04-12 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, python/dnfdaemon/client/__init__.py: bumped
version to 0.3.4
2015-04-12 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/__init__.py, test/support.py,
test/test_common.py,
test/test_data/repos/local-pkg-1.0-1.fc22.noarch.rpm: fix test cases
with dnf 0.6.5
2014-10-17 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2014-10-17 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, python/dnfdaemon/server/__init__.py: bumped
version to 0.3.3
2014-10-16 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-system.py: make methods use read or write
PolicyKit rules
2014-10-16 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-system.py,
policykit1/org.baseurl.DnfSystem.policy,
python/dnfdaemon/server/__init__.py: split PolicyKit action in a
read & write rule
2014-10-15 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: removed circular deps
2014-10-15 Tim Lauridsen <[email protected]>
* Makefile, dnfdaemon.spec, rel-eng/packages/.readme,
rel-eng/packages/dnfdaemon, rel-eng/tito.props: build: fedora review
changes
2014-10-13 Tim Lauridsen <[email protected]>
* Makefile, dnfdaemon.spec: build: cleanup Makefile & spec
2014-10-13 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2014-10-13 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: bumped version to 0.3.2
2014-10-12 Tim Lauridsen <[email protected]>
* Makefile, dnfdaemon.spec: build: dont use tito anymore
2014-10-12 Tim Lauridsen <[email protected]>
* Makefile, dnfdaemon.spec: build: fedora review cleanups
2014-10-12 Tim Lauridsen <[email protected]>
* tools/dbusdoc/dnf-system.xml: remove dnf-system.xml from git
2014-10-10 Tim Lauridsen <[email protected]>
* tools/dbusdoc/Makefile, tools/dbusdoc/build_api.py,
tools/dbusdoc/dnf-system.xml: doc: helper to make .rst formatted api
doc via dbus introspection
2014-10-10 Tim Lauridsen <[email protected]>
* docs/server.rst: doc: update server api doc for system daemon
2014-09-25 Tim Lauridsen <[email protected]>
* docs/server.rst: doc: add info about verify action
2014-09-24 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-system.py, python/dnfdaemon/server/__init__.py:
api: adding feedback for verifying packages
2014-09-21 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, rel-eng/packages/dnfdaemon: Automatic commit of
package [dnfdaemon] release [0.3.1-1].
2014-09-21 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2014-09-21 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, rel-eng/packages/dnfdaemon: Automatic commit of
package [dnfdaemon] release [0.3.0-1].
2014-09-21 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, rel-eng/packages/dnfdaemon: Automatic commit of
package [dnfdaemon] release [0.2.6-1].
2014-09-21 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2014-09-21 Tim Lauridsen <[email protected]>
* ChangeLog, rel-eng/tito.props: updated ChangeLog
2014-09-21 Tim Lauridsen <[email protected]>
* ChangeLog, python/dnfdaemon/server/__init__.py,
rel-eng/packages/dnfdaemon: updated ChangeLog
2014-09-21 Tim Lauridsen <[email protected]>
* Makefile: build: make target for run devel tests
2014-09-04 Tim Lauridsen <[email protected]>
* python/dnfdaemon/client/__init__.py: fix: regex for detection of
Dbus Errors
2014-09-04 Tim Lauridsen <[email protected]>
* Makefile: make: auto detect nosetest version to use when running
tests
2014-09-03 Tim Lauridsen <[email protected]>
* python/dnfdaemon/client/__init__.py: Use GLib.MainLoop()
2014-09-02 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: bump dnf requirement to 0.6.1
2014-09-02 Tim Lauridsen <[email protected]>
* python/dnfdaemon/__init__.py, python/dnfdaemon/server/__init__.py:
dnf.base.do_transaction don't return anything in dnf 0.6.x
2014-09-02 Tim Lauridsen <[email protected]>
* test/test-session-api.py: fix session test case after API changes
2014-09-02 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-session.py, daemon/dnfdaemon-system.py,
python/dnfdaemon/server/__init__.py: handle the mainloop in
dnfdaemon.server
2014-09-01 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, rel-eng/packages/dnfdaemon: Automatic commit of
package [dnfdaemon] release [0.2.5-1].
2014-09-01 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2014-09-01 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-system.py: Hack for GObjects dont blow up
2014-09-01 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, rel-eng/packages/dnfdaemon: Automatic commit of
package [dnfdaemon] release [0.2.4-1].
2014-09-01 Tim Lauridsen <[email protected]>
* ChangeLog, test/test_data/repos/local-pkg-1.0-1.fc20.noarch.rpm:
updated ChangeLog
2014-08-31 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-session.py, daemon/dnfdaemon-system.py: Use GLib
mainloop, instead of Gtk, there is crashing in F21
2014-08-30 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/backend.py: use the same cache setup as
dnf cli
2014-08-29 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/backend.py: fix cachedir setup caused by
upstream changes
2014-07-15 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/backend.py, test/test_common.py,
test/test_data/repos/updates.repo: fix: show only latest updates
(fixes : timlau/yumex-dnf#2)
2014-07-15 Tim Lauridsen <[email protected]>
* python/dnfdaemon/server/backend.py: fix: only get latest upgrades
2014-07-13 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, rel-eng/packages/dnfdaemon: Automatic commit of
package [dnfdaemon] release [0.2.3-1].
2014-07-13 Tim Lauridsen <[email protected]>
* ChangeLog, python/dnfdaemon/server/__init__.py: updated ChangeLog
2014-07-13 Tim Lauridsen <[email protected]>
* test/test-system-ro.py: test: fixed som test cases
2014-07-13 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, python/dnfdaemon/server/backend.py: fix cachedir
setup for dnf 0.5.3 bump dnf dnf requirement
2014-05-29 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, rel-eng/packages/dnfdaemon: Automatic commit of
package [dnfdaemon] release [0.2.2-1].
2014-05-29 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2014-05-29 Tim Lauridsen <[email protected]>
* dnfdaemon.spec: build: require dnf 0.5.2
2014-05-29 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-system.py: fix refactor issue
2014-05-09 Tim Lauridsen <[email protected]>
* daemon/dnfdaemon-session.py, daemon/dnfdaemon-system.py,
python/dnfdaemon/client/__init__.py,
python/dnfdaemon/server/__init__.py, test/test_common.py: api:
merged GetPackages with GetPackageWithAttributes.
2014-05-09 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, rel-eng/packages/dnfdaemon: Automatic commit of
package [dnfdaemon] release [0.2.1-1].
2014-05-09 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2014-05-09 Tim Lauridsen <[email protected]>
* Makefile: build: auto bump release
2014-05-09 Tim Lauridsen <[email protected]>
* dnfdaemon.spec, rel-eng/packages/dnfdaemon: Automatic commit of
package [dnfdaemon] release [0.2.0-1].
2014-05-09 Tim Lauridsen <[email protected]>
* ChangeLog: updated ChangeLog
2014-05-09 Tim Lauridsen <[email protected]>
* Makefile, {dnfdaemon => daemon}/dnfdaemon-session.py, {dnfdaemon
=> daemon}/dnfdaemon-system.py, dnfdaemon.spec, python/Makefile,
{client => python}/dnfdaemon/Makefile,
python/dnfdaemon/__init__.py, python/dnfdaemon/client/Makefile,
{client/dnfdaemon => python/dnfdaemon/client}/__init__.py,
python/dnfdaemon/server/Makefile, dnfdaemon/common.py =>
python/dnfdaemon/server/__init__.py,
python/dnfdaemon/server/backend.py, test/__init__.py, test/{base.py
=> apitest.py}, test/test-session-api.py, test/test-system-ro.py,
test/test-system-rw.py, test/test_common.py, test/unit-devel.py:
refactor: move server support code into dnfdaemon/server client
code into dnfdaemon/client