update to 0.86.1
OBS-URL: https://build.opensuse.org/package/show/devel:tools/updatecli?expand=0&rev=8
This commit is contained in:
parent
b9a95debb9
commit
e7f69aafd2
4
_service
4
_service
@ -3,10 +3,10 @@
|
||||
<param name="url">https://github.com/updatecli/updatecli</param>
|
||||
<param name="scm">git</param>
|
||||
<param name="exclude">.git</param>
|
||||
<param name="revision">v0.85.0</param>
|
||||
<param name="revision">v0.86.1</param>
|
||||
<param name="versionformat">@PARENT_TAG@</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="changesgenerate">enable</param>
|
||||
</service>
|
||||
<service name="set_version" mode="manual">
|
||||
</service>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<servicedata>
|
||||
<service name="tar_scm">
|
||||
<param name="url">https://github.com/updatecli/updatecli</param>
|
||||
<param name="changesrevision">691db5c2ffd7550131270217ccdaee51d08b36e8</param></service></servicedata>
|
||||
<param name="changesrevision">db5195d5d358347be5d7075c98125cf9f1c982f5</param></service></servicedata>
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:2fe648d0280d54fbcfac6720364482c7fbdcb9814e244b5448b05c9f16b2b5cc
|
||||
size 2950668
|
3
updatecli-0.86.1.obscpio
Normal file
3
updatecli-0.86.1.obscpio
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:21f14020102306a406f26413210e21abc2133b23c1789a4878ef30016489e911
|
||||
size 3081740
|
@ -1,3 +1,49 @@
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 12 06:49:54 UTC 2024 - opensuse_buildservice@ojkastl.de
|
||||
|
||||
- Update to version 0.86.1:
|
||||
* fix: source block can be nil (#2977)
|
||||
* deps: bump updatecli version to v0.86.0 (#2963)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 04 19:49:04 UTC 2024 - opensuse_buildservice@ojkastl.de
|
||||
|
||||
- Update to version 0.86.0:
|
||||
* feat: add GitHub action autodiscovery plugin (#1964)
|
||||
* deps(go): bump module github.com/goccy/go-yaml (#2956)
|
||||
* deps(go): bump module github.com/goccy/go-yaml (#2949)
|
||||
* chore(deps): Bump anchore/sbom-action from 0.17.3 to 0.17.6
|
||||
(#2941)
|
||||
* feat(gitbranch): Add git url param to gitbranch plugin (#2850)
|
||||
* fix(gittag): allow to specify the sourcebranch where to create
|
||||
the tag (#2926)
|
||||
* deps(go): bump module github.com/goccy/go-yaml (#2924)
|
||||
* fix(temurin) use OS and architecture to filter responses when
|
||||
retrieving versions (#2917)
|
||||
* fix(temurin) fail explicitly when specifying condition or
|
||||
target of kind 'temurin' (#2916)
|
||||
* feat(gittag): Add git url param to gittag plugin (#2848)
|
||||
* deps(go): bump module cuelang.org/go (#2902)
|
||||
* feat: detect auto-debug in the CI (#2822)
|
||||
* deps(updatecli/policies): bump all policies (#2712)
|
||||
* feat(scm): add bitbucket cloud scm and action support (#2847)
|
||||
* fix: show pipeline as skipped if all target are skipped (#2849)
|
||||
* deps(go): bump module github.com/fatih/color (#2875)
|
||||
* deps(go): bump module github.com/yuin/goldmark (#2870)
|
||||
* deps(go): bump module
|
||||
github.com/testcontainers/testcontainers-go (#2861)
|
||||
* deps(go): bump module helm.sh/helm/v3 (#2859)
|
||||
* fix: disabling temurin s390x test (#2852)
|
||||
* feat(core/pipeline): allow dependency across
|
||||
source/conditions/targets (#2800)
|
||||
* fix(doc): Typos (#2824)
|
||||
* chore(deps): Bump anchore/sbom-action from 0.17.2 to 0.17.3
|
||||
(#2823)
|
||||
* chore: deps(go): bump module github.com/drone/go-scm to v1.38.8
|
||||
(#2812)
|
||||
* Fix bug when gitea request fails (#2806)
|
||||
* deps: bump updatecli version to v0.85.0 (#2794)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 11 06:54:58 UTC 2024 - opensuse_buildservice@ojkastl.de
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
name: updatecli
|
||||
version: 0.85.0
|
||||
mtime: 1728145826
|
||||
commit: 691db5c2ffd7550131270217ccdaee51d08b36e8
|
||||
version: 0.86.1
|
||||
mtime: 1730835900
|
||||
commit: db5195d5d358347be5d7075c98125cf9f1c982f5
|
||||
|
@ -17,14 +17,17 @@
|
||||
|
||||
|
||||
Name: updatecli
|
||||
Version: 0.85.0
|
||||
Version: 0.86.1
|
||||
Release: 0
|
||||
Summary: A Declarative Dependency Management tool
|
||||
License: Apache-2.0
|
||||
URL: https://github.com/updatecli/updatecli
|
||||
Source: %{name}-%{version}.tar.gz
|
||||
Source1: vendor.tar.gz
|
||||
BuildRequires: bash-completion
|
||||
BuildRequires: fish
|
||||
BuildRequires: go >= 1.23.1
|
||||
BuildRequires: zsh
|
||||
|
||||
%description
|
||||
Updatecli is a tool used to apply file update strategies. Designed to be used
|
||||
@ -96,8 +99,8 @@ mkdir -p %{buildroot}%{_datarootdir}/fish/vendor_completions.d/
|
||||
%{buildroot}/%{_bindir}/%{name} completion fish > %{buildroot}%{_datarootdir}/fish/vendor_completions.d/%{name}.fish
|
||||
|
||||
# create the zsh completion file
|
||||
mkdir -p %{buildroot}%{_datarootdir}/zsh_completion.d/
|
||||
%{buildroot}/%{_bindir}/%{name} completion zsh > %{buildroot}%{_datarootdir}/zsh_completion.d/_%{name}
|
||||
mkdir -p %{buildroot}%{_datarootdir}/zsh/site-functions/
|
||||
%{buildroot}/%{_bindir}/%{name} completion zsh > %{buildroot}%{_datarootdir}/zsh/site-functions/_%{name}
|
||||
|
||||
%files
|
||||
%doc README.adoc
|
||||
@ -105,16 +108,12 @@ mkdir -p %{buildroot}%{_datarootdir}/zsh_completion.d/
|
||||
%{_bindir}/%{name}
|
||||
|
||||
%files -n %{name}-bash-completion
|
||||
%dir %{_datarootdir}/bash-completion/completions/
|
||||
%{_datarootdir}/bash-completion/completions/%{name}
|
||||
|
||||
%files -n %{name}-fish-completion
|
||||
%dir %{_datarootdir}/fish
|
||||
%dir %{_datarootdir}/fish/vendor_completions.d
|
||||
%{_datarootdir}/fish/vendor_completions.d/%{name}.fish
|
||||
|
||||
%files -n %{name}-zsh-completion
|
||||
%dir %{_datarootdir}/zsh_completion.d/
|
||||
%{_datarootdir}/zsh_completion.d/_%{name}
|
||||
%{_datarootdir}/zsh/site-functions/_%{name}
|
||||
|
||||
%changelog
|
||||
|
@ -1,3 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:6cadc2b2d3b7ba447cc31aac1fd631c99a2ba58f37e0bf291a3b1f9ddc6f3a0b
|
||||
size 23264539
|
||||
oid sha256:127057944813aee8b345b44e0e0ad20ca0b6d7d0c2a36fd853918c70c84cae2e
|
||||
size 23273110
|
||||
|
Loading…
x
Reference in New Issue
Block a user