Skip to content

chore(release): version packages - #42

Merged
rmarganti merged 1 commit into
mainfrom
changeset-release/main
Feb 8, 2026
Merged

chore(release): version packages#42
rmarganti merged 1 commit into
mainfrom
changeset-release/main

Conversation

@rmarganti

Copy link
Copy Markdown
Owner

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

@filter-def/bigquery@1.1.0

Minor Changes

  • 0baebc1: ## Changes

    • Adds support for filtering on nested fields in @filter-def/in-memory and @filter-def/bigquery packages
    • errors for @filter-def/drizzle, due to driver-specific implementations. For now, we are driver agnostic.

    Example (BigQuery):

    interface UserWithAddress {
      name: { first: string; last: string };
      address: { city: string; geo: { lat: number; lng: number } };
    }
    
    interface UserWithAddress {
      name: { first: string; last: string };
      address: { city: string; geo: { lat: number; lng: number } };
    }
    
    const userFilter = bigqueryFilter<UserWithAddress>().def({
      firstName: { kind: "eq", field: "name.first" },
      lat: { kind: "eq", field: "address.geo.lat" },
    });
    
    const where = userFilter({ firstName: "Bob", lat: 25 });
    // {
    //     sql: 'name.first = @firstName AND address.geo.lat = @lat',
    //     params: { firstName: 'Bob', lat: 21 },
    // }

Patch Changes

  • Updated dependencies [0baebc1]
    • @filter-def/core@1.1.0

@filter-def/core@1.1.0

Minor Changes

  • 0baebc1: ## Changes

    • Adds support for filtering on nested fields in @filter-def/in-memory and @filter-def/bigquery packages
    • errors for @filter-def/drizzle, due to driver-specific implementations. For now, we are driver agnostic.

    Example (BigQuery):

    interface UserWithAddress {
      name: { first: string; last: string };
      address: { city: string; geo: { lat: number; lng: number } };
    }
    
    interface UserWithAddress {
      name: { first: string; last: string };
      address: { city: string; geo: { lat: number; lng: number } };
    }
    
    const userFilter = bigqueryFilter<UserWithAddress>().def({
      firstName: { kind: "eq", field: "name.first" },
      lat: { kind: "eq", field: "address.geo.lat" },
    });
    
    const where = userFilter({ firstName: "Bob", lat: 25 });
    // {
    //     sql: 'name.first = @firstName AND address.geo.lat = @lat',
    //     params: { firstName: 'Bob', lat: 21 },
    // }

@filter-def/drizzle@1.1.0

Minor Changes

  • 0baebc1: ## Changes

    • Adds support for filtering on nested fields in @filter-def/in-memory and @filter-def/bigquery packages
    • errors for @filter-def/drizzle, due to driver-specific implementations. For now, we are driver agnostic.

    Example (BigQuery):

    interface UserWithAddress {
      name: { first: string; last: string };
      address: { city: string; geo: { lat: number; lng: number } };
    }
    
    interface UserWithAddress {
      name: { first: string; last: string };
      address: { city: string; geo: { lat: number; lng: number } };
    }
    
    const userFilter = bigqueryFilter<UserWithAddress>().def({
      firstName: { kind: "eq", field: "name.first" },
      lat: { kind: "eq", field: "address.geo.lat" },
    });
    
    const where = userFilter({ firstName: "Bob", lat: 25 });
    // {
    //     sql: 'name.first = @firstName AND address.geo.lat = @lat',
    //     params: { firstName: 'Bob', lat: 21 },
    // }

Patch Changes

  • Updated dependencies [0baebc1]
    • @filter-def/core@1.1.0

@filter-def/in-memory@1.1.0

Minor Changes

  • 0baebc1: ## Changes

    • Adds support for filtering on nested fields in @filter-def/in-memory and @filter-def/bigquery packages
    • errors for @filter-def/drizzle, due to driver-specific implementations. For now, we are driver agnostic.

    Example (BigQuery):

    interface UserWithAddress {
      name: { first: string; last: string };
      address: { city: string; geo: { lat: number; lng: number } };
    }
    
    interface UserWithAddress {
      name: { first: string; last: string };
      address: { city: string; geo: { lat: number; lng: number } };
    }
    
    const userFilter = bigqueryFilter<UserWithAddress>().def({
      firstName: { kind: "eq", field: "name.first" },
      lat: { kind: "eq", field: "address.geo.lat" },
    });
    
    const where = userFilter({ firstName: "Bob", lat: 25 });
    // {
    //     sql: 'name.first = @firstName AND address.geo.lat = @lat',
    //     params: { firstName: 'Bob', lat: 21 },
    // }

Patch Changes

  • Updated dependencies [0baebc1]
    • @filter-def/core@1.1.0

@github-actions
github-actions Bot force-pushed the changeset-release/main branch from 0624c87 to 2eeaf2e Compare February 8, 2026 14:26
@rmarganti
rmarganti merged commit 692f103 into main Feb 8, 2026
@rmarganti
rmarganti deleted the changeset-release/main branch February 8, 2026 14:28
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