Skip to content

Commit e045369

Browse files
chore(release): 3.0.0 [skip ci]
# [3.0.0](v2.0.6...v3.0.0) (2021-01-12) ### Code Refactoring * **map:** compound matchers like parsing with `libmatchers` ([925c86e](925c86e)) * **map:** load `defaults.jinja` configuration with `libmapstack` ([174bb68](174bb68)) * **map:** load `map.jinja` configuration with `libmapstack` ([568bb7c](568bb7c)) * **map:** load formula configuration with `libmatchers` ([ff6b56c](ff6b56c)) ### Documentation * **map:** document the new `map.jinja` with targeting like syntax ([7ecb24b](7ecb24b)) ### Features * **map:** use targeting like syntax for configuration ([1be0d87](1be0d87)) * **matchers:** add delimiter option for source definitions ([d69556d](d69556d)) ### Styles * **mapstack:** variables in macro can't be exported ([7de2d6f](7de2d6f)) ### BREAKING CHANGES * **map:** the configuration `map_jinja:sources` is only configurable with `salt://parameters/map_jinja.yaml` and `salt://{{ tplroot }}/parameters/map_jinja.yaml` * **map:** the `map_jinja:config_get_roots` is replaced by compound like `map_jinja:sources` * **map:** the two `config_get_lookup` and `config_get` are replaced by `C@<tplroot>:lookup` and `C@<tplroot>` sources
1 parent 9955923 commit e045369

File tree

5 files changed

+99
-9
lines changed

5 files changed

+99
-9
lines changed

AUTHORS.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ This list is sorted by the number of commits per contributor in _descending_ ord
44

