Compare commits

...
3 Commits
Author SHA1 Message Date
steffen911 9c5c5bf4ca chore: release v2.95.4
Codespell / Check for spelling errors (push) Waiting to run
CI/CD / lint (push) Waiting to run
CI/CD / test-docker-build (push) Waiting to run
CI/CD / tests-web-sync (node20, pg12) (push) Waiting to run
CI/CD / tests-web-sync (node20, pg15) (push) Waiting to run
CI/CD / tests-web-async (node20, pg12, mode) (push) Waiting to run
CI/CD / tests-web-async (node20, pg15, mode) (push) Waiting to run
CI/CD / tests-web-async (node20, pg12, mode-azure) (push) Waiting to run
CI/CD / tests-web-async (node20, pg15, mode-azure) (push) Waiting to run
CI/CD / tests-worker (node20, pg12, mode) (push) Waiting to run
CI/CD / tests-worker (node20, pg15, mode) (push) Waiting to run
CI/CD / tests-worker (node20, pg12, mode-azure) (push) Waiting to run
CI/CD / tests-worker (node20, pg15, mode-azure) (push) Waiting to run
CI/CD / e2e-tests (push) Waiting to run
CI/CD / e2e-server-tests (push) Waiting to run
CI/CD / all-ci-passed (push) Blocked by required conditions
CI/CD / push-docker-image (push) Blocked by required conditions
2025-02-18 15:33:00 +01:00
Steffen SchmitzandGitHub 1a1a45bac4 build: increase nextjs static page generation timeout (#5620) 2025-02-18 15:32:40 +01:00
Steffen SchmitzandGitHub e23d25520d chore: notify on v2 build failures (#5618) 2025-02-18 14:40:13 +01:00
7 changed files with 30 additions and 21 deletions
+8
View File
@@ -487,3 +487,11 @@ jobs:
platforms: |
linux/amd64
${{ startsWith(github.ref, 'refs/tags/') && 'linux/arm64' || '' }}
- name: Notify Slack
uses: ravsamhq/notify-slack-action@v2
if: always()
with:
status: ${{ job.status }}
notify_when: "failure"
env:
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "langfuse",
"version": "2.95.3",
"version": "2.95.4",
"author": "engineering@langfuse.com",
"license": "MIT",
"private": true,
+17 -16
View File
@@ -61,6 +61,7 @@ const nextConfig = {
"kysely",
],
},
staticPageGenerationTimeout: 500, // 5 minutes - default 60 seconds.
poweredByHeader: false,
basePath: env.NEXT_PUBLIC_BASE_PATH,
@@ -128,22 +129,22 @@ const nextConfig = {
// Required to check authentication status from langfuse.com
...(env.NEXT_PUBLIC_LANGFUSE_CLOUD_REGION !== undefined
? [
{
source: "/api/auth/session",
headers: [
{
key: "Access-Control-Allow-Origin",
value: "https://langfuse.com",
},
{ key: "Access-Control-Allow-Credentials", value: "true" },
{ key: "Access-Control-Allow-Methods", value: "GET,POST" },
{
key: "Access-Control-Allow-Headers",
value: "Content-Type, Authorization",
},
],
},
]
{
source: "/api/auth/session",
headers: [
{
key: "Access-Control-Allow-Origin",
value: "https://langfuse.com",
},
{ key: "Access-Control-Allow-Credentials", value: "true" },
{ key: "Access-Control-Allow-Methods", value: "GET,POST" },
{
key: "Access-Control-Allow-Headers",
value: "Content-Type, Authorization",
},
],
},
]
: []),
// all files in /public/generated are public and can be accessed from any origin, e.g. to render an API reference based on our openapi schema
{
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "web",
"version": "2.95.3",
"version": "2.95.4",
"private": true,
"license": "MIT",
"engines": {
+1 -1
View File
@@ -1 +1 @@
export const VERSION = "v2.95.3";
export const VERSION = "v2.95.4";
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "worker",
"version": "2.95.3",
"version": "2.95.4",
"description": "",
"license": "MIT",
"private": true,
+1 -1
View File
@@ -1 +1 @@
export const VERSION = "v2.95.3";
export const VERSION = "v2.95.4";