Skip to content

Commit

Permalink
feat: Version bump to release v1.5.2
Browse files Browse the repository at this point in the history
The project version has been incremented from 1.5.1 to 1.5.2 - see README for breaking changes
  • Loading branch information
tanczosm committed May 20, 2024
1 parent 097ed95 commit 160c40f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,12 +176,16 @@ Atomically bulk deletes all relationships matching the provided filters, with op
- `resourceFilter` - The filter to apply to the resource part of the relationships. The resourceFilter.Type is required; all other fields are optional.
- `optionalSubjectFilter` (optional) - An optional additional filter for the subject part of the relationships.
- `optionalPreconditions` (optional) - An optional list of preconditions that must be satisfied for the operation to commit.
- `allowPartialDeletions` (optional) - If true and a limit is specified, will delete matching found relationships up to the count specified in limit, and no more.
- `limit` (optional) if non-zero, specifies the limit on the number of relationships to be deleted. If there are more matching relationships found to be deleted than the limit specified here,
the deletion call will fail with an error to prevent partial deletion. If partial deletion is needed, specify below that partial deletion is allowed. Partial deletions can be used
in a loop to delete large amounts of relationships in a *non-transactional* manner.</param>
- `deadline` (optional) - An optional deadline for the call. The operation will be cancelled if the deadline is reached.
- `cancellationToken` (optional) - An optional token for cancelling the call.

**Returns**

- A task representing the asynchronous operation, with a `ZedToken?` indicating the version of the data after the delete operation.
- DeleteRelationshipsResponse object that contains a ZedToken representing the point of deletion and an indicator of deletion progress

### CheckPermissionAsync

Expand Down
2 changes: 1 addition & 1 deletion SpiceDb/SpiceDb.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<PackageIcon>logo.png</PackageIcon>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Version>1.5.1</Version>
<Version>1.5.2</Version>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
Expand Down

0 comments on commit 160c40f

Please sign in to comment.