Saltar al contenido principal

Version 3.2 release notes

· Lectura de un minuto
Loïc Poullain

Banner

Version 3.2 of Foal is out! Here are the improvements that it brings:

New package @foal/password

The foal/password package, which was removed in v3.0, has been re-added. It offers an isCommon method to check if a password is too common:

const isPasswordTooCommon = await isCommon(password);

Read the controller and the controller method names in request contexts

The Context and WebsocketContext have two new properties:

NameTypeDescription
controllerNamestringThe name of the controller class.
controllerMethodNamestringThe name of the controller method.