Skip to content

Commit 16a31db

Browse files
Release 1.0.2
1 parent 399c765 commit 16a31db

File tree

9 files changed

+33
-18
lines changed

9 files changed

+33
-18
lines changed

.github/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The only purpose of this tool is to demonstrate the usage of the WebAuthn API.
4545
- The latest version of the `FIDO2 UI` can be downloaded from the [Releases section](https://github.com/MichaelGrafnetter/webauthn-interop/releases/latest).
4646
- The `DSInternals.Win32.WebAuthn` library is published in the [NuGet Gallery](https://www.nuget.org/packages/DSInternals.Win32.WebAuthn/).
4747

48-
## Usage
48+
## .NET API Usage
4949

5050
### Overview
5151

.github/workflows/autobuild.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ jobs:
5757
uses: actions/upload-artifact@v4
5858
with:
5959
name: PowerShell
60-
path: Build/publish/PSModule/Release/*
60+
path: Build/bin/PSModule/Release/*
6161

6262
- name: Create NuGet Packages
6363
working-directory: Src

.github/workflows/release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,13 +191,15 @@ jobs:
191191

192192
- name: Create Application ZIP for GitHub Release
193193
if: ${{ github.event.inputs.create_github_release }}
194+
shell: powershell
194195
working-directory: Build
195-
run: 7z a -tzip -mx=9 -r publish/Fido2UI.zip bin/Fido2UI/release
196+
run: Compress-Archive -Path .\bin\FIDO2UI\release\* -DestinationPath .\publish\FIDO2UI.zip -CompressionLevel Optimal -Force
196197

197198
- name: Create Module ZIP for GitHub Release
198199
if: ${{ github.event.inputs.create_github_release }}
200+
shell: powershell
199201
working-directory: Build
200-
run: 7z a -tzip -mx=9 -r publish/DSInternals.Passkeys.zip bin/PSModule/Release
202+
run: Compress-Archive -Path .\bin\PSModule\Release\* -DestinationPath .\publish\DSInternals.Passkeys.zip -CompressionLevel Optimal -Force
201203

202204
- name: Create GitHub Release
203205
if: ${{ github.event.inputs.create_github_release }}
@@ -223,7 +225,7 @@ jobs:
223225
with:
224226
upload_url: ${{ steps.create_release.outputs.upload_url }}
225227
asset_path: Build/publish/Fido2UI.zip
226-
asset_name: FIDO2UI.zip
228+
asset_name: FIDO2UI_v${{ github.event.inputs.release_version }}.zip
227229
asset_content_type: applicaion/zip
228230

229231
- name: Upload PowerShell Module as Asset
@@ -234,5 +236,5 @@ jobs:
234236
with:
235237
upload_url: ${{ steps.create_release.outputs.upload_url }}
236238
asset_path: Build/publish/DSInternals.Passkeys.zip
237-
asset_name: DSInternals.Passkeys.zip
239+
asset_name: DSInternals.Passkeys_v${{ github.event.inputs.release_version }}.zip
238240
asset_content_type: applicaion/zip

Documentation/CHANGELOG.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,22 @@
22

33
All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
44

5-
## [1.0] - 2024-08-12
5+
## [1.0.2] - 2024-08-13
6+
7+
### Fixed
8+
9+
- All assemblies that are part of the PowerShell module and Nuget packages are now digitally signed.
10+
11+
## 1.0.1 - 2024-08-11
12+
13+
### Fixed
14+
15+
- Renamed the `New-MgUserAuthenticationFido2Method` alias to `Register-MgUserAuthenticationFido2Method` because of a naming conflict with `Microsoft Graph PowerShell SDK`.
16+
17+
## [1.0] - 2024-08-11
618

719
- Initial version
820

9-
[Unreleased]: https://github.com/MichaelGrafnetter/webauthn-interop/compare/v1.0...HEAD
21+
[Unreleased]: https://github.com/MichaelGrafnetter/webauthn-interop/compare/v1.0.2...HEAD
22+
[1.0.2]: https://github.com/MichaelGrafnetter/webauthn-interop/compare/v1.0...v1.0.2
1023
[1.0]: https://github.com/MichaelGrafnetter/webauthn-interop/releases/tag/v1.0
50.4 KB
Loading
28.9 KB
Loading

Src/DSInternals.Passkeys/DSInternals.Passkeys.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
RootModule = 'DSInternals.Passkeys.psm1'
99

1010
# Version number of this module.
11-
ModuleVersion = '1.0.1'
11+
ModuleVersion = '1.0.2'
1212

1313
# Supported PSEditions
1414
CompatiblePSEditions = @('Desktop','Core')
@@ -108,7 +108,7 @@ PrivateData = @{
108108
IconUri = 'https://raw.githubusercontent.com/MichaelGrafnetter/DSInternals/master/Src/Icons/module_black.png'
109109

110110
# ReleaseNotes of this module
111-
ReleaseNotes = 'Initial version of the module. Note that the API is currently in public preview (beta).'
111+
ReleaseNotes = 'The module is now properly digitally signed. Note that the API is currently in public preview (beta).'
112112

113113
# Prerelease string of this module
114114
# Prerelease = ''

Src/DSInternals.Win32.WebAuthn.Adapter/DSInternals.Win32.WebAuthn.Adapter.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
<PackageId>DSInternals.Win32.WebAuthn.Adapter</PackageId>
77
<Product>WebAuthn Interop Assembly Adapter</Product>
88
<Title>WebAuthn Interop Assembly Adapter</Title>
9-
<Version>1.0</Version>
10-
<AssemblyVersion>1.0</AssemblyVersion>
11-
<ProductVersion>1.0</ProductVersion>
12-
<FileVersion>1.0</FileVersion>
9+
<Version>1.0.2</Version>
10+
<AssemblyVersion>1.0.2</AssemblyVersion>
11+
<ProductVersion>1.0.2</ProductVersion>
12+
<FileVersion>1.0.2</FileVersion>
1313
<Description>Bridge between Fido2.Models and DSInternals.Win32.WebAuthn packages</Description>
1414
<PackageReleaseNotes>- Initial release.
1515
- Windows 10 1903 or newer is required.</PackageReleaseNotes>

Src/DSInternals.Win32.WebAuthn/DSInternals.Win32.WebAuthn.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
<PackageId>DSInternals.Win32.WebAuthn</PackageId>
99
<Product>WebAuthn Interop Assembly</Product>
1010
<Title>WebAuthn Interop Assembly</Title>
11-
<Version>1.0</Version>
12-
<AssemblyVersion>1.0</AssemblyVersion>
13-
<ProductVersion>1.0</ProductVersion>
14-
<FileVersion>1.0</FileVersion>
11+
<Version>1.0.2</Version>
12+
<AssemblyVersion>1.0.2</AssemblyVersion>
13+
<ProductVersion>1.0.2</ProductVersion>
14+
<FileVersion>1.0.2</FileVersion>
1515
<Description>FIDO2 / W3C Web Authentication .NET Library for Windows Desktop and CLI Applications</Description>
1616
<PackageReleaseNotes>-Initial release.
1717
- Windows 10 1903 or newer is required.

0 commit comments

Comments
 (0)