Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: actions/checkout@v4

- name: Install Buf
uses: bufbuild/buf-setup-action@v1.38.0
uses: bufbuild/buf-setup-action@v1.39.0
with:
github_token: ${{ github.token }}

Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "cerbos-sdk-javascript",
"private": true,
"packageManager": "pnpm@9.8.0",
"packageManager": "pnpm@9.9.0",
"engines": {
"node": "22.6.0",
"pnpm": "9.8.0"
"pnpm": "9.9.0"
},
"scripts": {
"all:parallel": "concurrently --group --prefix=none",
Expand Down Expand Up @@ -55,9 +55,9 @@
"@microsoft/api-extractor": "7.47.7",
"@tsconfig/node18": "18.2.4",
"@tsconfig/strictest": "2.0.5",
"@types/node": "18.19.45",
"@typescript-eslint/eslint-plugin": "8.2.0",
"@typescript-eslint/parser": "8.2.0",
"@types/node": "18.19.47",
"@typescript-eslint/eslint-plugin": "8.3.0",
"@typescript-eslint/parser": "8.3.0",
"concurrently": "8.2.2",
"depcheck": "1.4.7",
"eslint": "8.57.0",
Expand All @@ -66,7 +66,7 @@
"prettier": "3.3.3",
"prettier-plugin-pkg": "0.18.1",
"ts-proto": "2.0.3",
"tsx": "4.17.0",
"tsx": "4.19.0",
"typescript": "5.5.4"
}
}
2 changes: 2 additions & 0 deletions packages/core/src/convert/fromProtobuf.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable @typescript-eslint/no-deprecated */

import type {
AuditTrail as AuditTrailProtobuf,
DecisionLogEntry as DecisionLogEntryProtobuf,
Expand Down
2 changes: 2 additions & 0 deletions packages/core/src/convert/toProtobuf.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
/* eslint-disable @typescript-eslint/no-deprecated */

import { v4 as uuidv4 } from "uuid";

import { Effect as EffectProtobuf } from "../protobuf/cerbos/effect/v1/effect";
Expand Down
Loading