Skip to content

Commit 0822e66

Browse files
authored
Release 3.9.0 (#673)
* Bump version in metadata and add changelog for 3.9.0. * Fix tests on puppet 5
1 parent efbe0bf commit 0822e66

File tree

3 files changed

+19
-3
lines changed

3 files changed

+19
-3
lines changed

CHANGELOG.md

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changes
22
=======
33

4+
# 3.9.0 / 2020-11-20
5+
6+
* [FEATURE] Add support for trusted fact tags in reports [#662][] (Thanks [@murdok5][])
7+
* [FEATURE] Add support for collecting elasticsearch index_stats [#666][] (Thanks [@charles-ferguson][])
8+
* [FEATURE] Trust new APT and RPM keys [#667][]
9+
* [BUGFIX] Fix passing tags to msiexec [#661][] (Thanks [@alexberry][])
10+
* [BUGFIX] Only declare the Agent package if not already declared [#672][]
11+
* [BUGFIX] Fix Package not depending on the right Yumrepo [#664][]
12+
413
# 3.8.0 / 2020-10-14
514

615
* [FEATURE] Add trusted_facts_to_tags argument to add Agent tags from trusted facts [#658][]
@@ -791,7 +800,12 @@ Please read the [docs]() for more details.
791800
[#654]: https://github.com/DataDog/puppet-datadog-agent/issues/654
792801
[#656]: https://github.com/DataDog/puppet-datadog-agent/issues/656
793802
[#658]: https://github.com/DataDog/puppet-datadog-agent/issues/658
794-
803+
[#661]: https://github.com/DataDog/puppet-datadog-agent/issues/661
804+
[#662]: https://github.com/DataDog/puppet-datadog-agent/issues/662
805+
[#664]: https://github.com/DataDog/puppet-datadog-agent/issues/664
806+
[#666]: https://github.com/DataDog/puppet-datadog-agent/issues/666
807+
[#667]: https://github.com/DataDog/puppet-datadog-agent/issues/667
808+
[#672]: https://github.com/DataDog/puppet-datadog-agent/issues/672
795809
[@Aramack]: https://github.com/Aramack
796810
[@BIAndrews]: https://github.com/BIAndrews
797811
[@ChannoneArif-nbcuni]: https://github.com/ChannoneArif-nbcuni
@@ -805,6 +819,7 @@ Please read the [docs]() for more details.
805819
[@aaron-miller]: https://github.com/aaron-miller
806820
[@aepod]: https://github.com/aepod
807821
[@ajvb]: https://github.com/ajvb
822+
[@alexberry]: https://github.com/alexberry
808823
[@alexfouche]: https://github.com/alexfouche
809824
[@alexharv074]: https://github.com/alexharv074
810825
[@alvin-huang]: https://github.com/alvin-huang
@@ -818,6 +833,7 @@ Please read the [docs]() for more details.
818833
[@bittner]: https://github.com/bittner
819834
[@butangero]: https://github.com/butangero
820835
[@cabrinha]: https://github.com/cabrinha
836+
[@charles-ferguson]: https://github.com/charles-ferguson
821837
[@ckolos]: https://github.com/ckolos
822838
[@com6056]: https://github.com/com6056
823839
[@craigwatson]: https://github.com/craigwatson

functions/tag6.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
function datadog_agent::tag6(
66
Variant[Array, String] $tag_names,
77
Variant[String, Boolean] $lookup_fact = false,
8-
Variant[Hash, Undef] $lookup_table = $facts,
8+
Variant[Hash, Undef, Runtime] $lookup_table = $facts,
99
) {
1010
if $tag_names =~ Array {
1111
$tags = $tag_names.reduce([]) |$_tags , $tag| {

metadata.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "datadog-datadog_agent",
3-
"version": "3.8.0",
3+
"version": "3.9.0",
44
"author": "James Turnbull <james@lovedthanlost.net>, Rob Terhaar <rob@atlanticdynamic>, Jaime Fullaondo <jaime.fullaondo@datadoghq.com>, Albert Vaca <albert.vaca@datadoghq.com>",
55
"summary": "Install the Datadog monitoring agent and report Puppet runs to Datadog",
66
"license": "Apache-2.0",

0 commit comments

Comments
 (0)