Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.

Commit 6b5a5f0

Browse files
feat(prisma): upgrade to v5.9.1 (#904)
1 parent 22cc236 commit 6b5a5f0

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<img src="https://img.shields.io/discord/933860922039099444?color=blue&label=chat&logo=discord" alt="Chat on Discord">
99
</a>
1010
<a href="https://prisma.io">
11-
<img src="https://img.shields.io/static/v1?label=prisma&message=5.8.0&color=blue&logo=prisma" alt="Supported Prisma version is 5.8.0">
11+
<img src="https://img.shields.io/static/v1?label=prisma&message=5.9.1&color=blue&logo=prisma" alt="Supported Prisma version is 5.9.1">
1212
</a>
1313
<a href="https://github.com/astral-sh/ruff">
1414
<img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fgist.githubusercontent.com%2FJacobCoffee%2Fbfb02a83c8da3cbf53f7772f2cee02ec%2Fraw%2Facb94daa3aedecda67e2c7d8c5aec9765db0734d%2Fformat-badge.json" alt="Code style: ruff">

docs/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<img src="https://img.shields.io/discord/933860922039099444?color=blue&label=chat&logo=discord" alt="Chat on Discord">
99
</a>
1010
<a href="https://prisma.io">
11-
<img src="https://img.shields.io/static/v1?label=prisma&message=5.8.0&color=blue&logo=prisma" alt="Supported Prisma version is 5.8.0">
11+
<img src="https://img.shields.io/static/v1?label=prisma&message=5.9.1&color=blue&logo=prisma" alt="Supported Prisma version is 5.9.1">
1212
</a>
1313
<a href="https://github.com/astral-sh/ruff">
1414
<img src="https://img.shields.io/endpoint?url=https%3A%2F%2Fgist.githubusercontent.com%2FJacobCoffee%2Fbfb02a83c8da3cbf53f7772f2cee02ec%2Fraw%2Facb94daa3aedecda67e2c7d8c5aec9765db0734d%2Fformat-badge.json" alt="Code style: ruff">

docs/reference/binaries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Prisma Client Python _should_ automatically download the correct binaries for yo
99
- Clone the prisma-engines repository at the current version that the python client supports:
1010

1111
```
12-
git clone https://github.com/prisma/prisma-engines --branch=5.8.0
12+
git clone https://github.com/prisma/prisma-engines --branch=5.9.1
1313
```
1414

1515
- Build the binaries following the steps found [here](https://github.com/prisma/prisma-engines#building-prisma-engines)

docs/reference/config.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -220,15 +220,15 @@ This option controls the version of Prisma to use. It should be noted that this
220220

221221
| Option | Environment Variable | Default |
222222
| ---------------- | --------------------- | -------- |
223-
| `prisma_version` | `PRISMA_VERSION` | `5.8.0` |
223+
| `prisma_version` | `PRISMA_VERSION` | `5.9.1` |
224224

225225
### Expected Engine Version
226226

227227
This is an internal option that is here as a safeguard for the `prisma_version` option. If you modify the `prisma_version` option then you must also update this option to use the corresponding engine version. You can find a list of engine versions [here](https://github.com/prisma/prisma-engines).
228228

229229
| Option | Environment Variable | Default |
230230
| ------------------------- | -------------------------------- | ------------------------------------------ |
231-
| `expected_engine_version` | `PRISMA_EXPECTED_ENGINE_VERSION` | `0a83d8541752d7582de2ebc1ece46519ce72a848` |
231+
| `expected_engine_version` | `PRISMA_EXPECTED_ENGINE_VERSION` | `23fdc5965b1e05fc54e5f26ed3de66776b93de64` |
232232

233233

234234
### Binary Platform

src/prisma/_config.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ class DefaultConfig(BaseSettings):
2727
# doesn't change then the CLI is incorrectly cached
2828
prisma_version: str = Field(
2929
env='PRISMA_VERSION',
30-
default='5.8.0',
30+
default='5.9.1',
3131
)
3232

3333
# Engine binary versions can be found under https://github.com/prisma/prisma-engine/commits/main
3434
expected_engine_version: str = Field(
3535
env='PRISMA_EXPECTED_ENGINE_VERSION',
36-
default='0a83d8541752d7582de2ebc1ece46519ce72a848',
36+
default='23fdc5965b1e05fc54e5f26ed3de66776b93de64',
3737
)
3838

3939
# Home directory, used to build the `binary_cache_dir` option by default, useful in multi-user

0 commit comments

Comments
 (0)