Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 0 additions & 24 deletions .tegami/2026-07-23-f8da3f7b.md

This file was deleted.

12 changes: 0 additions & 12 deletions .tegami/2026-07-24-3227d086.md

This file was deleted.

17 changes: 0 additions & 17 deletions .tegami/2026-07-24-968a0f1c.md

This file was deleted.

98 changes: 98 additions & 0 deletions .tegami/publish-lock.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
core:changelogs:
- content: "---\npackages:\n \"@lakeql/adapters\":\n type: patch\n \"@lakeql/api\":\n type: patch\n \"@lakeql/cli\":\n type: patch\n \"@lakeql/column-parser\":\n type: patch\n \"@lakeql/create-app\":\n type: patch\n \"@lakeql/file-generator\":\n type: patch\n \"@lakeql/helpers\":\n type: patch\n \"@lakeql/logger\":\n type: patch\n \"@lakeql/parquet\":\n type: patch\n \"@lakeql/query-builder\":\n type: patch\n \"@lakeql/response-transformer\":\n type: patch\n \"@lakeql/schema-generator\":\n type: patch\n \"@lakeql/trino-client\":\n type: patch\n---\n\n### Migrate release tooling from Changesets to Tegami\n\nReplaced Changesets with Tegami for versioning and publishing.\n\n### Update dependencies\n\nUpdated all dependencies to their latest versions.\n"
filename: 2026-07-23-f8da3f7b.md
v: 0.0.0
- content: "---\npackages:\n \"@lakeql/query-builder\":\n type: minor\n \"@lakeql/file-generator\":\n type: minor\n---\n\n### Refactor `getSelectFields` to use props interface\n\n`getSelectFields` now accepts a single `GetSelectFieldProps` object instead of positional arguments. The generated code from the file-generator is updated accordingly.\n\n```ts\n// Before\ngetSelectFields(info, true)\n\n// After\ngetSelectFields({ graphqlInfo: info, withNodes: true })\n```\n"
filename: 2026-07-24-968a0f1c.md
v: 0.0.0
- content: "---\npackages:\n \"@lakeql/trino-client\":\n type: minor\n---\n\n### Rename generic type parameter `<T>` to `<TRow>`\n\nRenamed the generic type parameter across `TrinoClient` methods, `QueryResult`, and `QueryProps` from `<T>` to `<TRow>` for clarity.\n\n### Add JSDoc documentation to error classes\n\nAll error classes (`TrinoClientError`, `TrinoQueryError`, `TrinoTimeoutError`, `TrinoCancellationError`) now have documented constructor parameters.\n"
filename: 2026-07-24-3227d086.md
v: 0.0.0
core:packages:
- id: npm:lakeql
updated: false
- id: npm:docs
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
id: npm:@lakeql/adapters
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
id: npm:@lakeql/api
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
id: npm:@lakeql/cli
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
id: npm:@lakeql/column-parser
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
id: npm:@lakeql/create-app
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
- 2026-07-24-968a0f1c.md
id: npm:@lakeql/file-generator
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
id: npm:@lakeql/helpers
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
id: npm:@lakeql/logger
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
id: npm:@lakeql/parquet
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
- 2026-07-24-968a0f1c.md
id: npm:@lakeql/query-builder
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
id: npm:@lakeql/response-transformer
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
id: npm:@lakeql/schema-generator
updated: true
- changelogIds:
- 2026-07-23-f8da3f7b.md
- 2026-07-24-3227d086.md
id: npm:@lakeql/trino-client
updated: true
- id: npm:lakeql-app
updated: true
- id: npm:stackblitz
updated: false
- id: npm:@lakeql/test-data
updated: false
- id: npm:@lakeql/tsconfig
updated: false
npm:packages:
- id: npm:lakeql
- id: npm:docs
- id: npm:@lakeql/adapters
- id: npm:@lakeql/api
- id: npm:@lakeql/cli
- id: npm:@lakeql/column-parser
- id: npm:@lakeql/create-app
- id: npm:@lakeql/file-generator
- id: npm:@lakeql/helpers
- id: npm:@lakeql/logger
- id: npm:@lakeql/parquet
- id: npm:@lakeql/query-builder
- id: npm:@lakeql/response-transformer
- id: npm:@lakeql/schema-generator
- id: npm:@lakeql/trino-client
- id: npm:lakeql-app
- id: npm:stackblitz
- id: npm:@lakeql/test-data
- id: npm:@lakeql/tsconfig
2 changes: 1 addition & 1 deletion apps/docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"type": "module",
"scripts": {
Expand Down
10 changes: 10 additions & 0 deletions packages/adapters/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## @lakeql/adapters@0.6.2

### Migrate release tooling from Changesets to Tegami

Replaced Changesets with Tegami for versioning and publishing.

### Update dependencies

Updated all dependencies to their latest versions.

# @lakeql/adapters

## 0.6.1
Expand Down
2 changes: 1 addition & 1 deletion packages/adapters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lakeql/adapters",
"version": "0.6.1",
"version": "0.6.2",
"description": "Storage adapters for LakeQL — provides high-level table management for different backends (Trino/Hive/S3, Iceberg, ClickHouse, etc.)",
"keywords": [
"adapters",
Expand Down
10 changes: 10 additions & 0 deletions packages/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## @lakeql/api@0.3.2

### Migrate release tooling from Changesets to Tegami

Replaced Changesets with Tegami for versioning and publishing.

### Update dependencies

Updated all dependencies to their latest versions.

# @lakeql/api

## 0.3.1
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lakeql/api",
"version": "0.3.1",
"version": "0.3.2",
"description": "GraphQL API server using Hono, GraphQL Yoga, and Pothos over Trino",
"keywords": [
"api",
Expand Down
10 changes: 10 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## @lakeql/cli@0.7.7

### Migrate release tooling from Changesets to Tegami

Replaced Changesets with Tegami for versioning and publishing.

### Update dependencies

Updated all dependencies to their latest versions.

# @lakeql/cli

## 0.7.6
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lakeql/cli",
"version": "0.7.6",
"version": "0.7.7",
"description": "CLI for introspecting Trino schemas and generating type-safe GraphQL endpoints",
"keywords": [
"cli",
Expand Down
10 changes: 10 additions & 0 deletions packages/column-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## @lakeql/column-parser@0.1.6

### Migrate release tooling from Changesets to Tegami

Replaced Changesets with Tegami for versioning and publishing.

### Update dependencies

Updated all dependencies to their latest versions.

# @lakeql/column-parser

## 0.1.5
Expand Down
2 changes: 1 addition & 1 deletion packages/column-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lakeql/column-parser",
"version": "0.1.5",
"version": "0.1.6",
"description": "Parses Trino column type definitions into structured objects",
"keywords": [
"columns",
Expand Down
10 changes: 10 additions & 0 deletions packages/create-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## @lakeql/create-app@0.2.7

### Migrate release tooling from Changesets to Tegami

Replaced Changesets with Tegami for versioning and publishing.

### Update dependencies

Updated all dependencies to their latest versions.

# @lakeql/create-app

## 0.2.6
Expand Down
2 changes: 1 addition & 1 deletion packages/create-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lakeql/create-app",
"version": "0.2.6",
"version": "0.2.7",
"description": "Project scaffolding tool for creating new LakeQL applications",
"keywords": [
"create-app",
Expand Down
22 changes: 22 additions & 0 deletions packages/file-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## @lakeql/file-generator@0.2.0

### Migrate release tooling from Changesets to Tegami

Replaced Changesets with Tegami for versioning and publishing.

### Update dependencies

Updated all dependencies to their latest versions.

### Refactor `getSelectFields` to use props interface

`getSelectFields` now accepts a single `GetSelectFieldProps` object instead of positional arguments. The generated code from the file-generator is updated accordingly.

```ts
// Before
getSelectFields(info, true)

// After
getSelectFields({ graphqlInfo: info, withNodes: true })
```

# @lakeql/file-generator

## 0.1.12
Expand Down
2 changes: 1 addition & 1 deletion packages/file-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lakeql/file-generator",
"version": "0.1.12",
"version": "0.2.0",
"description": "Generates TypeScript source files from Trino table metadata",
"keywords": [
"ast",
Expand Down
10 changes: 10 additions & 0 deletions packages/helpers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## @lakeql/helpers@0.1.7

### Migrate release tooling from Changesets to Tegami

Replaced Changesets with Tegami for versioning and publishing.

### Update dependencies

Updated all dependencies to their latest versions.

# @lakeql/helpers

## 0.1.6
Expand Down
2 changes: 1 addition & 1 deletion packages/helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lakeql/helpers",
"version": "0.1.6",
"version": "0.1.7",
"description": "Shared utility functions for pagination, formatting, and object manipulation",
"keywords": [
"formatting",
Expand Down
10 changes: 10 additions & 0 deletions packages/logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## @lakeql/logger@0.2.3

### Migrate release tooling from Changesets to Tegami

Replaced Changesets with Tegami for versioning and publishing.

### Update dependencies

Updated all dependencies to their latest versions.

# @lakeql/logger

## 0.2.2
Expand Down
2 changes: 1 addition & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lakeql/logger",
"version": "0.2.2",
"version": "0.2.3",
"description": "Structured logging with loglayer and winston including sensitive data redaction",
"keywords": [
"lakeql",
Expand Down
10 changes: 10 additions & 0 deletions packages/parquet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## @lakeql/parquet@0.2.5

### Migrate release tooling from Changesets to Tegami

Replaced Changesets with Tegami for versioning and publishing.

### Update dependencies

Updated all dependencies to their latest versions.

# @lakeql/parquet

## 0.2.4
Expand Down
2 changes: 1 addition & 1 deletion packages/parquet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lakeql/parquet",
"version": "0.2.4",
"version": "0.2.5",
"description": "JSON Schema to Parquet conversion and writing for LakeQL",
"keywords": [
"columnar",
Expand Down
22 changes: 22 additions & 0 deletions packages/query-builder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
## @lakeql/query-builder@0.2.0

### Migrate release tooling from Changesets to Tegami

Replaced Changesets with Tegami for versioning and publishing.

### Update dependencies

Updated all dependencies to their latest versions.

### Refactor `getSelectFields` to use props interface

`getSelectFields` now accepts a single `GetSelectFieldProps` object instead of positional arguments. The generated code from the file-generator is updated accordingly.

```ts
// Before
getSelectFields(info, true)

// After
getSelectFields({ graphqlInfo: info, withNodes: true })
```

# @lakeql/query-builder

## 0.1.5
Expand Down
Loading
Loading