@prisma/streams-server 0.1.0 → 0.1.1

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.
@@ -1,4 +1,4 @@
1
- # Contributor Covenant Code of Conduct
1
+ # Prisma Streams Code of Conduct
2
2
 
3
3
  ## Our Pledge
4
4
 
package/CONTRIBUTING.md CHANGED
@@ -1,10 +1,10 @@
1
- # Welcome to Contributing to Prisma Streams
1
+ # Contributing to Prisma Streams
2
2
 
3
3
  Welcome. This repository is being prepared for public production use, and contributions that improve correctness, operator experience, and protocol clarity are useful.
4
4
 
5
5
  This file follows the same general baseline Prisma uses in [`prisma/prisma`](https://github.com/prisma/prisma), but is scoped to this repository and its Bun + TypeScript workflow.
6
6
 
7
- Please read the [Code of Conduct](./CODE_OF_CONDUCT.md) before participating.
7
+ Please read the [Code of Conduct](./code-of-conduct.md) before participating.
8
8
 
9
9
  ## Contributing Via Comments
10
10
 
@@ -44,7 +44,7 @@ Notes:
44
44
 
45
45
  - `bun test` is the current fast repository baseline.
46
46
  - `test:conformance:local` and `test:conformance` run the upstream black-box suite against local and full server modes.
47
- - The current upstream conformance status is tracked in [docs/CONFORMANCE.md](./docs/CONFORMANCE.md).
47
+ - The current upstream conformance status is tracked in [conformance.md](./conformance.md).
48
48
 
49
49
  ## Development Expectations
50
50
 
@@ -52,7 +52,7 @@ Notes:
52
52
  - Add or update tests for behavior changes.
53
53
  - Update documentation when public behavior, deployment guidance, or package surfaces change.
54
54
  - Do not commit generated archives, local databases, `.DS_Store`, or other workstation artifacts.
55
- - Follow the repository `better-result` policy. The current automated policy check covers `src/`; see [docs/BETTER_RESULT_ADOPTION.md](./docs/BETTER_RESULT_ADOPTION.md).
55
+ - Follow the repository `better-result` policy. The current automated policy check covers `src/`; see [better-result-adoption.md](./better-result-adoption.md).
56
56
 
57
57
  ## Pull Requests
58
58
 
@@ -65,4 +65,4 @@ Before opening a pull request:
65
65
 
66
66
  ## Security Reports
67
67
 
68
- Do not open public issues for suspected vulnerabilities. Follow [SECURITY.md](./SECURITY.md).
68
+ Do not open public issues for suspected vulnerabilities. Follow [security.md](./security.md).
package/README.md CHANGED
@@ -5,8 +5,8 @@ This package contains the Bun-only self-hosted Prisma Streams server.
5
5
  ## What It Is
6
6
 
7
7
  `@prisma/streams-server` is the full Prisma Streams runtime: SQLite WAL
8
- storage, segmenting, upload support, indexing, recovery, and the live query
9
- touch system.
8
+ storage, segmenting, upload support, indexing, recovery, and the live / touch
9
+ system.
10
10
 
11
11
  It is intended for Bun-based self-hosted deployment. For trusted local
12
12
  development embedding, use `@prisma/streams-local` instead.
@@ -38,5 +38,5 @@ For R2 mode set:
38
38
  - `DURABLE_STREAMS_R2_ACCESS_KEY_ID`
39
39
  - `DURABLE_STREAMS_R2_SECRET_ACCESS_KEY`
40
40
 
41
- See ../README.md and ../docs/CONFORMANCE.md in the repository for the full
41
+ See ../docs/overview.md and ../docs/conformance.md in the repository for the full
42
42
  runtime documentation.
package/SECURITY.md CHANGED
@@ -1,4 +1,4 @@
1
- # Security Policy
1
+ # Prisma Streams Security Policy
2
2
 
3
3
  ## Supported Versions
4
4
 
@@ -30,4 +30,4 @@ That has concrete deployment consequences:
30
30
 
31
31
  The local development server is intentionally optimized for local integration, not hostile-network deployment.
32
32
 
33
- More detail is documented in [docs/AUTH.md](./docs/AUTH.md).
33
+ More detail is documented in [auth.md](./auth.md).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@prisma/streams-server",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Bun-only self-hosted Prisma Streams server.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -9,7 +9,7 @@
9
9
  "bugs": {
10
10
  "url": "https://github.com/prisma/streams/issues"
11
11
  },
12
- "homepage": "https://github.com/prisma/streams#readme",
12
+ "homepage": "https://github.com/prisma/streams/tree/main/docs",
13
13
  "license": "Apache-2.0",
14
14
  "type": "module",
15
15
  "engines": {