Update to v3.0.3 #1
|
@ -1,11 +1,11 @@
|
||||||
def getFedoraVersions() {
|
def getFedoraVersions() {
|
||||||
def response = httpRequest(
|
def response = httpRequest(
|
||||||
url: 'https://pdc.fedoraproject.org/rest_api/v1/product-versions?short=fedora&active=true',
|
url: 'https://bodhi.fedoraproject.org/releases?state=current',
|
||||||
acceptType: 'APPLICATION_JSON',
|
acceptType: 'APPLICATION_JSON',
|
||||||
)
|
)
|
||||||
def content = readJSON(text: response.content)
|
def content = readJSON(text: response.content)
|
||||||
return content.results.
|
return content.releases.
|
||||||
findAll { it.version != "rawhide" }.
|
findAll { it.id_prefix == "FEDORA" }.
|
||||||
collect { it.version }
|
collect { it.version }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,8 +12,8 @@
|
||||||
%bcond libsodium 0
|
%bcond libsodium 0
|
||||||
|
|
||||||
Name: wal-g
|
Name: wal-g
|
||||||
Version: 3.0.1
|
Version: 3.0.3
|
||||||
Release: 2%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Archival and Restoration for databases in the Cloud
|
Summary: Archival and Restoration for databases in the Cloud
|
||||||
|
|
||||||
License: Apache-2.0
|
License: Apache-2.0
|
||||||
|
|
Loading…
Reference in New Issue