@windrun-huaiin/diaomao 29.0.0 → 29.1.0
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/.env.local.txt +3 -3
- package/package.json +6 -6
- package/src/lib/site-config.ts +1 -1
- package/src/lib/site-docs-base.ts +1 -1
- package/src/mdx/blog/index.mdx +1 -1
- package/src/mdx/blog/ioc.mdx +1 -1
- package/src/proxy.ts +1 -1
package/.env.local.txt
CHANGED
|
@@ -140,14 +140,14 @@ CREDITS_ONE_TIME_EXPIRED_DAYS=30
|
|
|
140
140
|
## Project->Database->Settings->ResetPassword
|
|
141
141
|
#### Transaction Mode, IPv4 supported, great concurrency performance, Prisma prepared statements not supported
|
|
142
142
|
## ⚠️⚠️DO NOT use sslmode=require/no-verify, but config SSL cert env: SUPABASE_DB_CA_CERT
|
|
143
|
-
## DATABASE_URL="postgresql://YOURS_app.PROJECT_ID:PASSWORD@SERVER_HOST.pooler.supabase.com:6543/postgres?
|
|
143
|
+
## DATABASE_URL="postgresql://YOURS_app.PROJECT_ID:PASSWORD@SERVER_HOST.pooler.supabase.com:6543/postgres?schema=YOURS&pgbouncer=true"
|
|
144
144
|
#### Session Mode, IPv4 supported, consumes connections with slightly poorer concurrency performance, but supports Prisma prepared statements
|
|
145
|
-
## DATABASE_URL="postgresql://YOURS_app.PROJECT_ID:PASSWORD@SERVER_HOST.pooler.supabase.com:5432/postgres?
|
|
145
|
+
## DATABASE_URL="postgresql://YOURS_app.PROJECT_ID:PASSWORD@SERVER_HOST.pooler.supabase.com:5432/postgres?schema=YOURS"
|
|
146
146
|
|
|
147
147
|
# DB Config, Local Supabase Docker Image
|
|
148
148
|
## 🚨⚠️Superuser Account Access🚨⚠️, extremely high risk, will completely invalidate multi-schema permission isolation for one database
|
|
149
|
-
## DATABASE_URL="postgresql://postgres:YOURS_PASSWORD@localhost:5432/postgres?schema=YOURS"
|
|
150
149
|
## Project dedicated account access, recommended, ⚠️⚠️ windrun-huaiin/backend-core has limited safety, so in local env you should siable ssl
|
|
150
|
+
## DATABASE_URL="postgresql://postgres:YOURS_PASSWORD@localhost:5432/postgres?sslmode=disable&schema=YOURS"
|
|
151
151
|
# DB Config, replace YOUR port、db name、schema
|
|
152
152
|
DATABASE_URL="postgresql://YOURS_app:YOURS_PASSWORD@localhost:5432/postgres?sslmode=disable&schema=YOURS"
|
|
153
153
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@windrun-huaiin/diaomao",
|
|
3
|
-
"version": "29.
|
|
3
|
+
"version": "29.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"dependencies": {
|
|
18
18
|
"@clerk/nextjs": "^7.0.5",
|
|
19
19
|
"@types/mdx": "^2.0.13",
|
|
20
|
-
"@windrun-huaiin/backend-core": "29.0.
|
|
21
|
-
"@windrun-huaiin/base-ui": "29.0.
|
|
20
|
+
"@windrun-huaiin/backend-core": "29.0.3",
|
|
21
|
+
"@windrun-huaiin/base-ui": "29.0.2",
|
|
22
22
|
"@windrun-huaiin/contracts": "29.0.0",
|
|
23
23
|
"@windrun-huaiin/fumadocs-local-md": "29.0.0",
|
|
24
24
|
"@windrun-huaiin/lib": "29.0.0",
|
|
25
|
-
"@windrun-huaiin/third-ui": "29.
|
|
25
|
+
"@windrun-huaiin/third-ui": "29.2.1",
|
|
26
26
|
"clsx": "^2.1.1",
|
|
27
27
|
"lucide-react": "^0.577.0",
|
|
28
28
|
"next": "16.1.6",
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@changesets/cli": "^2.29.8",
|
|
38
|
-
"@prisma/client": "^7.8.0",
|
|
39
38
|
"@prisma/adapter-pg": "^7.8.0",
|
|
39
|
+
"@prisma/client": "^7.8.0",
|
|
40
40
|
"@tailwindcss/postcss": "^4.2.1",
|
|
41
41
|
"@types/hast": "^3.0.4",
|
|
42
42
|
"@types/node": "^25.3.2",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"@types/react-dom": "^19.2.3",
|
|
46
46
|
"@typescript-eslint/parser": "^8.56.1",
|
|
47
47
|
"@windrun-huaiin/dev-scripts": "^29.0.1",
|
|
48
|
-
"dotenv": "^17.4.2",
|
|
49
48
|
"baseline-browser-mapping": "^2.10.0",
|
|
49
|
+
"dotenv": "^17.4.2",
|
|
50
50
|
"eslint": "^9.39.1",
|
|
51
51
|
"eslint-config-next": "^16.1.6",
|
|
52
52
|
"eslint-plugin-unused-imports": "^4.4.1",
|
package/src/lib/site-config.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { getGlobalIcon, globalLucideIcons } from '@windrun-huaiin/base-ui/components/
|
|
1
|
+
import { getGlobalIcon, globalLucideIcons } from '@windrun-huaiin/base-ui/components/shared';
|
|
2
2
|
import { createConfiguredLocalMdSourceFactory } from '@windrun-huaiin/fumadocs-local-md/server/source';
|
|
3
3
|
import {
|
|
4
4
|
createFumaDocsBaseCompilerOptions,
|
package/src/mdx/blog/index.mdx
CHANGED
package/src/mdx/blog/ioc.mdx
CHANGED
package/src/proxy.ts
CHANGED
|
@@ -103,7 +103,7 @@ export default clerkMiddleware(
|
|
|
103
103
|
export const config = {
|
|
104
104
|
matcher: [
|
|
105
105
|
// Skip Next.js internals and all static files, but include API routes
|
|
106
|
-
"/((?!_next|\\.well-known|sitemap.xml?|robots.txt?|[^?]
|
|
106
|
+
"/((?!_next|\\.well-known|sitemap.xml?|robots.txt?|[^?]*\\.(?:html?|css|js(?!on)|jpe?g|webp|png|gif|svg|ttf|woff2?|ico|csv|docx?|xlsx?|zip|webmanifest)(?:$|\\?)).*)",
|
|
107
107
|
// Include API routes explicitly
|
|
108
108
|
"/api/(.*)",
|
|
109
109
|
],
|