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
2 changes: 1 addition & 1 deletion developer-docs/local-development.md
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ You can also run `npm run db:seed` on its own — it calls the schema-driven `cl
| `run_comments` | multi-author threads | Q&A / notes across Alice + teammates; richer threads on ~⅓ of runs |
| `run_attributions` | 1 per run | Rotated across Alice + teammates |
| `archive_jobs` | 3 | One each of `ready` / `building` / `failed` |
| `watcher_release_config` | 1 (singleton) | `0.5.3 / 0.1.0 / false` (matches seeded watcher version) |
| `watcher_release_config` | 1 (singleton) | `1.0.0 / 0.1.0 / false` (matches seeded watcher version) |

Externally-visible identifiers used in URLs and API paths are deterministic across reseeds, so screenshots, bug reports, and `curl` examples stay stable. Instrument ids and display names mirror production (`agilent-4150-tapestation`, `instantraman`, `spectramax-id5-plate-reader`, …). Fixture-backed instruments keep realistic run ids (`Experiment_20260129`, `26.02.02_10.45.05`, `012926_AR_OD600`, …); other instruments use production-shaped synthetic run ids and filenames.

Expand Down
2 changes: 1 addition & 1 deletion lambda/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "data-hub-lambda"
version = "0.2.0"
version = "0.0.0"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "data-hub-shared"
version = "0.1.0"
version = "0.0.0"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE"]
Expand Down
6 changes: 3 additions & 3 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions watcher/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "data-hub-watcher"
version = "0.5.4"
version = "1.0.0"
description = "File-watcher agent for lab instrument PCs that ingests data into Data Hub."
readme = "README.md"
requires-python = ">=3.12"
Expand All @@ -11,7 +11,7 @@ authors = [
]
keywords = ["arcadia", "data-hub", "lab", "instruments", "watcher", "uploader"]
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
Expand Down
2 changes: 1 addition & 1 deletion web/lib/db/schema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ export const watchers = pgTable(
hostname: text("hostname"),
// OS description (e.g., "Windows 11 23H2").
osInfo: text("os_info"),
// Installed watcher package version (PEP 440, e.g. "0.2.0"). Reported on
// Installed watcher package version (PEP 440, e.g. "1.0.0"). Reported on
// every heartbeat. NULL until a watcher running >= 0.3.0 first checks in.
watcherVersion: text("watcher_version"),
// SHA-256 of the last-pushed config YAML.
Expand Down
2 changes: 1 addition & 1 deletion web/lib/db/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export const SEED_ADMIN_NAME = "Alice Zimmerman";
// Matches production watcher builds so the update-check UI doesn't nag
// during docs screenshots. Integration tests keep the historical 9.9.9
// default via `seedWatcherReleaseConfig`'s parameter default.
export const SEED_WATCHER_VERSION = "0.5.3";
export const SEED_WATCHER_VERSION = "1.0.0";

// ---------------------------------------------------------------------------
// clearAll — schema-driven TRUNCATE of every `pgTable` declared in
Expand Down
4 changes: 2 additions & 2 deletions web/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "data-hub-web",
"version": "0.0.1",
"version": "0.0.0",
"type": "module",
"private": true,
"license": "MIT",
Expand Down