update to 2.0.1

OBS-URL: https://build.opensuse.org/package/show/security/openbao?expand=0&rev=3
This commit is contained in:
Johannes Kastl 2024-09-10 10:33:21 +00:00 committed by Git OBS Bridge
parent 8efcbc4fe8
commit 043fe9d5d4
7 changed files with 59 additions and 18 deletions

View File

@ -3,19 +3,20 @@
<param name="url">https://github.com/openbao/openbao</param> <param name="url">https://github.com/openbao/openbao</param>
<param name="scm">git</param> <param name="scm">git</param>
<param name="exclude">.git</param> <param name="exclude">.git</param>
<param name="revision">v2.0.0</param> <param name="revision">v2.0.1</param>
<param name="versionformat">@PARENT_TAG@</param> <param name="versionformat">@PARENT_TAG@</param>
<param name="changesgenerate">enable</param> <param name="changesgenerate">enable</param>
<param name="versionrewrite-pattern">v(.*)</param> <param name="versionrewrite-pattern">v(.*)</param>
</service> </service>
<service name="set_version" mode="manual"> <service name="set_version" mode="manual">
</service> </service>
<service name="tar" mode="buildtime"/> <service name="go_modules" mode="manual">
</service>
<!-- services below are running at buildtime -->
<service name="tar" mode="buildtime">
</service>
<service name="recompress" mode="buildtime"> <service name="recompress" mode="buildtime">
<param name="file">*.tar</param> <param name="file">*.tar</param>
<param name="compression">gz</param> <param name="compression">gz</param>
</service> </service>
<service name="go_modules" mode="manual">
<param name="archive">openbao-2.0.0.obscpio</param>
</service>
</services> </services>

View File

@ -1,4 +1,4 @@
<servicedata> <servicedata>
<service name="tar_scm"> <service name="tar_scm">
<param name="url">https://github.com/openbao/openbao</param> <param name="url">https://github.com/openbao/openbao</param>
<param name="changesrevision">700fe3f27ab1f0ec39ce20c36f6d9d97c9fe6ac3</param></service></servicedata> <param name="changesrevision">88383dece6b4ff1b3b242280a54aeabef8101495</param></service></servicedata>

3
openbao-2.0.1.obscpio Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:59f2c5e97d2b46c41ff458101c617b8f55cb50541dc19e2dc74a48956c98f05b
size 41578509

View File

