-
Notifications
You must be signed in to change notification settings - Fork 103
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into dprice-bemi-guide
- Loading branch information
Showing
1,619 changed files
with
37,926 additions
and
31,494 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Format Markdown | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
paths: | ||
- 'content/**/*.md' | ||
|
||
jobs: | ||
format-markdown: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 2 | ||
token: ${{ secrets.ACCESS_TOKEN }} | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install Prettier | ||
run: npm install prettier | ||
|
||
- name: Run Prettier | ||
run: npx prettier --write "content/**/*.md" --ignore-path .prettierignore | ||
|
||
- name: Commit changes | ||
run: | | ||
git config user.name "GitHub Action" | ||
git config user.email "[email protected]" | ||
export HUSKY=0 | ||
git add -A | ||
# Check for meaningful changes before committing | ||
if [ -n "$(git status --porcelain)" ]; then | ||
# Commit only modified markdown files, not all changes | ||
git commit -m "chore: format content markdown files with Prettier" | ||
echo "Changes committed" | ||
else | ||
echo "No significant changes to commit" | ||
exit 0 | ||
fi | ||
- name: Pull latest changes | ||
run: git pull --rebase | ||
|
||
- name: Push changes | ||
run: git push | ||
env: | ||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,3 +85,4 @@ public/md | |
|
||
content/docs/guides/time_travel_tutorial_before-1.png | ||
yarn.lock | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Validating CODEOWNERS rules …
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/content/docs/ @danieltprice | ||
/src/ @andrewgolovanov @k8isdead | ||
_.js @andrewgolovanov @k8isdead | ||
_.jsx @andrewgolovanov @k8isdead | ||
/src/ @andrewgolovanov @americano98 | ||
_.js @andrewgolovanov @americano98 | ||
_.jsx @andrewgolovanov @americano98 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,7 +19,7 @@ Updated Neon's branching capabilities. The following enhancements were introduce | |
|
||
For more information about Neon's branching capabilities, see [Branching](/docs/introduction/branching), and [Manage branches](/docs/manage/branches). | ||
|
||
_Neon Branching capabilities are not yet publicly available. If you would like to try this feature, contact us at [[email protected]](mailto:[email protected]), describing your use case and requesting that Neon enable branching for your account._ | ||
_Neon Branching capabilities are not yet publicly available. If you would like to try this feature, contact us at [[email protected]](mailto:[email protected]), describing your use case and requesting that Neon enable branching for your account._ | ||
|
||
### Connection string changes | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ redirectFrom: | |
postgres://alex:[email protected]/dbname | ||
``` | ||
|
||
Connections that do not specify the `-pooler` suffix connect to the database directly. The ability to enable pooling for individual connections supports workflows that require both pooled and non-pooled connections to the same database. For example, serverless applications that use Prisma Client require a pooled connection, while Prisma Migrate requires a direct connection to the database. For more information, see [Enable connection pooling](/docs/connect/connection-pooling#enable-connection-pooling). | ||
Connections that do not specify the `-pooler` suffix connect to the database directly. The ability to enable pooling for individual connections supports workflows that require both pooled and non-pooled connections to the same database. For example, serverless applications that use Prisma Client require a pooled connection, while Prisma Migrate requires a direct connection to the database. For more information, see [How to use connection pooling](/docs/connect/connection-pooling#how-to-use-connection-pooling). | ||
|
||
The previous method of enabling connection pooling for a compute endpoint is deprecated. When switching to the new per-connection method, be sure to disable connection pooling at the compute endpoint. You can do so by [editing the compute endpoint](/docs/manage/endpoints#edit-a-compute-endpoint). | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.