v6.2.1

resend/react-emailv6.2.1Feb 24, 2026by adamnsandle

AI Summary

React Email v6.2.1 makes ONNX Runtime an optional dependency rather than a hard requirement. This change allows users to reduce their installation footprint by only installing the specific runtime when explicitly needed. Users must now manually install ONNX Runtime via pip to utilize its functionality.

Key Highlights

  • ONNX Runtime is now an optional dependency instead of required.
  • Users must explicitly install ONNX Runtime via pip.
  • Installation commands provided for CPU usage: `pip install onnxruntime`.
  • Installation commands provided for GPU usage: `pip install onnxruntime-gpu`.

Breaking Changes

  • ONNX Runtime is no longer automatically installed as a dependency.

Full Release Notes

- onnxruntime is now an optional dependency instead of required.

You now need to install ONNX Runtime explicitly:
`pip install onnxruntime`      # for CPU
`pip install onnxruntime-gpu`  # for GPU