---
title: "BoxLang 1.16.0 Released!"
url: https://daily.dev/posts/boxlang-1-16-0-released--tqxt5duac
source_url: https://foojay.io/today/boxlang-1-16-0-released
type: article
source: "Foojay.io"
published: 2026-08-25T14:04:56.538Z
updated: 2026-08-25T14:05:25.431Z
tags: ["java"]
reading_time: 7
upvotes: 0
comments: 0
language: en
---

> ## Documentation Index
> Fetch the complete documentation index at: https://daily.dev/llms.txt
> Use this file to discover all available pages before exploring further.

# BoxLang 1.16.0 Released!

**[Foojay.io](https://daily.dev/sources/foojayio)** · 7 min read · 0 upvotes · 0 comments

## Summary

BoxLang 1.16.0 closes 50 issues centered on control: HTTP and SOAP clients are now pooled via Box caches, a new onHTTPError event allows centralized error handling, and max stream content length prevents unbounded response buffering. MiniServer adds useProxyHeaders for reverse-proxy deployments, fixes WebSocket path rewriting, and defaults form fields to UTF-8. Structs gain stream(), keyStream(), and valueStream() for full Java Stream support. javasettings.reloadOnChange enables hot-reloading Java JARs without restarts, and dynamicClassLoader.addPaths() now accepts single JAR/class paths. compress()/extract() add bzip, tar, tgz and related formats, with the extract() argument renamed from target to destination (auto-mapped by the transpiler). Query enhancements include findColumn() and numerous correctness fixes, alongside a large batch of CFML/transpiler parity fixes, closure/interop fixes, and performance and stability corrections.

## Full article

daily.dev links to this article rather than hosting it. Read it at the original source: <https://foojay.io/today/boxlang-1-16-0-released>

## Questions this post answers

### What changed with HTTP and SOAP client handling in BoxLang 1.16.0?

HTTP and SOAP clients are now cached and reused through Box caches instead of being created uncontrollably on every call. This pooling gives predictable timeout behavior and reduces client construction overhead, which previously dominated request cost in high-traffic integration code. A new onHTTPError event also allows centralizing error handling, such as logging, metrics, or circuit breakers, instead of wrapping every outbound call in try/catch.

_Teams running high-traffic HTTP integrations can track runtime behavior changes like this on daily.dev._

### How do I run BoxLang MiniServer behind a reverse proxy like nginx or an ALB?

Set useProxyHeaders to true in the MiniServer configuration, introduced in BoxLang 1.16.0. This tells the runtime to trust forwarded headers so the client IP, protocol, and host reflect the original request instead of the proxy hop. The same release also stops MiniServer from mis-rewriting /ws requests and defaults form-field charset encoding to UTF-8.

_Developers deploying BoxLang behind proxies can follow runtime config changes like this via daily.dev._

### Did the extract() function's argument names change in BoxLang 1.16.0?

Yes, the extract() function's destination argument was renamed from target to destination in BoxLang 1.16.0. The transpiler automatically maps the old target argument name to the new one, so existing calls keep working while new code should use destination. The release also expanded compress() and extract() to support bzip, bzip2, tar, tbz, tbz2, tgz, and tar.gz formats.

_Anyone upgrading BoxLang code that calls extract() can check breaking argument changes like this on daily.dev._

## Similar posts on daily.dev

- [BoxLang 1.7 Released\!](https://daily.dev/posts/boxlang-1-7-released--topketdtk) · Foojay.io · 0 upvotes · 0 comments
- [BoxLang Dynamic JVM Language Release 1.9.0](https://daily.dev/posts/boxlang-dynamic-jvm-language-release-1-9-0-yd0kmbmxf) · Foojay.io · 5 upvotes · 0 comments
- [foojay – a place for friends of OpenJDK](https://daily.dev/posts/foojay-a-place-for-friends-of-openjdk-xd4ufxmlm) · Foojay.io · 0 upvotes · 0 comments

---

Tags: [#java](https://daily.dev/tags/java)

[View this post on daily.dev](https://daily.dev/posts/boxlang-1-16-0-released--tqxt5duac)
