Skip to content

Releases: venwork-dev/brand-shell

v0.13.0

21 Feb 04:18
5093a78

Choose a tag to compare

Minor Changes

  • eb56f86: Export validateBrandDetails and validateBrandTheme from brand-shell/vue and brand-shell/web.

    Previously these were only available from the brand-shell root, which is the React bundle. Non-React consumers (Vue, Svelte, web components) that imported validation functions from the root would cause Vite to load the React adapter and fail with a react/jsx-runtime error.

    Migration for Vue/Svelte/web-component apps:

    - import { validateBrandDetails, validateBrandTheme } from 'brand-shell'
    + import { validateBrandDetails, validateBrandTheme } from 'brand-shell/vue'   // Vue
    + import { validateBrandDetails, validateBrandTheme } from 'brand-shell/web'   // Svelte / vanilla

v0.12.0

21 Feb 03:51
aaa8bf7

Choose a tag to compare

Minor Changes

  • 179f91f: architecture change to build artifacts and app build

v0.11.0

20 Feb 16:34
2053d3a

Choose a tag to compare

Minor Changes

  • 07864c4: Expand release PR pack canary coverage to React, Vue, and Svelte npm starter apps.

v0.10.0

20 Feb 04:39
e2ed29d

Choose a tag to compare

Minor Changes

  • d2a9b0b: Reduce release cycle time by skipping full CI verification on Changesets-generated release PRs and relying on a targeted pack+starter canary gate.

v0.9.0

20 Feb 04:01
49ef760

Choose a tag to compare

Minor Changes

  • 8bac0ad: change the order of tarball installation and build

v0.8.0

19 Feb 23:48
200add3

Choose a tag to compare

Minor Changes

  • cf46336: Replace dist-tag promotion with a deterministic release PR gate that packs the publish artifact and builds the starter app before publishing.

v0.7.0

19 Feb 21:31
48220e5

Choose a tag to compare

Minor Changes

  • a817136: user npm token for publish

v0.6.0

19 Feb 20:55
3154cae

Choose a tag to compare

Minor Changes

  • 269584e: Add two-stage npm release automation: publish to dist-tag next, validate via a starter app canary, then promote to latest.

v0.5.0

18 Feb 03:19
43520e5

Choose a tag to compare

Minor Changes

  • 02d7d5e: Switch npm release workflow to Trusted Publishing (OIDC) by removing token-based npm auth from GitHub Actions release job.

v0.4.0

17 Feb 20:46
5104f0a

Choose a tag to compare

Minor Changes

  • 04f08f0: Refresh npm-facing docs by simplifying README, adding CONTRIBUTING guidance, and improving the docs webapp install quickstart.