-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathagama.changes
More file actions
2298 lines (1574 loc) · 92.1 KB
/
agama.changes
File metadata and controls
2298 lines (1574 loc) · 92.1 KB
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
-------------------------------------------------------------------
Thu Mar 5 07:14:07 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix the generation of the OpenAPI specification
(gh#agama-project/agama#2864).
-------------------------------------------------------------------
Wed Mar 4 07:03:28 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Update and clean-up dependencies (gh#agama-project/agama#3234).
- Drop unused code from agama-lib (gh#agama-project/agama#3234).
-------------------------------------------------------------------
Wed Mar 4 06:55:12 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix packaging of dasd and zfcp schemas (gh#agama-project/agama#3236).
-------------------------------------------------------------------
Tue Mar 3 12:34:09 UTC 2026 - José Iván López González <jlopez@suse.com>
- Extract schema for zFCP config and add schema for zFCP system
(gh#agama-project/agama#3184).
-------------------------------------------------------------------
Tue Mar 3 10:08:58 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Cache storage data using the new attributes-based API (bsc#1258466).
-------------------------------------------------------------------
Mon Mar 2 12:20:15 UTC 2026 - Michal Filka <mfilka@suse.com>
- bsc#1258416
- when user cannot be added into wheel group after creation
just log the error so the rest of user configuration, e.g.
setting password is done.
-------------------------------------------------------------------
Fri Feb 27 11:39:31 UTC 2026 - Ladislav Slezák <lslezak@suse.com>
- Fixed using packages from the Full (offline) installation medium
when booted from harddisk or USB flash (bsc#1258828)
-------------------------------------------------------------------
Thu Feb 26 16:44:32 UTC 2026 - David Diaz <dgonzalez@suse.com>
- Add schema for DASD config (gh#agama-project/agama#3143).
-------------------------------------------------------------------
Wed Feb 25 08:13:55 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Optimize writing software state to reduce time spend when
selecting pattern (bsc#1257794)
- report properly when software selection contain conflict
-------------------------------------------------------------------
Mon Feb 23 21:15:48 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Report properly if rpm installation skipped some packages due to
unavailability as installation failure (bsc#1258359)
-------------------------------------------------------------------
Mon Feb 23 15:39:24 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix firewall-offline-cmd invocation (bsc#1258416).
-------------------------------------------------------------------
Fri Feb 20 10:20:10 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add the URL to the transfer errors (related to bsc#1258194).
-------------------------------------------------------------------
Fri Feb 20 09:35:01 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Properly mark fips pattern for installation when fips kernel
parameter is used (bsc#1258306)
-------------------------------------------------------------------
Thu Feb 19 16:42:12 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add logging about questions to make debugging easier
(gh#agama-project/agama#3190).
-------------------------------------------------------------------
Thu Feb 19 13:35:59 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Properly import the security settings (bsc#1258450).
-------------------------------------------------------------------
Wed Feb 18 20:32:00 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Add support for bootloader config updateNvram (jsc#PED-14224)
-------------------------------------------------------------------
Wed Feb 18 12:09:15 UTC 2026 - Stefan Hundhammer <shundhammer@suse.com>
- Add /var/log/zypp/history to agama-logs tarball
(gh#agama-project/agama#3187)
-------------------------------------------------------------------
Wed Feb 18 11:33:59 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Do not leak the registration codes (bsc#1258221).
-------------------------------------------------------------------
Fri Feb 13 09:21:12 UTC 2026 - José Iván López González <jlopez@suse.com>
- Update storage user config with config from the storage model
(bsc#1257798).
-------------------------------------------------------------------
Fri Feb 13 08:47:07 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Resolve the relative URLs (bsc#1258118).
- Do not finish the installation as "failed" if it was not possible
to fetch the user files (bsc#1258118).
-------------------------------------------------------------------
Thu Feb 12 14:43:48 UTC 2026 - José Iván López González <jlopez@suse.com>
- Recalulate bootloader proposal after applying a storage config
model (gh#agama-project/agama#3158, bsc#1258134).
-------------------------------------------------------------------
Thu Feb 12 14:37:55 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add the password strength check to the API (gh#agama-project/agama#3159).
-------------------------------------------------------------------
Thu Feb 12 08:35:38 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Run post scripts after all agama configuration is written down
(bsc#1257791)
-------------------------------------------------------------------
Wed Feb 11 15:49:05 UTC 2026 - José Iván López González <jlopez@suse.com>
- Add agama-s390 service and integrate DASD into the new HTTP API
(gh#agama-project/agama#3128).
-------------------------------------------------------------------
Wed Feb 11 15:47:38 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Use "/run/agama/zypp" as directory for libzypp
(gh#agama-project/agama#3154).
-------------------------------------------------------------------
Wed Feb 11 13:48:37 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Sort the list of products alphabetically (gh#agama-project/agama#3145).
-------------------------------------------------------------------
Wed Feb 11 13:34:36 UTC 2026 - Ladislav Slezák <lslezak@suse.com>
- Return also the product mode translations
(gh#agama-project/agama#3144)
-------------------------------------------------------------------
Mon Feb 9 14:24:29 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Prevent set config and install actions to run at the same time (bsc#1257935).
-------------------------------------------------------------------
Fri Feb 6 13:59:11 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix parsing of the answers file (bsc#1257400).
-------------------------------------------------------------------
Fri Feb 6 07:38:38 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Allow loading a profile with no product (bsc#1257067 and bsc#1257082).
- Make the bootloader proposal after the storage one is ready (bsc#1257530).
- Run pre-scripts only once to prevent potential infinite loops.
-------------------------------------------------------------------
Thu Feb 5 06:46:46 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Sort the list of languages, keymaps and timezones (bsc#1257497).
-------------------------------------------------------------------
Wed Feb 4 11:37:18 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Fix usage of local repositories on full medium
(bsc#1257475)
-------------------------------------------------------------------
Tue Feb 3 07:23:18 UTC 2026 - Knut Anderssen <kanderssen@suse.com>
- Correct the /etc/resolv.conf link in the chroot to
/run/NetworkManager/resolv.conf (bsc#257468).
-------------------------------------------------------------------
Mon Feb 2 11:56:24 UTC 2026 - Ladislav Slezák <lslezak@suse.com>
- Fixed opening the SSH firewall port when the firewall is not
installed because of the set "onlyRequires" flag in the software
configuration (bsc#1257212)
-------------------------------------------------------------------
Mon Feb 2 08:13:10 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Implement modification of kernel parameters when SELinux pattern
is selected (gh#agama-project/agama#3103)
-------------------------------------------------------------------
Fri Jan 30 16:27:35 UTC 2026 - Ancor Gonzalez Sosa <ancor@suse.com>
- Update schemas for storage model and volume templates (related to
jsc#PED-14307).
-------------------------------------------------------------------
Fri Jan 30 11:00:08 UTC 2026 - Knut Anderssen <kanderssen@suse.com>
- Added proxy service allowing to configure the proxy through the
kernel cmdline proxy argument and with HTTP API
(gh#agama-project/agama#3069).
-------------------------------------------------------------------
Thu Jan 29 22:30:05 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Do not export neither network/connections nor network/state when
they are None (related to bsc#1257230).
-------------------------------------------------------------------
Thu Jan 29 21:10:18 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Add support for "onlyRequired" key in "software" section
using new libzypp zypp.conf.d directory.
(gh#agama-project/agama#3100)
-------------------------------------------------------------------
Thu Jan 29 14:56:50 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix "agama config edit" subcommand to update the configuration
(bsc#1257198).
-------------------------------------------------------------------
Thu Jan 29 09:56:05 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Do not wait for the storage service when setting the configuration
(gh#agama-project/agama#3096, related to bsc#1257067).
-------------------------------------------------------------------
Thu Jan 29 07:04:09 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Expose the product configuration even in the software service is busy
(bsc#1257443).
-------------------------------------------------------------------
Thu Jan 29 06:24:00 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix answers validation (gh#agama-project/agama#3094).
-------------------------------------------------------------------
Wed Jan 28 17:07:32 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Import the security settings correctly (bsc#1257290).
-------------------------------------------------------------------
Wed Jan 28 16:14:52 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Use the first product mode if none is given (related to jsc#PED-14307).
-------------------------------------------------------------------
Wed Jan 28 12:59:50 UTC 2026 - José Iván López González <jlopez@suse.com>
- Add agama-iscsi service and integrate iSCSI into the new HTTP API
(gh#agama-project/agama#3064).
-------------------------------------------------------------------
Wed Jan 28 12:43:05 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix the handling of HTTP actions (gh#agama-project/agama#3088).
- Add more details when a request fails because there are pending issues
or the installer is busy.
- Include in the logs markers for the start and the end of the
installation.
-------------------------------------------------------------------
Wed Jan 28 10:59:29 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add support to define product modes (jsc#PED-14307).
-------------------------------------------------------------------
Wed Jan 28 09:59:43 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Support "gpgFingerprints" and "allowUnsigned" keys in
"software/extraRepositories" section of profile
(gh#agama-project/agama#3087)
-------------------------------------------------------------------
Tue Jan 27 18:35:59 UTC 2026 - Ladislav Slezák <lslezak@suse.com>
- Enable the SSH service and open the SSH port in firewall when
an SSH key for the root user is set (bsc#1257212)
-------------------------------------------------------------------
Fri Jan 23 15:36:12 UTC 2026 - Ladislav Slezák <lslezak@suse.com>
- Fixed removing automatically selected recommended patterns
(gh#agama-project/agama#3072)
-------------------------------------------------------------------
Fri Jan 23 14:10:16 UTC 2026 - Martin Vidner <mvidner@suse.com>
- Follow suit, do not package /usr/share/locale itself
(gh#agama-project/agama#3071).
-------------------------------------------------------------------
Fri Jan 23 13:47:29 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Copy the SCC credentials and the libzypp services
(gh#agama-project/agama#3053).
-------------------------------------------------------------------
Fri Jan 23 09:53:37 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Use the right architecture when regisrering a system in ppc64le
(gh#agama-project/agama#3068).
-------------------------------------------------------------------
Thu Jan 22 16:16:55 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Consider inst.register_url as part of the "extended configuration"
(bsc#1256907).
- Try to register the system even if only a registration URL was
specified (without a code).
- When the registration fails, retry it on the next SetConfig call.
-------------------------------------------------------------------
Wed Jan 21 11:07:34 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Allow importing SSL certificates from registration servers
(gh#agama-project/agama#3055).
-------------------------------------------------------------------
Wed Jan 21 10:59:15 UTC 2026 - Knut Anderssen <kanderssen@suse.com>
- Fix enabling NetworkManager service in the target system
(gh#agama-project/agama#3056).
-------------------------------------------------------------------
Mon Jan 19 20:31:26 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Fix inst.finish=stop option (gh#agama-project/agama#3047)
-------------------------------------------------------------------
Fri Jan 16 15:01:32 UTC 2026 - Josef Reidinger <jreidinger@suse.com>
- Fix unattended installation (bsc#1256898).
- Add first user to wheel group (gh#agama-project/agama#3030).
- Implement using inst.install_url instead of Product repositories
(gh#agama-project/agama#3030).
-------------------------------------------------------------------
Wed Jan 14 23:27:16 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Implement support for users and authentication configuration.
- Initialize and copy the network configuration to the target
system.
- Execute post-installation scripts.
-------------------------------------------------------------------
Fri Jan 9 14:43:59 UTC 2026 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 19.pre
- Introduce the version 2 of the HTTP API (gh#agama-project/agama#2997).
- Add new services, ported from Ruby:
- hostname
- files
- manager
- storage
- Replace the old API with the new one.
- Adapt most parts of the CLI to the new HTTP API.
- Missing pieces:
- Users and authentication handling.
- iSCSI, DASD, zFCP.
- Network proxy.
- IPMI.
- Use self-signed certificates for registration.
-------------------------------------------------------------------
Wed Nov 19 14:49:59 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Do not build on 32bit arches (like i586) and PPC64-BE,
the dependant libsuseconnect does not support these (bsc#1251846)
-------------------------------------------------------------------
Tue Nov 18 08:47:11 UTC 2025 - Michal Filka <mfilka@suse.com>
- Fixed passing arguments when "agama config generate" with an
AutoYast profile.
- Removed unhandled unwrap, reorganized validation result reporting
(gh#agama-project/agama#2893).
-------------------------------------------------------------------
Wed Nov 12 15:42:27 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 18
-------------------------------------------------------------------
Wed Nov 12 13:14:21 UTC 2025 - Michal Filka <mfilka@suse.com>
- Fixed output of "agama config generate"
-------------------------------------------------------------------
Mon Nov 10 14:35:25 UTC 2025 - Michal Filka <mfilka@suse.com>
- Created ProfileClient based on HTTP API base client for profile
validation requests and refactored / cleaned relevant code
(gh#agama-project/agaam#2778).
-------------------------------------------------------------------
Tue Oct 14 10:36:49 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Do not log errors when retrieving NetworkManager secrets to prevent
leaking them (bsc#1251898).
-------------------------------------------------------------------
Tue Oct 7 09:55:46 UTC 2025 - Clemens Famulla-Conrad <cfamullaconrad@suse.com>
- Add IpConfig.link_local4 to specify ZeroConf/AutoIP behavior.
(gh#agama-project/agama#2792).
-------------------------------------------------------------------
Wed Oct 1 13:45:23 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Autoinstallation schema improvements (gh#agama-project/agama#2773):
- Added product name examples
- Allow using "$schema" key for linking the schema definition,
some editors like VSCode uses that for validaing the file
automatically
- Use "agama-project" in the GitHub URLs
-------------------------------------------------------------------
Mon Sep 15 21:09:06 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Do not log the events to prevent leaking passwords (bsc#1249622).
- Set logs permissions to 0o600.
-------------------------------------------------------------------
Tue Sep 2 12:24:00 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Drop the D-Bus interface to localization configuration
(gh#agama-project/agama#2684).
-------------------------------------------------------------------
Thu Aug 28 10:15:23 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Update the software cache when the patterns selection changes (bsc#1248826).
-------------------------------------------------------------------
Thu Aug 28 05:26:06 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Include the output of the "agama config" commands when
agama-autoinstall fails (related to bsc#1248779).
-------------------------------------------------------------------
Wed Aug 27 08:57:02 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Add the zFCP controller internal id to the device when some
update is notified (bsc#1247445).
-------------------------------------------------------------------
Mon Aug 25 16:13:43 UTC 2025 - Michal Filka <mfilka@suse.com>
- bsc#1247424
- introduced --local option for agama config validate CLI command
to make validation working without connecting to remote agama
server
-------------------------------------------------------------------
Tue Aug 19 12:38:40 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix software configuration cache (bsc#1247933).
-------------------------------------------------------------------
Wed Aug 13 15:16:25 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Allow to specify "bootloader" and "files" section in agama
profile without specified product (bsc#1247248)
-------------------------------------------------------------------
Thu Aug 7 11:47:55 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Allow to "add" or "remove" patterns from the current or defined
user selection patterns list (bsc#1247456).
-------------------------------------------------------------------
Wed Aug 6 15:37:52 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Automatically retry registration when a network error happens
during autoinstallation (bsc#1246990)
-------------------------------------------------------------------
Wed Aug 6 12:52:41 UTC 2025 - José Iván López González <jlopez@suse.com>
- Emit HTTP event when storage is configured, including the client
id (gh#agama-project/agama#2640).
-------------------------------------------------------------------
Mon Aug 4 09:29:29 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Do not return an Err when a connection is not activated or
deactivated when adding or updating it but just log the error
and write the connections profiles (bsc#1245548).
-------------------------------------------------------------------
Fri Aug 1 10:10:40 UTC 2025 - Martin Vidner <mvidner@suse.com>
- Fixed "agama config edit" when used with a remote --host option
(gh#agama-project/agama#2628).
-------------------------------------------------------------------
Thu Jul 31 11:54:49 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add support for a "questions" section in the Agama configuration
that allows defining how to answer questions (bsc#1246997).
-------------------------------------------------------------------
Tue Jul 29 09:50:59 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Do not complain about missing a selected product when it is not
required (bsc#1247248).
-------------------------------------------------------------------
Mon Jul 28 12:40:40 UTC 2025 - Martin Vidner <mvidner@suse.com>
- update pam crate not to use a vulnerable users dependency
(bsc#1244200, CVE-2025-5791)
-------------------------------------------------------------------
Mon Jul 28 08:18:09 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- When the files in inst.auto or inst.script cannot be downloaded,
write the errors earlier (gh#agama-project/agama#2168).
-------------------------------------------------------------------
Thu Jul 24 13:19:52 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Introduce inst.auto_insecure and inst.script_insecure to disable
SSL checks for inst.auto and inst.script (bsc#1246836).
-------------------------------------------------------------------
Wed Jul 23 14:48:53 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Added "--insecure" option to "agama config load" and
"agama config generate" commands (related to bsc#1246836)
-------------------------------------------------------------------
Wed Jul 23 11:37:04 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Fix CLI connection update when using an special character in
the connection ID (bsc#1246930, gh#agama-project/agama#2605).
-------------------------------------------------------------------
Thu Jul 22 11:00:00 UTC 2025 - Clemens Famulla-Conrad <cfamullaconrad@suse.com>
- Fixed a potential race condition when deleting network connections
in deactivate_connection() (gh#agama-project/agama#2582).
-------------------------------------------------------------------
Tue Jul 22 10:47:36 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Log ProgressChanged events (gh#agama-project/agama#2597).
-------------------------------------------------------------------
Tue Jul 22 07:53:34 UTC 2025 - Martin Vidner <mvidner@suse.com>
- fix .changes errors reported by obs-service-source_validator
(gh#agama-project/agama#2593)
-------------------------------------------------------------------
Mon Jul 21 15:07:40 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 17
-------------------------------------------------------------------
Mon Jul 21 14:35:57 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add support for an inst.script option that allows to run an
arbitrary script (bsc#1246702, gh#agama-project/agama#2589).
-------------------------------------------------------------------
Mon Jul 21 14:17:25 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Ensure software cache is updated even if part of its config
cause error (gh#agama-project/agama#2585)
-------------------------------------------------------------------
Mon Jul 21 10:56:54 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Fix device type detection when reading a VLAN connection
(gh#agama-project/agama#2586).
-------------------------------------------------------------------
Fri Jul 18 06:54:08 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Add support to configure VLANs through the CLI or HTTP API
(gh#agama-project/agama#2580).
-------------------------------------------------------------------
Thu Jul 17 10:35:10 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Adjust the information included in the logs (gh#agama-project/agama#2575).
-------------------------------------------------------------------
Wed Jul 16 19:05:48 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Fix crash when an Agama profile contains only the zfcp section by
providing better error report when product selection have to be
done before or in the same profile (bsc#1246601)
-------------------------------------------------------------------
Wed Jul 16 15:37:34 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- When searching for a translation of a license, use the first
language in the same territory as fallback (bsc#1238364,
gh#agama-project/agama#2571).
- Add the language tag to the /licences/:id endpoint.
-------------------------------------------------------------------
Wed Jul 16 14:55:00 UTC 2025 - Clemens Famulla-Conrad <cfamullaconrad@suse.com>
- Fix deletion of controller connections (gh#agama-project/agama#2564)
-------------------------------------------------------------------
Wed Jul 16 14:21:30 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Make the method4 and method6 default to be "auto" in case of
absense (bsc#1246194).
-------------------------------------------------------------------
Wed Jul 16 13:22:07 UTC 2025 - Clemens Famulla-Conrad <cfamullaconrad@suse.com>
- Add initial support for ovs in agama network model (gh#agama-project/agama#2536).
-------------------------------------------------------------------
Wed Jul 16 13:17:22 UTC 2025 - Jorik Cronenberg <jorik.cronenberg@suse.com>
- Add dns priority to network model (gh#agama-project/agama#2533).
-------------------------------------------------------------------
Wed Jul 16 08:42:59 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Added -i/--insecure optional argument to the "agama download"
command to ignore SSL problems in HTTPS downloads (self-signed
certificate, non-matching host, unknown CA...)
(related to bsc#1245393)
-------------------------------------------------------------------
Wed Jul 16 07:30:02 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Add support for activating zFCP disks to Agama unattended profile
(gh#agama-project/agama#2551)
- Fix export of empty DASD section leading to failure on non s390
system (bsc#1246102)
-------------------------------------------------------------------
Tue Jul 15 09:00:00 UTC 2025 - Clemens Famulla-Conrad <cfamullaconrad@suse.com>
- Fix autoconnect setting for port interfaces (bsc#1246070).
-------------------------------------------------------------------
Fri Jul 11 06:56:29 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Do not exported null values for localization, hostname
and product settings (gh#agama-project/agama#2543).
-------------------------------------------------------------------
Wed Jul 9 12:25:08 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- unattended installation: allow registration to RMT when
registration code is ommited (bsc#1246069)
-------------------------------------------------------------------
Mon Jul 7 13:22:05 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Improve handling of the inst.auto option (gh#agama-project/agama#2534):
- Replace the "agama-auto" service with "agama-autoinstall".
- Report when the configuration could not be loaded.
- Allow importing multiple configurations.
- Add a new `inst.install` option to stop the installation after
loading the configuration.
-------------------------------------------------------------------
Fri Jul 4 11:33:44 UTC 2025 - José Iván López González <jlopez@suse.com>
- Reprobe the system after registering the product
(gh#agama-project/agama#2532, bsc#1245400).
-------------------------------------------------------------------
Wed Jul 2 16:02:07 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Cache the list of products during the startup (bsc#1241208).
-------------------------------------------------------------------
Mon Jun 30 15:51:35 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 16
-------------------------------------------------------------------
Fri Jun 27 10:02:43 UTC 2025 - José Iván López González <jlopez@suse.com>
- Reprobe storage if need while loading a config (bsc#1245114).
-------------------------------------------------------------------
Fri Jun 27 06:29:46 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add an end-point to check passwords strength (bsc#1237480).
-------------------------------------------------------------------
Fri Jun 27 05:29:26 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix error messages formatting (gh#agama-project/agama#2471).
-------------------------------------------------------------------
Wed Jun 25 07:56:57 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Allow to specify onlyRequired in software config and in software
section of agama profile (jsc#AGM-154)
-------------------------------------------------------------------
Wed Jun 18 14:36:50 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Allow to bind a connection to an specific device mac address
(bsc#1244259).
-------------------------------------------------------------------
Wed Jun 18 07:17:30 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Preserve AutoYaST pre-scripts artifacts (bsc#1243776, gh#agama-project/agama#2344).
-------------------------------------------------------------------
Tue Jun 17 12:21:43 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Improve logging of WebSocket events (gh#agama-project/agama#2479).
-------------------------------------------------------------------
Mon Jun 16 14:28:22 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Extend the storage schema to allow sorting storage devices as
part of the search (gh#agama-project/agama#2474).
-------------------------------------------------------------------
Fri Jun 13 12:45:49 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Configure the console font so the non-ASCII characters are
displayed properly (bsc#1239462)
-------------------------------------------------------------------
Fri Jun 13 10:42:48 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- The "logs store" saves all journald logs on a single file (related
to gh#agama-project/agama#2466).
-------------------------------------------------------------------
Fri Jun 13 08:24:39 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Split registration key and registered status to support RMT with
empty registration key (gh#agama-project/agama#2469)
-------------------------------------------------------------------
Thu Jun 12 14:59:52 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Use "localectl" instead of "setxkbmap" to change the keymap
(gh#agama-project/agama#2470).
-------------------------------------------------------------------
Wed Jun 11 13:12:12 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Consider `hashedPassword` as `false` when it is not specified
(gh#agama-project/agama#2464).
-------------------------------------------------------------------
Tue Jun 10 13:33:09 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Expose the user and the root password when exporting the configuration
(bsc#1235602).
- Do not export the "user" section unless a first user is defined.
- Do not export the "root" section unless an authentication mechanism
is defined.
-------------------------------------------------------------------
Tue Jun 10 09:25:39 UTC 2025 - Martin Vidner <mvidner@suse.com>
- consistent CLI for unattended installation (gh#agama-project/agama#2347)
- `agama config generate | agama config load` replaces `agama profile import`
- `agama config generate` replaces `agama profile evaluate`
and `agama profile autoyast`
- `agama config validate` replaces `agama profile validate`, is also automatic
- More consistency in stdio handling, adding --output option
-------------------------------------------------------------------
Mon Jun 9 06:19:39 UTC 2025 - José Iván López González <jlopez@suse.com>
- Extend the HTTP API to get available/candidate drives and MD
RAIDs (gh#agama-project/agama#2419).
- Improve storage schema to avoid wrong device base name
(bsc#1244049).
-------------------------------------------------------------------
Fri Jun 6 13:22:58 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Added support for moving the connections from memory only to disk
(gh#agama-project/agama#2402).
-------------------------------------------------------------------
Tue Jun 5 16:03:31 UTC 2025 - Jorik Cronenberg <jorik.cronenberg@suse.com>
- Use slave-type instead of port-type for NM<1.46.0 (gh#agama-project/agama#2433).
-------------------------------------------------------------------
Thu Jun 5 15:42:13 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Add support to specify for extra repositories if it can be
unsigned or list of GPG fingerprints that are trusted
(jsc#AGM-125)
-------------------------------------------------------------------
Thu Jun 5 12:57:11 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Use camel case for the extra repositories key (gh#agama-project/agama#2442).
-------------------------------------------------------------------
Wed Jun 4 13:18:35 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Drop the autologin property from the JSON schema
(gh#agama-project/agama#2438).
-------------------------------------------------------------------
Tue Jun 3 12:30:40 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Add to api/software/config ability to set/get list of additional
installatio repositories (jsc#AGM-125)
- Add extraRepositories key to software section in agama profile
-------------------------------------------------------------------
Fri May 30 15:05:35 UTC 2025 - Jorik Cronenberg <jorik.cronenberg@suse.com>
- Send different NM dbus values depending on version (gh#agama-project/agama#2356).
-------------------------------------------------------------------
Thu May 29 09:00:00 UTC 2025 - Clemens Famulla-Conrad <cfamullaconrad@suse.com>
- Fix bridge port config (bridge-port.priority and
brdige-port.path_cost)
-------------------------------------------------------------------
Wed May 28 14:53:51 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Refresh the software cache after resolving conflicts to
show the correct current status
(followup for gh#agama-project/agama#2348)
-------------------------------------------------------------------
Wed May 28 13:29:51 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Stop serving the web UI from $HOME/.local/share/agama
(gh#agama-project/agama#2414).
-------------------------------------------------------------------
Mon May 26 19:51:52 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Version 15
-------------------------------------------------------------------
Fri May 23 13:22:15 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Proper handling of WebSocket secure connections (gh#agama-project/agama#2391):
- "agama monitor" does not use "insecure" by default.
- Do not encrypt the connection when using ws: URLs.
-------------------------------------------------------------------
Fri May 23 10:17:32 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Cache progress reporting to avoid blocking the clients
(gh#agama-project/agama#2389).
-------------------------------------------------------------------
Thu May 22 17:19:10 UTC 2025 - Ancor Gonzalez Sosa <ancor@suse.com>
- Update schema of the storage model (gh#agama-project/agama#2346).
-------------------------------------------------------------------
Thu May 22 16:16:54 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Provide software conflicts HTTP API (gh#agama-project/agama#2348)
-------------------------------------------------------------------
Thu May 22 13:16:49 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Cache issues to avoid blocking the clients
(gh#agama-project/agama#2379).
-------------------------------------------------------------------
Tue May 20 14:54:17 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Cache the software configuration and products in the web server,
the software backend is blocked during package installation
(bsc#1241208)
-------------------------------------------------------------------
Wed May 19 15:20:42 UTC 2025 - Knut Anderssen <kanderssen@suse.com>
- Add support for bridge connections (gh#openSUSE/agama#2258).
-------------------------------------------------------------------
Mon May 19 14:02:50 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Do not crash when network events do not contain "addresses",
"nameservers", "dnsSearchlist", "routes4" or "routes6"
(gh#agama-project/agama#2371).
-------------------------------------------------------------------
Mon May 19 12:02:46 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Adapt "install", "probe" and "finish" to use the HTTP API
(gh#agama-project/agama#2368).
- Add commands for monitoring Agama (gh#agama-project/agama#2368):
- "monitor": to display the progress.
- "events": to display the events in JSON format.
-------------------------------------------------------------------
Wed May 14 15:17:25 UTC 2025 - José Iván López González <jlopez@suse.com>
- Add search conditions to storage schema
(gh#agama-project/agama#2338).
-------------------------------------------------------------------
Wed May 14 12:28:57 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Extract network and utilities to the new agama-network and agama-utils
packages (gh#agama-project/agama#2357).
-------------------------------------------------------------------
Tue May 13 09:28:46 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix setting the mode for questions (bsc#1242441).
-------------------------------------------------------------------
Mon May 12 12:55:40 UTC 2025 - Ladislav Slezák <lslezak@suse.com>
- Remove the delay between selecting the product and registering it,
the problem has been fixed in the web UI
(removed workaround for gh#agama-project/agama#2274)
-------------------------------------------------------------------
Wed May 7 21:04:24 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix automatic answer of questions with password (gh#agama-project/agama#2332).
-------------------------------------------------------------------
Wed May 7 15:08:36 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Fix agama-dbus-server to write to journald logs (gh#agama-project/agama#2339).
-------------------------------------------------------------------
Wed May 7 12:52:42 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add validation of the product/addons section (gh#agama-project/agama#2336).
-------------------------------------------------------------------
Wed May 7 06:35:19 UTC 2025 - José Iván López González <jlopez@suse.com>
- Add MD RAIDs to the storage schema (gh#agama-project/agama#2286).
-------------------------------------------------------------------
Mon May 5 06:38:07 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add the iscsi.schema.json to the agama-cli package (gh#agama-project/agama#2324).
-------------------------------------------------------------------
Fri May 2 07:42:21 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Update dependencies (gh#agama-project/agama#2317).
-------------------------------------------------------------------
Wed Apr 30 08:18:10 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Add support for relative URLs in files and scripts definitions
(gh#agama-project/agama#2305).
-------------------------------------------------------------------
Fri Apr 25 10:50:01 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>
- Refactor HTTP clients to simplify error handling
(gh#agama-project/agama#2292).
-------------------------------------------------------------------
Thu Apr 24 14:13:19 UTC 2025 - Josef Reidinger <jreidinger@suse.com>
- Allow to specify in Agama profile SSL certificate fingerprint
to handle self-signed certificates used for non default
registration server
- Allow to specify registration server URL via Agama profile
gh#agama-project/agama#2270
-------------------------------------------------------------------
Tue Apr 22 14:14:52 UTC 2025 - Imobach Gonzalez Sosa <igonzalezsosa@suse.com>