From 4850a96957b6d2223d0fa5c8cc741b44823032f8 Mon Sep 17 00:00:00 2001 From: ymc9 <104139426+ymc9@users.noreply.github.com> Date: Tue, 7 Jan 2025 23:56:42 +0800 Subject: [PATCH] chore: update README and CHANGELOG --- README.md | 3 ++- packages/ide/jetbrains/CHANGELOG.md | 6 ++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 75cab857b..8c5754d4c 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ ## What it is -ZenStack is a Node.js/TypeScript toolkit that simplifies the development of a web app's backend. It enhances [Prisma ORM](https://prisma.io) with a flexible Authorization layer and auto-generated, type-safe APIs/hooks, unlocking its full potential for full-stack development. +ZenStack is a Node.js/TypeScript toolkit that simplifies the development of web applications. It enhances [Prisma ORM](https://prisma.io) with a flexible Authorization layer and auto-generated, type-safe APIs/hooks, unlocking its full potential for full-stack development. Our goal is to let you save time writing boilerplate code and focus on building real features! @@ -181,6 +181,7 @@ The following diagram gives a high-level architecture overview of ZenStack. - [Multi-file schema and model inheritance](https://zenstack.dev/docs/guides/multiple-schema) - [Polymorphic Relations](https://zenstack.dev/docs/guides/polymorphism) - [Strongly typed JSON field](https://zenstack.dev/docs/guides/typing-json) +- [Field encryption](https://zenstack.dev/docs/guides/field-encryption) - 🙋🏻 [Request for an extension](https://discord.gg/Ykhr738dUe) ## Examples diff --git a/packages/ide/jetbrains/CHANGELOG.md b/packages/ide/jetbrains/CHANGELOG.md index 48cdd8b69..fb71572bd 100644 --- a/packages/ide/jetbrains/CHANGELOG.md +++ b/packages/ide/jetbrains/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +### Added + +- Field encryption attribute `@encrypted`. + +## 2.9.3 + ### Fixed - Proper semantic highlighting and formatting for type declarations.