Skip to content
This repository was archived by the owner on Dec 8, 2021. It is now read-only.

WIP: Explore cross-platform local store #86

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
029068e
Add CI release/publish to RemotingTools, SecretManagement, ThreadJob …
PaulHigin May 4, 2020
a4dce35
Merge branch 'master' of https://github.com/PowerShell/Modules
PaulHigin May 4, 2020
8012b9a
Fix artifact path
PaulHigin May 4, 2020
27e536d
Merge branch 'master' of https://github.com/PowerShell/Modules
PaulHigin May 4, 2020
07e467d
Add x-platform local secure store implementation
PaulHigin May 19, 2020
488d6e5
Fix path name for x-plat
PaulHigin May 19, 2020
13cd237
Add local store password cmdlets
PaulHigin May 20, 2020
2b943e6
Add password management
PaulHigin May 22, 2020
d66b6fb
Add initial config cmdlets
PaulHigin May 22, 2020
a34e09e
Add more configuration functions.
PaulHigin May 26, 2020
cd63211
Add more password management
PaulHigin May 27, 2020
4336c90
Add config upate event and made various fixes.
PaulHigin May 28, 2020
47189c5
Make timeout value be in seconds
PaulHigin May 29, 2020
823647f
Update Modules/Microsoft.PowerShell.SecretManagement/src/code/SecretM…
PaulHigin May 29, 2020
08e3bab
Update Modules/Microsoft.PowerShell.SecretManagement/src/code/Utils.cs
PaulHigin May 29, 2020
52a1b74
Update Modules/Microsoft.PowerShell.SecretManagement/src/code/Utils.cs
PaulHigin May 29, 2020
c1edc0a
Update Modules/Microsoft.PowerShell.SecretManagement/src/code/Utils.cs
PaulHigin May 29, 2020
6964b1f
Update Modules/Microsoft.PowerShell.SecretManagement/src/code/Utils.cs
PaulHigin May 29, 2020
3340778
Update Modules/Microsoft.PowerShell.SecretManagement/src/code/Utils.cs
PaulHigin May 29, 2020
f9148e6
Implement store cmdlet feedback
PaulHigin May 29, 2020
79298dd
Various fixes
PaulHigin Jun 3, 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
2 changes: 1 addition & 1 deletion Modules/Microsoft.PowerShell.SecretManagement/build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ if ($env:TF_BUILD) {
Write-Host "##$vstsCommandString"
}

. $PSScriptRoot\dobuild.ps1
. $PSScriptRoot/doBuild.ps1

if ($Clean -and (Test-Path $OutDirectory))
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
RootModule = '.\Microsoft.PowerShell.SecretManagement.dll'

# Version number of this module.
ModuleVersion = '0.2.1'
ModuleVersion = '0.3.0'

# Supported PSEditions
CompatiblePSEditions = @('Core')
Expand Down Expand Up @@ -45,6 +45,10 @@ All previous vault extensions will need to be updated.
*****
This is an alpha version of the module that currently works only on Windows platforms.
*****

*****
Breaking change for 0.3.0: Adding new local secure store that works cross platform.
*****
"

# Minimum version of the PowerShell engine required by this module
Expand All @@ -58,7 +62,8 @@ FunctionsToExport = @()

# Cmdlets to export from this module, for best performance, do not use wildcards and do not delete the entry, use an empty array if there are no cmdlets to export.
CmdletsToExport = @(
'Register-SecretVault','Unregister-SecretVault','Get-SecretVault','Set-Secret','Remove-Secret','Get-Secret','Get-SecretInfo','Test-SecretVault')
'Register-SecretVault','Unregister-SecretVault','Get-SecretVault','Set-Secret','Remove-Secret','Get-Secret','Get-SecretInfo','Test-SecretVault',
'Unlock-LocalStore','Update-LocalStorePassword','Get-LocalStoreConfiguration','Set-LocalStoreConfiguration','Reset-LocalStore')

# Variables to export from this module
VariablesToExport = '*'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
<OutputType>Library</OutputType>
<RootNamespace>Microsoft.PowerShell.SecretManagement</RootNamespace>
<AssemblyName>Microsoft.PowerShell.SecretManagement</AssemblyName>
<AssemblyVersion>0.2.1.0</AssemblyVersion>
<FileVersion>0.2.1</FileVersion>
<InformationalVersion>0.2.1</InformationalVersion>
<AssemblyVersion>0.3.0.0</AssemblyVersion>
<FileVersion>0.3.0</FileVersion>
<InformationalVersion>0.3.0</InformationalVersion>
<TargetFramework>netstandard2.0</TargetFramework>
</PropertyGroup>

Expand Down
Loading