Skip to content

chore: version packages - #655

Closed
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main
Closed

chore: version packages#655
github-actions[bot] wants to merge 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@objectstack/spec@4.0.0

Major Changes

  • 28985f5: Breaking Change: Strict Validation Enabled by Default

    defineStack() now validates configurations by default to enforce naming conventions and catch errors early.

    What Changed:

    • defineStack() now defaults to strict: true (was strict: false)
    • Field names are now validated to ensure snake_case format
    • Object names, field types, and all schema definitions are validated

    Migration Guide:

    If you have existing code that violates naming conventions:

    // Before (would silently accept invalid names):defineStack({manifest: {...},objects: [{name: 'my_object',fields: {firstName: {type: 'text'}// ❌ Invalid: camelCase}}]});// After (will throw validation error):// Error: Field names must be lowercase snake_case// Fix: Use snake_casedefineStack({manifest: {...},objects: [{name: 'my_object',fields: {first_name: {type: 'text'}// ✅ Valid: snake_case}}]});

    Temporary Workaround:

    If you need to temporarily disable validation while fixing your code:

    defineStack(config,{strict: false});// Bypass validation

    Why This Change:

    1. Catches Errors Early: Invalid field names caught during development, not runtime
    2. Enforces Conventions: Ensures consistent snake_case naming across all projects
    3. Prevents AI Hallucinations: AI-generated objects must follow proper conventions
    4. Database Compatibility: snake_case prevents case-sensitivity issues in queries

    Impact:

    • Projects with properly named fields (snake_case): ✅ No changes needed
    • Projects with camelCase/PascalCase fields: ⚠️ Must update field names or use strict: false

@objectstack/studio@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/client@4.0.0
    • @objectstack/client-react@4.0.0
    • @objectstack/metadata@4.0.0
    • @objectstack/objectql@4.0.0
    • @objectstack/driver-memory@4.0.0
    • @objectstack/plugin-msw@4.0.0
    • @objectstack/runtime@4.0.0

@objectstack/hono@4.0.0

Patch Changes

  • @objectstack/runtime@4.0.0

@objectstack/nestjs@4.0.0

Patch Changes

  • @objectstack/runtime@4.0.0

@objectstack/nextjs@4.0.0

Patch Changes

  • @objectstack/runtime@4.0.0

@objectstack/cli@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/core@4.0.0
    • @objectstack/objectql@4.0.0
    • @objectstack/driver-memory@4.0.0
    • @objectstack/plugin-hono-server@4.0.0
    • @objectstack/rest@4.0.0
    • @objectstack/runtime@4.0.0

@objectstack/client@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/core@4.0.0

@objectstack/client-react@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/client@4.0.0
    • @objectstack/core@4.0.0

@objectstack/core@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0

@objectstack/metadata@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/core@4.0.0
    • @objectstack/types@4.0.0

@objectstack/objectql@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/core@4.0.0
    • @objectstack/types@4.0.0

@objectstack/driver-memory@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/core@4.0.0

@objectstack/plugin-auth@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/core@4.0.0

@objectstack/plugin-dev@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/core@4.0.0
    • @objectstack/objectql@4.0.0
    • @objectstack/driver-memory@4.0.0
    • @objectstack/plugin-auth@4.0.0
    • @objectstack/plugin-hono-server@4.0.0
    • @objectstack/plugin-security@4.0.0
    • @objectstack/rest@4.0.0
    • @objectstack/runtime@4.0.0

@objectstack/plugin-hono-server@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/core@4.0.0

@objectstack/plugin-msw@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/core@4.0.0
    • @objectstack/objectql@4.0.0
    • @objectstack/runtime@4.0.0
    • @objectstack/types@4.0.0

@objectstack/plugin-security@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/core@4.0.0

@objectstack/rest@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/core@4.0.0

@objectstack/runtime@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/core@4.0.0
    • @objectstack/rest@4.0.0
    • @objectstack/types@4.0.0

@objectstack/types@4.0.0

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0

@example/app-crm@1.2.11

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0

@example/app-host@1.2.11

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @example/app-crm@1.2.11
    • @example/app-todo@1.2.11
    • @example/plugin-bi@1.2.11
    • @objectstack/metadata@4.0.0
    • @objectstack/objectql@4.0.0
    • @objectstack/driver-memory@4.0.0
    • @objectstack/plugin-hono-server@4.0.0
    • @objectstack/runtime@4.0.0

@example/app-todo@1.2.11

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0
    • @objectstack/client@4.0.0
    • @objectstack/objectql@4.0.0
    • @objectstack/driver-memory@4.0.0
    • @objectstack/runtime@4.0.0

@example/plugin-bi@1.2.11

Patch Changes

  • Updated dependencies [28985f5]
    • @objectstack/spec@4.0.0

@objectstack/docs@4.0.0

@vercel

vercelBot commented Feb 12, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

ProjectDeploymentActionsUpdated (UTC)
objectstack-playCanceledCanceledFeb 12, 2026 6:30pm
specCanceledCanceledFeb 12, 2026 6:30pm

Request Review

Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@hotlong