forked from pool/python-osc-tiny
- update to 0.8.2:
* If `osc` raises an exception, pretend it is not there * Treat `deleted` and `expand` parameters of `/source/<project>/` * Do not send the `deleted` parameter, when the `view` parameter * Use `cached_property` instead of `backports.cached_property` * Handle absence of `sshkey` in `.oscrc` gracefully * Removed obsolete parser instance to allow pickling of Osc instances OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-osc-tiny?expand=0&rev=81
This commit is contained in:
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:bf845b4718ce8f8fd93f07af6448a5f1f620eb2059159d6f32f68921a19b2a3c
|
|
||||||
size 58099
|
|
3
osc-tiny-0.8.2.tar.gz
Normal file
3
osc-tiny-0.8.2.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:de865bdaf3434ca7f79e9e4b5181e714191ed255c95718478896553d10944c9c
|
||||||
|
size 58110
|
@@ -1,3 +1,9 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Mar 24 08:54:55 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 0.8.2:
|
||||||
|
* If `osc` raises an exception, pretend it is not there
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 11 15:55:04 UTC 2023 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
Mon Dec 11 15:55:04 UTC 2023 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
||||||
|
|
||||||
@@ -60,9 +66,9 @@ Wed Nov 2 12:07:32 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
|||||||
Thu Oct 20 08:12:01 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
Thu Oct 20 08:12:01 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
||||||
|
|
||||||
- Release 0.7.6
|
- Release 0.7.6
|
||||||
* Treat `deleted` and `expand` parameters of `/source/<project>/`
|
* Treat `deleted` and `expand` parameters of `/source/<project>/`
|
||||||
as boolean (despite not being documented as such)
|
as boolean (despite not being documented as such)
|
||||||
* Do not send the `deleted` parameter, when the `view` parameter
|
* Do not send the `deleted` parameter, when the `view` parameter
|
||||||
is present
|
is present
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
@@ -154,7 +160,7 @@ Wed Jul 20 08:49:57 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
|||||||
|
|
||||||
- Release 0.6.5: Enhanced dependency management
|
- Release 0.6.5: Enhanced dependency management
|
||||||
* Removed `responses` as requirement
|
* Removed `responses` as requirement
|
||||||
* Use `cached_property` instead of `backports.cached_property`
|
* Use `cached_property` instead of `backports.cached_property`
|
||||||
(which is not in the openSUSE repos)
|
(which is not in the openSUSE repos)
|
||||||
* Only install `cached_property` as requirement for Py3.7 and earlier
|
* Only install `cached_property` as requirement for Py3.7 and earlier
|
||||||
|
|
||||||
@@ -169,7 +175,7 @@ Mon Jul 18 07:55:16 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
|||||||
|
|
||||||
- Release 0.6.3
|
- Release 0.6.3
|
||||||
* Do not assume that `oscrc` contains the SSH passphrase
|
* Do not assume that `oscrc` contains the SSH passphrase
|
||||||
* Handle absence of `sshkey` in `.oscrc` gracefully
|
* Handle absence of `sshkey` in `.oscrc` gracefully
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 30 08:48:29 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
Thu Jun 30 08:48:29 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
||||||
@@ -184,7 +190,7 @@ Thu Jun 30 08:48:29 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
|||||||
Fri Jun 17 09:49:36 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
Fri Jun 17 09:49:36 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
||||||
|
|
||||||
- Release 0.6.1
|
- Release 0.6.1
|
||||||
* Removed obsolete parser instance to allow pickling of Osc instances
|
* Removed obsolete parser instance to allow pickling of Osc instances
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Jun 9 11:53:07 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
Thu Jun 9 11:53:07 UTC 2022 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
||||||
@@ -217,7 +223,7 @@ Wed Sep 22 10:45:07 UTC 2021 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
|||||||
- Release 0.4.0
|
- Release 0.4.0
|
||||||
* Added support to parse `osc` configuration
|
* Added support to parse `osc` configuration
|
||||||
* Bugfix for `origin` extension
|
* Bugfix for `origin` extension
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Feb 24 10:49:30 UTC 2021 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
Wed Feb 24 10:49:30 UTC 2021 - Andreas Hasenkopf <ahasenkopf@suse.com>
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-osc-tiny
|
# spec file for package python-osc-tiny
|
||||||
#
|
#
|
||||||
# Copyright (c) 2023 SUSE LLC
|
# Copyright (c) 2024 SUSE LLC
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
%define skip_python2 1
|
%define skip_python2 1
|
||||||
Name: python-osc-tiny
|
Name: python-osc-tiny
|
||||||
Version: 0.8.1
|
Version: 0.8.2
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Client API for openSUSE BuildService
|
Summary: Client API for openSUSE BuildService
|
||||||
License: MIT
|
License: MIT
|
||||||
|
Reference in New Issue
Block a user