You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9Lines changed: 9 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,9 +87,16 @@ Overall the core Framework files and API are expected to remain stable however t
87
87
// change, however it's mostly just an internal property for unit testing and
88
88
// for safety in the event of an unexpected error.
89
89
90
+
jsxLoader.compiler.addUseStrict=true;
91
+
// By default "use strict"; is now added to the top of compiled JS code if
92
+
// does not already exist. This can be turned off by setting `addUseStrict = false`.
93
+
// This behavior is similar to the latest version of Babel 7.
94
+
90
95
// Added new code hint that is supported by Babel:
91
96
/* @jsxFrag Vue.Fragment */
92
97
~~~
98
+
* Updated the CDN version of Babel Standalone used for old browsers from `7.10.4` to `7.12.6`
99
+
* Added improved error message for compile errors where the number of opening tags did not match the number of closing tags. Previously some of these errors were only caught at runtime and not compile time.
93
100
* Enhancements for DataFormsJS Framework files:
94
101
* Added `app.updateTemplatesForIE(rootElement)`. IE 11 considers `<template>` elements as valid elements so it applies `querySelector()` and related methods to elements under `<templates>`'s so replace with them `<script type="text/x-template">`. This avoids issues of `<template>` elements that contain embedded content. Previously this was only handled once per page load but now is handled (for IE only) when views are rendered.
95
102
* Added features in `js/plugins/dataBind.js` based on the Web Components version.
@@ -127,6 +134,8 @@ Overall the core Framework files and API are expected to remain stable however t
127
134
* Updated dependencies used for building the `*.min.js` files
128
135
*`@babel/standalone` updated from `7.7.7` to `7.12.6`, used to build es5 version of React Components
129
136
*`uglify-js` updated from `3.7.3` to `3.11.6`
137
+
*`eslint` updated from `7.3.1` to `7.13.0`
138
+
* Updated `.eslintrc.js`for improved syntax validation when using VS Code with`*.jsx` example and test files
0 commit comments