@vanillaskyai/video 0.1.1-beta.1 → 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.
package/CHANGELOG.md CHANGED
@@ -4,19 +4,18 @@ VanillaSky follows semantic versioning. This changelog begins with the 0.1 beta.
4
4
 
5
5
  ## Unreleased
6
6
 
7
- <!-- Add release notes here before running release:prepare. -->
7
+ <!-- Add release notes for the next version here. -->
8
8
 
9
- ## 0.1.1-beta.1
9
+ ## 0.1.1
10
10
 
11
- ### Patch Changes
11
+ No runtime changes: the public API, behavior, and dependencies are identical to
12
+ 0.1.0. This release replaces the 0.1.1-beta line and moves `latest` onto a
13
+ single, current version so the repository, npm, and vanillasky.ai agree.
12
14
 
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.
15
+ - Simplified the release process to a version bump, an annotated tag on `main`,
16
+ and an OIDC publish. Changesets, the generated Version Packages branch, and
17
+ the npm-latest compatibility gate are removed; the tag job now packs a commit
18
+ CI has already verified instead of re-running the suite.
20
19
 
21
20
  ## 0.1.0
22
21
 
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.1-beta.1`.
3
+ Status: frozen public beta contract for `0.1.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
@@ -19,17 +19,9 @@ public API review.
19
19
  - `0.1.x` patch releases do not make breaking changes to documented APIs or the
20
20
  serialized `Video` schema.
21
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.
22
+ pre-1.0 minor must document both `### Breaking changes` and `### Adoption` in
23
+ its changelog section, with concrete fenced before and after code examples
24
+ respectively.
33
25
  - An API prefixed with `experimental_` may change in a patch. Canonical examples
34
26
  must pin an exact package version when they use one.
35
27
  - Deprecated APIs remain usable until the next minor release. The `0.1`
@@ -40,11 +32,10 @@ public API review.
40
32
  - Framework adapters are examples, not separate public APIs. The release suite
41
33
  verifies current Next.js and Vite production builds.
42
34
 
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.
35
+ The frozen public API surface report is compared on every pull request. It is
36
+ intentionally conservative: every existing normalized declaration and reachable
37
+ support declaration must remain exactly equal because the report cannot safely
38
+ distinguish input and output positions.
48
39
  As a result, even optional field additions to an existing public
49
40
  type fail a patch gate; use a documented pre-1.0 minor unless a separately
50
41
  reviewed, direction-aware compatibility check can prove the change safe. New
package/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Give your AI a video output
2
2
 
3
- ![Version 0.1.1-beta.1 beta](https://img.shields.io/badge/version-0.1.1-beta.1_beta-7c3aed)
3
+ ![Version 0.1.1 beta](https://img.shields.io/badge/version-0.1.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.1-beta.1 ai @ai-sdk/openai
20
+ npm install @vanillaskyai/video@0.1.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.1-beta.1/examples/nextjs-quickstart).
104
+ [`examples/nextjs-quickstart`](https://github.com/VanillaSkyAi/video/tree/v0.1.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.1-beta.1 ai @ai-sdk/openai
8
+ npm install @vanillaskyai/video@0.1.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.1-beta.1/examples/nextjs-quickstart).
52
+ [`examples/nextjs-quickstart` directory](https://github.com/VanillaSkyAi/video/tree/v0.1.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.1-beta.1 ai @ai-sdk/openai
8
+ npm install @vanillaskyai/video@0.1.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.1-beta.1/examples/nextjs-quickstart).
74
+ [`examples/nextjs-quickstart` directory](https://github.com/VanillaSkyAi/video/tree/v0.1.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.1-beta.1",
12
+ "@vanillaskyai/video": "0.1.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.1-beta.1",
3
+ "version": "0.1.1",
4
4
  "description": "Open-source video response SDK for personalized AI applications.",
5
5
  "keywords": [
6
6
  "generative-video",
@@ -99,11 +99,6 @@
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",
107
102
  "registry:sync": "npm run catalog:sync && node scripts/sync-template-registry.mjs",
108
103
  "registry:check": "node scripts/sync-template-registry.mjs --check && npm run catalog:check",
109
104
  "template:check": "tsx scripts/template-check.ts",
@@ -117,10 +112,7 @@
117
112
  "verify:package-size": "tsx scripts/verify-package-size.ts",
118
113
  "verify:api": "npm run build && node scripts/verify-public-api-surface.mjs",
119
114
  "verify:package": "npm run build && node scripts/verify-packed-package.mjs",
120
- "release:prepare": "node scripts/release-prepare.mjs",
121
- "release:dry-run": "node scripts/release-dry-run.mjs",
122
- "release:preflight": "node scripts/release-preflight.mjs",
123
- "release:check": "npm run verify:api && npm run release:dry-run"
115
+ "release:build": "node scripts/release-build.mjs"
124
116
  },
125
117
  "peerDependencies": {
126
118
  "react": ">=18 <20",
@@ -140,8 +132,6 @@
140
132
  },
141
133
  "devDependencies": {
142
134
  "@anthropic-ai/sdk": "^0.116.0",
143
- "@changesets/cli": "3.0.1",
144
- "@changesets/parse": "1.0.0",
145
135
  "@eslint/js": "^9.39.1",
146
136
  "@playwright/test": "1.62.0",
147
137
  "@testing-library/react": "^16.3.0",