forked from openSUSE/osc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NEWS
1180 lines (1063 loc) · 55.9 KB
/
NEWS
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
0.162
-
0.161.1
- Fix python 2.6 SyntaxError (multiple context expressions)
0.161
- show lintlogs in interactive request review mode
- fix potential shell injections
- allow multiple --repo and --arch options in prjresults
- cleanup babysitter.by
- supersede existing requests if --yes is passed to osc sr
- prepend request summary to diff in interactive mode
- show issues(bugs) in interactive diff mode
0.160
- support fissile build type
- Container support for the package cache
- Remove all untracked files during "osc clean"
- Support the commit of a deleted, but non-existent package
- triggerreason --multibuild-package option
- improved status display
- improved request listing filters
0.159
- "osc buildhistory": show build duration
- Support builds using native Docker build descriptions
- Support usage of pre-build containers for Docker and KIWI builds
- "osc build -M ..": fixed behaviour of falvoured builds
- added switch to show only issues in rdiff
- show build duration in build history
- allow to cat/less files from deleted packages (using -D option)
- Allow to override man-page date
0.158
- cat/less/blame command: default to expand to stay in sync with checkout
- add support for highly experimental native appimage.yml support
- show package status when repository configuration is broken
- add '--blame' option to osc meta command
- try to autodetect local package when running 'osc build'
- comment requests in interactive mode
- fix github issue #236 (--no-cleanup not working)
- fix wipebinaries to prevent wiping of complete repository
- add '--build-opt' to osc build command
- fix requests codebase to fit old obs versions
0.157.2
- add compat code for older apis that do not support multibuild
- fix ssl.connection instantiation in case of old M2Crypto
- highly experimental support for appimage
- fix local service run for non-existent (server-side) package
0.157
- add unpublish command (requires OBS 2.8)
- add blame command (requires OBS 2.9)
- results: show multibuild results by default
- getbinaries: make .AppImage files executable
- support operation in checked out package for cat/less/blame
- add comment command
- improved build recipe selection
- added multibuild (-M) to commands:
buildlog, remotebuildlog, buildinfo, build, buildhistory, jobhistory,
rebuild, restartbuild/abortbuild, wipebinaries, getbinaries
- add checkconstraints command
- add workerinfo command
- fix local build of kiwi images using obsrepositories://
0.156
- highlight scheduled jobs with dispatch problems (due to constraints)
- allow to specify a log message in lock command
- Add '--wipe' option to osc chroot for deleting buildroots
- Add '--vm-memory' option to osc build
- add --multibuild to results command for showing all packages
of a multibuild config
- add --multibuild-package option to results command for showing
only one package of the multibuild config
0.155
- osc service runall: runs all service local, independend of the mode
This allows to create local files even when disabled or
just created at buildtime
- support snapcraft.yaml build descriptions
- "osc add" of a directory offers to create an archive for uploading it
- support usage or preinstall images in local builds
- revision control options for "meta prj"
- bugfixes and documentation updates
0.154
- switch to new obs_scm service when adding git URL's
- set OSC_VERSION environment for source services
(allows to work in local git checkouts when using obs_scm)
0.153
- "my sr" is using the server side request collection to get right results
- maintenance request offers to supersede old, but still open requests
- add build --vm-telnet option for getting debug shell in KVM builds
- add buildhistory --limit option
OBS 2.7 only:
- add "addchannels" and "enablechannel" commands
- support new package instances on branching when using -N parameter
- add --linkrev option to branch command
- add --add-repository-block option to branch command
- add --add-repository-rebuild option to branch command
- add service merge command
- add service wait command
0.152
- add support searching for groups via "group:" prefix
- show possible used incident projects on "maintained" command
OBS 2.7 only:
- support buildtime source services
- support maintenance_incident requests with acceptinfo data
- support maintenance_release requests with acceptinfo data
0.151
- fixed shell command injection via crafted _service files (CVE-2015-0778)
- fix times when data comes from OBS backend
- support updateing the link in target package for submit requests
- various minor bugfixes
0.150
- support local builds using builenv (for same build environment as a former build)
- add "osc api --edit" option to be able to edit some meta files directly
- follow the request order of the api (sorting according to priorization)
- add mr --release-project option for kgraft updates
- add support for makeoriginolder in request
0.149
- removed "--diff" option from the "createrequest" command
- introduced new "vc-cmd" config option, which is used to specify the path
to the vc script
- various bugfixes
0.148
- support new history including review history of OBS 2.6
- display request priorities, if important or critical
- add "osc rq priorize" command to re-priorize existing requests
- allow also "osc rq ls" shortcut
- fish shell completion support
0.147
- support groups in maintainership requests
- fixing listing of review requests
- support expanded package listing (when using project links)
- fixing "osc add git://" behaviour
- using xz as default compression
- support local debian live (image) build format
- handle ppc64le for debian as well
- fix buildlog --strip-time
- some more minor bugfixes
- speedup update of a project working copy (in some cases)
0.146
- support maintenance release request with acceptinfo data (OBS 2.6)
- setlinkrev can be used to update frozen links to current revisions again
- report errors in case request accept fails
- support epoch number handling for local builds
- support bugowner request handling for groups
- support usage of fedoras mock to build packages
- support build --prefer-pkgs for Arch linux
- support bash-completion for .kiwi files
0.145
- allow to use the set-release option when running a manual release
- added support for "osc requestmaintainership PROJECT"
- various bugfixes:
- print_buildlog: do not strip tabs
- fixed "osc -H ..." in combination with a proxy
- fixed creation of ~/.osc_cookiejar
- Package.commit: create _meta for newly added packages
- fixed behavior of set_link_rev #72
0.144
- allow commiting to package sources from linked projects. osc will ask to branch it first.
- group support in bugowner and maintainer command
0.143
- add option to add a auto-accept in future for delete requests (handy for admins)
- many bugfixes:
- plugin loading
- bugowner handling
- download of server side generated source "up -S"
- wipebinaries command
0.142
- ppc64p7 build support
- request --no-devel to disable request forwarding
#
# Features which requires OBS 2.5
#
- authentification token support
0.141
- crash fixes
- support for kiwi appliance builds using obsrepositories:/ directive
- support for manual release of sources and binaries
- add --last parameter for build logs to show last finished log file, if currently building
- add signkey --sslcert option to fetch the optional create ssl certificate instead of gpg key
0.140
- support python 2.7 and python 3 in parallel now
- reworked plugin loading mechanism in order to avoid the (mass) breakage of existing
plugins due to the python 3 support. Nonetheless if a plugin uses the "@cmdln.option(...)"
decorator it has to import the cmdln module first via "from osc import cmdln".
- allow specifying directories as mv targets
- drop the support for deprecated cbinstall and cbpreinstall directives
- allow to set maintainer or bugowner ship for a binary package initially, but ask back if
this is the right place.
- support listing of deleted source files "ls -D $PROJECT $PACKAGE"
- build results do show that a succeeded is not yet published
- improved bash completions
- default build root includes repository and architecture name now
- --request-accept-or-revoke option, useful to handle mass approval of requests
- multiple minor bugfixes
0.139
- various bugfixes for owner search
- support generic emulator virtualization
- added "--host" argument to "osc build" (used to perform the build on a remote host)
- "search --maintained" is obsolete. Abort on usage.
- "maintainer --user" support to search for all official maintained instance for given user or group
- added support to abort a commit after displaying a default commit message in $EDITOR. As a result
other commands like "submitrequest" will also ask if the user wants to proceed if the default
comment/message wasn't changed.
0.138
- add support to remove repositories recursively (mostly only usefull for admins)
- submitrequest: old not anymore used maintenance code got removed. It is possible now
to create one request to submit all changed packages of an project in
one request. Just run "osc sr" in the checked out project directory.
- disable keyring usage by default. print warning about misconfigured keyrings.
- prdiff: new command to diff entire projects
0.137
- support single binary download via getbinaries command
- support to set the bugowner
#
# Features which requires OBS 2.4
#
- offer to send set_bugowner request if target is not writeable
- support delete requests for repositories.
- support default maintainer/bugowner search based on binary package names
- support to lookup --all definitions of maintainers of bugowners. Either
for showing or setting them.
- buildinfo --debug option for verbose output of dependency calculation
0.136
- prefer TLS v1.1 or v1.2 if available
- declined is considered to be an open state (that is "osc rq list" also shows declined requests)
- added support to move files across packages via "osc mv" (fixes issue #10)
- various bugfixes:
* show source package name when running "osc se --binary ..."
* fixed encoding detection
* fixed build result listing for arch packages (affects "osc build")
* "osc ci --noservice" works also for "external"/flat packages
0.135.1
- do not forward requests to packages which do link anyway to original request target
0.135
- request accept is offering now to forward submit request if it is a devel area like webui does
- support archlinux builds (requires OBS 2.4)
- support maintenancerequest from local checkout
- bugfixes for review handling, result watching, gnome-keyring
0.134
- patchinfo call can work without checked out copy now
- use qemu as fallback for building not directly supported architectures
- "results --watch" option to watch build results until they finished building
- setlinkrev and linkpac ---current is setting vrev. this requires OBS 2.1.17 or 2.3
- security fix for buildlog function, terminal control characters are limited now.
#
# Features which requires OBS 2.3
#
- support dryrun of branching to preview the expected result. "osc sm" is doing this now by default.
- maintenance requests accept package lists as source and target incidents to be merged in
- add "setincident" command to "request" to re-direct a maintenance request
- ask user to create "maintenance incident" request when submit request is failing at release project
- "osc my patchinfos" is showing patchinfos where any open bug is assigned to user
- "osc my" or "osc my work" is including assigned patchinfos
- "osc branch --maintenance" is creating setups for maintenance
- "osc unlock" command to unlock packages or projects
0.133
- add --meta option also to "list", "cat" and "less" commands
- project checkout is skipping packages linking to project local packages by default
- add --keep-link option to copypac command
- source validators are not called by default anymore:
* They can get used via source services now
* Allows different validations based on the code streams
#
# Features which requires OBS 2.3
#
- support source services using OBS project or package name
- support updateing _patchinfo file with new issues just by calling "osc patchinfo" again
- branch --add-repositories can be used to add repos from source project to target project
- branch --extend-package-names can be used to do mbranch like branch of a single package
- branch --new-package can be used to do branch from a not yet existing package (to define later submit target)
- show declined requests which created by user
0.132
- rdelete and undelete command requesting now a comment
- add 'requestbugownership' command for setting the bugowner via request
#
# Features which requires OBS 2.3
#
- new command "createincident" to create maintenance incidents without a request
- support to create hidden project on "branch" and "createincident" commands
- osc waits and updates package after checkin when a source service is used
- support for the new service file mode for "update" and "checkout" command when
downloading server side generated files
- integration for local source services, they will replace the source_validator mechanism
0.131
- new command 'develproject' to print the devel project from the package meta.
- add blt and rblt commands, aka "buildlogtail" and "remotebuildlogtail" to show
just the end of a build log (for getting the fail reason faster).
CHANGE: the --start parameter is now called --offset
- add "createrequest -a add_group" option to create a group request
- add "createrequest -a add_me" shortcut
- add "less" command, doing the same as "osc cat" but with pager
- fallback to unexpanded diff mode on "osc diff" on merge error.
- support viewing the commit history of deleted packages
- show review states on "review list"
- new source service commands "localrun" and "disabledrun" to generate files without _service: prefix
- add "request supersede" and "review supersede" to supersede with existing request
- make it possible to run single source services, even when not specified in _service file.
(For example for doing a version update without creating a _service file: osc service lr update_source)
- protect rebuild and abortbuild commands with required "--all" option to mass failures by accident (similar to wipebinaries)
- "review accept/decline" is trying to change all reviews of a requests, if a specific one is not specified by user
#
# Features which requires OBS 2.3
#
- "my requests" is doing faster and complete server side lookup now if available
- "review" command has been extended to handle reviews by project or by package maintainers
- support for new source service modes: disabled, trylocal and localonly
- support project wide source services
- support for armv7hl architecuture. used to denote armv7 + hardfloat binaries
- add force option to accept requests in review state.
- add "maintenancerequest" command to request a maintenance incident from maintenance team
- add "releaserequest" command run a maintenance update release process (for maintenance team only)
- allow to force the storage of project meta data (to ignore depending repositories for example)
- "my requests" is showing requests with open reviews also now
0.130
- new "revert" command to restore the original working copy file (without
downloading it)
- rewrote "diff" logic
- added new "--http-full-debug" option, "--http-debug" filters the
"Authentication" and "Set-Cookie" header
- added new "--disabled-cpio-bulk-download" option: disable downloading
packages as cpio archive from api
- added new "repairwc" command which tries to repair an inconsistent working
copy
- workaround for broken urllib2 in python 2.6.5: wrong credentials lead to an
infinite recursion
- support --interactive-review option when running "osc rq list <project>"
- improved "osc rq show <id> --interactive-review"
- do_config: added new options --stdin, --prompt, --no-echo:
--stdin: read value from stdin
--prompt: prompt for a value
--no-echo: prompt for a value but don't echo entered characters (for
instance to enter a passwd)
- added template support for a submitrequest accept/decline message
- lots of internal rewrites (new working copy handling etc.)
- support added for osc search 'perl(Foo::Bar)'
- New "service" command to run source services locally or trigger a re-run on the server.
- setlinkrev is setting now the revision to xsrcmd5 by default to avoid later breakage on indirect links by default.
NOTE:
Due to the rewrite of the working copy handling osc might fail with the
following error:
Your working copy '.' is in an inconsistent state.
Please run 'osc repairwc .' (Note this might _remove_
files from the .osc/ dir). Please check the state
of the working copy afterwards (via 'osc status .')
Simply run "osc repairwc" which might fetch files from the api
or delete some files from the storedir (.osc/). It won't touch
locally modified files. For more information see section
"WORKING COPY INCONSISTENT" in the README.
#
# Feature which requires OBS 2.1
#
- support reliable diff for an accepted request
0.129
- "dists" command to show the configured default base repos from the server.
- "review list" command to list open review requests
- "review add" command to add another reviewer for a request (either user or group)
- add "buildinfo --prefer-pkgs <dir>" option
- add "prjresults --hide-disabled" option to hide packages which are disabled/excluded
in all repos and repos which have only disabled/excluded packages
- harmonize "api"'s options with curl's options
- use builtin signature check by default (instead of verifying the signature with "rpm -K...")
- add "status --show-excluded" to show all files (except the store dir)
- new "osc reqmaintainership" command which is a shortcut for
"osc creq -a add_role USER maintainer PROJECT PACKAGE"
#
# Feature which requires OBS 2.1
#
- add "osc aggregate --nosources" option
- add "request clone" command to clone all packages from a given request
- fixed references into en.opensuse.org to honor the new Wiki structure
- add cross build targets mips and mipsel for QEMU Usermode. needs also build update.
0.128
- better default commands selection for editor/pager
- support "osc rq reopen" to set a request in new state again
- "osc repos" and "wipebinaries" is checking for local project now
- "osc getbinaries" works in project dir now
- support added for SPARC builds
- support build --oldpackages
- introduced the "trusted projects"
- Fixes for default editor, api check on deleterequest call, tempfile leaks, getbinaries source package handling, results command
#
# Feature which require either OBS 2.1 or 2.0.4
#
- add osc signkey --extend for extending the expiration date of the gpg public key
0.127
- add size limit mode, files can be ignored on checkout or update given a certain size limit.
- --csv/--format options for results command - using format user can explicitly specify what he wants print
- osc branch reads project/package in package directory
- fix creation of package link, when target project has the package via linked project
- add "osc rq approvenew $PROJECT" command to show and accept all request in new state.
This makes sense esp. for projects which work with default reviewers before.
- support external source validator scripts before commiting
- support request creation with multiple actions
#
# Features which require OBS 2.0
#
- support "osc add http://...", this uses obs source service for downloading a file and verify it via sha256 verifier service
- add support for CBpreinstall/CBinstall
- support branch --force to override target
- support for "unresolvable" state of OBS 2.0
- support undelete of project or package
- support for package meta data checkout
0.126
- added VM autosetup to osc. This requires appropriate OBS version and build script version.
- enhanced QEMU cross build support with 'armv4l' 'armv5el' 'armv6el' 'armv7el' 'armv8el' 'mips' 'mips64' 'ppc' 'ppc64' 'sh4' arch strings now supported on x86 host
- suggest git, svn, ... if indicated, after oscerr.NoWorkingCopy
- "osc cat" & "osc ls" now auto-expands through link.
- fixed "osc add" after "osc delete".
- fix "osc patchinfo" command (crashed before)
- fixed SSL proxy support
- fixed meta attribute create and set calls
- osc remotebuildlog supports a buildlogurl
- Allow --prefer-pkgs to parse repodata
- new "osc build --no-service" option to skip source service update
- fix linktobranch apiurl usage
- "maintained package" search is telling relevant projects now
* requires OBS 1.7.2 or 2.0
- added "osc chroot" command
- fixed #547005 ("osc co could show download progress")
- added "--interactive" option to "osc request"
- store commit message so it doesn't get lost on failure
- added "--cpio-bulk-download" and "--download-api-only" options to "osc build"
- added "osc localbuildlog" command
- added "--build-uid uid:gid|caller" option to "osc build" to specify abuild id in chroot
- verify files using rpm bindings and keys supplied by buildservice
- added "--exclude-target-project <prj>" option to "osc rq list"
- added "--message" option to "osc branch"
- added "osc config" command to set/get/delete a config option
- added "--binary" and "--baseproject" options to "osc search"
- added "-o/--offline" and "-l/--preload" options to osc build
* osc build -l standard i586 foo.spec (to cache all dependencies)
* osc build -o standard i586 foo.spec (to build without contacting the api)
0.125
- add "osc pull" command to fetch and merge changes in the link target
- new proxy support via SSL
- when a broken link is encountered automatically switch to last working
version. use 'osc pull' to repair the broken link.
- osc my request is showing now also requests from other people target to
myself
#
# Features which require OBS 1.7
#
- new config option 'submitrequest_on_accept_action' to specify a default action
if a submitrequest has been accepted
- add "osc linktobranch" command to convert a classic link to a branch package
- show scheduler state for each repo with "results" and "prjresults"
0.124
- added 'osc bugowner' as a more intelligent version of 'osc maintainer -B'
- added option '-B' to osc maintainer, prints bugowner OR maintainer.
- added 'osc req help' as convenience alias to 'osc help req'.
- 'osc in' to be done. Its usage just prints a suggested zypper command line.
- give better hint how to use osc vc without network connectivity.
- added printing of cache statistices to osc build
- support http proxies when using python 2.6 or newer (#551004)
- partial fix for checkout problems (bnc#551147)
- fixed #477690 ("osc fetching binaries really slow")
- osc jobhistory accepts also "prj [pkg] repo arch" now
- osc buildinfo accepts now also "prj pkg repo arch [spec/dsc]"
- osc buildconfig accepts now also "prj pkg repo arch"
- fixed warning messages regarding SSL certificate on some plattforms (Fedora)
- support submit requests on project level, osc is checking which packages
have changed and submits only the changed after asking back.
- show worker/id on jobhistory and make it faster by adding a default limit of 20
- add "osc build --root" option to allow to specify build root directory
- add "osc build --release" option to allow to specify a package release number
- added osc mv command which can rename file and leave them under version control
- added new commands "dependson" and "whatdependson" to find out which packages get
triggered before checkin/request accept.
- add new "osc build --linksource" option, speeds up esp. image building a lot
- add "osc triggerreason" command to show detail reason, why a package got triggered for build
- Incompatible changes:
* osc se now prints Project Package, instead of Package Project
for easier copy&paste.
* osc se uses exact search by default. Use osc se -s for
substring search
* osc repourls neither needs nor accepts a path to a package
working dir anymore
* osc repo neither needs nor accepts a path to a package or
project working dir anymore
#
# Features which require OBS 1.7
#
- search: allow to limit results via existing attibutes
- added "osc meta attribute" for basic attribute creation, deletion, showing and value setting
- implement "osc mbranch" call to create projects with multiple source package (instances)
- new "osc patchinfo" command: basic patchinfo generation and modification support
- add support for _patchinfo package submissions in "osc sr" on project level
- support review handling of requests (new "osc review accept/decline $REQUEST_ID" command
0.123
- IMPORTANT: ssl certificate checks are actually performed now to
prevent man-in-the-middle-attacks. python-m2crypto is needed to
make this work. Certificate checks can be turned off per server
via 'sslcertck = 0' in .oscrc.
- 'osc list' option -D now only limits non-'new' requests. In state 'new' all are shown.
- suggest 'osc list' --bugowner option. Not implemented.
- added 'osc rq help' as convenience alias to 'osc help rq'.
- 'osc in' to be done. Its usage just prints a suggested zypper command line.
- Incompatible change: osc se now prints Project Package, instead of Package Project
for easier copy&paste.
- fix checkout of packages, which contain not committed files (but uploaded)
- add signing key management command (osc signkey)
* shows public part of project key
* allows (re)creation of a project key
* allows deletion of a project key
- support 100% offline build when using "osc build --noinit ..."
-> buildinfo gets cached in local directory as .buildinfo.xml
0.122
- added missing code for 'osc sr -l [ID]'
- allow osc cat with one parameter, if it is a url.
- make osc getpac really get the package (instead of branch only)!
- expanded several tabs to spaces.
- added default project to new getpac and bco subcommand. .oscrc:getpac_default_project = OpenSUSE:Factory
(not added to branch subcommand, to not interfere with its syntax.)
- add support for generic python-keyring lib, supports KWallet, Gnome keyring, MacOS and Windows.
- make buildhist command usable without checked out package
- rename old "platform/s" names to "repository/ies" (internal cleanup only)
- fixed osc diff -c N, it failed with int and string concatenation
- made osc diff and rdiff more similar: added -p, -c to rdiff, removed -u from rdiff.
made -u default for both, renamed --pretty to --plain as it is the opposite of -u
#
# Features which require OBS 1.7
#
- option to download server side generated _service:* files on update
- support for running source services locally. Happens by default on source update
and build.
- support modification flages on creation of submit request
(for auto update or clean up packages or to avoid it, when submit request got accepted)
- show request ids from package source logs
- added support to require local packages which don't exist in the obs for a local build. This
fixes #377021, #481193
0.121.1
- fixed creation of new ~/.oscrc files
- fixed "osc my request" command
0.121
- fixed osc rq list -U to not look into the local dir
- added osc my ... pkg/prj/req shorthand commands
- add 'osc se' alias for 'osc search -e'
- add -b -m -M to 'osc search'
- hack for _help_preprocess_cmd_option_list to survive setup.py build
- made rresults an alias for results. python decorators are a strange concept...
- asserting that ~/.oscrc remains mode 0600
- no more plain text passwords in ~/.oscrc, we store now as bz2+base64
- added verbosity control -v -q. To be used in guess_proj_pack()
- added 'll' and 'ls -l' as shorthand to 'list -v'
- started to change to explicit dual license GPLv2 or GPLv3 to conform to Novell policy.
- added revision parameter to show_upstream_srcmd5(), so that it can be used in do_cat later.
- allowed both integer and srcmd5 revisions in meta_get_filelist()
- added 'lL', 'LL': allowed -e and -v together in do_list(). Was an internal error before.
- added cat -e, to cat a file through a link.
'cat -e -r 3' expands through the third revision of the _link.
- added subcmd bco as alias for branch -c
- added primitive experimental support for .oscrc:checkout_no_colon = 1
- suggest using svn when .svn found.
- alias submitpac submitrequest
- osc bco now continues to checkout after branch target exists error.
- added .oscrc:plaintext_passwd=1 for backwards compatibility
- moved core.py:exclude_stuff to .oscrc:exclude_glob and expand it to catch *.orig etc.
- added osc rq list -a; a shorthand for enumerating all states
- osc rq list -D nnn limit to requests nnn days old.
- osc sr --diff option added
- improved help texts with repairlink to point to osc resolved.
- improved passx code when creating oscrc.
- osc metafromspec allows editing before send
- allow handling of other roles than "maintainer" with maintainer command
(-r role)
- fix and improve request list and show output
- new osc rremove command for remote source files removal
- first part of support to handle _service\* files correctly
- osc commit asks if some file has a '?' status (can be skipped by --force option)
- fixed request list for multiple states
- new option --overlay
- new option --rsync-src / --rsync-dest
0.120:
- support "setlinkrev" for whole projects
- add "setlinkrev --unset" for removing revision references
- add "osc request list -t <type>" to list only submit, delete or develchange requests
- add shell completion scripts
- fix support of listing requests with multiple actions
- "osc maintainer" is following to the development project / package now
- "osc maintainer" list maintainer and bugowner roles now
0.119:
- Support new request types
- "submitreq" command has a new syntax (incompatible !)
- new "deleterequest" command
- new "changedevelrequest" command
- new "request" command for showing/modifing requests
- Multiple actions in one request is not yet supported by osc
- The new commands require an OBS 1.7 server, submitreq is still working with
older servers.
- support of added .changes in commit message template
- make submit request listing fast by server side filtering
- allow pulling of conflicting changes via "osc repairlink"
- delete commands consolidated:
* deleteprj and deletepac are obsolete.
* delete and rdelete take over
- enable package tracking by default
- bugfix: templates in edit commit message causes an empty commit logs
- osc submitrequest consumes DESTPRJ [DESTPKG] arguments only
- osc build now also tested on native arm targets where uname -m reports a string like armv{4l,5el,6l,7el,7l}
- osc rlog now works with srcmd5 also
- plugins now should be placed in /usr/lib/osc-plugins to match FHS (the /var path is still supported though)
- osc now includes automatically generated man page
- osc can now store credentials in Gnome keyring if it is available
- new support for osc linkpac to specify cicount attribute
- new log/rlog output formats (CSV and XML)
- new jobhistory/buildhistory/search output format (CSV)
- new option to fetch buildlogs starting at given offset
- new option for copypac
* -r to specify source revision
* -m to specify a comment (and send default comment if not specified)
- new option to results(r), and rresults:
* -r|--repo to specify a repository(repositories)
* -a|--arch to specify a architexure(s)
* --xml for xml output (makes results_meta obsolete)
- request list -M shows open SRs created by the user.
- Fixed build support for images, only refered packages from buildinfo get used. (#485047)
- "req" command got renamed to "api" to avoid clash with "request" command
- osc build has a smarter default platform selection - it checks the
availibility config value, 'standard' and 'opensuse_Factory' in platforms list and in case
of fail it uses the last entry from that list
- new osc linkpac -f to allow to override existing _link files
- rename "rebuildpac" to "rebuild", but keep "rebuildpac" as alias
0.117:
- support checkout of single package via "osc co PACKAGE" when local dir is project
- allow to specify target project and package on osc branch (requires server version 1.6)
- add option to automatic checkout a branched package
- support "osc getbinaries" in checkout packages
- new vc command for editing the changes files (requires build.rpm 2009.04.17 or newest)
- new repairlink command for repairing a broken source link (requires server version 1.6)
- '-b|--brief' option for osc submitreq show subcommand
- use "latest" commited revision on checkout, not "upload" (#441783)
- '-e|--just-open' option for vc command and used /usr/lib/build/vc as an executable
0.116:
- support listings of older revisions with "osc ls -R"
- add --current parameter for linkpac to use current revision of source package fixed.
- add osc setlinkrev to add or update revision number in links easily
- fix streaming of binary files via "cat" (#493325)
0.115:
- optional transfer of devel project during copy_pac and link_pac is fixing
opertation with remote build service instance
- "osc ci" fails uploading large files to Provo BuildService
- fixed support for accessing download repositories (worked only for download.o.o so far)
0.114:
- the .oscrc config handling has been cleaned up:
* use "apiurl" for everything now (== <protocol>://<host>)
* added aliases support for [apiurl] sections in the ~/.oscrc.
Example:
[http(s)://foobar]
...
aliases = foo, bar
=> "osc -A foo <cmd>" will do the same as "osc -A http(s)://foobar ls"
* "scheme" and "apisrv" are deprecated and will produce a warning
* when writing a new ~/.oscrc, store the apiurl in the conffile (bnc#478054)
* fixed bug that made osc ask for credentials when -A was used (bnc#478054)
* fixed crash upon password entry (first startup) (bnc#478052)
- osc build:
* make product builds work
* speed up by using a cookie when fetching the binaries (bnc#477690)
* support for VM (kvm or xen) builds
* obsolete the need to configure download server, get it from the build
service instance instead.
* be a bit more verbose if the linked package isn't expanded (bnc#470948)
- osc branch:
* --develproject option fixed (the API calls it 'ignoredevel' instead of 'nodevelproject')
* --revision option added
- osc jobhistory: new command to see build job history of a project or a package
- osc results/rresults: option -l, --last-build added (show last build results)
- osc linkpac: fix failure when -A<url> is used (bnc#479156)
- osc commit: don't scare users if they want to commit a nonexistent file (bnc#469167)
- osc diff: bugfix to make --pretty option work
- 11.1 added to the osc project template
0.113:
- osc diff -rX:Y: the default is to return an unified diff (to get a pretty
diff use the --pretty option)
- osc rdiff: the default is to return a pretty diff (to get an unified diff use the --unified option)
- osc sr show --diff: the default is to return a pretty diff (to get an unified diff use the --unified option)
- osc getbinaries: optionally also download source rpms
- osc importsrcpkg: set the url in the package meta (bnc#458083)
- osc wipebinaries: added --expansion option
- added support for format strings like "%(project)s" and "%(package)s" which
can be used in the build-root config option. For example one could use a new
chroot for each package.
- osc updatepacmetafromspec: fix failure if %description is starting with newline (bnc#462869)
- catch OSError exceptions which might be raised by the subprocess module
- don't use a hardcoded path for the rpm binary otherwise it fails on
distributions like debian
- osc meta: be more verbose in case of failure (bnc#459292)
- osc mkpac: add info how to enable the package tracking feature (bnc#459288)
0.112:
important bugfix:
- osc deletepac: prevent recursive deletion of a whole project [bnc#458535]
- osc build: support more options: --icecream, --ccache, --with, --without
- osc build: --keep-pkgs also saves the src.rpm now
- osc build: small fix in debuginfo handling
- osc build: new armv7el arch for all binaries for up to ARMv7 EABI with VFP
0.111:
- fix accidental truncation of .oscrc to 0 bytes
- fix osc's ignorance of the revision option (-r) for expanded links
- osc build: handle kiwi builds (local image build)
- osc build: cross build support
- osc build: support for ARMv5 EABI little endian arch added
- osc build: fixed detection of the build type (rpm or deb), after change in the buildinfo
- osc build: build debuginfo packages if enabled in the project/package meta (this partly fixes #421390)
0.110:
- osc build: no working copy needed anymore when building a local package [bnc#431434]
- osc checkout: when checking out a project, and a linkerror occurs for one of
the packages, do a checkout in unexpanded form and continue checking out the
rest of the project [bnc#428303]
- osc deletepac, osc branch: allow slash notation for the project/package arguments
- fix deprecation warnings on Factory (which uses Python 2.6)
- fix to avoid (internal) stale Package objects [bnc#436932]
0.109:
- osc getbinaries: new command to download binaries directly from the api server
- osc rlog: new command to show commit logs of remote packages
- osc build: --debug option to the build script which will take care of creating debuginfo packages
- add link to plugin API to osc help output
- avoid a hard dependency on the rpm-python bindings.
- fixed depracation warnings with Python 2.6 [bnc#426612]
- streaming of unfinished logfiles fixed
- fixed regression of .oscrc template [bnc#427118]
Changes were from Marcus_H, poeml, dmueller, tpatzig.
0.108:
- osc submitreq: has two aliases now: "osc sr" and "osc submitrequest"
- osc sr create: prompt to revoke existing requests
- osc sr revoke: new command for to get rid of requests to projects one can't write to
- osc sr list: allow showing requests in a state other than "new"
- osc sr show: show the current state's comment
- osc sr log: new command to show the history of a given id
- osc sr: enable requests for submitting new packages
- osc build: implement --no-checks
- osc build: be less strict on the arguments, and guess what's needed. For instance:
* osc build PLATFORM ARCH BUILD_DESCR
* osc build PLATFORM (ARCH = hostarch, BUILD_DESCR guessed)
* osc build ARCH (PLATFORM = build_platform (config option), BUILD_DESCR guessed)
* osc build BUILD_DESCR (PLATFORM = build_platform (config option), ARCH = hostarch)
* osc build (PLATFORM = build_platform (config option), ARCH = hostarch, BUILD_DESCR guessed)
- osc build: download after the target architecture check
- osc addremove: bugfixes, --recursive option
- osc init: added support to initialize a project dir
- osc metafromspec: new alias for 'updatepacmetafromspec' which is hard to remember
- osc updatepacmetafromspec: also update URL
- osc buildlog: do not download entire log to memory
- new http_headers option to add arbitrary headers to HTTP requests
- bugfix to make osc work on Gentoo
- enhance/update the package and project template
- .netrc heritage from previous commandline client has been removed
- osc asks for password now, when used with -A
0.107:
- osc build: the --extra-pkgs option is now a configurable setting in .oscrc.
Default is "extra-pkgs = vim gdb strace"
- .oscrc: make tilde expansion work on the packagecachedir setting
- osc update / checkout: don't check out a working copy, or update an existing
one, when a source link cannot be applied [bnc#409373]
0.106:
- osc rdiff / osc submitreq show: diff the _expanded_ sources [bnc#408267]
- osc submitreq list: show author's name
- osc submitreq: shortcut alias 'sr' added
0.105:
- osc submitreq list:
- can now be called without parameters, applying to the working copy then.
- calling it in a project directory is also possible now.
- output was improved. Newest requests are listed first.
- osc submitreq delete: a new action which has been added
- osc submitreq list/create: use api URL from the working copy
- osc meta: editing returns the API error description instead of a plain HTTP
error if available
- osc copypac: use the correct userid when copying to another api host
- osc importsrcpkg: disable signature check when getting data from a rpm file
- osc linkpac: --revision option added.
- osc search: added option -i|--involved, to show in which projects/packages
a developer is involved
- osc build: double check the buildinfo for local builds. Refuse to build for
architectures that are not supported by the host
- osc buildhist: change the output into a format which better matches actual
RPM filenames.
- osc commit: give commit message tempfiles a ".diff" suffix, so syntax
highlighting automatically works in capable editors
- other bug fixes:
- don't expand/unexpand if the working copy has local modifications - this is
an ugly workaround for #399247 but this way the working copy isn't screwed up
- work around a bug which causes packages to be cached locally under the
"None" architecture (and therefore causing issues when building for more
than one architecture via osc build).
- don't create _linkerror files in working copies
- better error handling (mostly printing more details) in a number of cases
- show error messages from the API also for type 500 errors
0.104:
- osc update: after update, reset the revision when updating multiple package.
Fixes "404: Not Found" type errors when updating an entire project. [bnc#399177]
- more/better error messages in some error scenarios
- osc wipebinaries: add missing check for commandline arguments, which could
cause a PACKAGE argument to be ignored
- fixed make_diff in order to avoid errors when committing a new package
(created with mkpac)
0.103:
- osc submitreq create: simplify by make osc guess needed parameters, if
there is a working copy and it is a source link.
- osc submitreq create: don't stop on packages that have a devel project
defined, if the submit actually comes from that project.
- osc checkout: checkout of source links is now done in expanded form per
default. The new option --unexpand-link can be used to get the raw link file.
- show the API's error message for HTTP 403 (Forbidden) replies.
0.102:
- osc branch: Show the actually created branch project name, not
a guessed one. Add --nodevelproject.
- osc submitreq: look up the develproject of the target, and if
there is one, don't create the request, unless forced with
--nodevelproject.
- make the global -d option work better under certain circumstances
0.101:
- add osc branch command, using the branch API call to branch a package to
home:poeml:branches:PRJ/PKG
- osc commit now opens $EDITOR for commit message
- improved error handling, when API returns HTTP status code 400 (bad request)
- osc status: implement -q/--quiet switch
- osc info: slightly more verbose
- osc deletepac: allow deletion of multiple packages at once
- make "osc meta prjconf <project> -e" work again (probably caused by r3702)
0.100:
- improved error handling (babysitter.py wrapper, oscerr.py exception classes)
Tracebacks are mostly suppressed now. To enable them, use
-t, --traceback print call trace in case of errors
or set traceback=1 in .oscrc.
- other new global options for debugging:
--debugger jump into the debugger before executing anything
--post-mortem jump into the debugger in case of errors
-d, --debug print info useful for debugging
- make way for more seamless osc version updates (the .osc directory in working copies
will have its own versioning in the future)
- osc rprjresults and osc rresults: new commands to show remote build results
- osc build: added --baselibs and --jobs options
- osc copypac: added --keep-maintainers switch
- osc maintainer: new -D/--devel-project switch
- BUILD_DIST environment variable will be ignored (bnc#359846)
The following environment variables can still be used:
* OSC_SU_WRAPPER overrides the setting of su-wrapper.
* OSC_BUILD_ROOT overrides the setting of build-root.
* OSC_PACKAGECACHEDIR overrides the setting of packagecachedir.
0.99+patches (interim releases, including Wed Apr 2 16:36:40 CEST 2008)
- new command submitreq, to handle "submit requests" (next generation build
service feature). See http://en.opensuse.org/openSUSE:Build_Service_Collaboration
- new link handling:
add support for handling linked packages in expanded form. They
can be checked out, updated (expanding or unexpanding them),
and built locally.
Newly introduced options are:
* osc checkout: --expand-link
* osc update: --expand-link and --unexpand-link
- new feature: package tracking. It's not enabled by default and
needs to be switched on with do_package_tracking=1 in .oscrc.
before using. See
http://lists.opensuse.org/opensuse-buildservice/2008-03/msg00114.html
- prjresults: add --csv option
- req: add option -a / --add-header to inject arbitrary request headers
- addremove (and others): ignore _all_ dot files (the buildservice doesn't
handle them)
- copypac: do a (quicker) server-side copy by default, when source and target
are on the same buildservice instance.
- build:
- add --debuginfo
- add --no-verify
- add --local-package to build a package which doesn't exist on the server
- add --alternative-project to specify a project, if the current one doesn't
exist on the server
- use api url from .osc/_apiurl [#355144]
- new command remotebuildlog
- diff: fix #347377 (diffing too many files)
- checkout: check for project existance beforehand
- rdiff: new command for server-side diffs between arbitrary packages
- cat: new command to print a file on the standard output
- diff: reworked functionality to show newly added files, and behaving more
like svn when doing diff against a certain revision
- bugfix in {link,aggregate,copy}_pac (<person> elements)
- checkout an empty project instead of doing nothing
- fix prjresults for newly added packages, where build status is missing
0.99:
- aggregatepac: new command, similar to linkpac. Patch from Pavol Rusnak.
- wipebinaries: added --build-failed and --broken [#335498]
- deleteprj: enabled this command, as the backend now supports it
- maintainer:
- added --verbose option
- added functionality to add/remove users from a project/package
- print the list of URL to try, when in HTTP debug mode
- build: allow to use lbuild, a compatible replacement for build
- do not create dirs for non-existing packages during checkout [#259711]
0.98:
- new maintainer command, to list the maintainers of a project or package
- ls: add -b option to list binaries
- make osc library simpler to use from external scripts
- new importfromsrcpkg command, to import a package src.rpm from file or URL
- new req command, to issue arbitrary requests to the API
- initial support for commit messages (ci -m/-F)
- implementing a log command to review the commit log
- renamed previous "log" command to "buildlog" (short: bl)
- new meta command, replacing editmeta, editprj, createprj,
editpac, createpac, edituser, pattern
- added search support
- show helpful xml error messages if broken metadata is uploaded
0.97:
- added initial revision handling:
- extended "osc co prj pac" to checkout a specific revision of pac
- extended "osc up" to update to a specific revision
- extended "osc diff" to diff the working copy against a