Skip to content
Open
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
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web",
"version": "0.12.12",
"version": "0.12.13",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,11 @@ export function CreateMetricFromPointDialog({
<DialogTitle>Create metric from scalar point</DialogTitle>
</DialogHeader>
{point ? (
<div className="space-y-3">
<div className="rounded border bg-muted/30 p-2 text-xs">
<div className="font-medium">{point.experimentName}</div>
<div className="min-w-0 space-y-3">
<div className="min-w-0 rounded border bg-muted/30 p-2 text-xs">
<div className="min-w-0 whitespace-normal font-medium [overflow-wrap:anywhere]">
{point.experimentName}
</div>
<div className="mt-1 break-all text-muted-foreground">{point.experimentId}</div>
<div className="mt-1 text-muted-foreground">step {point.step}</div>
</div>
Expand Down
10 changes: 5 additions & 5 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# Alternative: `./scripts/docker-up-public.sh <PUBLIC_URL>` sets CORS + runtime web configuration without a root `.env` (see DOCKER.md).
name: experiment-tracker

x-image-tag: &image-tag 0.12.12
x-image-tag: &image-tag 0.12.13

services:
postgres-backend:
Expand Down Expand Up @@ -101,7 +101,7 @@ services:
&& mc mb "local/$$S3_BUCKET" --ignore-existing

object-storage:
image: ghcr.io/${GHCR_NAMESPACE:-malchul}/experiment-tracker-object-storage:${IMAGE_TAG:-0.12.12}
image: ghcr.io/${GHCR_NAMESPACE:-malchul}/experiment-tracker-object-storage:${IMAGE_TAG:-0.12.13}
environment:
APP_NAME: ${OBJECT_STORAGE_APP_NAME:-ML Experiment Object Storage}
API_PREFIX: ${OBJECT_STORAGE_API_PREFIX:-/api}
Expand All @@ -123,7 +123,7 @@ services:
condition: service_completed_successfully

scalars:
image: ghcr.io/${GHCR_NAMESPACE:-malchul}/experiment-tracker-scalars:${IMAGE_TAG:-0.12.12}
image: ghcr.io/${GHCR_NAMESPACE:-malchul}/experiment-tracker-scalars:${IMAGE_TAG:-0.12.13}
environment:
CLICKHOUSE_URL: ${CLICKHOUSE_URL:-http://default:yourpass@clickhouse:8123/default}
REDIS_URL: ${REDIS_URL:-redis://redis:6379/0}
Expand All @@ -135,7 +135,7 @@ services:
condition: service_healthy

backend:
image: ghcr.io/${GHCR_NAMESPACE:-malchul}/experiment-tracker-backend:${IMAGE_TAG:-0.12.12}
image: ghcr.io/${GHCR_NAMESPACE:-malchul}/experiment-tracker-backend:${IMAGE_TAG:-0.12.13}
environment:
DATABASE_URL: ${DATABASE_URL:-postgresql+asyncpg://tracker:tracker@postgres-backend:5432/experiment_tracker}
JWT_SECRET: ${JWT_SECRET:-change-me-in-docker-env}
Expand All @@ -158,7 +158,7 @@ services:
condition: service_healthy

web:
image: ghcr.io/${GHCR_NAMESPACE:-malchul}/experiment-tracker-web:${IMAGE_TAG:-0.12.12}
image: ghcr.io/${GHCR_NAMESPACE:-malchul}/experiment-tracker-web:${IMAGE_TAG:-0.12.13}
environment:
NODE_ENV: production
PORT: "3000"
Expand Down
5 changes: 5 additions & 0 deletions docs/0.12.13.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# 0.12.13

## Web UI

- **Create metric from scalar point modal.** Long experiment names now wrap inside the modal instead of overflowing horizontally, keeping the dialog usable for runs with very long names.
2 changes: 1 addition & 1 deletion python/backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "experiment-tracker-backend"
version = "0.12.12"
version = "0.12.13"
description = "MVP backend-first experiment tracker"
authors = [{ name = "Experiment Tracker Team" }]
requires-python = ">=3.10"
Expand Down
2 changes: 1 addition & 1 deletion python/object_storage/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "object-storage"
version = "0.12.12"
version = "0.12.13"
description = "Content-addressable object storage service for experiments"
readme = "README.md"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion python/scalars_service/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "scalars-service"
version = "0.12.12"
version = "0.12.13"
description = "Add your description here"
readme = "README.md"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion python/sdk/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "experiment-tracker-sdk"
version = "0.12.12"
version = "0.12.13"
description = "Python SDK for Experiment Tracker"
readme = "README.md"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion python/sdk/src/experiment_tracker_sdk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,4 +57,4 @@
"HparamsSerializationError",
"config",
]
__version__ = "0.12.12"
__version__ = "0.12.13"
2 changes: 1 addition & 1 deletion python/shared/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "experiment-tracker-shared"
version = "0.12.12"
version = "0.12.13"
description = "Shared utilities for experiment tracker Python services"
readme = "README.md"
requires-python = ">=3.10"
Expand Down