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

Commit 0ecec2e

Browse files
feat(prisma): upgrade to v4.11.0 (#713)
## Change Summary Please summarise the changes this pull request is making here. ## Checklist - [ ] Unit tests for the changes exist - [ ] Tests pass without significant drop in coverage - [ ] Documentation reflects changes where applicable - [ ] Test snapshots have been [updated](https://prisma-client-py.readthedocs.io/en/latest/contributing/contributing/#snapshot-tests) if applicable ## Agreement By submitting this pull request, I confirm that you can use, modify, copy and redistribute this contribution, under the terms of your choice.
1 parent 09a4ac3 commit 0ecec2e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
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=4.10.1&color=blue&logo=prisma" alt="Supported Prisma version is 4.10.1">
11+
<img src="https://img.shields.io/static/v1?label=prisma&message=4.11.0&color=blue&logo=prisma" alt="Supported Prisma version is 4.11.0">
1212
</a>
1313
<a href="https://github.com/grantjenks/blue">
1414
<img src="https://camo.githubusercontent.com/dbdbcf26db37abfa1f2ab7e6c28c8b3a199f2dad98e4ef53a50e9c45c7e4ace8/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f64652532307374796c652d626c75652d626c75652e737667" alt="Code style: blue">

docs/index.md

Lines changed: 1 addition & 1 deletion
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=4.10.1&color=blue&logo=prisma" alt="Supported Prisma version is 4.10.1">
11+
<img src="https://img.shields.io/static/v1?label=prisma&message=4.11.0&color=blue&logo=prisma" alt="Supported Prisma version is 4.11.0">
1212
</a>
1313
<a href="https://github.com/grantjenks/blue">
1414
<img src="https://camo.githubusercontent.com/dbdbcf26db37abfa1f2ab7e6c28c8b3a199f2dad98e4ef53a50e9c45c7e4ace8/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f636f64652532307374796c652d626c75652d626c75652e737667" alt="Code style: blue">

docs/reference/binaries.md

Lines changed: 1 addition & 1 deletion
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=4.10.1
12+
git clone https://github.com/prisma/prisma-engines --branch=4.11.0
1313
```
1414

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

docs/reference/config.md

Lines changed: 2 additions & 2 deletions
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` | `4.10.1` |
223+
| `prisma_version` | `PRISMA_VERSION` | `4.11.0` |
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` | `aead147aa326ccb985dcfed5b065b4fdabd44b19` |
231+
| `expected_engine_version` | `PRISMA_EXPECTED_ENGINE_VERSION` | `8fde8fef4033376662cad983758335009d522acb` |
232232

233233

234234
### Binary Platform

src/prisma/_config.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ class DefaultConfig(BaseSettings):
1818
# doesn't change then the CLI is incorrectly cached
1919
prisma_version: str = Field(
2020
env='PRISMA_VERSION',
21-
default='4.10.1',
21+
default='4.11.0',
2222
)
2323

2424
# Engine binary versions can be found under https://github.com/prisma/prisma-engine/commits/main
2525
expected_engine_version: str = Field(
2626
env='PRISMA_EXPECTED_ENGINE_VERSION',
27-
default='aead147aa326ccb985dcfed5b065b4fdabd44b19',
27+
default='8fde8fef4033376662cad983758335009d522acb',
2828
)
2929

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

0 commit comments

Comments
 (0)