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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

Features:

- Allow Spanner SQL statement parameter type to be specified as a simple string.

## v1.6.2 (2026-02-06)

Chore:
Expand Down
10 changes: 5 additions & 5 deletions causa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ workspace:

causa:
modules:
'@causa/workspace-core': '>= 0.27.0'
'@causa/workspace-google': '>= 0.13.0'
'@causa/workspace-typescript': '>= 0.17.0'
"@causa/workspace-core": ">= 0.28.0"
"@causa/workspace-google": ">= 0.14.0"
"@causa/workspace-typescript": ">= 0.18.0"

project:
name: runtime-typescript-google
Expand All @@ -18,10 +18,10 @@ project:
javascript:
dependencies:
check:
allowlist: []
allowlist: [GHSA-vpq2-c234-7xj6]
update:
packageTargets:
'@types/node': minor
"@types/node": minor

google:
firestore:
Expand Down
6 changes: 3 additions & 3 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import tseslint from 'typescript-eslint';
import prettier from 'eslint-plugin-prettier/recommended';
import { defineConfig } from 'eslint/config';
import tseslint from 'typescript-eslint';

export default tseslint.config({
export default defineConfig({
extends: [...tseslint.configs.recommended, prettier],
rules: {
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/no-explicit-any': 'off',
},
});
Loading