Skip to content

Commit 05bf9c7

Browse files
author
kreeuwijk
committed
bump version to 1.1.0
1 parent 8f4f8e8 commit 05bf9c7

File tree

2 files changed

+112
-8
lines changed

2 files changed

+112
-8
lines changed

CHANGELOG.md

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## Release 1.1.0
6+
7+
**Features**
8+
* Added official support for Windows 2019 and Windows 10
9+
* Removed official support for Windows 2008R2
10+
* Added support for uninstallation of VMware Tools (`ensure => absent`)
11+
* Validated on Windows 2019 and Windows Server Core (SAC)
12+
* Added PDK unit tests
13+
* PDK 1.17 update
14+
15+
**Bugfixes**
16+
17+
**Known Issues**
18+
19+
## Release 1.0.7
20+
21+
**Features**
22+
PDK 1.12 update
23+
24+
**Bugfixes**
25+
ensure correct parsing of variable for reported issue #7
26+
27+
**Known Issues**
28+
29+
## Release 1.0.6
30+
31+
**Features**
32+
PDK 1.8.0 update
33+
34+
**Bugfixes**
35+
Fact constraints
36+
37+
**Known Issues**
38+
39+
## Release 1.0.5
40+
41+
**Features**
42+
Updated to PDK-based module
43+
44+
**Bugfixes**
45+
46+
**Known Issues**
47+
48+
## Release 1.0.4
49+
50+
**Features**
51+
Updated functions to work with PE 4.7
52+
* removed return type definition (>>) for functions, which is PE 4.8 and above
53+
* removed usage of 'return' function, which is PE 4.8 and above
54+
Added testing for Puppet 5.0
55+
56+
**Bugfixes**
57+
58+
**Known Issues**
59+
60+
## Release 1.0.3
61+
62+
**Features**
63+
* Moved validation logic to separate functions
64+
* Moved class parameter defaults to Hiera 5 at data/common.yaml
65+
66+
Changed compatibility to Puppet 4.8.0 and higher, as Puppet 4.7.0 and lower do not support specifying the output datatype of a function.
67+
68+
**Bugfixes**
69+
70+
**Known Issues**
71+
72+
## Release 1.0.2
73+
74+
**Features**
75+
Updated metadata.json to 1.0.2
76+
77+
**Bugfixes**
78+
79+
**Known Issues**
80+
81+
## Release 1.0.1
82+
83+
**Features**
84+
This release adds support for Windows 2008 R2, which didn't fully work in 1.0.0 due to Powershell 2.0 not supporting the Invoke-WebRequest cmdlet. This is now fixed by using a different command when Invoke-WebRequest is not available.
85+
86+
Testing has now been performed for Windows 2008 R2, 2012, 2012 R2 and 2016.
87+
88+
**Bugfixes**
89+
A bugfix was added to account for the situation where internet connectivity is not working and there is no existing version of the VMware Tools installed.
90+
91+
**Known Issues**
92+
93+
## Release 1.0.0
94+
95+
**Features**
96+
Initial Release of VMware Tools for Windows puppet module.
97+
98+
**Bugfixes**
99+
100+
**Known Issues**

metadata.json

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,34 @@
11
{
22
"name": "kreeuwijk-vmtools_win",
3-
"version": "1.0.7",
3+
"version": "1.1.0",
44
"author": "kreeuwijk",
55
"summary": "Deploys & manages VMware Tools for Windows on VMware guests.",
66
"license": "Apache-2.0",
77
"source": "https://github.com/kreeuwijk/vmtools_win.git",
88
"project_page": "https://github.com/kreeuwijk/vmtools_win",
99
"issues_url": "https://github.com/kreeuwijk/vmtools_win/issues",
1010
"dependencies": [
11-
11+
{
12+
"name": "puppetlabs-stdlib",
13+
"version_requirement": ">= 4.19.0 < 7.0.0"
14+
}
1215
],
1316
"operatingsystem_support": [
1417
{
1518
"operatingsystem": "Windows",
1619
"operatingsystemrelease": [
17-
"2008 r2",
1820
"2012",
1921
"2012 R2",
20-
"2016"
22+
"2016",
23+
"2019",
24+
"10"
2125
]
2226
}
2327
],
2428
"requirements": [
2529
{
2630
"name": "puppet",
27-
"version_requirement": ">=4.7.0 <7.0.0"
31+
"version_requirement": ">=4.7.0 <8.0.0"
2832
}
2933
],
3034
"tags": [
@@ -34,7 +38,7 @@
3438
"vmware_tools",
3539
"vmtools"
3640
],
37-
"template-url": "pdk-default#1.12.0",
38-
"template-ref": "1.12.0-0-g55d9ae2",
39-
"pdk-version": "1.12.0"
41+
"template-url": "pdk-default#1.17.0",
42+
"template-ref": "tags/1.17.0-0-gd3a4319",
43+
"pdk-version": "1.17.0"
4044
}

0 commit comments

Comments
 (0)