File tree Expand file tree Collapse file tree 5 files changed +47
-2
lines changed Expand file tree Collapse file tree 5 files changed +47
-2
lines changed Original file line number Diff line number Diff line change
1
+ [bumpversion]
2
+ commit = True
3
+ tag = False
4
+ current_version = 0.1.0
5
+
6
+ [bumpversion:file:galaxy.yml]
Original file line number Diff line number Diff line change @@ -5,6 +5,24 @@ codeaffen.hieradata Release Notes
5
5
.. contents :: Topics
6
6
7
7
8
+ v0.1.0
9
+ ======
10
+
11
+ Minor Changes
12
+ -------------
13
+
14
+ - Add a wrapper function `combine_vars ` to be compatible to default ansible.
15
+ - Add configuration parameters to manage hash and list behavior.
16
+ - Add method to parse configuration file (e.g. hieradata.yml).
17
+ - After loading, the vars will be combined with ansible functions.
18
+ - Change parameter names. Remove prefix to make documentation more clear.
19
+ - If last part is directory it can have no, one or multiple files in it.
20
+ - Last part of hierarchy can be file or directory.
21
+ - Load files from hierarchy.
22
+ - Parse entity name into hiera_vars dict.
23
+ - The hiera_vars dict can be used to generate a dynamic hierarchy.
24
+ - These function tages two extra parameters `hash_behavior ` and `list_behavior ` to configure this feature as needed.
25
+
8
26
v0.0.1
9
27
======
10
28
@@ -14,4 +32,4 @@ New Plugins
14
32
Vars
15
33
~~~~
16
34
17
- - codeaffen.hieradata.hieradata - Loads configuration from a hierarchical configuration structure
35
+ - codeaffen.hieradata.hieradata - Loads configuration from a hierarchical configuration structure structure
Original file line number Diff line number Diff line change @@ -8,3 +8,24 @@ releases:
8
8
name : hieradata
9
9
namespace : null
10
10
release_date : ' 2020-11-26'
11
+ 0.1.0 :
12
+ changes :
13
+ minor_changes :
14
+ - Add a wrapper function `combine_vars` to be compatible to default ansible.
15
+ - Add configuration parameters to manage hash and list behavior.
16
+ - Add method to parse configuration file (e.g. hieradata.yml).
17
+ - After loading, the vars will be combined with ansible functions.
18
+ - Change parameter names. Remove prefix to make documentation more clear.
19
+ - If last part is directory it can have no, one or multiple files in it.
20
+ - Last part of hierarchy can be file or directory.
21
+ - Load files from hierarchy.
22
+ - Parse entity name into hiera_vars dict.
23
+ - The hiera_vars dict can be used to generate a dynamic hierarchy.
24
+ - These function tages two extra parameters `hash_behavior` and `list_behavior`
25
+ to configure this feature as needed.
26
+ fragments :
27
+ - add_wrapper_for_combine_vars.yaml
28
+ - fix_config_parameter_names.yml
29
+ - load_hierarchy_and_create_vars.yaml
30
+ - parse_config.yaml
31
+ release_date : ' 2020-12-21'
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: "hieradata"
3
3
description : Ansible collection to manage configuration data in a hierarchical structure
4
4
authors :
5
5
-
" Christian Meißner <[email protected] >"
6
- version : " 0.0.1 "
6
+ version : " 0.1.0 "
7
7
license :
8
8
- " GPL-3.0-or-later"
9
9
tags :
You can’t perform that action at this time.
0 commit comments