Commit 8fa8533 1 parent 39bd04e commit 8fa8533 Copy full SHA for 8fa8533
File tree 3 files changed +19
-12
lines changed
3 files changed +19
-12
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
+
6
+ ## [ 2024-06-27] Release 1.1.0
7
+
8
+ ** Changes**
9
+ - Fixed ` puppetlabs/apt ` requirement
10
+ - Fixed Puppet 8 warnings
11
+ - Replaced ` merge() ` function calls by native ` + ` operand
12
+
13
+ [ Full changes] ( https://github.com/deric/puppet-fluentbit/compare/v1.0.0...v1.1.0 )
14
+
15
+
5
16
## [ 2024-06-21] Release 1.0.0
6
17
7
18
** Changes**
Original file line number Diff line number Diff line change 283
283
~> Class[' fluentbit::service' ]
284
284
285
285
$inputs .each |$name , $conf | {
286
- create_resources(fluentbit::pipeline, { $name => merge( { ' pipeline' => ' input' }, $conf ) })
286
+ create_resources(fluentbit::pipeline, { $name => { ' pipeline' => ' input' } + $conf })
287
287
}
288
288
289
289
$outputs .each |$name , $conf | {
290
- create_resources(fluentbit::pipeline, { $name => merge( { ' pipeline' => ' output' }, $conf ) })
290
+ create_resources(fluentbit::pipeline, { $name => { ' pipeline' => ' output' } + $conf })
291
291
}
292
292
293
293
$filters .each |$name , $conf | {
294
- create_resources(fluentbit::pipeline, { $name => merge( { ' pipeline' => ' filter' }, $conf ) })
294
+ create_resources(fluentbit::pipeline, { $name => { ' pipeline' => ' filter' } + $conf })
295
295
}
296
296
297
297
create_resources(fluentbit::upstream, $upstreams )
Original file line number Diff line number Diff line change 72
72
name => $plugin ,
73
73
pipeline_type => $pipeline ,
74
74
order => $order ,
75
- properties => merge(
76
- $db_settings ,
77
- {
78
- alias => $title ,
79
- },
80
- $properties ,
81
- $script_settings ,
82
- $upstream_settings ,
83
- )
75
+ properties => $db_settings
76
+ + { alias => $title }
77
+ + $properties
78
+ + $script_settings
79
+ + $upstream_settings ,
84
80
}
85
81
),
86
82
}
You can’t perform that action at this time.
0 commit comments