[packit] 51 upstream release

Upstream tag: v51
Upstream commit: 67727d1e

Signed-off-by: Packit <hello@packit.dev>
This commit is contained in:
Packit 2022-05-04 13:35:04 +00:00
parent c3588904df
commit 41b7ef06a7
5 changed files with 45 additions and 10 deletions

1
.gitignore vendored
View File

@ -40,3 +40,4 @@
/osbuild-composer-49.tar.gz
/osbuild-composer-50.tar.gz
/osbuild-composer-46.3.tar.gz
/osbuild-composer-51.tar.gz

View File

@ -13,6 +13,7 @@ copy_upstream_release_description: true
upstream_tag_template: v{version}
srpm_build_deps: []
actions:
get-current-version: bash -c "git describe --tags --abbrev=0 | sed 's|v||'"

View File

@ -1,3 +1,3 @@
This repository is maintained by packit.
https://packit.dev/
The file was generated using packit 0.49.1.dev5+gc36800b.
The file was generated using packit 0.49.1.dev17+gb97c6e0.

View File

@ -9,7 +9,7 @@
%global goipath github.com/osbuild/osbuild-composer
Version: 46.3
Version: 51
%gometa
@ -52,6 +52,7 @@ BuildRequires: golang(github.com/deepmap/oapi-codegen/pkg/codegen)
BuildRequires: golang(github.com/go-chi/chi)
BuildRequires: golang(github.com/golang-jwt/jwt)
BuildRequires: golang(github.com/google/uuid)
BuildRequires: golang(github.com/hashicorp/go-retryablehttp)
BuildRequires: golang(github.com/jackc/pgx/v4)
BuildRequires: golang(github.com/julienschmidt/httprouter)
BuildRequires: golang(github.com/getkin/kin-openapi/openapi3)
@ -227,6 +228,7 @@ install -m 0755 -vp tools/run-koji-container.sh %{buildroot}%
install -m 0755 -vp tools/koji-compose.py %{buildroot}%{_libexecdir}/osbuild-composer-test/
install -m 0755 -vp tools/koji-compose-v2.py %{buildroot}%{_libexecdir}/osbuild-composer-test/
install -m 0755 -vp tools/libvirt_test.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
install -m 0755 -vp tools/s3_test.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
install -m 0755 -vp tools/set-env-variables.sh %{buildroot}%{_libexecdir}/osbuild-composer-test/
install -m 0755 -vp tools/test-case-generators/generate-test-cases %{buildroot}%{_libexecdir}/osbuild-composer-test/
install -m 0755 -vd %{buildroot}%{_libexecdir}/tests/osbuild-composer
@ -324,10 +326,10 @@ The core osbuild-composer binary. This is suitable both for spawning in containe
Summary: The worker for osbuild-composer
Requires: systemd
Requires: qemu-img
Requires: osbuild >= 49
Requires: osbuild-ostree >= 49
Requires: osbuild-lvm2 >= 49
Requires: osbuild-luks2 >= 49
Requires: osbuild >= 52
Requires: osbuild-ostree >= 52
Requires: osbuild-lvm2 >= 52
Requires: osbuild-luks2 >= 52
Requires: %{name}-dnf-json = %{version}-%{release}
# remove in F34
@ -418,10 +420,7 @@ Requires: httpd
Requires: mod_ssl
Requires: openssl
Requires: firewalld
# see https://bugzilla.redhat.com/show_bug.cgi?id=1986333
%if 0%{?rhel} && 0%{?rhel} != 9
Requires: podman-plugins
%endif
Requires: dnf-plugins-core
Requires: skopeo
%if 0%{?fedora}
@ -446,6 +445,40 @@ Integration tests to be run on a pristine-dedicated system to test the osbuild-c
%endif
%changelog
* Wed May 04 2022 Packit <hello@packit.dev> - 51-1
Changes with 51
----------------
* Add 9.1 alias & 8.7 test repositories (#2602)
* Devcontainer update to Fedora 36. (#2609)
* Don't support `gce-rhui` image type on CentOS Stream 8 (#2600)
* New functions for resizing partitions based on directory size requirements (#2588)
* RHEL-8.6/9.0 EC2 SAP image changes (#2574)
* Schutzfile: Pin osbuild version to use minimal required caps (#2597)
* Update GPG keys for all RHEL 8.x repos (#2563)
* Use array of objects to maintain order for RPM stage inputs (#2578)
* build(deps): bump cloud.google.com/go/cloudbuild from 1.0.0 to 1.2.0 (#2553)
* build(deps): bump cloud.google.com/go/compute from 1.6.0 to 1.6.1 (#2587)
* build(deps): bump github.com/Azure/azure-sdk-for-go from 63.1.0+incompatible to 63.4.0+incompatible (#2583)
* build(deps): bump github.com/Azure/go-autorest/autorest from 0.11.25 to 0.11.27 (#2579)
* build(deps): bump github.com/aws/aws-sdk-go from 1.43.42 to 1.44.4 (#2606)
* build(deps): bump github.com/google/go-cmp from 0.5.7 to 0.5.8 (#2607)
* build(deps): bump github.com/hashicorp/go-retryablehttp from 0.7.0 to 0.7.1 (#2571)
* build(deps): bump google.golang.org/api from 0.74.0 to 0.75.0 (#2585)
* cloudapi/v2: Generate valid GCP image name (#2586)
* disk: fix ensureLVM for partition tables without /boot (#2580)
* entrypoint - add parameters for socket bind address and port (#2605)
* image-info: dynamically detect the rpm database (#2594)
* rhel85: automatically convert to LVM on fs customizations (#2552)
* tools/generate-all-test-cases: add `manifests` command (#2593)
* worker: add proxy support to worker (#2576)
* 📦🔗📦 Introduce chain dependency solving (#2568)
Contributions from: Achilleas Koutsou, Alexander Todorov, Christian Kellner, Ondřej Budai, Sanne Raymaekers, Simon de Vlieger, Tomas Hozza, Ygal Blum, dependabot[bot]
Somewhere on the Internet, 2022-05-04
* Thu Apr 28 2022 Packit <hello@packit.dev> - 46.3-1
CHANGES WITH 46.3:
----------------

View File

@ -1 +1 @@
SHA512 (osbuild-composer-46.3.tar.gz) = 4935b09b1141f587bc494389f9528d94cd95f26d7766adef52b1ee48b54cd773dcd9cc2b0411fb9a39578a29882b33098a4787bfff9f48ceef5919a591531a08
SHA512 (osbuild-composer-51.tar.gz) = e326e942894281eab405b58366cc8d2e47c8e9a6629c9b11b915fa82edeb092474032938b234ab2ff3ca98183f705a705fa9066b9e0dcffed4fd6f936a160800