OwlCore.Nomad.Storage 0.8.1

dotnet add package OwlCore.Nomad.Storage --version 0.8.1                
NuGet\Install-Package OwlCore.Nomad.Storage -Version 0.8.1                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="OwlCore.Nomad.Storage" Version="0.8.1" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add OwlCore.Nomad.Storage --version 0.8.1                
#r "nuget: OwlCore.Nomad.Storage, 0.8.1"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install OwlCore.Nomad.Storage as a Cake Addin
#addin nuget:?package=OwlCore.Nomad.Storage&version=0.8.1

// Install OwlCore.Nomad.Storage as a Cake Tool
#tool nuget:?package=OwlCore.Nomad.Storage&version=0.8.1                

Package Description

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on OwlCore.Nomad.Storage:

Package Downloads
OwlCore.Nomad.Storage.Kubo

A storage implementation powered by shared event sourcing on IPFS.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.8.1 142 9/14/2024
0.8.0 282 8/23/2024
0.7.0 280 8/12/2024
0.6.0 95 8/3/2024
0.5.0 82 8/3/2024
0.4.1 48 8/3/2024
0.4.0 135 7/17/2024
0.3.0 151 7/1/2024
0.2.0 141 6/2/2024
0.1.0 79 6/1/2024
0.0.0 166 4/28/2024

--- 0.8.1 ---
[Fixes]
Inherited fixes from OwlCore.ComponentModel 0.9.1 via OwlCore.Nomad 0.8.1 and OwlCore.Extensions 0.9.1.

--- 0.8.0 ---
[Breaking]
Inherited and implemented breaking changes from OwlCore.Nomad 0.8.0.
Removed ReadOnlyNomadFile and ReadOnlyNomadFolder. 'ReadOnly' doesn't require an event stream handler, since it can be constructed from the published roaming snapshot without an event stream.

--- 0.7.0 ---
[Breaking]
Inherited and implemented breaking changes from OwlCore.Nomad 0.7.0.
StorageUpdateEvent was renamed to FolderUpdateEvent.
FileUpdateEvent was removed and should be defined by the Implementor. File update events cannot be serialized without knowing the generic.
Abstract method ReadOnlyNomadFile.ApplyEntryUpdateAsync was removed. Method signature should be defined in derived class instead.
Abstract method NomadFile.ApplyEntryUpdateAsync was removed. Method signature should be defined in derived class instead.
Abstract method NomadFolder.ApplyEntryUpdateAsync was removed. Method signature should be defined in derived class instead.
EventId used for folder updates now use nameof(ClassName) instead of a hardcoded string.
Abstract class NomadFile no longer implements IModifiableSharedEventStreamHandler since file update events cannot be serialized without knowing the generic.

--- 0.6.0 ---
[Breaking]
Inherited and implemented breaking changes from OwlCore.Nomad 0.6.0.

--- 0.5.0 ---
[Breaking]
Added class constraint to TContentPointer throughout the library.
Implementors of ReadOnlyNomadFolder must implement the new abstract methods FileDataToInstanceAsync and FolderDataToInstanceAsync and advance their event stream before returning.

[New]
Added NomadFileData{TContentPointer} and NomadFolderData{TContentPointer} classes for publishing to roaming.
Added FileUpdateEvent{TContentPointer} for publishing updates to a file pointer in an event stream.

[Improvements]
ReadOnlyNomadFolder now implements IGetRoot instead of relying on fallback extension method and recursive GetParentAsync calls.
ReadOnlyNomadFolder now implements IDelegable{NomadFolderData{TContentPointer}} instead of using arbitrary properties to hold current state.
ReadOnlyNomadFile now implements IDelegable{NomadFileData{TContentPointer}} instead of using arbitrary properties to hold current state.

--- 0.4.1 ---
[Improvements]
Bumped OwlCore.Nomad to 0.5.1, which bumps OwlCore.ComponentModel to 0.8.2.

--- 0.4.0 ---
[Breaking]
Migrated to and inherited breaking changes from OwlCore.Nomad 0.5.0.
     
--- 0.3.0 ---
[Breaking]
Migrated to and inherited breaking changes from OwlCore.Nomad 0.4.0.

--- 0.2.0 ---
[Breaking]
Fixed namespaces for NomadFile, NomadFolder, ReadOnlyNomadFile and ReadOnlyNomadFolder.
     
--- 0.1.0 ---
[Breaking]
Inherited breaking changes from OwlCore.Nomad v0.3.0.

[Improvements]
Updated to OwlCore.Storage 0.11.1.

--- 0.0.0 ---
[New]
Initial release of OwlCore.Nomad.Storage.