# Tenzir Node v5.32.0

Tenzir nodes now honor standard HTTP proxy environment variables when connecting to the Tenzir Platform, and hash functions produce correct checksums for binary values.

## 🚀 Features

### Platform websocket proxy support

Apr 16, 2026 · [@tobim](https://github.com/tobim), [@codex](https://github.com/codex) · [#6039](https://github.com/tenzir/tenzir/pull/6039)

Tenzir nodes now honor standard HTTP proxy environment variables when connecting to Tenzir Platform:

```sh
HTTPS_PROXY=http://proxy.example:3128 tenzir-node
```

Use `NO_PROXY` to bypass the proxy for selected hosts. This helps deployments where outbound connections to the Platform websocket gateway must go through an HTTP proxy.

## 🐞 Bug Fixes

### Raw-byte hashing for binary values

Apr 16, 2026 · [@mavam](https://github.com/mavam), [@codex](https://github.com/codex) · [#6022](https://github.com/tenzir/tenzir/pull/6022)

The `hash_*` functions now hash `blob` values by their raw bytes. This makes checksums computed from binary data match external tools such as `md5sum` and `sha256sum`.

For example:

```tql
from_file "trace.pcap" {
  read_all binary=true
}
md5 = data.hash_md5()
```

This is useful for verifying file contents and round-tripping binary formats without leaving TQL.

[ Download on GitHub ](https://github.com/tenzir/tenzir/releases/tag/v5.32.0)

[Get the release artifacts and source code.](https://github.com/tenzir/tenzir/releases/tag/v5.32.0)