Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] authored and srenatus committed Nov 1, 2024
1 parent 3920db7 commit 093bdc8
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 26 deletions.
25 changes: 0 additions & 25 deletions .changeset/tiny-tools-share.md

This file was deleted.

26 changes: 26 additions & 0 deletions packages/ucast-prisma/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# @styra/ucast-prisma

## 0.0.4

### Patch Changes

- 3920db7: Introduce laxer handling of empty compound conditions

This aligns better with common Rego patterns, like using multi-value
rules for generating conditions:

```rego
conditions.or contains {"tickets.resolved": false} if { ... }
```

If the RHS is not satisfied, the conditions would yield

```json
{
"conditions": {
"or": []
}
}
```

and with this change, this will be valid. The condition itself is
going to be dropped.

## 0.0.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/ucast-prisma/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@styra/ucast-prisma",
"version": "0.0.3",
"version": "0.0.4",
"repository": {
"type": "git",
"url": "https://github.com/StyraInc/opa-typescript.git",
Expand Down

0 comments on commit 093bdc8

Please sign in to comment.