From d427749a2026ae6ee615d26041e91d601e26f76a Mon Sep 17 00:00:00 2001 From: Gabriel Grubba Date: Fri, 13 Jan 2023 16:22:10 -0300 Subject: [PATCH] docs: added history about changes in webapp changes connect by express --- docs/history.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/history.md b/docs/history.md index ff70cad47b..ce58bbd2a8 100644 --- a/docs/history.md +++ b/docs/history.md @@ -66,6 +66,10 @@ * `webapp`: - `WebAppInternals.getBoilerplate` is now async. + - Changed engine from connect to express and changed api naming to match express. See below: + - `WebApp.connectHandlers.use(middleware)` is now `WebApp.expressHandlers.use(middleware)` + - `WebApp.rawConnectHandlers.use(middleware)` is now `WebApp.rawExpressHandlers.use(middleware)` + - `WebApp.connectApp` is now `WebApp.expressApp` #### Internal API changes