Updated changelog to v 4.5

This commit is contained in:
Michael Grafnetter 2021-10-13 00:07:33 +02:00
parent 63f9e84651
commit 5f912aa6b3
3 changed files with 20 additions and 5 deletions

View File

@ -9,6 +9,17 @@ All notable changes to this project will be documented in this file. The format
- The PowerShell module now advertizes `Desktop` as the required edition. Note that *PowerShell Core* is not supported because of heavy dependency on Win32 API. - The PowerShell module now advertizes `Desktop` as the required edition. Note that *PowerShell Core* is not supported because of heavy dependency on Win32 API.
## [4.5] - 2021-10-14
### Fixed
- Added support for ntds.dit files with conflicting defunct attributes.
- Fixed the detection of default computer passwords.
- Improved parsing of roaming CNG private keys.
### Changed
- Updated the target .NET Framework to 4.7.2.
## [4.4.1] - 2020-07-18 ## [4.4.1] - 2020-07-18
### Fixed ### Fixed
@ -399,7 +410,8 @@ This is a [Chocolatey](https://chocolatey.org/packages/dsinternals-psmodule)-onl
## 1.0 - 2015-01-20 ## 1.0 - 2015-01-20
Initial release! Initial release!
[Unreleased]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.4.1...HEAD [Unreleased]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.5...HEAD
[4.5]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.4.1...v4.5
[4.4.1]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.4...v4.4.1 [4.4.1]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.4...v4.4.1
[4.4]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.3...v4.4 [4.4]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.3...v4.4
[4.3]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.2...v4.3 [4.3]: https://github.com/MichaelGrafnetter/DSInternals/compare/v4.2...v4.3

View File

@ -3,14 +3,14 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd"> <package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata> <metadata>
<id>DSInternals-PSModule</id> <id>DSInternals-PSModule</id>
<version>4.4.1</version> <version>4.5</version>
<packageSourceUrl>https://github.com/MichaelGrafnetter/DSInternals/tree/master/Src/DSInternals.PowerShell/Chocolatey</packageSourceUrl> <packageSourceUrl>https://github.com/MichaelGrafnetter/DSInternals/tree/master/Src/DSInternals.PowerShell/Chocolatey</packageSourceUrl>
<owners>MichaelGrafnetter</owners> <owners>MichaelGrafnetter</owners>
<title>DSInternals PowerShell Module</title> <title>DSInternals PowerShell Module</title>
<authors>Michael Grafnetter</authors> <authors>Michael Grafnetter</authors>
<projectUrl>https://github.com/MichaelGrafnetter/DSInternals</projectUrl> <projectUrl>https://github.com/MichaelGrafnetter/DSInternals</projectUrl>
<iconUrl>https://raw.githubusercontent.com/MichaelGrafnetter/DSInternals/master/Src/Icons/module_black.png</iconUrl> <iconUrl>https://raw.githubusercontent.com/MichaelGrafnetter/DSInternals/master/Src/Icons/module_black.png</iconUrl>
<copyright>(c) 2015-2020 Michael Grafnetter. All rights reserved.</copyright> <copyright>(c) 2015-2021 Michael Grafnetter. All rights reserved.</copyright>
<licenseUrl>https://github.com/MichaelGrafnetter/DSInternals/blob/master/Src/DSInternals.PowerShell/License.txt</licenseUrl> <licenseUrl>https://github.com/MichaelGrafnetter/DSInternals/blob/master/Src/DSInternals.PowerShell/License.txt</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance> <requireLicenseAcceptance>false</requireLicenseAcceptance>
<projectSourceUrl>https://github.com/MichaelGrafnetter/DSInternals/tree/master/Src</projectSourceUrl> <projectSourceUrl>https://github.com/MichaelGrafnetter/DSInternals/tree/master/Src</projectSourceUrl>
@ -37,7 +37,10 @@
## Disclaimer ## Disclaimer
Features exposed through these tools are not supported by Microsoft. Improper use might cause irreversible damage to domain controllers or negatively impact domain security.</description> Features exposed through these tools are not supported by Microsoft. Improper use might cause irreversible damage to domain controllers or negatively impact domain security.</description>
<releaseNotes> <releaseNotes>
* Fixed an issue that prevented the DSInternals.Replication.Interop.dll file from being loaded. * Added support for ntds.dit files with conflicting defunct attributes.
* Fixed the detection of default computer passwords.
* Improved parsing of roaming CNG private keys.
* Updated the target .NET Framework to 4.7.2.
</releaseNotes> </releaseNotes>
<dependencies> <dependencies>
<!-- Windows Management Framework 3+. For OS prior to Windows 8 and Windows Server 2012. --> <!-- Windows Management Framework 3+. For OS prior to Windows 8 and Windows Server 2012. -->

View File

@ -8,7 +8,7 @@ DSInternals PowerShell Module and Framework
The MIT License (MIT) The MIT License (MIT)
Copyright (c) 2015-2020 Michael Grafnetter Copyright (c) 2015-2021 Michael Grafnetter
Permission is hereby granted, free of charge, to any person obtaining a copy Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal of this software and associated documentation files (the "Software"), to deal