Download Latest Version 9.2.0 source code.tar.gz (5.0 MB)
Email in envelope

Get an email when there's a new version of RESTHeart

Home / 9.1.0
Name Modified Size InfoDownloads / Week
Parent folder
restheart-darwin-arm64 2026-01-22 148.5 MB
restheart-darwin-amd64 2026-01-22 151.5 MB
restheart-windows-amd64.exe 2026-01-22 154.2 MB
restheart-linux-amd64 2026-01-22 159.1 MB
restheart.tar.gz 2026-01-22 50.8 MB
restheart.zip 2026-01-22 50.8 MB
9.1.0 source code.tar.gz 2026-01-22 5.0 MB
9.1.0 source code.zip 2026-01-22 5.9 MB
README.md 2026-01-22 2.2 kB
Totals: 9 Items   725.7 MB 0

Release 9.1.0

Release Notes

Security and Architecture Improvements

CORS Modernization and Security Hardening

This release includes a comprehensive overhaul of CORS (Cross-Origin Resource Sharing) handling to improve security, reduce bandwidth usage, and modernize the codebase. #588

Bug Fixes

Infrastructure & CI/CD

  • Upgraded GitHub Actions dependencies:
  • Updated checkout action
  • Updated setup-java action
  • Updated upload-artifact action
  • Migrated build workflow to use GraalVM distribution
  • Simplified release workflow configuration
  • Update GraalVM and Truffle versions to 25.0.2
  • Pin GraalVM version to 25.0.1 for macOS Intel in native image workflow (*)

(*) Support for macOS x64 has been removed from GraalVM Community images. Version 25.0.1 was the last release that supported this hardware architecture. GraalVM now only supports macOS on AArch64 (Apple Silicon).

Migration Notes

⚠️ Breaking Change for Custom CORS Configurations

The CORS changes in this release are significantly more restrictive by default. If you have services with custom CORS requirements, you may need to:

  1. Override accessControlAllowHeaders() if your service requires headers beyond the new defaults (Authorization, Content-Type, X-Requested-With, No-Auth-Challenge)
  2. Override accessControlExposeHeaders() to explicitly expose any custom headers your service sets
  3. Review any custom services using the old OptionsHandler pattern and migrate to Request.handleOptions()

The new approach provides better security out-of-the-box while maintaining flexibility through the enhanced CORSHeaders interface methods. (See documentation for details.)

Full Changelog: https://github.com/SoftInstigate/restheart/compare/9.0.0...9.1.0

Source: README.md, updated 2026-01-22