Skip to content

v0.18.0

Compare
Choose a tag to compare
@devinrsmith devinrsmith released this 04 Nov 17:48
· 1668 commits to main since this release

Release Notes

As noted in the previous release notes for v0.17.0, the Netty images would no long be produced going forward. As such, this v0.18.0 release is our first release that is exclusively Jetty-based.

Quickstart

docker run --rm -p 10000:10000 ghcr.io/deephaven/server:0.18.0

or

docker-compose.yml:

version: "3"

services:
  deephaven:
    image: ghcr.io/deephaven/server:0.18.0
    ports:
      - "10000:10000"
docker compose up -d

Migration

The default location for notebooks and layouts has changed. Users with existing notebooks or layouts are advised to move these folders from /data into /data/storage, or set the configuration property -Dstorage.path=/data to retain the old location:

docker-compose.yml:

version: "3"

services:
  deephaven:
    image: ghcr.io/deephaven/server:0.18.0
    environment:
    - START_OPTS="-Dstorage.path=/data"
    ports:
      - "10000:10000"

Docker images

  • ghcr.io/deephaven/server:0.18.0
  • ghcr.io/deephaven/server-slim:0.18.0
  • ghcr.io/deephaven/server-all-ai:0.18.0
  • ghcr.io/deephaven/server-nltk:0.18.0
  • ghcr.io/deephaven/server-pytorch:0.18.0
  • ghcr.io/deephaven/server-sklearn:0.18.0
  • ghcr.io/deephaven/server-tensorflow:0.18.0

These images are amd64 and arm64 compatible, and were tagged with latest.

What's Changed

New Contributors

Full Changelog: v0.17.0...v0.18.0