update to 0.7.2
OBS-URL: https://build.opensuse.org/package/show/Virtualization:containers/regclient?expand=0&rev=3
This commit is contained in:
parent
4cd0540a54
commit
c9345c0e93
2
_service
2
_service
@ -3,7 +3,7 @@
|
||||
<param name="url">https://github.com/regclient/regclient</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="package-meta">yes</param>
|
||||
<param name="revision">v0.7.1</param>
|
||||
<param name="revision">v0.7.2</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/regclient/regclient</param>
|
||||
<param name="changesrevision">cdfb08e81b172a64860eb95f8092c08d0c121b04</param></service></servicedata>
|
||||
<param name="changesrevision">6b1f7bd9a3b2972605f04a534143f7fed522b680</param></service></servicedata>
|
3
regclient-0.7.2.obscpio
Normal file
3
regclient-0.7.2.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:f1302dd4b5e79192f1db4fbe48ef48630e0ccf92bbb3e68dfba8155929e510e9
|
||||
size 4796428
|
@ -1,3 +1,39 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 04 19:50:32 UTC 2024 - opensuse_buildservice@ojkastl.de
|
||||
|
||||
- Update to version 0.7.2:
|
||||
* Release v0.7.2
|
||||
* Fix: Dedup warnings on image mod
|
||||
* Fix: Race condition in the pqueue tests
|
||||
* Fix: Add a warning if syft is not installed
|
||||
* Chore: Update docker image base filesystem
|
||||
* Chore: Remove OpenSSF scorecard and best practices
|
||||
* Chore: Do not automatically assign myself
|
||||
* Fix: Detect integer overflows on type conversion
|
||||
* Feat: Add default host config
|
||||
* Chore: Remove throttle package.
|
||||
* Chore: Refactor to remove globals in regbot
|
||||
* Chore: Refactoring to remove globals in regsync
|
||||
* Fix: Prevent data race when reading blob and seeking
|
||||
* Chore: Move throttle from config to reghttp
|
||||
* Feat: Limit number of retries for a request
|
||||
* Feat: Consolidate warnings
|
||||
* Chore: Remove ReqPerSec in tests
|
||||
* Feat: Support auth on redirect
|
||||
* Refactor: Move logging into transport and rework backoff
|
||||
* Refactor: Free up pqueue resources when last entry released
|
||||
* Configure priority queue algorithm and reorder image copy steps
|
||||
* Refactor: cleanup reghttp.Resp methods
|
||||
* Refactor: remove time.Ticker for rate limiting
|
||||
* Refactor: Remove reghttp.Resp interface
|
||||
* Refactor: Remove digest calculation from reghttp
|
||||
* Refactor: Remove multiple API support
|
||||
* Feat: Add a priority queue for network requests
|
||||
* Chore: Update staticcheck and fix linter warnings for Go 1.23
|
||||
* Fix: Lookup referrers when registry does not give digest with
|
||||
head
|
||||
* Fix: Update GHA output generating steps
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Aug 04 07:24:13 UTC 2024 - opensuse_buildservice@ojkastl.de
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: regclient
|
||||
version: 0.7.1
|
||||
mtime: 1722715050
|
||||
commit: cdfb08e81b172a64860eb95f8092c08d0c121b04
|
||||
version: 0.7.2
|
||||
mtime: 1730731045
|
||||
commit: 6b1f7bd9a3b2972605f04a534143f7fed522b680
|
||||
|
@ -16,18 +16,19 @@
|
||||
#
|
||||
|
||||
|
||||
%define __arch_install_post export NO_BRP_STRIP_DEBUG=true
|
||||
|
||||
Name: regclient
|
||||
Version: 0.7.1
|
||||
Version: 0.7.2
|
||||
Release: 0
|
||||
Summary: OCI Registry Client in Go and tooling using those libraries
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/regclient/regclient
|
||||
Source: %{name}-%{version}.tar.gz
|
||||
Source1: vendor.tar.gz
|
||||
BuildRequires: go >= 1.22
|
||||
BuildRequires: bash-completion
|
||||
BuildRequires: fish
|
||||
BuildRequires: git
|
||||
BuildRequires: go >= 1.22
|
||||
BuildRequires: zsh
|
||||
|
||||
%description
|
||||
Client interface for the registry API. This packages includes regctl for a
|
||||
@ -99,8 +100,8 @@ do
|
||||
%{buildroot}/%{_bindir}/${executable} completion fish > %{buildroot}%{_datarootdir}/fish/vendor_completions.d/${executable}.fish
|
||||
|
||||
# create the zsh completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/zsh_completion.d/
|
||||
%{buildroot}/%{_bindir}/${executable} completion zsh > %{buildroot}%{_datarootdir}/zsh_completion.d/_${executable}
|
||||
mkdir -p %{buildroot}%{_datarootdir}/zsh/site-functions/
|
||||
%{buildroot}/%{_bindir}/${executable} completion zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_${executable}
|
||||
|
||||
done
|
||||
|
||||
@ -119,23 +120,18 @@ done
|
||||
%{_bindir}/regsync
|
||||
|
||||
%files -n %{name}-bash-completion
|
||||
%dir %{_datarootdir}/bash-completion/completions/
|
||||
%{_datarootdir}/bash-completion/completions/regbot
|
||||
%{_datarootdir}/bash-completion/completions/regctl
|
||||
%{_datarootdir}/bash-completion/completions/regsync
|
||||
|
||||
%files -n %{name}-fish-completion
|
||||
%dir %{_datarootdir}/fish
|
||||
%dir %{_datarootdir}/fish/vendor_completions.d
|
||||
%{_datarootdir}/fish/vendor_completions.d/regbot.fish
|
||||
%{_datarootdir}/fish/vendor_completions.d/regctl.fish
|
||||
%{_datarootdir}/fish/vendor_completions.d/regsync.fish
|
||||
|
||||
%files -n %{name}-zsh-completion
|
||||
%defattr(-,root,root)
|
||||
%dir %{_datarootdir}/zsh_completion.d/
|
||||
%{_datarootdir}/zsh_completion.d/_regbot
|
||||
%{_datarootdir}/zsh_completion.d/_regctl
|
||||
%{_datarootdir}/zsh_completion.d/_regsync
|
||||
%{_datarootdir}/zsh/site-functions/_regbot
|
||||
%{_datarootdir}/zsh/site-functions/_regctl
|
||||
%{_datarootdir}/zsh/site-functions/_regsync
|
||||
|
||||
%changelog
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2aea2df464b0d181ecb60528d4f4a2c656aff1d46ac780dc6f6f3cfc868e4262
|
||||
size 1827864
|
||||
oid sha256:96516407757a8616a9169c117f075d3201ca7d068009b122134604c50ab06f66
|
||||
size 1839759
|
||||
|
Loading…
Reference in New Issue
Block a user