Skip to content

chore: version packages#657

Merged
hotlong merged 1 commit into
mainfrom
changeset-release/main
Feb 12, 2026
Merged

chore: version packages#657
hotlong merged 1 commit into
mainfrom
changeset-release/main

Conversation

@github-actions

@github-actions github-actions Bot commented Feb 12, 2026

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/studio@3.0.2

Patch Changes

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

@objectstack/hono@3.0.2

Patch Changes

  • @objectstack/runtime@3.0.2

@objectstack/nestjs@3.0.2

Patch Changes

  • @objectstack/runtime@3.0.2

@objectstack/nextjs@3.0.2

Patch Changes

  • @objectstack/runtime@3.0.2

@objectstack/cli@3.0.2

Patch Changes

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

@objectstack/client@3.0.2

Patch Changes

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

@objectstack/client-react@3.0.2

Patch Changes

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

@objectstack/core@3.0.2

Patch Changes

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

@objectstack/metadata@3.0.2

Patch Changes

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

@objectstack/objectql@3.0.2

Patch Changes

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

@objectstack/driver-memory@3.0.2

Patch Changes

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

@objectstack/plugin-auth@3.0.2

Patch Changes

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

@objectstack/plugin-dev@3.0.2

Patch Changes

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

@objectstack/plugin-hono-server@3.0.2

Patch Changes

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

@objectstack/plugin-msw@3.0.2

Patch Changes

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

@objectstack/plugin-security@3.0.2

Patch Changes

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

@objectstack/rest@3.0.2

Patch Changes

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

@objectstack/runtime@3.0.2

Patch Changes

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

@objectstack/spec@3.0.2

Patch 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_case
    defineStack({
      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/types@3.0.2

Patch Changes

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

@example/app-crm@1.2.11

Patch Changes

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

@example/app-host@1.2.11

Patch Changes

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

@example/app-todo@1.2.11

Patch Changes

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

@example/plugin-bi@1.2.11

Patch Changes

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

@objectstack/docs@3.0.2

@vercel

vercel Bot commented Feb 12, 2026

Copy link
Copy Markdown

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

Project Deployment Actions Updated (UTC)
objectstack-play Ready Ready Preview, Comment Feb 12, 2026 6:30pm
spec Canceled Canceled Feb 12, 2026 6:30pm

Request Review

@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 2f14081 to f9f280e Compare February 12, 2026 17:06
@github-actions
github-actions Bot force-pushed the changeset-release/main branch from f9f280e to cfb561b Compare February 12, 2026 17:09
@hotlong
hotlong merged commit c9441e9 into main Feb 12, 2026
1 of 3 checks passed
Sign up for free to 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