Skip to content

Commit e525db7

Browse files
Merge branch 'main' into feat/prep-federated-bootstrap
2 parents 52d7021 + 5bc8b0c commit e525db7

24 files changed

Lines changed: 246 additions & 140 deletions

File tree

THIRD_PARTY_LICENSES.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16333,16 +16333,17 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
1633316333

1633416334
The following npm packages may be included in this product:
1633516335

16336-
- @ai-sdk/anthropic@2.0.45
16336+
- @ai-sdk/anthropic@2.0.49
1633716337
- @ai-sdk/azure@2.0.70
1633816338
- @ai-sdk/cerebras@1.0.7
1633916339
- @ai-sdk/cohere@2.0.3
1634016340
- @ai-sdk/deepinfra@1.0.7
1634116341
- @ai-sdk/deepseek@1.0.7
1634216342
- @ai-sdk/gateway@1.0.11
1634316343
- @ai-sdk/gateway@1.0.5
16344-
- @ai-sdk/google-vertex@3.0.70
16344+
- @ai-sdk/google-vertex@3.0.80
1634516345
- @ai-sdk/google@2.0.38
16346+
- @ai-sdk/google@2.0.43
1634616347
- @ai-sdk/groq@2.0.7
1634716348
- @ai-sdk/mistral@2.0.4
1634816349
- @ai-sdk/openai-compatible@1.0.7
@@ -19273,10 +19274,10 @@ The following npm packages may be included in this product:
1927319274

1927419275
- @bull-board/api@5.9.1
1927519276
- @bull-board/fastify@5.9.1
19276-
- @frontegg/js@7.79.0
19277-
- @frontegg/redux-store@7.79.0
19278-
- @frontegg/rest-api@7.79.0
19279-
- @frontegg/types@7.79.0
19277+
- @frontegg/js@7.92.0
19278+
- @frontegg/redux-store@7.92.0
19279+
- @frontegg/rest-api@7.92.0
19280+
- @frontegg/types@7.92.0
1928019281
- @linear/sdk@7.0.1
1928119282
- @nx/nx-linux-x64-gnu@19.8.8
1928219283
- @polka/url@1.0.0-next.25

compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: openopsdev
22
services:
33
tables:
44
container_name: tables
5-
image: public.ecr.aws/openops/openops-tables:0.2.10
5+
image: public.ecr.aws/openops/openops-tables:0.2.12
66
environment:
77
BASEROW_PUBLIC_URL: ${OPS_OPENOPS_TABLES_PUBLIC_URL}
88
BASEROW_PRIVATE_URL: http://localhost:3001

deploy/docker-compose/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ services:
2121
environment:
2222
OPS_COMPONENT: app
2323
OPS_VERSION: ${OPS_VERSION:-latest}
24-
OPS_OPENOPS_TABLES_VERSION: 0.2.10
24+
OPS_OPENOPS_TABLES_VERSION: 0.2.12
2525
OPS_ANALYTICS_VERSION: 0.14.1
2626
depends_on:
2727
openops-tables:
@@ -47,7 +47,7 @@ services:
4747
- ${HOST_AZURE_CONFIG_DIR:-openops_azure_cli_data}:/tmp/azure
4848
- ${HOST_CLOUDSDK_CONFIG:-openops_gcloud_cli_data}:/tmp/gcloud
4949
openops-tables:
50-
image: public.ecr.aws/openops/openops-tables:0.2.10
50+
image: public.ecr.aws/openops/openops-tables:0.2.12
5151
restart: unless-stopped
5252
environment:
5353
BASEROW_PUBLIC_URL: ${OPS_OPENOPS_TABLES_PUBLIC_URL}

deploy/helm/openops/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ engine:
9090
tables:
9191
name: openops-tables
9292
image: openops-tables
93-
tag: "0.2.10"
93+
tag: "0.2.12"
9494
replicas: 1
9595
env:
9696
BASEROW_PUBLIC_URL: "{{ .Values.openopsEnv.OPS_OPENOPS_TABLES_PUBLIC_URL }}"

package-lock.json

Lines changed: 43 additions & 35 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@
3131
},
3232
"private": true,
3333
"dependencies": {
34-
"@ai-sdk/anthropic": "2.0.45",
34+
"@ai-sdk/anthropic": "2.0.49",
3535
"@ai-sdk/azure": "2.0.70",
3636
"@ai-sdk/cerebras": "1.0.7",
3737
"@ai-sdk/cohere": "2.0.3",
3838
"@ai-sdk/deepinfra": "1.0.7",
3939
"@ai-sdk/deepseek": "1.0.7",
4040
"@ai-sdk/google": "2.0.38",
41-
"@ai-sdk/google-vertex": "^3.0.70",
41+
"@ai-sdk/google-vertex": "^3.0.80",
4242
"@ai-sdk/groq": "2.0.7",
4343
"@ai-sdk/mistral": "2.0.4",
4444
"@ai-sdk/openai": "2.0.68",
@@ -85,7 +85,7 @@
8585
"@fastify/swagger-ui": "5.2.3",
8686
"@fastify/type-provider-typebox": "5.1.0",
8787
"@frontegg/client": "5.3.2",
88-
"@frontegg/js": "7.79.0",
88+
"@frontegg/js": "7.92.0",
8989
"@hookform/resolvers": "3.9.0",
9090
"@langfuse/otel": "4.2.0",
9191
"@langfuse/tracing": "4.2.0",

packages/openops/src/lib/ai/providers/anthropic.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { LanguageModel } from 'ai';
33
import { AiProvider } from '../providers';
44

55
const anthropicModels = [
6+
'claude-opus-4-5-20251101',
67
'claude-sonnet-4-5-20250929',
78
'claude-haiku-4-5-20251001',
89
'claude-4-opus-20250514',

packages/openops/src/lib/ai/providers/google-vertex.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const googleVertexGeminiModels = [
1313
];
1414

1515
const googleVertexClaudeModels = [
16+
'claude-opus-4-5@20251101',
1617
'claude-sonnet-4-5@20250929',
1718
'claude-haiku-4-5@20251001',
1819
'claude-3-haiku@20240307',

packages/react-ui/src/app/common/error-boundaries/ops-error-boundary.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export function ErrorFallback({ error }: FallbackProps) {
1414
<p className="text-gray-600 mb-2">{error.message}</p>
1515
<p className="text-gray-600 mb-4">
1616
{t(
17-
"If it's a persistant issue, please contact support with steps to reproduce and include any relevant error messages.",
17+
"If it's a persistent issue, please contact support with steps to reproduce and include any relevant error messages.",
1818
)}
1919
</p>
2020
<div className="space-x-4">

0 commit comments

Comments
 (0)