Skip to content

Releases: deephaven/deephaven-core

v0.23.0

31 Mar 22:47
Compare
Choose a tag to compare

Blog

Please see the Deephaven blog for the combined Release notes for Versions 0.21.0, 0.22.0, & 0.23.0.

What's Changed

New Contributors

Full Changelog: v0.22.0...v0.23.0

v0.22.1

16 Mar 21:33
Compare
Choose a tag to compare
  • 61e96a1 - (HEAD -> release/v0.22.1, tag: v0.22.1, upstream/release/v0.22.1) Bump to 0.22.1 (82 minutes ago)
  • d26e906 - Fix headPct / tailPct Attribute Propagation (#3533) (3 days ago)
  • e1cbfa4 - QueryTable#renameColumns: Propagate Attributes (#3537) (3 days ago)
  • 266558a - Provide config service methods to java clients (#3532) (2 days ago)
  • 9848395 - Send CORS headers for browser clients using gRPC-web (#3542) (2 days ago)
  • 08809d9 - Move rpcWrapper to gRPC Interceptor; Open Session's ExecutionContext (#3511) (6 days ago)
  • 8eee95c - Port DH-12148: Formula Array Access (#3346) (6 days ago)
  • 8f0bbee - Restore Which Was Removed by #3385 (#3497) (9 days ago)

Full Changelog: v0.22.0...v0.22.1

v0.22.0

04 Mar 04:40
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.21.1...v0.22.0

v0.21.1

28 Feb 00:09
Compare
Choose a tag to compare

Patch release that contains #3460

Full Changelog: v0.21.0...v0.21.1

v0.21.0

04 Feb 00:02
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.20.0...v0.21.0

v0.20.1

28 Jan 00:14
Compare
Choose a tag to compare

This is a patch release with a few fixes and improvements to authentication.

Full Changelog: v0.20.0...v0.20.1

v0.20.0

18 Jan 02:15
Compare
Choose a tag to compare

What's Changed

**Full C...

Read more

v0.19.1

12 Dec 23:26
Compare
Choose a tag to compare

Release notes

This is a patch release that fixes some bugs from v0.19.0.

Fixes

  • Fix ServiceAuthWiring logging of full method name (#3165)
  • Always set the vectorizable attr of PyCW (#3166)
  • Safely close autocomplete streams on the server to avoid logspam (#3169)
  • Associate java autocomplete data with the session, rather than stream (#3173)
  • Correct handling for checkInitiateOperation propagation to parallel jobs, fixing parallel partitioned transform (#3179)
  • SelectColumnLayer to parallelization fixes (#3181)
  • Fix jedi SAFE mode (#3176)
  • Fix incorrect Table casts of PartitionTables in PartitionedTableService (#3183)

Full Changelog: v0.19.0...v0.19.1

v0.19.0

06 Dec 21:49
Compare
Choose a tag to compare

Release notes

Note: v0.19.1 has been released and fixes a few bugs from the release.

What's Changed

Full Changelog: v0.18.0...v0.19.0

v0.18.0

04 Nov 17:48
Compare
Choose a tag to compare

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