Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BREAKING CHANGE: Update Module to Continuous Delivery - Fixes #295 #299

Merged
merged 30 commits into from
Jan 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
41276a2
Update 1 to move to new CIprocess
PlagueHO Jan 20, 2020
4f0945e
Rename tests folder
PlagueHO Jan 20, 2020
7b26d9d
Update 2 to move to new CIprocess
PlagueHO Jan 20, 2020
cf138a0
Fix unit tests
PlagueHO Jan 20, 2020
5609c72
Fix first integration test
PlagueHO Jan 20, 2020
d9954a7
Fix HQRM violations
PlagueHO Jan 20, 2020
abf76ca
Fix integration test
PlagueHO Jan 20, 2020
74ec777
Fix more integration tests
PlagueHO Jan 20, 2020
8106430
Fix unit tests
PlagueHO Jan 20, 2020
2d37993
Fix more unit tests
PlagueHO Jan 20, 2020
67a8b65
Fix WindowsCapability
PlagueHO Jan 21, 2020
2003ecc
Fix Integration tests for WindowsCapability
PlagueHO Jan 21, 2020
93883f6
Fix integration test and output WindowsCapability
PlagueHO Jan 21, 2020
d39dd4f
Fix integration tests for ScheduledTask
PlagueHO Jan 21, 2020
dc4b931
Work on integration tests
PlagueHO Jan 21, 2020
1ea6bde
Start Windows Update Service in integeration tests
PlagueHO Jan 21, 2020
c0dbdc0
Fix Test-WindowsCapabilitySourceAvailable
PlagueHO Jan 22, 2020
ec684b2
Fix integration tests again
PlagueHO Jan 24, 2020
c65d8f9
Fix Windows Capability
PlagueHO Jan 24, 2020
8932339
Further fixes
PlagueHO Jan 24, 2020
39f8796
Fix resource
PlagueHO Jan 24, 2020
f9f4649
Fix Windows Capability
PlagueHO Jan 24, 2020
3d3742b
Rework WindowsCapability
PlagueHO Jan 24, 2020
5940abb
Remove quotes from MOF
PlagueHO Jan 24, 2020
6271a4c
Fix unit tests on WindowsCapability
PlagueHO Jan 24, 2020
b47136c
Correct MOF file
PlagueHO Jan 24, 2020
9b042e5
Improve MOF
PlagueHO Jan 24, 2020
c7db824
Fix Common Test Helper
PlagueHO Jan 24, 2020
82b92cd
Changes as per PR comments
PlagueHO Jan 31, 2020
c87bf56
Changes as per PR comments part 2
PlagueHO Jan 31, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 0 additions & 14 deletions .MetaTestOptIn.json

This file was deleted.

26 changes: 0 additions & 26 deletions .codecov.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
-->
- [ ] Added an entry under the Unreleased section of the change log in the CHANGELOG.md.
Entry should say what was changed, and how that affects users (if applicable).
- [ ] Resource documentation added/updated in README.md in the resource folder.
- [ ] Resource documentation added/updated in README.md in resource folder.
- [ ] Resource parameter descriptions added/updated in schema.mof
and comment-based help.
- [ ] Comment-based help added/updated.
Expand Down
10 changes: 9 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,9 @@
DSCResource.Tests
*.suo
*.user
*.coverage
.vs
.psproj
.sln
markdownissues.txt
TestResults.xml
output/
28 changes: 25 additions & 3 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,37 @@
// Place your settings in this file to overwrite default and user settings.
{
"powershell.codeFormatting.openBraceOnSameLine": false,
"powershell.codeFormatting.newLineAfterOpenBrace": false,
"powershell.codeFormatting.newLineAfterOpenBrace": true,
"powershell.codeFormatting.newLineAfterCloseBrace": true,
"powershell.codeFormatting.whitespaceBeforeOpenBrace": true,
"powershell.codeFormatting.whitespaceBeforeOpenParen": true,
"powershell.codeFormatting.whitespaceAroundOperator": true,
"powershell.codeFormatting.whitespaceAfterSeparator": true,
"powershell.codeFormatting.ignoreOneLineBlock": false,
"powershell.codeFormatting.preset": "Custom",
"powershell.codeFormatting.alignPropertyValuePairs": true,
"files.trimTrailingWhitespace": true,
"files.insertFinalNewline": true,
"powershell.scriptAnalysis.settingsPath": ".vscode\\analyzersettings.psd1"
"powershell.scriptAnalysis.settingsPath": ".vscode\\analyzersettings.psd1",
"powershell.scriptAnalysis.enable": true,
"files.associations": {
"*.ps1xml": "xml"
},
"cSpell.words": [
"COMPANYNAME",
"ICONURI",
"LICENSEURI",
"PROJECTURI",
"RELEASENOTES",
"buildhelpers",
"endregion",
"gitversion",
"icontains",
"keepachangelog",
"notin",
"pscmdlet",
"steppable"
],
"[markdown]": {
"files.encoding": "utf8"
}
}
408 changes: 25 additions & 383 deletions CHANGELOG.md

Large diffs are not rendered by default.

7 changes: 2 additions & 5 deletions CODE_OF_CONDUCT.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
# Code of conduct
# Code of Conduct

This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
or contact [[email protected]](mailto:[email protected]) with any additional
questions or comments.
This project has adopted the [DSC Community Code of Conduct](https://dsccommunity.org/code_of_conduct).
82 changes: 0 additions & 82 deletions ComputerManagementDsc.psd1

This file was deleted.

This file was deleted.

5 changes: 0 additions & 5 deletions DSCResources/MSFT_WindowsCapability/README.md

This file was deleted.

26 changes: 26 additions & 0 deletions GitVersion.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
mode: ContinuousDelivery
next-version: 7.4.0
major-version-bump-message: '\s?(breaking|major|breaking\schange)'
minor-version-bump-message: '\s?(add|feature|minor)'
patch-version-bump-message: '\s?(fix|patch)'
no-bump-message: '\+semver:\s?(none|skip)'
assembly-informational-format: '{NuGetVersionV2}+Sha.{Sha}.Date.{CommitDate}'
branches:
master:
tag: preview
pull-request:
tag: PR
feature:
tag: useBranchName
increment: Minor
regex: f(eature(s)?)?[\/-]
source-branches: ['master']
hotfix:
tag: fix
increment: Patch
regex: (hot)?fix(es)?[\/-]
source-branches: ['master']

ignore:
sha: []
merge-message-formats: {}
Loading