Skip to content

v0.24.1

Latest

Choose a tag to compare

@iamceeso iamceeso released this 21 Aug 04:44
· 16 commits to main since this release

VeriKit v0.24.1

This patch fixes compatibility between Core resources and Runtime action schemas.

Fixed

  • Fixed @verikit/core resource action typing so ActionBuilder instances from @verikit/runtime can be passed directly to a resource's actions configuration.
  • Removed the overly restrictive action schema typing that caused valid Runtime actions to fail TypeScript checks.

Resources can now define runtime actions as expected:

actions: [
  action("create"),
  action("update"),
  action("delete"),
]

Upgrade

pnpm add "@verikit/core@^0.24.1" \
  "@verikit/drizzle@^0.24.1" \
  "@verikit/runtime@^0.24.1" \
  "@verikit/server@^0.24.1" \
  "@verikit/theme@^0.24.1" \
  "@verikit/vue@^0.24.1"

Full Changelog: v0.24.0...v0.24.1