@vanillaskyai/video 0.1.0 → 0.1.1-beta.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  VanillaSky follows semantic versioning. This changelog begins with the 0.1 beta.
4
4
 
5
+ ## Unreleased
6
+
7
+ <!-- Add release notes here before running release:prepare. -->
8
+
9
+ ## 0.1.1-beta.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 9c42eb7: Publish the customer-compatible beta through the read-only npm API comparison.
14
+
15
+ ## 0.1.1-beta.0
16
+
17
+ ### Patch Changes
18
+
19
+ - 66e8e95: Enforce pre-1.0 compatibility intent with structurally parsed release evidence.
20
+
5
21
  ## 0.1.0
6
22
 
7
23
  Initial beta release for `@vanillaskyai/video`.
package/PUBLIC-API.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # VanillaSky Video 0.1 public API
2
2
 
3
- Status: frozen public beta contract for `0.1.0`.
3
+ Status: frozen public beta contract for `0.1.1-beta.1`.
4
4
 
5
5
  This document defines the API that may enter the fresh
6
6
  `@vanillaskyai/video` package. An export not listed here is internal. Tests and
@@ -18,8 +18,18 @@ public API review.
18
18
 
19
19
  - `0.1.x` patch releases do not make breaking changes to documented APIs or the
20
20
  serialized `Video` schema.
21
- - A later `0.x` minor may make a breaking change only with release notes and a
22
- concrete adoption example.
21
+ - A compatible later `0.x` minor needs no migration ceremony. A breaking
22
+ pre-1.0 minor requires either its package-targeting `minor` Changeset (on a
23
+ feature PR) or its generated candidate changelog section (on the Version
24
+ Packages PR) to contain both `### Breaking changes` and `### Adoption`.
25
+ Those sections must include concrete fenced before and after code examples,
26
+ respectively. Start a breaking Changeset with its one-line summary, followed
27
+ by those headings, so Changesets preserves both as real headings in the
28
+ generated changelog. The verifier accepts the configured Changesets
29
+ changelog's canonical two-space continuation indentation, but not headings
30
+ hidden inside code fences. On a feature PR, only a Changeset added since the
31
+ pull request's exact base commit can provide this evidence. A `patch`
32
+ Changeset never authorizes a breaking change.
23
33
  - An API prefixed with `experimental_` may change in a patch. Canonical examples
24
34
  must pin an exact package version when they use one.
25
35
  - Deprecated APIs remain usable until the next minor release. The `0.1`
@@ -30,6 +40,16 @@ public API review.
30
40
  - Framework adapters are examples, not separate public APIs. The release suite
31
41
  verifies current Next.js and Vite production builds.
32
42
 
43
+ The automated npm comparison runs for every candidate, including a feature PR
44
+ whose package version still equals npm `latest` and a Version Packages PR whose
45
+ Changesets have already been consumed. It is intentionally conservative: every
46
+ existing normalized declaration and reachable support declaration must remain
47
+ exactly equal because the report cannot safely distinguish input and output positions.
48
+ As a result, even optional field additions to an existing public
49
+ type fail a patch gate; use a documented pre-1.0 minor unless a separately
50
+ reviewed, direction-aware compatibility check can prove the change safe. New
51
+ exports, wider supported peer ranges, and new optional peers remain additive.
52
+
33
53
  ## Environment boundaries
34
54
 
35
55
  | Entry point | Environment | May import React | May import Node built-ins |
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Give your AI a video output
2
2
 
