Skip to content

Commit

Permalink
Remove DataStore property on WikiBlazorOptions
Browse files Browse the repository at this point in the history
  • Loading branch information
WilStead committed Dec 3, 2024
1 parent 0163e9f commit 961b62c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: publish
env:
VERSION: '0.11.1-preview'
VERSION: '0.11.2-preview'
PRERELEASE: true
on:
push:
Expand Down
4 changes: 4 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.11.2-preview
### Removed
- Obsolete `DataStore` property on `WikiBlazorOptions`

## 0.11.1-preview
### Fixed
- Editing permissions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,6 @@
{
"$type": ":Page:Article:",
"id": "995978eb-80da-4b2a-88c0-98173a839aa4",
"allowedEditors": [
"c6798a76-7831-4675-959b-2951566ef068"
],
"exists": true,
"owner": "c6798a76-7831-4675-959b-2951566ef068",
"title": {},
Expand Down Expand Up @@ -75,9 +72,6 @@
{
"$type": ":Page:Article:",
"id": "d70e2bb6-7db0-42a2-8578-5bc7bdbb1f1a",
"allowedEditors": [
"c6798a76-7831-4675-959b-2951566ef068"
],
"exists": true,
"owner": "c6798a76-7831-4675-959b-2951566ef068",
"title": {
Expand Down
22 changes: 0 additions & 22 deletions src/Client/Configuration/WikiBlazorOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,28 +86,6 @@ public class WikiBlazorOptions : WikiOptions
/// </summary>
public int? CompactRoutePort { get; set; }

/// <summary>
/// An optional data store which the client can access directly (i.e. without reaching the
/// server).
/// </summary>
/// <remarks>
/// <para>
/// If the <see cref="WikiServerApiRoute"/> has also been defined, the client will try to reach
/// the server first for all wiki operations. If the server cannot be reached or the requested
/// content is unavailable at the server, the client will fall back to the local data store.
/// </para>
/// <para>
/// If both the server and the local data store are unavailable, the wiki will remain
/// operational, but will show no content and will not allow any content to be added.
/// </para>
/// <para>
/// No automatic synchronization occurs from the local data store to the server (for instance
/// when an offline client reestablishes network connectivity). If your app model requires
/// synchronization of offline content to a server, that logic must be implemented separately.
/// </para>
/// </remarks>
public virtual IDataStore? DataStore { get; set; }

/// <summary>
/// <para>
/// The minimum permission the user must have in order to create an archive of a domain.
Expand Down

0 comments on commit 961b62c

Please sign in to comment.