mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Merge remote-tracking branch 'origin/dev' into helpers-2.1
This commit is contained in:
commit
eb8db04629
3 changed files with 22 additions and 4 deletions
19
debian/changelog
vendored
19
debian/changelog
vendored
|
@ -1,3 +1,21 @@
|
||||||
|
yunohost (11.2.14) testing; urgency=low
|
||||||
|
|
||||||
|
- helpers/go: fix missing git fetch (5676a7275)
|
||||||
|
|
||||||
|
-- Félix Piédallu <felix@piedallu.me> Wed, 05 Jun 2024 15:52:06 +0200
|
||||||
|
|
||||||
|
yunohost (11.2.13) stable; urgency=low
|
||||||
|
|
||||||
|
- helpers: add a --jinja option to ynh_add_config ([#1851](http://github.com/YunoHost/yunohost/pull/1851))
|
||||||
|
- helpers: add mongodb helpers ([#1844](http://github.com/YunoHost/yunohost/pull/1844))
|
||||||
|
- helpers: update getopts to accept arguments that are valid arguments to echo ([#1847](http://github.com/YunoHost/yunohost/pull/1847))
|
||||||
|
- helpers: create versionned directories of the helpers ([#1717](http://github.com/YunoHost/yunohost/pull/1717))
|
||||||
|
- helpers: fix goenv broken when checking out latest master commit ([#1863](http://github.com/YunoHost/yunohost/pull/1863))
|
||||||
|
|
||||||
|
Thanks to all contributors <3 ! (alexAubin, Chris Vogel, Félix Piédallu, Josué Tille, Salamandar, tituspijean)
|
||||||
|
|
||||||
|
-- Alexandre Aubin <alex.aubin@mailoo.org> Tue, 04 Jun 2024 16:43:42 +0200
|
||||||
|
|
||||||
yunohost (11.2.12) stable; urgency=low
|
yunohost (11.2.12) stable; urgency=low
|
||||||
|
|
||||||
- doc: Remove internal/packagingv1 helpers from helpers doc ([#1832](http://github.com/YunoHost/yunohost/pull/1832))
|
- doc: Remove internal/packagingv1 helpers from helpers doc ([#1832](http://github.com/YunoHost/yunohost/pull/1832))
|
||||||
|
@ -5137,4 +5155,3 @@ moulinette-yunohost (1.0~megusta1) megusta; urgency=low
|
||||||
* Init
|
* Init
|
||||||
|
|
||||||
-- Adrien Beudin <beudbeud@yunohost.org> Thu, 15 May 2014 13:16:03 +0200
|
-- Adrien Beudin <beudbeud@yunohost.org> Thu, 15 May 2014 13:16:03 +0200
|
||||||
|
|
||||||
|
|
|
@ -137,6 +137,7 @@ ynh_install_go () {
|
||||||
else
|
else
|
||||||
ynh_print_info --message="Updating xxenv-latest..."
|
ynh_print_info --message="Updating xxenv-latest..."
|
||||||
fi
|
fi
|
||||||
|
git fetch -q --tags --prune origin
|
||||||
local git_latest_tag=$(git describe --tags "$(git rev-list --tags --max-count=1)")
|
local git_latest_tag=$(git describe --tags "$(git rev-list --tags --max-count=1)")
|
||||||
git checkout -q "$git_latest_tag"
|
git checkout -q "$git_latest_tag"
|
||||||
popd
|
popd
|
||||||
|
|
|
@ -943,9 +943,9 @@ ynh_secure_remove() {
|
||||||
|
|
||||||
# Read the value of a key in a ynh manifest file
|
# Read the value of a key in a ynh manifest file
|
||||||
#
|
#
|
||||||
# usage: ynh_read_manifest --manifest="manifest.json" --key="key"
|
# usage: ynh_read_manifest --manifest="manifest.json" --manifest_key="key"
|
||||||
# | arg: -m, --manifest= - Path of the manifest to read
|
# | arg: -m, --manifest= - Path of the manifest to read
|
||||||
# | arg: -k, --key= - Name of the key to find
|
# | arg: -k, --manifest_key= - Name of the key to find
|
||||||
# | ret: the value associate to that key
|
# | ret: the value associate to that key
|
||||||
#
|
#
|
||||||
# Requires YunoHost version 3.5.0 or higher.
|
# Requires YunoHost version 3.5.0 or higher.
|
||||||
|
|
Loading…
Add table
Reference in a new issue