3
- ![Version 0.1.0 beta](https://img.shields.io/badge/version-0.1.0_beta-7c3aed)
3
+ ![Version 0.1.1-beta.1 beta](https://img.shields.io/badge/version-0.1.1-beta.1_beta-7c3aed)
4
4
 
5
5
  **VanillaSky is the open-source video response layer.** Turn text, structured
6
6
  data, and live application context into personalized video responses that start
@@ -17,7 +17,7 @@ the planning prompt, trusted templates, validation, streaming, and player.
17
17
  For humans:
18
18
 
19
19
  ```bash
20
- npm install @vanillaskyai/video@0.1.0 ai @ai-sdk/openai
20
+ npm install @vanillaskyai/video@0.1.1-beta.1 ai @ai-sdk/openai
21
21
  ```
22
22
 
23
23
  For coding agents:
@@ -101,7 +101,7 @@ shows each complete, validated scene as soon as it is ready and returns a
101
101
  deterministic `Video` object when generation finishes.
102
102
 
103
103
  A copy-and-run app is in
104
- [`examples/nextjs-quickstart`](https://github.com/VanillaSkyAi/video/tree/v0.1.0/examples/nextjs-quickstart).
104
+ [`examples/nextjs-quickstart`](https://github.com/VanillaSkyAi/video/tree/v0.1.1-beta.1/examples/nextjs-quickstart).
105
105
 
106
106
  ## Shape the response
107
107
 
@@ -5,7 +5,7 @@
5
5
  Install VanillaSky:
6
6
 
7
7
  ```bash
8
- npm install @vanillaskyai/video@0.1.0 ai @ai-sdk/openai
8
+ npm install @vanillaskyai/video@0.1.1-beta.1 ai @ai-sdk/openai
9
9
  ```
10
10
 
11
11
  Set your provider key in `.env.local` (never commit it):
@@ -49,7 +49,7 @@ The local bypass is intentionally fail-closed: it accepts only localhost while
49
49
  Next.js is in development and denies every production request. Replace it with
50
50
  your real session validation before deploying. For literal files and commands,
51
51
  use the tested
52
- [`examples/nextjs-quickstart` directory](https://github.com/VanillaSkyAi/video/tree/v0.1.0/examples/nextjs-quickstart).
52
+ [`examples/nextjs-quickstart` directory](https://github.com/VanillaSkyAi/video/tree/v0.1.1-beta.1/examples/nextjs-quickstart).
53
53
 
54
54
  `model` can come from any AI SDK provider, registry, gateway, compatible API,
55
55
  or custom implementation. The application can choose a cheaper or faster model
@@ -5,7 +5,7 @@
5
5
  Install VanillaSky and one AI SDK provider:
6
6
 
7
7
  ```bash
8
- npm install @vanillaskyai/video@0.1.0 ai @ai-sdk/openai
8
+ npm install @vanillaskyai/video@0.1.1-beta.1 ai @ai-sdk/openai
9
9
  ```
10
10
 
11
11
  Create an ignored `.env.local`:
@@ -71,7 +71,7 @@ requests; replace it with your application's session validation before
71
71
  deploying.
72
72
 
73
73
  The copy-and-run app is in the
74
- [`examples/nextjs-quickstart` directory](https://github.com/VanillaSkyAi/video/tree/v0.1.0/examples/nextjs-quickstart).
74
+ [`examples/nextjs-quickstart` directory](https://github.com/VanillaSkyAi/video/tree/v0.1.1-beta.1/examples/nextjs-quickstart).
75
75
 
76
76
  For another LLM, replace `openai(...)` with the matching AI SDK model. The route
77
77
  shape and React code stay the same. See [Provider integration](provider-integration.md)
@@ -9,7 +9,7 @@
9
9
  },
10
10
  "dependencies": {
11
11
  "@ai-sdk/openai": "^4.0.42",
12
- "@vanillaskyai/video": "0.1.0",
12
+ "@vanillaskyai/video": "0.1.1-beta.1",
13
13
  "ai": "^7.0.66",
14
14
  "next": "16.3.1",
15
15
  "react": "19.2.8",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vanillaskyai/video",
3
- "version": "0.1.0",
3
+ "version": "0.1.1-beta.1",
4
4
  "description": "Open-source video response SDK for personalized AI applications.",
5
5
  "keywords": [
6
6
  "generative-video",
@@ -99,6 +99,11 @@
99
99
  "lint": "eslint .",
100
100
  "catalog:sync": "tsx scripts/generate-builtin-catalog.ts",
101
101
  "catalog:check": "tsx scripts/generate-builtin-catalog.ts --check",
102
+ "changeset": "changeset",
103
+ "changeset:status": "changeset status",
104
+ "changeset:check": "node scripts/verify-changeset.mjs",
105
+ "version-packages:prepare": "node scripts/version-packages.mjs",
106
+ "verify:version-packages-pr": "node scripts/verify-version-packages-pr.mjs",
102
107
  "registry:sync": "npm run catalog:sync && node scripts/sync-template-registry.mjs",
103
108
  "registry:check": "node scripts/sync-template-registry.mjs --check && npm run catalog:check",
104
109
  "template:check": "tsx scripts/template-check.ts",
@@ -112,6 +117,7 @@
112
117
  "verify:package-size": "tsx scripts/verify-package-size.ts",
113
118
  "verify:api": "npm run build && node scripts/verify-public-api-surface.mjs",
114
119
  "verify:package": "npm run build && node scripts/verify-packed-package.mjs",
120
+ "release:prepare": "node scripts/release-prepare.mjs",
115
121
  "release:dry-run": "node scripts/release-dry-run.mjs",
116
122
  "release:preflight": "node scripts/release-preflight.mjs",
117
123
  "release:check": "npm run verify:api && npm run release:dry-run"
@@ -134,23 +140,26 @@
134
140
  },
135
141
  "devDependencies": {
136
142
  "@anthropic-ai/sdk": "^0.116.0",
143
+ "@changesets/cli": "3.0.1",
144
+ "@changesets/parse": "1.0.0",
137
145
  "@eslint/js": "^9.39.1",
138
146
  "@playwright/test": "1.62.0",
139
147
  "@testing-library/react": "^16.3.0",
140
148
  "@types/node": "^24.10.1",
141
149
  "@types/react": "^18.3.28",
142
150
  "@types/react-dom": "^18.3.7",
143
- "eslint": "^9.39.1",
144
151
  "es-module-lexer": "^1.7.0",
152
+ "eslint": "^9.39.1",
145
153
  "globals": "^16.5.0",
146
154
  "jsdom": "^26.1.0",
155
+ "mdast-util-from-markdown": "2.0.3",
147
156
  "openai": "^7.4.0",
148
157
  "react": "^18.3.1",
149
158
  "react-dom": "^18.3.1",
150
159
  "tsup": "^8.5.1",
160
+ "tsx": "^4.23.12",
151
161
  "typescript": "^5.9.3",
152
162
  "typescript-eslint": "^8.48.1",
153
- "tsx": "^4.23.12",
154
163
  "vitest": "^3.2.4"
155
164
  },
156
165
  "overrides": {