Hello community, here is the log from the commit of package opi for openSUSE:Leap:15.2 checked in at 2020-04-14 14:21:04 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Leap:15.2/opi (Old) and /work/SRC/openSUSE:Leap:15.2/.opi.new.3248 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "opi" Tue Apr 14 14:21:04 2020 rev:3 rq:793512 version:0.8.1 Changes: -------- --- /work/SRC/openSUSE:Leap:15.2/opi/opi.changes 2020-03-01 20:32:04.925662390 +0100 +++ /work/SRC/openSUSE:Leap:15.2/.opi.new.3248/opi.changes 2020-04-14 14:21:25.145294102 +0200 @@ -1,0 +2,7 @@ +Fri Apr 3 08:02:12 UTC 2020 - Yunhe Guo <[email protected]> + +- Version 0.8.1 + * Fixed + - OBS limit error when searching php, test, etc. + +------------------------------------------------------------------- Old: ---- opi-0.8.0.tar.gz New: ---- opi-0.8.1.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ opi.spec ++++++ --- /var/tmp/diff_new_pack.1apKTL/_old 2020-04-14 14:21:25.533294392 +0200 +++ /var/tmp/diff_new_pack.1apKTL/_new 2020-04-14 14:21:25.533294392 +0200 @@ -17,7 +17,7 @@ Name: opi -Version: 0.8.0 +Version: 0.8.1 Release: 0 Summary: OBS Package Installer (CLI) License: GPL-3.0-only ++++++ opi-0.8.0.tar.gz -> opi-0.8.1.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/opi-0.8.0/CHANGELOG.md new/opi-0.8.1/CHANGELOG.md --- old/opi-0.8.0/CHANGELOG.md 2020-02-29 13:43:04.000000000 +0100 +++ new/opi-0.8.1/CHANGELOG.md 2020-04-03 09:55:36.000000000 +0200 @@ -7,6 +7,12 @@ ## [Unreleased] +## [0.8.1] - 2020-04-03 + +### Fixed + +- OBS limit error when searching php, test, etc. + ## [0.8.0] ### Changed @@ -117,7 +123,8 @@ - Choose package and install - Keep or remove repository after installation -[Unreleased]: https://github.com/openSUSE-zh/opi/compare/v0.8.0...HEAD +[Unreleased]: https://github.com/openSUSE-zh/opi/compare/v0.8.1...HEAD +[0.8.1]: https://github.com/openSUSE-zh/opi/compare/v0.8.0...v0.8.1 [0.8.0]: https://github.com/openSUSE-zh/opi/compare/v0.7.1...v0.8.0 [0.7.1]: https://github.com/openSUSE-zh/opi/compare/v0.7.0...v0.7.1 [0.7.0]: https://github.com/openSUSE-zh/opi/compare/v0.6.0...v0.7.0 diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/opi-0.8.0/opi new/opi-0.8.1/opi --- old/opi-0.8.0/opi 2020-02-29 13:43:04.000000000 +0100 +++ new/opi-0.8.1/opi 2020-04-03 09:55:36.000000000 +0200 @@ -313,7 +313,8 @@ my $query_string = prepare_query_string(@_); my $xpath = "contains-ic(\@name, $query_string) and path/project='$distribution'"; - my $url = $obs_apiroot . $endpoint . '?match=' . uri_escape($xpath); + # NOTE limit=0 fix 413 errors when searching php, test, etc. + my $url = $obs_apiroot . $endpoint . '?match=' . uri_escape($xpath) . '&limit=0'; my $proxy_url = $proxy_root . '?obs_api_link=' . uri_escape($url) . '&obs_instance=' . $obs_instance;
