Skip to content

Commit 0e57dd1

Browse files
committed
Merge pull request voxpupuli#303 from hunner/release_0.14.0
Release 0.14.0
2 parents 28b790a + bcb48d7 commit 0e57dd1

File tree

2 files changed

+38
-9
lines changed

2 files changed

+38
-9
lines changed

CHANGELOG.md

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
1+
## Release 0.14.0
2+
### Summary
3+
This breaking release increases the lower bound of the puppetlabs-apt dependency to the 2.x series of apt and puppetlabs-stdlib to >= 4.4.0. The operating system metadata is also updated to reflect modern systems.
4+
5+
### Backwards-incompatible change
6+
- Increase apt lower dependency to >= 2.1.0
7+
- Increase stdlib lower dependency to >= 4.4.0
8+
- Drop RHEL & Centos 5
9+
- Drop Debian 6
10+
- Drop Ubuntu 10.04
11+
12+
### Features
13+
- Add `mongodb_is_master` fact
14+
- Add `mongodb::db::db_name` parameter for exported resource deduplication
15+
- Add Debian 8 compatibility
16+
- Add Ubuntu 14.04 compatibility
17+
- Add Ubuntu 16.04 compatibility
18+
- Add puppet 3.x 4.x compatibility metadata
19+
20+
### Bugfixes
21+
- Catch unconfigured replset configuration queries
22+
- Fix timestamp and other javascript object removal
23+
- Correct permissions on .mongorc.js to 600
24+
125
## Release 0.13.0
2-
### Summary
26+
### Summary
327
Adds several new large features, including the support of mongodb 3.x. Also applies numerous bugfixes, mainly around fixing errors being thrown and syntax issues.
428

529
#### Features

metadata.json

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "puppetlabs-mongodb",
3-
"version": "0.13.0",
3+
"version": "0.14.0",
44
"author": "puppetlabs",
55
"summary": "Installs MongoDB on RHEL/Ubuntu/Debian.",
66
"license": "Apache-2.0",
@@ -11,36 +11,41 @@
1111
{
1212
"operatingsystem": "RedHat",
1313
"operatingsystemrelease": [
14-
"5",
1514
"6",
1615
"7"
1716
]
1817
},
1918
{
2019
"operatingsystem": "CentOS",
2120
"operatingsystemrelease": [
22-
"5",
2321
"6",
2422
"7"
2523
]
2624
},
2725
{
2826
"operatingsystem": "Debian",
2927
"operatingsystemrelease": [
30-
"6",
31-
"7"
28+
"7",
29+
"8"
3230
]
3331
},
3432
{
3533
"operatingsystem": "Ubuntu",
3634
"operatingsystemrelease": [
37-
"10.04",
38-
"12.04"
35+
"12.04",
36+
"14.04",
37+
"16.04"
3938
]
4039
}
4140
],
41+
"requirements": [
42+
{
43+
"name": "puppet",
44+
"version_requirement": ">= 3.0.0 < 5.0.0"
45+
}
46+
],
4247
"dependencies": [
4348
{"name":"puppetlabs/apt","version_requirement":">= 2.1.0 <3.0.0"},
44-
{"name":"puppetlabs/stdlib","version_requirement":">= 2.2.0 <5.0.0"}
49+
{"name":"puppetlabs/stdlib","version_requirement":">= 4.4.0 <5.0.0"}
4550
]
4651
}

0 commit comments

Comments
 (0)