SEE https://github.com/angular/universal/releases FOR RELEASE BASED CHANGELOG
8.1.1 (2019-07-04)
8.1.0 (2019-07-03)
- express-engine: add bundleDependencies and lazy-loading fixes (#1167) (d8be7af)
- hapi-engine: add bundleDependencies and lazy-loading fixes (#1188) (e688092)
- hapi-engine: fix broken unit test (6ef8e47)
7.1.1 (2019-03-07)
7.1.0 (2019-01-19)
- common: check if DOMContentLoaded already fired (#1104) (0e38dd1)
- common: check if readyState is interactive not loaded (#1109) (e80b2f1)
- express-engine: remove unneeded dep from schematics server (#1090) (cfa3909)
- readme: use circle ci build badge, update img url, add socketengine (#1111) (abcfbfb)
- hapi-engine: add schematics (#1057) (a4bf3d9)
- modules: pass in absolute URL as default for view rendering (#897) (77e298a)
7.0.2 (2018-10-18)
7.0.0 (2018-10-18)
7.0.0-rc.1 (2018-10-12)
7.0.0-rc.0 (2018-10-11)
- express-engine: add option to skip Universal schematic (#1059) (9ebb943)
- socket-engine: add providers parameter (#1072) (c16860c)
6.1.0 (2018-08-23)
- common: fixup secondary entrypoints (#1017) (7bb0e9b)
- common: remove internal monicker for FileLoader (#1009) (23f0d0f)
- express-engine: add server configuration to schematics (#1056) (b031a26)
- common: add CommonEngine to encapsulate rendering (#996) (439b306)
- common: TransferHttpCache now respects url params (#1005) (f09c51d)
- express-engine: add schematics (#1051) (1909be1), closes #968
- hapi: upgrade to Hapi v17 (#1015) (311b9fe)
- socket-engine: introduce package (#999) (de33b02)
- hapi: * The
ngHapiEngine
is no longer supported for Hapi v16. TheRESPONSE
token provided under@nguniversal/hapi-engine/tokens
now uses the newResponseToolkit
, which is unavailable in Hapi v16. Updated instructions are available in the package's README
6.0.0 (2018-05-03)
6.0.0-rc.2 (2018-04-24)
6.0.0-rc.1 (2018-04-24)
6.0.0-rc.0 (2018-04-24)
6.0.0-rc.0 (2018-04-24)
5.0.0 (2018-04-02)
- express-engine: node 9 strict engine error (853) (e4a9775), closes 851
- aspnetcore-engine: fix ServerTransferStateModule and TransferState (889) (14c7616)
BREAKING CHANGE:
The tokens for express-engine
and hapi-engine
are now imported at top-level. Do the following:
import {REQUEST, RESPONSE} from '@nguniversal/express-engine';
instead of
import {REQUEST, RESPONSE} from '@nguniversal/express-engine/tokens';
Note: there is a slight bundling/tree-shaking issue with this new structure which should be resolved in the next release. The current workaround is to temporarily downgrade to the previous version.