Skip to content

Commit

Permalink
Changes to xPSDesiredStateConfiguration
Browse files Browse the repository at this point in the history
- Adding a Branches section to the README.md with Codecov badges for both
  master and dev branch (issue dsccommunity#416).
  • Loading branch information
johlju committed May 21, 2018
1 parent c38e8c8 commit acb5732
Showing 1 changed file with 29 additions and 9 deletions.
38 changes: 29 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,32 @@
# xPSDesiredStateConfiguration

master: [![Build status](https://ci.appveyor.com/api/projects/status/s35s7sxuyym8yu6c/branch/master?svg=true)](https://ci.appveyor.com/project/PowerShell/xpsdesiredstateconfiguration/branch/master)
dev : [![Build status](https://ci.appveyor.com/api/projects/status/s35s7sxuyym8yu6c/branch/dev?svg=true)](https://ci.appveyor.com/project/PowerShell/xpsdesiredstateconfiguration/branch/dev)

The **xPSDesiredStateConfiguration** module is a more recent, experimental version of the PSDesiredStateConfiguration module that ships in Windows as part of PowerShell 4.0.

The high quality, supported version of this module is available as [PSDscResources](https://github.com/PowerShell/PSDscResources).

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 [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.

## Branches

### master

[![Build status](https://ci.appveyor.com/api/projects/status/s35s7sxuyym8yu6c/branch/master?svg=true)](https://ci.appveyor.com/project/PowerShell/xPSDesiredStateConfiguration/branch/master)
[![codecov](https://codecov.io/gh/PowerShell/xPSDesiredStateConfiguration/branch/master/graph/badge.svg)](https://codecov.io/gh/PowerShell/xPSDesiredStateConfiguration/branch/master)

This is the branch containing the latest release -
no contributions should be made directly to this branch.

### dev

[![Build status](https://ci.appveyor.com/api/projects/status/s35s7sxuyym8yu6c/branch/dev?svg=true)](https://ci.appveyor.com/project/PowerShell/xPSDesiredStateConfiguration/branch/dev)
[![codecov](https://codecov.io/gh/PowerShell/xPSDesiredStateConfiguration/branch/dev/graph/badge.svg)](https://codecov.io/gh/PowerShell/xPSDesiredStateConfiguration/branch/dev)

This is the development branch
to which contributions should be proposed by contributors as pull requests.
This development branch will periodically be merged to the master branch,
and be released to [PowerShell Gallery](https://www.powershellgallery.com/).

## Contributing

If you would like to contribute to this module, please review the common DSC Resources [contributing guidelines](https://github.com/PowerShell/DscResource.Kit/blob/master/CONTRIBUTING.md).
Expand Down Expand Up @@ -481,7 +498,7 @@ None
* **[Boolean] PasswordNeverExpires** _(Write)_: Indicates if the password will expire. To ensure that the password for this account will never expire, set this property to $true, and set it to $false if the password will expire.
- Suported values: $true, $false
- Default value: $false

#### Examples

* [Create a new User](https://github.com/PowerShell/xPSDesiredStateConfiguration/blob/dev/Examples/Sample_xUser_CreateUser.ps1)
Expand Down Expand Up @@ -636,7 +653,10 @@ Publishes a 'FileInfo' object(s) to the pullserver configuration repository. It

### Unreleased

* README.md: Fixed typo
* Changes to xPSDesiredStateConfiguration
* README.md: Fixed typo [Steve Banik (@stevebanik-ndsc)](https://github.com/stevebanik-ndsc)
* Adding a Branches section to the README.md with Codecov badges for both
master and dev branch ([issue #416](https://github.com/PowerShell/xPSDesiredStateConfiguration/issues/416)).

### 8.2.0.0

Expand Down Expand Up @@ -671,7 +691,7 @@ Publishes a 'FileInfo' object(s) to the pullserver configuration repository. It
### 6.2.0.0

* xMsiPackage:
* Created high quality MSI package manager resource
* Created high quality MSI package manager resource
* xArchive:
* Fixed a minor bug in the unit tests where sometimes the incorrect DateTime format was used.
* xWindowsFeatureSet:
Expand Down Expand Up @@ -699,7 +719,7 @@ Publishes a 'FileInfo' object(s) to the pullserver configuration repository. It
* Added unit and end-to-end tests.
* Significantly cleaned the resource.
* Minor Breaking Change where the resource will now throw an error if no value is provided, Ensure is set to present, and the variable does not exist, whereas before it would create an empty registry key on the machine in this case (if this is the desired outcome then use the Registry resource).
* Added a new Write property 'Target', which specifies whether the user wants to set the machine variable, the process variable, or both (previously it was setting both in most cases).
* Added a new Write property 'Target', which specifies whether the user wants to set the machine variable, the process variable, or both (previously it was setting both in most cases).
* xGroup:
* Group members in the "NT Authority", "BuiltIn" and "NT Service" scopes should now be resolved without an error. If you were seeing the errors "Exception calling ".ctor" with "4" argument(s): "Server names cannot contain a space character."" or "Exception calling ".ctor" with "2" argument(s): "Server names cannot contain a space character."", this fix should resolve those errors. If you are still seeing one of the errors, there is probably another local scope we need to add. Please let us know.
* The resource will no longer attempt to resolve group members if Members, MembersToInclude, and MembersToExclude are not specified.
Expand Down Expand Up @@ -744,7 +764,7 @@ Publishes a 'FileInfo' object(s) to the pullserver configuration repository. It
* Added integration tests for BuiltInAccount and Credential.
* xServiceSet:
* Updated resource to use new ResouceSetHelper functions and added integration tests.
* Updated documentation and example
* Updated documentation and example
* xWindowsProcess
* Cleaned resource as per high quality guidelines.
* Added unit tests.
Expand All @@ -769,7 +789,7 @@ Publishes a 'FileInfo' object(s) to the pullserver configuration repository. It
* Fixed bug in which the user could not set a Binary registry value to 0
* Added unit and integration tests
* Added examples and updated documentation

### 5.0.0.0

* xWindowsFeature:
Expand Down

0 comments on commit acb5732

Please sign in to comment.