@lobehub/chat 1.92.1 → 1.92.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +25 -0
- package/changelog/v1.json +9 -0
- package/package.json +1 -1
- package/src/database/migrations/0024_add_rbac_tables.sql +49 -0
- package/src/database/migrations/meta/0024_snapshot.json +6192 -0
- package/src/database/migrations/meta/_journal.json +7 -0
- package/src/database/schemas/index.ts +1 -0
- package/src/database/schemas/rbac.ts +82 -0
- package/src/libs/model-runtime/azureOpenai/index.ts +47 -23
package/CHANGELOG.md
CHANGED
@@ -2,6 +2,31 @@
|
|
2
2
|
|
3
3
|
# Changelog
|
4
4
|
|
5
|
+
### [Version 1.92.2](https://github.com/lobehub/lobe-chat/compare/v1.92.1...v1.92.2)
|
6
|
+
|
7
|
+
<sup>Released on **2025-06-07**</sup>
|
8
|
+
|
9
|
+
#### 💄 Styles
|
10
|
+
|
11
|
+
- **misc**: Add support to azureopenai embedding.
|
12
|
+
|
13
|
+
<br/>
|
14
|
+
|
15
|
+
<details>
|
16
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
17
|
+
|
18
|
+
#### Styles
|
19
|
+
|
20
|
+
- **misc**: Add support to azureopenai embedding, closes [#8075](https://github.com/lobehub/lobe-chat/issues/8075) ([0725f94](https://github.com/lobehub/lobe-chat/commit/0725f94))
|
21
|
+
|
22
|
+
</details>
|
23
|
+
|
24
|
+
<div align="right">
|
25
|
+
|
26
|
+
[](#readme-top)
|
27
|
+
|
28
|
+
</div>
|
29
|
+
|
5
30
|
### [Version 1.92.1](https://github.com/lobehub/lobe-chat/compare/v1.92.0...v1.92.1)
|
6
31
|
|
7
32
|
<sup>Released on **2025-06-07**</sup>
|
package/changelog/v1.json
CHANGED
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@lobehub/chat",
|
3
|
-
"version": "1.92.
|
3
|
+
"version": "1.92.2",
|
4
4
|
"description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
|
5
5
|
"keywords": [
|
6
6
|
"framework",
|
@@ -0,0 +1,49 @@
|
|
1
|
+
CREATE TABLE "rbac_permissions" (
|
2
|
+
"id" integer PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY (sequence name "rbac_permissions_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1),
|
3
|
+
"code" text NOT NULL,
|
4
|
+
"name" text NOT NULL,
|
5
|
+
"description" text,
|
6
|
+
"category" text NOT NULL,
|
7
|
+
"is_active" boolean DEFAULT true NOT NULL,
|
8
|
+
"accessed_at" timestamp with time zone DEFAULT now() NOT NULL,
|
9
|
+
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
|
10
|
+
"updated_at" timestamp with time zone DEFAULT now() NOT NULL,
|
11
|
+
CONSTRAINT "rbac_permissions_code_unique" UNIQUE("code")
|
12
|
+
);
|
13
|
+
--> statement-breakpoint
|
14
|
+
CREATE TABLE "rbac_role_permissions" (
|
15
|
+
"role_id" integer NOT NULL,
|
16
|
+
"permission_id" integer NOT NULL,
|
17
|
+
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
|
18
|
+
CONSTRAINT "rbac_role_permissions_role_id_permission_id_pk" PRIMARY KEY("role_id","permission_id")
|
19
|
+
);
|
20
|
+
--> statement-breakpoint
|
21
|
+
CREATE TABLE "rbac_roles" (
|
22
|
+
"id" integer PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY (sequence name "rbac_roles_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1),
|
23
|
+
"name" text NOT NULL,
|
24
|
+
"display_name" text NOT NULL,
|
25
|
+
"description" text,
|
26
|
+
"is_system" boolean DEFAULT false NOT NULL,
|
27
|
+
"is_active" boolean DEFAULT true NOT NULL,
|
28
|
+
"accessed_at" timestamp with time zone DEFAULT now() NOT NULL,
|
29
|
+
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
|
30
|
+
"updated_at" timestamp with time zone DEFAULT now() NOT NULL,
|
31
|
+
CONSTRAINT "rbac_roles_name_unique" UNIQUE("name")
|
32
|
+
);
|
33
|
+
--> statement-breakpoint
|
34
|
+
CREATE TABLE "rbac_user_roles" (
|
35
|
+
"user_id" text NOT NULL,
|
36
|
+
"role_id" integer NOT NULL,
|
37
|
+
"created_at" timestamp with time zone DEFAULT now() NOT NULL,
|
38
|
+
"expires_at" timestamp with time zone,
|
39
|
+
CONSTRAINT "rbac_user_roles_user_id_role_id_pk" PRIMARY KEY("user_id","role_id")
|
40
|
+
);
|
41
|
+
--> statement-breakpoint
|
42
|
+
ALTER TABLE "rbac_role_permissions" ADD CONSTRAINT "rbac_role_permissions_role_id_rbac_roles_id_fk" FOREIGN KEY ("role_id") REFERENCES "public"."rbac_roles"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
|
43
|
+
ALTER TABLE "rbac_role_permissions" ADD CONSTRAINT "rbac_role_permissions_permission_id_rbac_permissions_id_fk" FOREIGN KEY ("permission_id") REFERENCES "public"."rbac_permissions"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
|
44
|
+
ALTER TABLE "rbac_user_roles" ADD CONSTRAINT "rbac_user_roles_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
|
45
|
+
ALTER TABLE "rbac_user_roles" ADD CONSTRAINT "rbac_user_roles_role_id_rbac_roles_id_fk" FOREIGN KEY ("role_id") REFERENCES "public"."rbac_roles"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
|
46
|
+
CREATE INDEX "rbac_role_permissions_role_id_idx" ON "rbac_role_permissions" USING btree ("role_id");--> statement-breakpoint
|
47
|
+
CREATE INDEX "rbac_role_permissions_permission_id_idx" ON "rbac_role_permissions" USING btree ("permission_id");--> statement-breakpoint
|
48
|
+
CREATE INDEX "rbac_user_roles_user_id_idx" ON "rbac_user_roles" USING btree ("user_id");--> statement-breakpoint
|
49
|
+
CREATE INDEX "rbac_user_roles_role_id_idx" ON "rbac_user_roles" USING btree ("role_id");
|