OwlCore.Nomad.Storage
0.8.0
See the version list below for details.
dotnet add package OwlCore.Nomad.Storage --version 0.8.0
NuGet\Install-Package OwlCore.Nomad.Storage -Version 0.8.0
<PackageReference Include="OwlCore.Nomad.Storage" Version="0.8.0" />
paket add OwlCore.Nomad.Storage --version 0.8.0
#r "nuget: OwlCore.Nomad.Storage, 0.8.0"
// Install OwlCore.Nomad.Storage as a Cake Addin #addin nuget:?package=OwlCore.Nomad.Storage&version=0.8.0 // Install OwlCore.Nomad.Storage as a Cake Tool #tool nuget:?package=OwlCore.Nomad.Storage&version=0.8.0
Package Description
Product | Versions 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. |
-
.NETStandard 2.0
- Microsoft.Bcl.AsyncInterfaces (>= 8.0.0)
- Newtonsoft.Json (>= 13.0.3)
- OwlCore.Extensions (>= 0.8.0)
- OwlCore.Nomad (>= 0.8.0)
- OwlCore.Storage (>= 0.11.3)
- System.Linq.Async (>= 6.0.1)
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.
--- 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.