55
Avatar|Contributor|Contributions
66
:-:|---|:-:
7-
<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/10231489?v=4' width='36' height='36' alt='@myii'>|[@myii](https://github.com/myii)|88
7+
<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/10231489?v=4' width='36' height='36' alt='@myii'>|[@myii](https://github.com/myii)|89
88
<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1920805?v=4' width='36' height='36' alt='@alxwr'>|[@alxwr](https://github.com/alxwr)|38
9+
<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1233212?v=4' width='36' height='36' alt='@baby-gnu'>|[@baby-gnu](https://github.com/baby-gnu)|31
910
<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/1396878?v=4' width='36' height='36' alt='@gravyboat'>|[@gravyboat](https://github.com/gravyboat)|28
1011
<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1800660?v=4' width='36' height='36' alt='@aboe76'>|[@aboe76](https://github.com/aboe76)|25
11-
<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1233212?v=4' width='36' height='36' alt='@baby-gnu'>|[@baby-gnu](https://github.com/baby-gnu)|23
1212
<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/3374962?v=4' width='36' height='36' alt='@nmadhok'>|[@nmadhok](https://github.com/nmadhok)|15
1313
<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/91293?v=4' width='36' height='36' alt='@whiteinge'>|[@whiteinge](https://github.com/whiteinge)|9
1414
<img class='float-left rounded-1' src='https://avatars1.githubusercontent.com/u/8029478?v=4' width='36' height='36' alt='@rfairburn'>|[@rfairburn](https://github.com/rfairburn)|8
@@ -78,4 +78,4 @@ Avatar|Contributor|Contributions
7878

7979
---
8080

81-
Auto-generated by a [forked version](https://github.com/myii/maintainer) of [gaocegege/maintainer](https://github.com/gaocegege/maintainer) on 2020-12-23.
81+
Auto-generated by a [forked version](https://github.com/myii/maintainer) of [gaocegege/maintainer](https://github.com/gaocegege/maintainer) on 2021-01-12.

CHANGELOG.md

+38
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
11
# Changelog
22

3+
# [3.0.0](https://github.com/saltstack-formulas/openssh-formula/compare/v2.0.6...v3.0.0) (2021-01-12)
4+
5+
6+
### Code Refactoring
7+
8+
* **map:** compound matchers like parsing with `libmatchers` ([925c86e](https://github.com/saltstack-formulas/openssh-formula/commit/925c86ea698c68f684ba1645a58c88d688e6acc5))
9+
* **map:** load `defaults.jinja` configuration with `libmapstack` ([174bb68](https://github.com/saltstack-formulas/openssh-formula/commit/174bb68432366a449a8327a9dbb648271f123224))
10+
* **map:** load `map.jinja` configuration with `libmapstack` ([568bb7c](https://github.com/saltstack-formulas/openssh-formula/commit/568bb7ce4075ee376e8c49a45a1470d252f82ab9))
11+
* **map:** load formula configuration with `libmatchers` ([ff6b56c](https://github.com/saltstack-formulas/openssh-formula/commit/ff6b56c4a4e282f41ddfc8f379f95096fea0553f))
12+
13+
14+
### Documentation
15+
16+
* **map:** document the new `map.jinja` with targeting like syntax ([7ecb24b](https://github.com/saltstack-formulas/openssh-formula/commit/7ecb24bdc1ff84ddac4c7c3e5d8d70c7512f4fb5))
17+
18+
19+
### Features
20+
21+
* **map:** use targeting like syntax for configuration ([1be0d87](https://github.com/saltstack-formulas/openssh-formula/commit/1be0d8725ad933034f4e87cc9636bcc5100bd55c))
22+
* **matchers:** add delimiter option for source definitions ([d69556d](https://github.com/saltstack-formulas/openssh-formula/commit/d69556d5ae79a907d79351d4b9775e0ce2970b39))
23+
24+
25+
### Styles
26+
27+
* **mapstack:** variables in macro can't be exported ([7de2d6f](https://github.com/saltstack-formulas/openssh-formula/commit/7de2d6fd756b3e4b7154e660b639d7ce6edb8cfe))
28+
29+
30+
### BREAKING CHANGES
31+
32+
* **map:** the configuration `map_jinja:sources` is only
33+
configurable with `salt://parameters/map_jinja.yaml`
34+
and `salt://{{ tplroot }}/parameters/map_jinja.yaml`
35+
* **map:** the `map_jinja:config_get_roots` is replaced by
36+
compound like `map_jinja:sources`
37+
* **map:** the two `config_get_lookup` and `config_get` are
38+
replaced by `C@<tplroot>:lookup` and `C@<tplroot>`
39+
sources
40+
341
## [2.0.6](https://github.com/saltstack-formulas/openssh-formula/compare/v2.0.5...v2.0.6) (2020-12-23)
442

543

FORMULA

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: openssh
22
os: Debian, Ubuntu, Raspbian, RedHat, Fedora, CentOS, Suse, openSUSE, Gentoo, Funtoo, Arch, Manjaro, Alpine, FreeBSD, OpenBSD, Solaris, SmartOS, Windows, MacOS
33
os_family: Debian, RedHat, Suse, Gentoo, Arch, Alpine, FreeBSD, OpenBSD, Solaris, Windows, MacOS
4-
version: 2.0.6
4+
version: 3.0.0
55
release: 1
66
minimum_version: 2017.7
77
summary: openssh formula

docs/AUTHORS.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,19 @@ This list is sorted by the number of commits per contributor in *descending* ord
1515
- Contributions
1616
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/10231489?v=4' width='36' height='36' alt='@myii'>`
1717
- `@myii <https://github.com/myii>`_
18-
- 88
18+
- 89
1919
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1920805?v=4' width='36' height='36' alt='@alxwr'>`
2020
- `@alxwr <https://github.com/alxwr>`_
2121
- 38
22+
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1233212?v=4' width='36' height='36' alt='@baby-gnu'>`
23+
- `@baby-gnu <https://github.com/baby-gnu>`_
24+
- 31
2225
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars2.githubusercontent.com/u/1396878?v=4' width='36' height='36' alt='@gravyboat'>`
2326
- `@gravyboat <https://github.com/gravyboat>`_
2427
- 28
2528
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1800660?v=4' width='36' height='36' alt='@aboe76'>`
2629
- `@aboe76 <https://github.com/aboe76>`_
2730
- 25
28-
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/1233212?v=4' width='36' height='36' alt='@baby-gnu'>`
29-
- `@baby-gnu <https://github.com/baby-gnu>`_
30-
- 23
3131
* - :raw-html-m2r:`<img class='float-left rounded-1' src='https://avatars0.githubusercontent.com/u/3374962?v=4' width='36' height='36' alt='@nmadhok'>`
3232
- `@nmadhok <https://github.com/nmadhok>`_
3333
- 15
@@ -230,4 +230,4 @@ This list is sorted by the number of commits per contributor in *descending* ord
230230

231231
----
232232

233-
Auto-generated by a `forked version <https://github.com/myii/maintainer>`_ of `gaocegege/maintainer <https://github.com/gaocegege/maintainer>`_ on 2020-12-23.
233+
Auto-generated by a `forked version <https://github.com/myii/maintainer>`_ of `gaocegege/maintainer <https://github.com/gaocegege/maintainer>`_ on 2021-01-12.

docs/CHANGELOG.rst

+52
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,58 @@
22
Changelog
33
=========
44

5+
`3.0.0 <https://github.com/saltstack-formulas/openssh-formula/compare/v2.0.6...v3.0.0>`_ (2021-01-12)
6+
---------------------------------------------------------------------------------------------------------
7+
8+
Code Refactoring
9+
^^^^^^^^^^^^^^^^
10+
11+
12+
* **map:** compound matchers like parsing with ``libmatchers`` (\ `925c86e <https://github.com/saltstack-formulas/openssh-formula/commit/925c86ea698c68f684ba1645a58c88d688e6acc5>`_\ )
13+
* **map:** load ``defaults.jinja`` configuration with ``libmapstack`` (\ `174bb68 <https://github.com/saltstack-formulas/openssh-formula/commit/174bb68432366a449a8327a9dbb648271f123224>`_\ )
14+
* **map:** load ``map.jinja`` configuration with ``libmapstack`` (\ `568bb7c <https://github.com/saltstack-formulas/openssh-formula/commit/568bb7ce4075ee376e8c49a45a1470d252f82ab9>`_\ )
15+
* **map:** load formula configuration with ``libmatchers`` (\ `ff6b56c <https://github.com/saltstack-formulas/openssh-formula/commit/ff6b56c4a4e282f41ddfc8f379f95096fea0553f>`_\ )
16+
17+
Documentation
18+
^^^^^^^^^^^^^
19+
20+
21+
* **map:** document the new ``map.jinja`` with targeting like syntax (\ `7ecb24b <https://github.com/saltstack-formulas/openssh-formula/commit/7ecb24bdc1ff84ddac4c7c3e5d8d70c7512f4fb5>`_\ )
22+
23+
Features
24+
^^^^^^^^
25+
26+
27+
* **map:** use targeting like syntax for configuration (\ `1be0d87 <https://github.com/saltstack-formulas/openssh-formula/commit/1be0d8725ad933034f4e87cc9636bcc5100bd55c>`_\ )
28+
* **matchers:** add delimiter option for source definitions (\ `d69556d <https://github.com/saltstack-formulas/openssh-formula/commit/d69556d5ae79a907d79351d4b9775e0ce2970b39>`_\ )
29+
30+
Styles
31+
^^^^^^
32+
33+
34+
* **mapstack:** variables in macro can't be exported (\ `7de2d6f <https://github.com/saltstack-formulas/openssh-formula/commit/7de2d6fd756b3e4b7154e660b639d7ce6edb8cfe>`_\ )
35+
36+
BREAKING CHANGES
37+
^^^^^^^^^^^^^^^^
38+
39+
40+
* **map:** the configuration ``map_jinja:sources`` is only
41+
.. code-block::
42+
43+
configurable with `salt://parameters/map_jinja.yaml`
44+
and `salt://{{ tplroot }}/parameters/map_jinja.yaml`
45+
46+
* **map:** the ``map_jinja:config_get_roots`` is replaced by
47+
.. code-block::
48+
49+
compound like `map_jinja:sources`
50+
51+
* **map:** the two ``config_get_lookup`` and ``config_get`` are
52+
.. code-block::
53+
54+
replaced by `C@<tplroot>:lookup` and `C@<tplroot>`
55+
sources
56+
557
`2.0.6 <https://github.com/saltstack-formulas/openssh-formula/compare/v2.0.5...v2.0.6>`_ (2020-12-23)
658
---------------------------------------------------------------------------------------------------------
759

0 commit comments

Comments
 (0)