@a_team/prisma 3.5.0-win → 3.5.1-linux
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/README.md +7 -0
- package/dist/client/edge.js +4 -6
- package/dist/client/index-browser.js +0 -2
- package/dist/client/index.d.ts +595 -112
- package/dist/client/index.js +6 -8
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +32 -7
- package/dist/client/wasm.js +0 -2
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -111,6 +111,13 @@ cp .env.sample .env
|
|
|
111
111
|
npx ts-node playground/missionSpec.ts
|
|
112
112
|
```
|
|
113
113
|
|
|
114
|
+
### Deployment versioning
|
|
115
|
+
|
|
116
|
+
- Given a version pattern `MAJOR.MINOR.PATCH`, incrementing and releasing should be done as:
|
|
117
|
+
- `MAJOR` version must be increased when incompatible service/code changes are made,
|
|
118
|
+
- `MINOR` version must be increased when functionality in a backwards-compatible manner is made,
|
|
119
|
+
- `PATCH` version must be increased when backwards-compatible bug fixes (for existing features) are made.
|
|
120
|
+
|
|
114
121
|
### Publishing a new version
|
|
115
122
|
|
|
116
123
|
- Pull the latest changes on the `main` branch and push the following tag to the repository:
|