Skip to content

Commit f11e2bd

Browse files
Merge pull request #6 from laminas/1.4.x-merge-up-into-1.5.x_5f4fd35224ee75.68918562
Merge release 1.4.1 into 1.5.x Signed-Off-By: Matthew Weier O'Phinney <[email protected]>
2 parents a471e26 + 192c2bd commit f11e2bd

File tree

3 files changed

+28
-6
lines changed

3 files changed

+28
-6
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,22 @@ All notable changes to this project will be documented in this file, in reverse
2424

2525
- Nothing.
2626

27+
## 1.4.1 - 2020-09-02
28+
29+
### Release Notes for [1.4.1](https://github.com/laminas/laminas-config-aggregator-parameters/milestone/2)
30+
31+
1.4.x bugfix release (patch)
32+
33+
### 1.4.1
34+
35+
- Total issues resolved: **0**
36+
- Total pull requests resolved: **1**
37+
- Total contributors: **1**
38+
39+
#### Documentation,Enhancement
40+
41+
- [5: Updates version hints, headline and line length in documentation](https://github.com/laminas/laminas-config-aggregator-parameters/pull/5) thanks to @froschdesign
42+
2743
## 1.4.0 - 2020-09-02
2844

2945
### Added

docs/book/usage.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Usage
1+
# Basic Usage
22

33
This package supplies a [laminas-config-aggregator post processor](https://docs.laminas.dev/laminas-config-aggregator/config-post-processors/)
44
that consumes the [Symfony DependencyInjection ParameterBag](https://symfony.com/doc/current/configuration/using_parameters_in_dic.html)
@@ -15,8 +15,9 @@ Parameters may be defined as nested associative arrays as well; in such cases, a
1515
`.` character references an additional layer of hierarchy to dereference:
1616
`%foo.bar%` refers to the paramter found at `'foo' => [ 'bar' => 'value' ]`.
1717

18-
> Starting in version 1.1.0, you can use parameters which reference other
19-
> parameters as well.
18+
> Available since version 1.1.0
19+
20+
Parameters which reference other parameters can also be used.
2021

2122
If you wish to use a literal `%name%` within your configuration, you **must**
2223
double-escape the percentage signs: `%%name%%`. Failure to do so will result in
@@ -86,6 +87,11 @@ array(5) {
8687

8788
## Parameter Lazy Loading
8889

89-
If your parameters are resolved from a database, redis, consul, or any other i/o resource, you can use the `LazyParameterPostProcessor` which consumes just a `callable` which can provide the parameters.
90+
> Available since version 1.4.0
91+
92+
If your parameters are resolved from a database, redis, consul, or any other i/o
93+
resource, you can use the `LazyParameterPostProcessor` which consumes just a
94+
`callable` which can provide the parameters.
9095

91-
In case you are using config-caching, the i/o is not executed when performed in the `callable`.
96+
In case you are using config-caching, the i/o is not executed when performed in
97+
the `callable`.

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ docs_dir: docs/book
33
site_dir: docs/html
44
nav:
55
- Home: index.md
6-
- Usage: usage.md
6+
- Basic Usage: usage.md
77
site_description: 'PostProcessor extension for laminas/laminas-config-aggregator to allow usage of templated parameters within your configuration'
88
repo_url: 'https://github.com/laminas/laminas-config-aggregator-parameters'
99
extra:

0 commit comments

Comments
 (0)