From 28b55a086a2f0894e87b16e9316a2514d8e10863 Mon Sep 17 00:00:00 2001 From: Arlo Date: Thu, 20 Jun 2024 16:38:21 -0500 Subject: [PATCH 1/2] Bump patch version to 0.11.2 and update release notes --- src/OwlCore.Storage.csproj | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/OwlCore.Storage.csproj b/src/OwlCore.Storage.csproj index ddf9e7c..9a795c5 100644 --- a/src/OwlCore.Storage.csproj +++ b/src/OwlCore.Storage.csproj @@ -1,4 +1,4 @@ - + netstandard2.0 enable @@ -14,7 +14,7 @@ $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb Arlo Godfrey - 0.11.1 + 0.11.2 OwlCore The most flexible file system abstraction, ever. Built in partnership with the UWP Community. @@ -23,6 +23,10 @@ LICENSE.txt logo.png +--- 0.11.2 --- +[Fixes] +Fixed an issue where the stream returned from `File.Open` does synchronous operations on the file and didn't support cancellation during read/write. The underlying operating system now gives us an asynchronous file stream to do true async reads/writes. + --- 0.11.1 --- [Fixes] Fixed an issue where SystemFolderWatcher would not capture any file system events. From 45e875c8949ee4d829dcca0809d27a7b36573258 Mon Sep 17 00:00:00 2001 From: Arlo Date: Thu, 20 Jun 2024 16:58:44 -0500 Subject: [PATCH 2/2] Update release notes for version 0.11.2 Update release notes in `src/OwlCore.Storage.csproj` for version 0.11.2 to include fixes from PR #57. - Adds a new entry under `` detailing the fix for the issue where `SystemFolder` was not properly utilizing lazy-loading for `DirectoryInfo` (`Info` property) when only the path is available. This complements the existing note about fixing synchronous operations in `File.Open`. --- For more details, open the [Copilot Workspace session](https://copilot-workspace.githubnext.com/Arlodotexe/OwlCore.Storage/pull/59?shareId=c896c4b6-1e78-463d-a433-260f2bfe7187). --- src/OwlCore.Storage.csproj | 1 + 1 file changed, 1 insertion(+) diff --git a/src/OwlCore.Storage.csproj b/src/OwlCore.Storage.csproj index 9a795c5..6da32cb 100644 --- a/src/OwlCore.Storage.csproj +++ b/src/OwlCore.Storage.csproj @@ -26,6 +26,7 @@ --- 0.11.2 --- [Fixes] Fixed an issue where the stream returned from `File.Open` does synchronous operations on the file and didn't support cancellation during read/write. The underlying operating system now gives us an asynchronous file stream to do true async reads/writes. +Fixed an issue where SystemFolder is not properly making use of lazy-loading for DirectoryInfo (`Info` property) when we only have the path. In some use cases having the directory info pre-loaded can be unnecessary and slows down performance especially when enumerating large folders. --- 0.11.1 --- [Fixes]