Esmerald

Latest version: v3.7.0

Safety actively analyzes 723717 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 14 of 19

0.11.1

Not secure
Changed

- Improved OrJSON, UJSON, ORJSONResponse and UJSONResponse when importing dependency.

0.11.0

Not secure
Added

To make esmerald more optional and feature modular, this release brings some backwards
incompatibilities that should be addressed when moving to this version. Check out
the dcumentation for more details if this release notes doesn't cover it all.

Changed

- Moved `UJSON`, `UJSONResponse`, `OrJSON` and `ORJSONResponse` to be optional dependencies [45](https://github.com/dymmond/esmerald/pull/45).
- Changed the imports for `ORJSONResponse` to `from esmerald.responses.encoders import ORJSONResponse` [45](https://github.com/dymmond/esmerald/pull/45).
- Changed the imports for `UJSONResponse` to `from esmerald.responses.encoders import UJSONResponse` [45](https://github.com/dymmond/esmerald/pull/45).
- Changed the imports for `OrJSON` to `from esmerald.datastructures.encoders import OrJSON` [45](https://github.com/dymmond/esmerald/pull/45).
- Changed the imports for `UJSON` to `from esmerald.datastructures.encoders import UJSON` [45](https://github.com/dymmond/esmerald/pull/45).
- Moved the scheduler to optional installation with `pip install esmerald[schedulers]` [45](https://github.com/dymmond/esmerald/pull/45).

Backwards compatibility
This is only applied for those who have esmerald prior to `0.11.0`.
If you already had template configurations, jwt, schedulers or all the features you need to update the imports to:

- **TemplateConfig**:
python
from esmerald.config.template import TemplateConfig


- **JWTConfig**:
python
from esmerald.config.jwt import JWTConfig

- Scheduler class is now imported directly from `asyncz`:
python
from asyncz.schedulers import AsyncIOScheduler for the Scheduler class
from asyncz.contrib.esmerald.decorator import scheduler for the decorator


Optionally, you can simply run `pip install esmerald[all]`

0.10.0

Not secure
Added

- `add_apiview` to the Esmerald class.
- [JSON](./responses.mdjson), [OrJSON](https://esmerald.dymmond.com/responses.md#orjson) and [UJSON](https://esmerald.dymmond.com/responses.md#ujson) responses [44](https://github.com/dymmond/esmerald/pull/44).

Changed

- `Template` now accepts an extra `alternative_template` for the cases of raising TemplateNotFound [44](https://github.com/dymmond/esmerald/pull/44).
- Removed `handle_status_code` internal functionality as it is no longer used.

Fixed

- `handler` type for Gateway and WebsocketGateway.
- The split bytes instead of b''.

0.9.0

Not secure
Added

- `DirectInjects` object for the direct dependency injection without using Inject and `dependencies` from the handler [42](https://github.com/dymmond/esmerald/pull/42).

Fixed

- `include_in_schema` on a Gateway level for OpenAPI specification [42](https://github.com/dymmond/esmerald/pull/42).
- `redirect_slashes` when instantiating an Esmerald/ChildEsmerald application wasn't
validating the value properly.
- TemplateNotFound raised when a template is not found [42](https://github.com/dymmond/esmerald/pull/42).
- jinja2 Environment to have autoescape by default [43](https://github.com/dymmond/esmerald/pull/43).

0.8.1

Not secure
Added

- Added Template and Redirect to app imports.
This was supposed to go in the release 0.8.0 but somehow it was missed.

0.8.0

Not secure
Added

- New `File` and `Form` params to Esmerald.
- Add new `Injects` as parameter function.
- Add new `ArbitraryHashableBaseModel` to handle the `Inject` with arbitrary types.
- Add new [settings_config](https://esmerald.dymmond.com/applications/settings.md#the-settings_config) parameter. [40](https://github.com/dymmond/esmerald/pull/40).

Changed

- Removed unused internal parameters for old functions.
- `scheduler_class` is now a property in the EsmeraldSettings. This allows to override fields
without issues.
- Deprecate `settings` parameter from RequestSettingsMiddleware.

Fixed

- Error messages being thrown.
- Fix `enable_openapi` boolean for ChildEsmerald and submodules and `include_in_schema` for Include [37](https://github.com/dymmond/esmerald/pull/37)
- Fix types for OpenAPI for applications that are subclasses of Esmerald or ChildEsmerald [38](https://github.com/dymmond/esmerald/pull/38)

Page 14 of 19

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.