@ -1,3 +1,33 @@
-------------------------------------------------------------------
Tue Sep 10 08:54:13 UTC 2024 - opensuse_buildservice@ojkastl.de
- Update to version 2.0.1:
* This release does not ship with the UI enabled. The UI will be
available in the future. #129
* OpenBao does not provide support for Vault Enterprise features.
If there is an enterprise feature you would like to see added
to the project, please open a feature request.
* OpenBao is fully API compatible with Vault 1.14.9, and seal
compatible with the plugins the project supports. Plugin
support for OpenBao can be found
[here](https://github.com/orgs/openbao/discussions/64).
* Changelog
- Disable UI tests (#479) (@cipherboy)
- Fix Ed25519 Pointer in PKI Existing handling (#461)
(@cipherboy)
- Fix api, sdk modules with v2.0.1 (#425) (@cipherboy)
- Fix bao cli login success message (#452) (@sadikkuzu)
- Fix broken zlint test (#458) (@cipherboy)
- Pass BAO_ADDR to the token helper (#348) (@ruuda)
- Update Docker dependency (#505) (@cipherboy)
- Update to Go 1.22.6 toolchain for v2.0.1 (#504) (@cipherboy)
- fix: variable name collision in docker-entrypoint (#446)
(@jackhodgkiss)
- labels use openbao as prefix instead of vault (#416)
(@finkandreas)
- release: v2.0.1 (@JanMa)
- build using CGO_ENABLED=0 on i586, s390x and armv7l
------------------------------------------------------------------- -------------------------------------------------------------------
Thu Jul 18 12:47:17 UTC 2024 - opensuse_buildservice@ojkastl.de Thu Jul 18 12:47:17 UTC 2024 - opensuse_buildservice@ojkastl.de

View File

@ -1,4 +1,4 @@
name: openbao name: openbao
version: 2.0.0 version: 2.0.1
mtime: 1721253450 mtime: 1725391176
commit: 700fe3f27ab1f0ec39ce20c36f6d9d97c9fe6ac3 commit: 88383dece6b4ff1b3b242280a54aeabef8101495

View File

@ -1,7 +1,7 @@
# #
# spec file for package openbao # spec file for package openbao
# #
# 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
@ -24,7 +24,7 @@
%define statedir_name openbao %define statedir_name openbao
Name: openbao Name: openbao
Version: 2.0.0 Version: 2.0.1
Release: 0 Release: 0
Summary: Manage, store, and distribute sensitive data Summary: Manage, store, and distribute sensitive data
License: MPL-2.0 License: MPL-2.0
@ -137,6 +137,13 @@ OpenBao database plugin for PostgreSQL
%build %build
DATE_FMT="+%%Y-%%m-%%dT%%H:%%M:%%SZ" DATE_FMT="+%%Y-%%m-%%dT%%H:%%M:%%SZ"
BUILD_DATE=$(date -u -d "@${SOURCE_DATE_EPOCH}" "${DATE_FMT}" 2>/dev/null || date -u -r "${SOURCE_DATE_EPOCH}" "${DATE_FMT}" 2>/dev/null || date -u "${DATE_FMT}") BUILD_DATE=$(date -u -d "@${SOURCE_DATE_EPOCH}" "${DATE_FMT}" 2>/dev/null || date -u -r "${SOURCE_DATE_EPOCH}" "${DATE_FMT}" 2>/dev/null || date -u "${DATE_FMT}")
%ifarch i586 armv7hl-suse-linux s390x armv7hl armv7l armv7l:armv6l:armv5tel
CGO_ENABLED=1
%else
CGO_ENABLED=0
%endif
go build \ go build \
-mod=vendor \ -mod=vendor \
-buildmode=pie \ -buildmode=pie \
@ -149,27 +156,27 @@ go build \
# database plugins # database plugins
# #
CGO_ENABLED=0 go build \ go build \
-mod=vendor \ -mod=vendor \
-buildmode=pie \ -buildmode=pie \
-o bin/mysql-database-plugin ./plugins/database/mysql/mysql-database-plugin -o bin/mysql-database-plugin ./plugins/database/mysql/mysql-database-plugin
CGO_ENABLED=0 go build \ go build \
-mod=vendor \ -mod=vendor \
-buildmode=pie \ -buildmode=pie \
-o bin/mysql-legacy-database-plugin ./plugins/database/mysql/mysql-legacy-database-plugin -o bin/mysql-legacy-database-plugin ./plugins/database/mysql/mysql-legacy-database-plugin
CGO_ENABLED=0 go build \ go build \
-mod=vendor \ -mod=vendor \
-buildmode=pie \ -buildmode=pie \
-o bin/cassandra-database-plugin ./plugins/database/cassandra/cassandra-database-plugin -o bin/cassandra-database-plugin ./plugins/database/cassandra/cassandra-database-plugin
CGO_ENABLED=0 go build \ go build \
-mod=vendor \ -mod=vendor \
-buildmode=pie \ -buildmode=pie \
-o bin/influxdb-database-plugin ./plugins/database/influxdb/influxdb-database-plugin -o bin/influxdb-database-plugin ./plugins/database/influxdb/influxdb-database-plugin
CGO_ENABLED=0 go build \ go build \
-mod=vendor \ -mod=vendor \
-buildmode=pie \ -buildmode=pie \
-o bin/postgresql-database-plugin ./plugins/database/postgresql/postgresql-database-plugin -o bin/postgresql-database-plugin ./plugins/database/postgresql/postgresql-database-plugin

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1 version https://git-lfs.github.com/spec/v1
oid sha256:0aca25f888dd5a3a014d20a48c4c57b09e312068e121ea418ae78832ecdb947c oid sha256:6ce583c3770a5e58ecd4b34fbcf4382d9e56638de0140b8c7551bd84bdd07f26
size 19525723 size 19672955