Skip to content

Commit

Permalink
Merge pull request #146 from PowerShell/dev
Browse files Browse the repository at this point in the history
Release of version 4.0.0.0 of StorageDsc
  • Loading branch information
kwirkykat authored Feb 8, 2018
2 parents 6d2f04b + e2f6d5f commit e82ab53
Show file tree
Hide file tree
Showing 73 changed files with 1,717 additions and 218 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!--
Your feedback and support is greatly appreciated, thanks for contributing!
Please prefix the issue title with the resource name, i.e. 'xDisk: Short description of my issue'
Please prefix the issue title with the resource name, i.e. 'Disk: Short description of my issue'
Please provide the following information regarding your issue (place N/A if the fields that don't apply to your issue):
-->
**Details of the scenario you tried and the problem that is occurring:**
Expand Down
4 changes: 2 additions & 2 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<!--
Thanks for submitting a Pull Request (PR) to this project. Your contribution to this project is greatly appreciated!
Please prefix the PR title with the resource name, i.e. 'xDisk: My short description'
If this is a breaking change, then also prefix the PR title with 'BREAKING CHANGE:', i.e. 'BREAKING CHANGE: xDisk: My short description'
Please prefix the PR title with the resource name, i.e. 'Disk: My short description'
If this is a breaking change, then also prefix the PR title with 'BREAKING CHANGE:', i.e. 'BREAKING CHANGE: Disk: My short description'
To aid community reviewers in reviewing and merging your PR, please take the time to run through the below checklist.
Change to [x] for each task in the task list that applies to this PR.
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
.sln
DscResource.Tests
DscResource.Tests/*
Modules/xStorage/DscResource.Tests
Modules/xStorage/DscResource.Tests/*
Modules/StorageDsc/DscResource.Tests
Modules/StorageDsc/DscResource.Tests/*
node_modules
node_modules/*
markdownissues.txt
Expand Down
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

## Unreleased

## 4.0.0.0

- BREAKING CHANGE:
- Renamed xStorage to StorageDsc
- Renamed MSFT_xDisk to MSFT_Disk
- Renamed MSFT_xDiskAccessPath to MSFT_DiskAccessPath
- Renamed MSFT_xMountImage to MSFT_MountImage
- Renamed MSFT_xOpticalDiskDriveLetter to MSFT_OpticalDiskDriveLetter
- Renamed MSFT_xWaitForDisk to MSFT_WaitForDisk
- Renamed MSFT_xWaitForVolume to MSFT_WaitforVolume
- Deleted xStorage folder under StorageDsc/Modules
- See [Issue 129](https://github.com/PowerShell/xStorage/issues/129)

## 3.4.0.0

- xDisk:
Expand All @@ -13,7 +26,6 @@
- Added new contexts to integration tests improve clarity.
- Fix bug when size not specified and disk partitioned and
formatted but not assigned to path - See [Issue 103](https://github.com/PowerShell/xStorage/issues/103).
- Updated tests to meet Pester V4 guidelines - fixes [Issue #120](https://github.com/PowerShell/xStorage/issues/120).

## 3.3.0.0

Expand Down Expand Up @@ -41,6 +53,7 @@
[issue #116](https://github.com/PowerShell/xStorage/issues/116).
- Prevent unit tests from DSCResource.Tests from running during test
execution - fixes [Issue #118](https://github.com/PowerShell/xStorage/issues/118).
- Updated tests to meet Pester V4 guidelines - fixes [Issue #120](https://github.com/PowerShell/xStorage/issues/120).

## 3.2.0.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Import-Module -Name (Join-Path -Path $modulePath `

# Import Localization Strings
$localizedData = Get-LocalizedData `
-ResourceName 'MSFT_xDisk' `
-ResourceName 'MSFT_Disk' `
-ResourcePath (Split-Path -Parent $Script:MyInvocation.MyCommand.Path)

<#
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

[ClassVersion("1.0.0.0"), FriendlyName("xDisk")]
class MSFT_xDisk : OMI_BaseResource
[ClassVersion("1.0.0.0"), FriendlyName("Disk")]
class MSFT_Disk : OMI_BaseResource
{
[Key, Description("Specifies the identifier for which disk to modify.")] String DriveLetter;
[Required, Description("Specifies the disk identifier for the disk to modify.")] String DiskId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Import-Module -Name (Join-Path -Path $modulePath `

# Import Localization Strings
$localizedData = Get-LocalizedData `
-ResourceName 'MSFT_xDiskAccessPath' `
-ResourceName 'MSFT_DiskAccessPath' `
-ResourcePath (Split-Path -Parent $Script:MyInvocation.MyCommand.Path)

<#
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

[ClassVersion("1.0.0.0"), FriendlyName("xDiskAccessPath")]
class MSFT_xDiskAccessPath : OMI_BaseResource
[ClassVersion("1.0.0.0"), FriendlyName("DiskAccessPath")]
class MSFT_DiskAccessPath : OMI_BaseResource
{
[Key, Description("Specifies the access path folder to the assign the disk volume to.")] String AccessPath;
[Required, Description("Specifies the disk identifier for the disk to modify.")] String DiskId;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Import-Module -Name (Join-Path -Path $modulePath `

# Import Localization Strings
$localizedData = Get-LocalizedData `
-ResourceName 'MSFT_xMountImage' `
-ResourceName 'MSFT_MountImage' `
-ResourcePath (Split-Path -Parent $Script:MyInvocation.MyCommand.Path)

<#
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

[ClassVersion("1.0.0.0"), FriendlyName("xMountImage")]
class MSFT_xMountImage : OMI_BaseResource
[ClassVersion("1.0.0.0"), FriendlyName("MountImage")]
class MSFT_MountImage : OMI_BaseResource
{
[Key, Description("Specifies the path of the VHD or ISO file.")] String ImagePath;
[Write, Description("Specifies the drive letter to mount this VHD or ISO to.")] String DriveLetter;
Expand Down
Loading

0 comments on commit e82ab53

Please sign in to comment.