Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
78cf24e
DC-5044 `prisma-client-js` deprecated (#7219)
aidankmcalister Nov 4, 2025
826d23f
DC-5040 Env Vars via Config (#7227)
aidankmcalister Nov 5, 2025
8270392
urls deprecated (#7226)
aidankmcalister Nov 5, 2025
744eabd
minimum version uodated (#7234)
aidankmcalister Nov 7, 2025
387f246
DC-5043 Middleware removed from docs (#7233)
aidankmcalister Nov 7, 2025
9b8e91b
DC-6174: Remove adapter, engine, directUrl, studio from config (#7256)
ankur-arch Nov 15, 2025
c23edb8
feat: restructure getting started side nav (#7245)
ankur-arch Nov 15, 2025
77cc0b7
feat: update .env docs DC-6204 (#7259)
ankur-arch Nov 17, 2025
d2719d7
fix: clarify config file path better (#7261)
ankur-arch Nov 17, 2025
dee2b9c
Update ORM docs (#7260)
AmanVarshney01 Nov 17, 2025
62d144b
Update guides to use prisma.config.ts (#7243)
nurul3101 Nov 17, 2025
625c9d5
feat: update ppg for other dbs section (#7264)
ankur-arch Nov 17, 2025
21d75d5
feat: update prisma init related changes in other parts (#7267)
ankur-arch Nov 17, 2025
3b12528
Update docs to perform migrations with connection pooling and Prisma …
AmanVarshney01 Nov 17, 2025
6a62234
feat: add mentions of new Prisma Studio (#7270)
ankur-arch Nov 17, 2025
bcb7848
feat: add mention of mongo support coming for P7 (#7271)
ankur-arch Nov 17, 2025
744c7ae
(feat) Removes Accelerate specific instructions for Prisma Postgres (…
nurul3101 Nov 18, 2025
03fff87
Update Cloudflare D1 Guides (#7273)
nurul3101 Nov 18, 2025
7cf2b32
feat: update serverless driver docs (#7272)
ankur-arch Nov 18, 2025
b1543d7
docs(): add v7 migration guide (#7249)
mhartington Nov 18, 2025
3619875
update turso guide (#7274)
AmanVarshney01 Nov 18, 2025
141ef26
(feat) Explicitly running prisma generate after migrate dev command a…
nurul3101 Nov 18, 2025
c2fcbb2
Update nuxt guides (#7275)
AmanVarshney01 Nov 18, 2025
21c2e0c
broken link fix
aidankmcalister Nov 18, 2025
9b0c57d
broken link fixed
aidankmcalister Nov 18, 2025
b7860f3
fix: add SQLite notes (#7277)
ankur-arch Nov 18, 2025
e92f2a3
Prisma 7 merge fix (#7278)
aidankmcalister Nov 18, 2025
c9b6ba4
spell check words added
aidankmcalister Nov 18, 2025
fc72983
Update content/100-getting-started/02-prisma-orm/100-quickstart/200-s…
ankur-arch Nov 18, 2025
45d0bd6
`pgcrypto` added to spellcheck
aidankmcalister Nov 18, 2025
ffbbae0
Update content/100-getting-started/02-prisma-orm/100-quickstart/200-s…
ankur-arch Nov 18, 2025
50e7039
Update content/100-getting-started/02-prisma-orm/100-quickstart/200-s…
ankur-arch Nov 18, 2025
1dae476
Update content/100-getting-started/02-prisma-orm/100-quickstart/200-s…
aidankmcalister Nov 18, 2025
143b0c8
docs(): add note about vscode version pinning (#7279)
mhartington Nov 19, 2025
d108c15
docs(postgres): remove accelerate reference (#7246)
mhartington Nov 19, 2025
3ef0959
docs(metrics): remove metrics API (#7248)
mhartington Nov 19, 2025
b5d891f
fix build errors
AmanVarshney01 Nov 19, 2025
3d5f8a8
fix
AmanVarshney01 Nov 19, 2025
9212a24
Add callout for bun and sqlite (#7280)
AmanVarshney01 Nov 19, 2025
cf88d09
fix: get started path url (#7281)
ankur-arch Nov 19, 2025
2c8b9e5
fix: clarify studio better (#7282)
ankur-arch Nov 19, 2025
96ce008
Merge branch 'main' into prisma-7-merge-conficts
ankur-arch Nov 19, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions .coderabbit.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json
# yaml template to refer to https://docs.coderabbit.ai/reference/yaml-template#enterprise
language: "en-US"
tone_instructions: "You are a principal engineer with natural teaching abilities. You detect issues and clearly explain why."
reviews:
collapse_walkthrough: false
profile: "chill"
Expand All @@ -14,6 +15,7 @@ reviews:
auto_review:
enabled: true
drafts: false
base_branches: [".*"]
finishing_touches:
docstrings:
enabled: false
Expand Down
8 changes: 3 additions & 5 deletions .github/workflows/lychee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ jobs:
--cache
--cache-exclude-status 429,500,502,503,504
--max-cache-age 5m
--verbose
--no-progress
--accept 200,201,204,304,403,429
--timeout 20
Expand All @@ -51,7 +50,6 @@ jobs:
args: >
--cache
--max-cache-age 5m
--verbose
--no-progress
--accept 200,201,204,304,403,429
--cache-exclude-status 429,500,502,503,504
Expand Down Expand Up @@ -81,8 +79,8 @@ jobs:
fi

if [ -n "$REPORT_FILE" ]; then
# Read the original output
ORIGINAL=$(cat "$REPORT_FILE")
# Read the original output and remove everything after 'Redirects per input'
ORIGINAL=$(cat "$REPORT_FILE" | sed '/^##* Redirects per input/,$d')

# Create formatted output
cat > lychee/formatted.md << EOF
Expand All @@ -94,7 +92,7 @@ jobs:

EOF

# Append the original content with title replacement
# Append the cleaned content with title replacement
echo "$ORIGINAL" | sed 's/^# Summary$//' | sed 's/^## Summary$//' >> lychee/formatted.md
fi

Expand Down
16 changes: 13 additions & 3 deletions cSpell.json
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,16 @@
"Superkey",
"superkey",
"Dataguide",
"psql"
"psql",
"pgcrypto",
"Saqui",
"Candycane",
"Silverlake",
"RSPCA",
"Dreamies",
"Treatos",
"Svetlana",
"Queenie"
],
"ignoreWords": [
"Aiven",
Expand Down Expand Up @@ -158,7 +167,8 @@
"Buildpacks",
"Sevalla's",
"Dataguide",
"justinellingwood"
"justinellingwood",
"Millis"
],
"patterns": [
{
Expand Down Expand Up @@ -212,4 +222,4 @@
"HTML Tags"
],
"ignorePaths": []
}
}
159 changes: 0 additions & 159 deletions content/100-getting-started/01-quickstart-prismaPostgres.mdx

This file was deleted.

Loading
Loading