@ui5/builder 3.0.0-alpha.1 → 3.0.0-alpha.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +850 -0
- package/index.js +0 -43
- package/lib/lbt/analyzer/JSModuleAnalyzer.js +27 -8
- package/lib/lbt/analyzer/XMLTemplateAnalyzer.js +2 -1
- package/lib/lbt/bundle/Builder.js +364 -137
- package/lib/lbt/bundle/BundleWriter.js +17 -0
- package/lib/lbt/bundle/Resolver.js +2 -2
- package/lib/lbt/resources/LocatorResource.js +7 -7
- package/lib/lbt/resources/LocatorResourcePool.js +8 -4
- package/lib/lbt/resources/ResourceCollector.js +22 -15
- package/lib/lbt/resources/ResourceInfoList.js +0 -1
- package/lib/lbt/resources/ResourcePool.js +7 -6
- package/lib/lbt/utils/escapePropertiesFile.js +3 -6
- package/lib/lbt/utils/parseUtils.js +1 -1
- package/lib/processors/bundlers/moduleBundler.js +31 -10
- package/lib/processors/jsdoc/lib/createIndexFiles.js +1 -1
- package/lib/processors/jsdoc/lib/transformApiJson.js +20 -20
- package/lib/processors/jsdoc/lib/ui5/plugin.js +111 -6
- package/lib/processors/jsdoc/lib/ui5/template/publish.js +112 -91
- package/lib/processors/jsdoc/lib/ui5/template/utils/versionUtil.js +1 -1
- package/lib/processors/manifestCreator.js +8 -45
- package/lib/processors/minifier.js +11 -5
- package/lib/tasks/buildThemes.js +1 -1
- package/lib/tasks/bundlers/generateBundle.js +70 -30
- package/lib/tasks/bundlers/generateComponentPreload.js +26 -19
- package/lib/tasks/bundlers/generateFlexChangesBundle.js +10 -5
- package/lib/tasks/bundlers/generateLibraryPreload.js +113 -94
- package/lib/tasks/bundlers/generateManifestBundle.js +8 -10
- package/lib/tasks/bundlers/generateStandaloneAppBundle.js +42 -10
- package/lib/tasks/bundlers/utils/createModuleNameMapping.js +31 -0
- package/lib/tasks/generateCachebusterInfo.js +7 -3
- package/lib/tasks/generateLibraryManifest.js +6 -8
- package/lib/tasks/generateResourcesJson.js +3 -3
- package/lib/tasks/generateThemeDesignerResources.js +118 -2
- package/lib/tasks/generateVersionInfo.js +5 -5
- package/lib/tasks/jsdoc/generateJsdoc.js +1 -1
- package/lib/tasks/minify.js +14 -4
- package/lib/tasks/taskRepository.js +1 -13
- package/lib/tasks/transformBootstrapHtml.js +6 -1
- package/package.json +11 -10
- package/lib/builder/BuildContext.js +0 -56
- package/lib/builder/ProjectBuildContext.js +0 -57
- package/lib/builder/builder.js +0 -419
- package/lib/tasks/TaskUtil.js +0 -160
- package/lib/types/AbstractBuilder.js +0 -270
- package/lib/types/AbstractFormatter.js +0 -66
- package/lib/types/AbstractUi5Formatter.js +0 -95
- package/lib/types/application/ApplicationBuilder.js +0 -211
- package/lib/types/application/ApplicationFormatter.js +0 -227
- package/lib/types/application/applicationType.js +0 -15
- package/lib/types/library/LibraryBuilder.js +0 -231
- package/lib/types/library/LibraryFormatter.js +0 -519
- package/lib/types/library/libraryType.js +0 -15
- package/lib/types/module/ModuleBuilder.js +0 -7
- package/lib/types/module/ModuleFormatter.js +0 -54
- package/lib/types/module/moduleType.js +0 -15
- package/lib/types/themeLibrary/ThemeLibraryBuilder.js +0 -63
- package/lib/types/themeLibrary/ThemeLibraryFormatter.js +0 -90
- package/lib/types/themeLibrary/themeLibraryType.js +0 -15
- package/lib/types/typeRepository.js +0 -46
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,850 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
All notable changes to this project will be documented in this file.
|
|
3
|
+
This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
4
|
+
|
|
5
|
+
A list of unreleased changes can be found [here](https://github.com/SAP/ui5-builder/compare/v3.0.0-alpha.10...HEAD).
|
|
6
|
+
|
|
7
|
+
<a name="v3.0.0-alpha.10"></a>
|
|
8
|
+
## [v3.0.0-alpha.10] - 2022-08-08
|
|
9
|
+
|
|
10
|
+
<a name="v3.0.0-alpha.9"></a>
|
|
11
|
+
## [v3.0.0-alpha.9] - 2022-07-27
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
- **minify:** Change default to not omit source map resources [`6d75a49`](https://github.com/SAP/ui5-builder/commit/6d75a495224590097332fc061c66cfe0e8f4c151)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
<a name="v3.0.0-alpha.8"></a>
|
|
17
|
+
## [v3.0.0-alpha.8] - 2022-07-15
|
|
18
|
+
|
|
19
|
+
<a name="v3.0.0-alpha.7"></a>
|
|
20
|
+
## [v3.0.0-alpha.7] - 2022-06-14
|
|
21
|
+
### Breaking Changes
|
|
22
|
+
- Remove build execution ([#740](https://github.com/SAP/ui5-builder/issues/740)) [`af2e956`](https://github.com/SAP/ui5-builder/commit/af2e956f6cba1275669160328e32df3fffa782d0)
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
- Avoid redundant bundle creation ([#741](https://github.com/SAP/ui5-builder/issues/741)) [`13c8405`](https://github.com/SAP/ui5-builder/commit/13c840585946401d238936dfa38a6f70a73e9ed0)
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
- Enable modern preload bundles without dependencies ([#739](https://github.com/SAP/ui5-builder/issues/739)) [`97cfa6c`](https://github.com/SAP/ui5-builder/commit/97cfa6cd3eadff57bcc18816534c7751551ebdb8)
|
|
29
|
+
|
|
30
|
+
### BREAKING CHANGE
|
|
31
|
+
|
|
32
|
+
* builder.js has been removed. Use ui5-project builder instead
|
|
33
|
+
* Tasks now rely on Project instances being available on Resources (see https://github.com/SAP/ui5-fs/pull/381)
|
|
34
|
+
* TaskRepository#addTask has been removed. Custom tasks need to be added to the project graph instead
|
|
35
|
+
* TaskUtil#get/set/clearTag now requires a Project instance to be provided. Path strings are no longer sufficient
|
|
36
|
+
and will cause an exception to be thrown
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
<a name="v3.0.0-alpha.6"></a>
|
|
40
|
+
## [v3.0.0-alpha.6] - 2022-04-26
|
|
41
|
+
### Bug Fixes
|
|
42
|
+
- **JSModuleAnalyzer:** Fix detection of bundle name ([#705](https://github.com/SAP/ui5-builder/issues/705)) [`aaeafd4`](https://github.com/SAP/ui5-builder/commit/aaeafd4a1fd194dd08e5ae47c29d90f0b4c7d197)
|
|
43
|
+
- **generateResourcesJson:** Add raw-module info for debug bundles ([#736](https://github.com/SAP/ui5-builder/issues/736)) [`3b918e8`](https://github.com/SAP/ui5-builder/commit/3b918e83bfd38342778ecd4c58e648e99ad7cffc)
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
<a name="v3.0.0-alpha.5"></a>
|
|
47
|
+
## [v3.0.0-alpha.5] - 2022-04-14
|
|
48
|
+
### Bug Fixes
|
|
49
|
+
- **LibraryBuilder:** Align task order of "generateComponentPreload" [`aea061d`](https://github.com/SAP/ui5-builder/commit/aea061d9d6c2ac0c11484dcc08bdcda23ab62986)
|
|
50
|
+
|
|
51
|
+
### Features
|
|
52
|
+
- **generateThemeDesignerResources task:** Create css_variables.less ([#730](https://github.com/SAP/ui5-builder/issues/730)) [`34e69be`](https://github.com/SAP/ui5-builder/commit/34e69be95fc8ec1961b24b7e2580c2c993d814d3)
|
|
53
|
+
|
|
54
|
+
### BREAKING CHANGE
|
|
55
|
+
|
|
56
|
+
For library projects, the task "generateComponentPreload" is now
|
|
57
|
+
executed after tasks "generateLibraryManifest" and
|
|
58
|
+
"generateManifestBundle" instead of before them.
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
<a name="v3.0.0-alpha.4"></a>
|
|
62
|
+
## [v3.0.0-alpha.4] - 2022-04-05
|
|
63
|
+
### Features
|
|
64
|
+
- **builder:** Add cssVariables option ([#728](https://github.com/SAP/ui5-builder/issues/728)) [`30d58e1`](https://github.com/SAP/ui5-builder/commit/30d58e1081c1bdc665f13952ecbe5c400b5f4ed7)
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
<a name="v3.0.0-alpha.3"></a>
|
|
68
|
+
## [v3.0.0-alpha.3] - 2022-03-10
|
|
69
|
+
### Bug Fixes
|
|
70
|
+
- **LocatorResourcePool:** Wait for resources in prepare step ([#719](https://github.com/SAP/ui5-builder/issues/719)) [`1b7f93f`](https://github.com/SAP/ui5-builder/commit/1b7f93f4988340d7a6575be3191a02e6c295ebd0)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
<a name="v3.0.0-alpha.2"></a>
|
|
74
|
+
## [v3.0.0-alpha.2] - 2022-02-25
|
|
75
|
+
### Bug Fixes
|
|
76
|
+
- **XMLTemplateAnalyzer:** Analyze core:require of FragmentDefinition [`af075ed`](https://github.com/SAP/ui5-builder/commit/af075edf784d9f1ba162a34f0bf150dbcbc0f479)
|
|
77
|
+
|
|
78
|
+
### Features
|
|
79
|
+
- Generate source maps for bundles ([#695](https://github.com/SAP/ui5-builder/issues/695)) [`8a20c42`](https://github.com/SAP/ui5-builder/commit/8a20c4257a1ebe4d613b0595be93cd45d900f580)
|
|
80
|
+
- **replaceVersion/Copyright:** Also process test-resources ([#693](https://github.com/SAP/ui5-builder/issues/693)) [`a0d4bc2`](https://github.com/SAP/ui5-builder/commit/a0d4bc2a80d61e042786207af4bdbda6c3ddfe31)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
<a name="v3.0.0-alpha.1"></a>
|
|
84
|
+
## [v3.0.0-alpha.1] - 2022-01-25
|
|
85
|
+
### Breaking Changes
|
|
86
|
+
- Require Node.js >= 16.13.2 / npm >= 8 [`dbf6c06`](https://github.com/SAP/ui5-builder/commit/dbf6c0694693070f73e9f96edef90f094d5bf721)
|
|
87
|
+
- **generateResourcesJson:** Make 'dependencies' parameter mandatory [`268dd16`](https://github.com/SAP/ui5-builder/commit/268dd16091c515ec0c922ea23af437d9aa8bf3ea)
|
|
88
|
+
- **moduleBundler:** Always default to `optimize: true` ([#685](https://github.com/SAP/ui5-builder/issues/685)) [`de5837c`](https://github.com/SAP/ui5-builder/commit/de5837c43449ea61deae3b2f02f9973f3fa37992)
|
|
89
|
+
|
|
90
|
+
### Bug Fixes
|
|
91
|
+
- **Bundler:** Ensure reproducibility for bundles with multiple parts ([#689](https://github.com/SAP/ui5-builder/issues/689)) [`6f4588b`](https://github.com/SAP/ui5-builder/commit/6f4588b3eb687178e557ac4fb36481104f9681a0)
|
|
92
|
+
- **generateResourcesJson:** Don't list resources omitted from build result [`9608c51`](https://github.com/SAP/ui5-builder/commit/9608c5177f86494ba689d2e799b4378fec9ed6fa)
|
|
93
|
+
- **generateResourcesJson:** Analyze debug bundles ([#669](https://github.com/SAP/ui5-builder/issues/669)) [`f27513a`](https://github.com/SAP/ui5-builder/commit/f27513a259b30d39e260790781b6d435b4ab088b)
|
|
94
|
+
|
|
95
|
+
### Features
|
|
96
|
+
- Support ES2021 language features [`e749b6a`](https://github.com/SAP/ui5-builder/commit/e749b6ae0838f923b27dd0d7d34da2174c433f5f)
|
|
97
|
+
- Add minify task and processor ([#666](https://github.com/SAP/ui5-builder/issues/666)) [`a3af604`](https://github.com/SAP/ui5-builder/commit/a3af604ff0a12fb9241dcd105cf0aec8d718a299)
|
|
98
|
+
|
|
99
|
+
### BREAKING CHANGE
|
|
100
|
+
|
|
101
|
+
Support for older Node.js and npm releases has been dropped.
|
|
102
|
+
Only Node.js v16.13.2 and npm v8 or higher are supported.
|
|
103
|
+
|
|
104
|
+
The following tasks have been removed:
|
|
105
|
+
- createDebugFiles
|
|
106
|
+
- uglify
|
|
107
|
+
|
|
108
|
+
The following processors have been removed:
|
|
109
|
+
- debugFileCreator
|
|
110
|
+
- resourceCopier
|
|
111
|
+
- uglifier
|
|
112
|
+
|
|
113
|
+
As a replacement, the new 'minify' task and 'minifier' processor can be
|
|
114
|
+
used.
|
|
115
|
+
|
|
116
|
+
Note: The minify task is executed earlier, before the bundling
|
|
117
|
+
process takes place. Existing 'beforeTask' and 'afterTask' configuration of
|
|
118
|
+
custom tasks might need to be adapted to cater for this change.
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
<a name="v3.0.0-alpha.0"></a>
|
|
122
|
+
## [v3.0.0-alpha.0] - 2021-12-14
|
|
123
|
+
### Bug Fixes
|
|
124
|
+
- **Bundler:** Sort raw modules by default [`0e11b69`](https://github.com/SAP/ui5-builder/commit/0e11b6965a1d2e63a96e9b738e38975b5ac755bc)
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
<a name="v2.11.2"></a>
|
|
128
|
+
## [v2.11.2] - 2021-11-17
|
|
129
|
+
### Bug Fixes
|
|
130
|
+
- **Builder:** Emit warning on bundleInfo name without extension [`ed0da12`](https://github.com/SAP/ui5-builder/commit/ed0da123ac084d126a28f0f34d9740c310d91902)
|
|
131
|
+
- **manifestCreator:** Trim whitespace/new-lines for sap.app/title [`019cfd7`](https://github.com/SAP/ui5-builder/commit/019cfd7031a2bd63ce93801ad027413151a3b060)
|
|
132
|
+
|
|
133
|
+
|
|
134
|
+
<a name="v2.11.1"></a>
|
|
135
|
+
## [v2.11.1] - 2021-10-19
|
|
136
|
+
### Bug Fixes
|
|
137
|
+
- Minification excludes for application projects [`7f6fd68`](https://github.com/SAP/ui5-builder/commit/7f6fd68e1aed9131896723f1231816287eaf2fce)
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
<a name="v2.11.0"></a>
|
|
141
|
+
## [v2.11.0] - 2021-10-19
|
|
142
|
+
### Bug Fixes
|
|
143
|
+
- **manifestCreator:** supportedThemes should only list relevant themes [`01f3859`](https://github.com/SAP/ui5-builder/commit/01f3859070b6955b9824b0949e633c6d40244633)
|
|
144
|
+
|
|
145
|
+
### Features
|
|
146
|
+
- Support build minification excludes ([#653](https://github.com/SAP/ui5-builder/issues/653)) [`0aa2301`](https://github.com/SAP/ui5-builder/commit/0aa2301df4c5d40c531da52e2d6314955b95b396)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
<a name="v2.10.0"></a>
|
|
150
|
+
## [v2.10.0] - 2021-10-05
|
|
151
|
+
### Features
|
|
152
|
+
- Introduce build task replaceBuildtime [`2ad0960`](https://github.com/SAP/ui5-builder/commit/2ad09603deee3bc26eae36aa36a7a4ac10f83cb0)
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
<a name="v2.9.5"></a>
|
|
156
|
+
## [v2.9.5] - 2021-08-25
|
|
157
|
+
### Bug Fixes
|
|
158
|
+
- **AbstractBuilder:** Multiple custom task executions did not run ([#636](https://github.com/SAP/ui5-builder/issues/636)) [`c05587a`](https://github.com/SAP/ui5-builder/commit/c05587a3cab93c8852832098318235dbfbcce49f)
|
|
159
|
+
- **Builder:** Handle files without extension ([#637](https://github.com/SAP/ui5-builder/issues/637)) [`07aaa24`](https://github.com/SAP/ui5-builder/commit/07aaa247ae8c07f8c7bb13a93439ef2c1270cb6c)
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
<a name="v2.9.4"></a>
|
|
163
|
+
## [v2.9.4] - 2021-07-23
|
|
164
|
+
### Bug Fixes
|
|
165
|
+
- **XMLTemplateAnalyzer:** Include document name for XML parsing errors [`3c88ca4`](https://github.com/SAP/ui5-builder/commit/3c88ca47aae85892360e4e4cf4b50860a0f430e3)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
<a name="v2.9.3"></a>
|
|
169
|
+
## [v2.9.3] - 2021-07-01
|
|
170
|
+
### Bug Fixes
|
|
171
|
+
- **LibraryFormatter:** Fix handling of paths containing special characters [`2093562`](https://github.com/SAP/ui5-builder/commit/2093562adec588a9c1f50125e0b739836e6c76c8)
|
|
172
|
+
|
|
173
|
+
|
|
174
|
+
<a name="v2.9.2"></a>
|
|
175
|
+
## [v2.9.2] - 2021-06-17
|
|
176
|
+
### Bug Fixes
|
|
177
|
+
- Switch from esprima to espree ([#615](https://github.com/SAP/ui5-builder/issues/615)) [`c3d50e3`](https://github.com/SAP/ui5-builder/commit/c3d50e36aacf374f7616278aa590a6423c3294fe)
|
|
178
|
+
- **lbt/resources/ResourceCollector:** Ensure proper matching of indicator files ([#614](https://github.com/SAP/ui5-builder/issues/614)) [`2d3a1d8`](https://github.com/SAP/ui5-builder/commit/2d3a1d86f06f0eb223b7ae9843d6479ebb1e14e4)
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
<a name="v2.9.1"></a>
|
|
182
|
+
## [v2.9.1] - 2021-06-08
|
|
183
|
+
### Bug Fixes
|
|
184
|
+
- **JSDoc:** Use namespace to derive uilib name for jsdoc generator [`2077130`](https://github.com/SAP/ui5-builder/commit/2077130d52305e4f46c3230c94001812beb2eb36)
|
|
185
|
+
- **JSDoc:** add project name to JSDoc configuration and api.json ([#609](https://github.com/SAP/ui5-builder/issues/609)) [`419ce38`](https://github.com/SAP/ui5-builder/commit/419ce3836bce117fb3d5fc05af11caef5c8a432a)
|
|
186
|
+
- **lib/processors/debugFileCreator:** Add -dbg suffix only to files ([#611](https://github.com/SAP/ui5-builder/issues/611)) [`9da2f7b`](https://github.com/SAP/ui5-builder/commit/9da2f7b7b53b41adbce772e9823cee24b50a9aa9)
|
|
187
|
+
|
|
188
|
+
### Dependency Updates
|
|
189
|
+
- Bump cheerio from 0.22.0 to 1.0.0-rc.9 [`8bdb146`](https://github.com/SAP/ui5-builder/commit/8bdb1462e721127eaf860665a1361b6877e873a1)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
<a name="v2.9.0"></a>
|
|
193
|
+
## [v2.9.0] - 2021-06-01
|
|
194
|
+
### Features
|
|
195
|
+
- Support writing 'bundles' config as part of a bundle ([#396](https://github.com/SAP/ui5-builder/issues/396)) [`b5f372a`](https://github.com/SAP/ui5-builder/commit/b5f372a6ab9c31f3acef41a59e6cecd6681be2dd)
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
<a name="v2.8.4"></a>
|
|
199
|
+
## [v2.8.4] - 2021-05-17
|
|
200
|
+
### Bug Fixes
|
|
201
|
+
- **XMLTemplateAnalyzer:** Properly detect conditional dependencies [`0f56490`](https://github.com/SAP/ui5-builder/commit/0f56490cedcdebc363cc7f1d99f03cfde907804f)
|
|
202
|
+
- **lbt/bundle/Builder:** Preserve comments in bundles [`8dfa919`](https://github.com/SAP/ui5-builder/commit/8dfa9191d36cb60ce44b64536b6f6b2b766b87c2)
|
|
203
|
+
|
|
204
|
+
|
|
205
|
+
<a name="v2.8.3"></a>
|
|
206
|
+
## [v2.8.3] - 2021-04-19
|
|
207
|
+
### Bug Fixes
|
|
208
|
+
- Emit warning when including/excluding unknown tasks [`854f456`](https://github.com/SAP/ui5-builder/commit/854f456e06e163e8423702e4fe893905e240adfa)
|
|
209
|
+
|
|
210
|
+
|
|
211
|
+
<a name="v2.8.2"></a>
|
|
212
|
+
## [v2.8.2] - 2021-03-11
|
|
213
|
+
### Bug Fixes
|
|
214
|
+
- **LibraryFormatter:** Do not throw for missing .library in legacy OpenUI5 theme libraries [`f7e22ba`](https://github.com/SAP/ui5-builder/commit/f7e22ba866bf6a61b0d2932ef18aad53127641fd)
|
|
215
|
+
|
|
216
|
+
### Dependency Updates
|
|
217
|
+
- Bump less-openui5 from 0.10.0 to 0.11.0 ([#594](https://github.com/SAP/ui5-builder/issues/594)) [`f3d174b`](https://github.com/SAP/ui5-builder/commit/f3d174be1fc2ab66a62632439592b2899680c093)
|
|
218
|
+
|
|
219
|
+
|
|
220
|
+
<a name="v2.8.1"></a>
|
|
221
|
+
## [v2.8.1] - 2021-03-04
|
|
222
|
+
### Bug Fixes
|
|
223
|
+
- **generateResourcesJson:** Include dependencies of XML resources [`0fc364d`](https://github.com/SAP/ui5-builder/commit/0fc364ded64eb5bae4085397dc1831e04b19edf4)
|
|
224
|
+
- **manifestCreator:** 'embeds' should list all components ([#575](https://github.com/SAP/ui5-builder/issues/575)) [`11f823a`](https://github.com/SAP/ui5-builder/commit/11f823a77e72cfa4c096e7e8f4277a6a6b9400b8)
|
|
225
|
+
- **moduleBundler:** Apply defaultFileTypes ([#580](https://github.com/SAP/ui5-builder/issues/580)) [`42f6474`](https://github.com/SAP/ui5-builder/commit/42f64744a299e8548f6dbdb7bcbb8b3cef72f1f4)
|
|
226
|
+
- **resourceListCreator:** Include dependencies of subModules ([#588](https://github.com/SAP/ui5-builder/issues/588)) [`fe61d6e`](https://github.com/SAP/ui5-builder/commit/fe61d6eba6671ca31f7c49a7d1281adb6d5f2114)
|
|
227
|
+
- **versionInfoGenerator:** fix hasOwnPreload flag ([#591](https://github.com/SAP/ui5-builder/issues/591)) [`73a0f8b`](https://github.com/SAP/ui5-builder/commit/73a0f8baa0248aef3ac6c2b114082aa120ef6e22)
|
|
228
|
+
|
|
229
|
+
|
|
230
|
+
<a name="v2.8.0"></a>
|
|
231
|
+
## [v2.8.0] - 2021-02-09
|
|
232
|
+
### Features
|
|
233
|
+
- Add Library/Component preload exclude configuration ([#573](https://github.com/SAP/ui5-builder/issues/573)) [`f1644a4`](https://github.com/SAP/ui5-builder/commit/f1644a4d75c4b3ffb5c092f3a24c74b9123afedc)
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
<a name="v2.7.2"></a>
|
|
237
|
+
## [v2.7.2] - 2021-01-29
|
|
238
|
+
### Dependency Updates
|
|
239
|
+
- Bump less-openui5 from 0.9.0 to 0.10.0 [`4674fef`](https://github.com/SAP/ui5-builder/commit/4674fef348cf0f5b1ac76fff931335244d64e66f)
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
<a name="v2.7.1"></a>
|
|
243
|
+
## [v2.7.1] - 2021-01-28
|
|
244
|
+
### Bug Fixes
|
|
245
|
+
- **JSDoc:** adapt sdkTransformer to change in transformApiJson.js ([#574](https://github.com/SAP/ui5-builder/issues/574)) [`655f731`](https://github.com/SAP/ui5-builder/commit/655f731191f1210d9f72bee9f60fcebdc863bc36)
|
|
246
|
+
- **versionInfoGenerator:** manifest without embeds [#486](https://github.com/SAP/ui5-builder/issues/486) ([#576](https://github.com/SAP/ui5-builder/issues/576)) [`4d86226`](https://github.com/SAP/ui5-builder/commit/4d86226abf6ce549f3cf719068270014ddeefb5a)
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
<a name="v2.7.0"></a>
|
|
250
|
+
## [v2.7.0] - 2021-01-26
|
|
251
|
+
### Features
|
|
252
|
+
- Versioninfo enrich with manifest infos ([#554](https://github.com/SAP/ui5-builder/issues/554)) [`7603ece`](https://github.com/SAP/ui5-builder/commit/7603ece36a74592c7756f6147eed91d08a5788a6)
|
|
253
|
+
- Align JSDoc template & plugin with OpenUI5 1.87.0 ([#572](https://github.com/SAP/ui5-builder/issues/572)) [`0cb02ac`](https://github.com/SAP/ui5-builder/commit/0cb02acee2b070889146ef9f725cc139691f0ab2)
|
|
254
|
+
|
|
255
|
+
|
|
256
|
+
<a name="v2.6.1"></a>
|
|
257
|
+
## [v2.6.1] - 2021-01-21
|
|
258
|
+
### Bug Fixes
|
|
259
|
+
- **Theme Build:** Only process themes within library namespace ([#570](https://github.com/SAP/ui5-builder/issues/570)) [`8cecc01`](https://github.com/SAP/ui5-builder/commit/8cecc01ccbd1a84e2ede91e618f31dcf6c00b3fd)
|
|
260
|
+
- **processors/libraryLessGenerator:** Don't throw in case of import errors [`0e25b59`](https://github.com/SAP/ui5-builder/commit/0e25b59fe8e7e37f4f6b5c947a76b4da6f79469f)
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
<a name="v2.6.0"></a>
|
|
264
|
+
## [v2.6.0] - 2021-01-14
|
|
265
|
+
### Features
|
|
266
|
+
- Add 'generateThemeDesignerResources' task [`03241c0`](https://github.com/SAP/ui5-builder/commit/03241c0e2599cb0928cbbf34ddc678634b2d5a93)
|
|
267
|
+
- Add 'libraryLessGenerator' processor ([#560](https://github.com/SAP/ui5-builder/issues/560)) [`a7e1e5c`](https://github.com/SAP/ui5-builder/commit/a7e1e5c0c4b63d9bab3f6645deff8e0f4187d305)
|
|
268
|
+
- **manifestBundler:** Add support for sap.app/i18n/enhanceWith ([#564](https://github.com/SAP/ui5-builder/issues/564)) [`1b7a277`](https://github.com/SAP/ui5-builder/commit/1b7a277aeeba9a43b647a46ae4487878ca2d6219)
|
|
269
|
+
- **manifestCreator:** enrich manifest with supportedLocales in i18n (for libraries) ([#547](https://github.com/SAP/ui5-builder/issues/547)) [`8102034`](https://github.com/SAP/ui5-builder/commit/810203477647c52948eb357ce9679373d32dd9b1)
|
|
270
|
+
|
|
271
|
+
|
|
272
|
+
<a name="v2.5.1"></a>
|
|
273
|
+
## [v2.5.1] - 2020-12-18
|
|
274
|
+
### Bug Fixes
|
|
275
|
+
- **Windows:** Correctly handle project paths containing non-ASCII characters [`b229bf3`](https://github.com/SAP/ui5-builder/commit/b229bf315097591d2e870b74fb2b92b26b178877)
|
|
276
|
+
|
|
277
|
+
|
|
278
|
+
<a name="v2.5.0"></a>
|
|
279
|
+
## [v2.5.0] - 2020-12-15
|
|
280
|
+
### Bug Fixes
|
|
281
|
+
- **manifestCreator:** Add component path to error logs [`049b9ee`](https://github.com/SAP/ui5-builder/commit/049b9ee22f8bf6c1bb41f9ba32be65a8fce38f23)
|
|
282
|
+
|
|
283
|
+
### Features
|
|
284
|
+
- **ApplicationFormatter:** Implement manifest.appdescr_variant fallback ([#545](https://github.com/SAP/ui5-builder/issues/545)) [`6d44481`](https://github.com/SAP/ui5-builder/commit/6d44481ad3668758d4c008d28b11cb47ca6bbee1)
|
|
285
|
+
|
|
286
|
+
|
|
287
|
+
<a name="v2.4.5"></a>
|
|
288
|
+
## [v2.4.5] - 2020-11-30
|
|
289
|
+
### Bug Fixes
|
|
290
|
+
- **generateResourcesJson:** Make resources.json generation deterministic [`41d3335`](https://github.com/SAP/ui5-builder/commit/41d3335bbddaba2e65e3293b37f89010ab0cd6fc)
|
|
291
|
+
- **manifestCreator:** Only list components with corresponding 'embeddedBy' ([#555](https://github.com/SAP/ui5-builder/issues/555)) [`89872d7`](https://github.com/SAP/ui5-builder/commit/89872d79623accad1ed148034c1f2fe46e44eeee)
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
<a name="v2.4.4"></a>
|
|
295
|
+
## [v2.4.4] - 2020-11-25
|
|
296
|
+
### Bug Fixes
|
|
297
|
+
- **JSModuleAnalyzer:** Properly handle jQuery.sap.registerPreloadedModules calls [`9433f6a`](https://github.com/SAP/ui5-builder/commit/9433f6a989d6fea46f637ac8ff58c739977f456c)
|
|
298
|
+
|
|
299
|
+
|
|
300
|
+
<a name="v2.4.3"></a>
|
|
301
|
+
## [v2.4.3] - 2020-11-06
|
|
302
|
+
|
|
303
|
+
<a name="v2.4.2"></a>
|
|
304
|
+
## [v2.4.2] - 2020-11-04
|
|
305
|
+
### Reverts
|
|
306
|
+
- [FEATURE] Switch XML minifier from pretty-data to minify-xml
|
|
307
|
+
|
|
308
|
+
|
|
309
|
+
<a name="v2.4.1"></a>
|
|
310
|
+
## [v2.4.1] - 2020-11-03
|
|
311
|
+
### Dependency Updates
|
|
312
|
+
- Bump minify-xml from 2.1.2 to 2.1.3 [`839d12b`](https://github.com/SAP/ui5-builder/commit/839d12b0b4150ef13c86e639576e5a29854dc7d9)
|
|
313
|
+
|
|
314
|
+
|
|
315
|
+
<a name="v2.4.0"></a>
|
|
316
|
+
## [v2.4.0] - 2020-11-03
|
|
317
|
+
### Features
|
|
318
|
+
- Tag bundles and ignore them in uglify task ([#535](https://github.com/SAP/ui5-builder/issues/535)) [`b487366`](https://github.com/SAP/ui5-builder/commit/b4873663ea67fa16f8fd9c2672c647026894ba32)
|
|
319
|
+
- Switch XML minifier from pretty-data to minify-xml [`be29520`](https://github.com/SAP/ui5-builder/commit/be295203cf71740f0585ee59f44c55ee59e41b26)
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
<a name="v2.3.0"></a>
|
|
323
|
+
## [v2.3.0] - 2020-10-22
|
|
324
|
+
### Features
|
|
325
|
+
- Create designtime and support bundles for libraries ([#529](https://github.com/SAP/ui5-builder/issues/529)) [`2a51943`](https://github.com/SAP/ui5-builder/commit/2a5194346279279a6fb28c7332245e1cc5360d63)
|
|
326
|
+
|
|
327
|
+
### Performance Improvements
|
|
328
|
+
- **BundleWriter:** Improve performance ([#534](https://github.com/SAP/ui5-builder/issues/534)) [`750b43e`](https://github.com/SAP/ui5-builder/commit/750b43eb88aded89eb8cd0b4b9ccb1ca5d5f94d2)
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
<a name="v2.2.1"></a>
|
|
332
|
+
## [v2.2.1] - 2020-10-06
|
|
333
|
+
### Bug Fixes
|
|
334
|
+
- **Bundler:** Improve error log messages ([#466](https://github.com/SAP/ui5-builder/issues/466)) [`6bb6235`](https://github.com/SAP/ui5-builder/commit/6bb6235464b54da4e13553ecf9e0fe0ebcb3fe61)
|
|
335
|
+
- **tasks/generateResourcesJson:** Handling for sap.ui.integration [`1191b3d`](https://github.com/SAP/ui5-builder/commit/1191b3d4fac9ab7b78467d254afa88041962c416)
|
|
336
|
+
|
|
337
|
+
### Dependency Updates
|
|
338
|
+
- Bump terser from 4.8.0 to 5.2.1 ([#511](https://github.com/SAP/ui5-builder/issues/511)) [`18f0df8`](https://github.com/SAP/ui5-builder/commit/18f0df84d7f3f4c7de9b1cacf06a5f5d2f0de8a9)
|
|
339
|
+
|
|
340
|
+
|
|
341
|
+
<a name="v2.2.0"></a>
|
|
342
|
+
## [v2.2.0] - 2020-09-02
|
|
343
|
+
### Bug Fixes
|
|
344
|
+
- SapUiDefine call should not fail when there's no factory function ([#491](https://github.com/SAP/ui5-builder/issues/491)) [`25c6a3c`](https://github.com/SAP/ui5-builder/commit/25c6a3c9cae0d41f2757a8f0641bc043e171201b)
|
|
345
|
+
|
|
346
|
+
### Features
|
|
347
|
+
- Add generateResourcesJson task ([#390](https://github.com/SAP/ui5-builder/issues/390)) [`021f439`](https://github.com/SAP/ui5-builder/commit/021f439e4125403d0d9e2fa0b7bcd3174ceb46e6)
|
|
348
|
+
|
|
349
|
+
|
|
350
|
+
<a name="v2.1.0"></a>
|
|
351
|
+
## [v2.1.0] - 2020-08-11
|
|
352
|
+
### Features
|
|
353
|
+
- Implement TaskUtil class [`a7074ae`](https://github.com/SAP/ui5-builder/commit/a7074aeb8167330fd1b6d30bf5b387a212cd6b1b)
|
|
354
|
+
- **generateFlexChangesBundle:** Hide bundle input from build result [`001183a`](https://github.com/SAP/ui5-builder/commit/001183a4981bb5fe43039cedfbea70c2090b24db)
|
|
355
|
+
|
|
356
|
+
|
|
357
|
+
<a name="v2.0.7"></a>
|
|
358
|
+
## [v2.0.7] - 2020-08-10
|
|
359
|
+
### Bug Fixes
|
|
360
|
+
- **generateLibraryPreload:** Ignore missing modules ([#481](https://github.com/SAP/ui5-builder/issues/481)) [`97b339f`](https://github.com/SAP/ui5-builder/commit/97b339f9c5dbddc8b80ed11c68f557d4eddc7f0a)
|
|
361
|
+
|
|
362
|
+
### Dependency Updates
|
|
363
|
+
- Pin estraverse to v5.1.0 [`e5bc455`](https://github.com/SAP/ui5-builder/commit/e5bc4552015b71678102fd922609ef184502410c)
|
|
364
|
+
|
|
365
|
+
|
|
366
|
+
<a name="v2.0.6"></a>
|
|
367
|
+
## [v2.0.6] - 2020-07-21
|
|
368
|
+
### Bug Fixes
|
|
369
|
+
- **SmartTemplateAnalyzer:** Do not throw in case missing dependency is expected ([#479](https://github.com/SAP/ui5-builder/issues/479)) [`b2150c3`](https://github.com/SAP/ui5-builder/commit/b2150c303fb14cd07b1f1ecadd1db5117cc7dccf)
|
|
370
|
+
|
|
371
|
+
|
|
372
|
+
<a name="v2.0.5"></a>
|
|
373
|
+
## [v2.0.5] - 2020-07-14
|
|
374
|
+
### Bug Fixes
|
|
375
|
+
- **Node.js API:** TypeScript type definition support ([#475](https://github.com/SAP/ui5-builder/issues/475)) [`7858810`](https://github.com/SAP/ui5-builder/commit/785881061fe72e25230573ffb6b2a440d6782792)
|
|
376
|
+
- **XMLTemplateAnalyzer:** Handle empty XML view/fragment ([#471](https://github.com/SAP/ui5-builder/issues/471)) [`7488d5f`](https://github.com/SAP/ui5-builder/commit/7488d5f2c9216ac87e47ac7019fbc18674e86e30)
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
<a name="v2.0.4"></a>
|
|
380
|
+
## [v2.0.4] - 2020-06-15
|
|
381
|
+
### Bug Fixes
|
|
382
|
+
- **ComponentAnalyzer:** Properly handle sap.ui5/routing ([#463](https://github.com/SAP/ui5-builder/issues/463)) [`717f2ec`](https://github.com/SAP/ui5-builder/commit/717f2ec8e6b04e67966183d25cc0ae59db94f43b)
|
|
383
|
+
|
|
384
|
+
|
|
385
|
+
<a name="v2.0.3"></a>
|
|
386
|
+
## [v2.0.3] - 2020-05-19
|
|
387
|
+
### Bug Fixes
|
|
388
|
+
- Align JSDoc template and scripts with OpenUI5 1.79 ([#460](https://github.com/SAP/ui5-builder/issues/460)) [`c868fa0`](https://github.com/SAP/ui5-builder/commit/c868fa0d0a4c46d6c3098785a23fee3b7097cf02)
|
|
389
|
+
- **manifestBundler:** Add support for i18n object configuration ([#458](https://github.com/SAP/ui5-builder/issues/458)) [`85c4e19`](https://github.com/SAP/ui5-builder/commit/85c4e1958adf407b0dc2f7d4b324e9de354ab670)
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
<a name="v2.0.2"></a>
|
|
393
|
+
## [v2.0.2] - 2020-05-14
|
|
394
|
+
|
|
395
|
+
<a name="v2.0.1"></a>
|
|
396
|
+
## [v2.0.1] - 2020-04-30
|
|
397
|
+
### Bug Fixes
|
|
398
|
+
- Namespaces in API Reference (JSDoc) [`b2a9a10`](https://github.com/SAP/ui5-builder/commit/b2a9a10dfee0ab40ce47eb4fb28666f6ea1f2360)
|
|
399
|
+
|
|
400
|
+
|
|
401
|
+
<a name="v2.0.0"></a>
|
|
402
|
+
## [v2.0.0] - 2020-03-31
|
|
403
|
+
### Breaking Changes
|
|
404
|
+
- Make namespace mandatory for application and library projects ([#430](https://github.com/SAP/ui5-builder/issues/430)) [`ee96c00`](https://github.com/SAP/ui5-builder/commit/ee96c00d762ce24bba39f6c947997fcbb79efaae)
|
|
405
|
+
- Require Node.js >= 10 [`5451765`](https://github.com/SAP/ui5-builder/commit/5451765f648ecfe2c057cc2feed2c8fb7e98ef00)
|
|
406
|
+
- **LibraryFormatter:** Ignore manifest.json of nested apps [`846e929`](https://github.com/SAP/ui5-builder/commit/846e9290ef29aadc1ad18203003983181cd9c23a)
|
|
407
|
+
|
|
408
|
+
### Dependency Updates
|
|
409
|
+
- Bump globby from 10.0.2 to 11.0.0 ([#399](https://github.com/SAP/ui5-builder/issues/399)) [`29efbbd`](https://github.com/SAP/ui5-builder/commit/29efbbd8c5d8bf0aca19e75b08f7b3d6f89e8556)
|
|
410
|
+
|
|
411
|
+
### Features
|
|
412
|
+
- **buildThemes:** Add filtering for available themes ([#419](https://github.com/SAP/ui5-builder/issues/419)) [`848c503`](https://github.com/SAP/ui5-builder/commit/848c5032e98d229a655ddd17f07e252b57838f29)
|
|
413
|
+
|
|
414
|
+
### BREAKING CHANGE
|
|
415
|
+
|
|
416
|
+
If a library contains both, a manifest.json and .library file, they must
|
|
417
|
+
either be located in the same directory or the manifest.json is ignored.
|
|
418
|
+
In cases where the manifest.json is located on a higher level or
|
|
419
|
+
different directory on the same level than a .library file, an exception
|
|
420
|
+
is thrown.
|
|
421
|
+
|
|
422
|
+
UI5 Project must be able to determine the project's namespace,
|
|
423
|
+
otherwise an error is thrown.
|
|
424
|
+
|
|
425
|
+
Support for older Node.js releases has been dropped.
|
|
426
|
+
Only Node.js v10 or higher is supported.
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
<a name="v1.10.1"></a>
|
|
430
|
+
## [v1.10.1] - 2020-02-24
|
|
431
|
+
### Bug Fixes
|
|
432
|
+
- **ApplicationBuilder:** Fix pattern to glob for .library files [`032d9a9`](https://github.com/SAP/ui5-builder/commit/032d9a974373ffc504fc65b46befe523eb3e4c7d)
|
|
433
|
+
|
|
434
|
+
|
|
435
|
+
<a name="v1.10.0"></a>
|
|
436
|
+
## [v1.10.0] - 2020-02-10
|
|
437
|
+
### Bug Fixes
|
|
438
|
+
- Ensure proper handling of multi-byte characters in streams ([#411](https://github.com/SAP/ui5-builder/issues/411)) [`e906ec0`](https://github.com/SAP/ui5-builder/commit/e906ec0c3c3eb9fef874f2b7666c692915a496c6)
|
|
439
|
+
- **Bundling:** Dynamic preload calls should not emit warnings [`4d22b37`](https://github.com/SAP/ui5-builder/commit/4d22b37852ec130fb3198476e4a6225a47e2b657)
|
|
440
|
+
|
|
441
|
+
### Features
|
|
442
|
+
- Add experimental CSS variables and skeleton build ([#393](https://github.com/SAP/ui5-builder/issues/393)) [`df8c39b`](https://github.com/SAP/ui5-builder/commit/df8c39b3f5a69086662b6f92c32e1364c1a93903)
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
<a name="v1.9.0"></a>
|
|
446
|
+
## [v1.9.0] - 2020-01-13
|
|
447
|
+
### Bug Fixes
|
|
448
|
+
- Use 'defaultFileTypes' from bundle configuration ([#385](https://github.com/SAP/ui5-builder/issues/385)) [`c21e13e`](https://github.com/SAP/ui5-builder/commit/c21e13ea2d7f629b1f91b9acf625989f396c6b4f)
|
|
449
|
+
- Detect dynamic dependencies also when newer APIs are used ([#391](https://github.com/SAP/ui5-builder/issues/391)) [`ed1cc9d`](https://github.com/SAP/ui5-builder/commit/ed1cc9d45e517b3b38815483cc60fa7182ffd067)
|
|
450
|
+
|
|
451
|
+
### Features
|
|
452
|
+
- Add new theme-library type ([#285](https://github.com/SAP/ui5-builder/issues/285)) [`a59287b`](https://github.com/SAP/ui5-builder/commit/a59287b670e956ef29ffe10bbbe1c3506ea3b330)
|
|
453
|
+
- **AbstractBuilder:** Allow adding custom tasks for types that have no standard tasks [`654450d`](https://github.com/SAP/ui5-builder/commit/654450df07c22bd1930c014f8b3d6904df8248e9)
|
|
454
|
+
|
|
455
|
+
|
|
456
|
+
<a name="v1.8.0"></a>
|
|
457
|
+
## [v1.8.0] - 2019-12-16
|
|
458
|
+
### Features
|
|
459
|
+
- Add included/excludedDependencies parameter ([#380](https://github.com/SAP/ui5-builder/issues/380)) [`d6ac24a`](https://github.com/SAP/ui5-builder/commit/d6ac24ab76445568afab3fce9c813a0d5c4c4331)
|
|
460
|
+
|
|
461
|
+
|
|
462
|
+
<a name="v1.7.1"></a>
|
|
463
|
+
## [v1.7.1] - 2019-11-18
|
|
464
|
+
### Dependency Updates
|
|
465
|
+
- Bump less-openui5 from 0.7.0 to 0.8.0 [`11101d4`](https://github.com/SAP/ui5-builder/commit/11101d4090718f6bee9f6b4851e05b1e1f33d57b)
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
<a name="v1.7.0"></a>
|
|
469
|
+
## [v1.7.0] - 2019-11-07
|
|
470
|
+
### Bug Fixes
|
|
471
|
+
- **JSDoc:** Use the rel="noopener" attribute for external links. ([#361](https://github.com/SAP/ui5-builder/issues/361)) [`c702104`](https://github.com/SAP/ui5-builder/commit/c7021046af2ac66aaef8db3841192da8a254d304)
|
|
472
|
+
|
|
473
|
+
### Dependency Updates
|
|
474
|
+
- Bump less-openui5 from 0.6.0 to 0.7.0 [`fdb0241`](https://github.com/SAP/ui5-builder/commit/fdb0241faec60062b1da52cc296dc343507fb802)
|
|
475
|
+
|
|
476
|
+
### Features
|
|
477
|
+
- **buildThemes:** Add "compress" option ([#363](https://github.com/SAP/ui5-builder/issues/363)) [`3a0cf6a`](https://github.com/SAP/ui5-builder/commit/3a0cf6aa990a48830d3c22dac285036a290534d8)
|
|
478
|
+
- **flexChangesBundler:** Add flexibility-bundle.json ([#353](https://github.com/SAP/ui5-builder/issues/353)) [`cecc97d`](https://github.com/SAP/ui5-builder/commit/cecc97dd626268da2d2c707c5e0a6fabbfc561b6)
|
|
479
|
+
|
|
480
|
+
|
|
481
|
+
<a name="v1.6.1"></a>
|
|
482
|
+
## [v1.6.1] - 2019-10-24
|
|
483
|
+
### Bug Fixes
|
|
484
|
+
- **jsdoc:** Adopt version range to micro releases ([#357](https://github.com/SAP/ui5-builder/issues/357)) [`619b959`](https://github.com/SAP/ui5-builder/commit/619b959d93441fef1be8c1609ebe5a9eb15759f5)
|
|
485
|
+
|
|
486
|
+
|
|
487
|
+
<a name="v1.6.0"></a>
|
|
488
|
+
## [v1.6.0] - 2019-10-24
|
|
489
|
+
### Bug Fixes
|
|
490
|
+
- Update JSDoc to 3.6.3 ([#346](https://github.com/SAP/ui5-builder/issues/346)) [`78e2a22`](https://github.com/SAP/ui5-builder/commit/78e2a229f2ae11ca37538a75ac6746ff92af7b84)
|
|
491
|
+
|
|
492
|
+
### Features
|
|
493
|
+
- **Simple Build Extensibility:** Pass project namespace to custom tasks [`1a167c5`](https://github.com/SAP/ui5-builder/commit/1a167c560ed8cc4e2c28a6c11efb1bf5ed142be9)
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
<a name="v1.5.3"></a>
|
|
497
|
+
## [v1.5.3] - 2019-10-11
|
|
498
|
+
### Bug Fixes
|
|
499
|
+
- **Bundling:** merge dependency analysis results with raw module infos ([#340](https://github.com/SAP/ui5-builder/issues/340)) [`af4318a`](https://github.com/SAP/ui5-builder/commit/af4318a75d742bbd2e5566d2ffde2bc5a823ef06)
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
<a name="v1.5.2"></a>
|
|
503
|
+
## [v1.5.2] - 2019-10-09
|
|
504
|
+
### Bug Fixes
|
|
505
|
+
- Improve recognition of main module in case of bundles ([#341](https://github.com/SAP/ui5-builder/issues/341)) [`7a560b4`](https://github.com/SAP/ui5-builder/commit/7a560b4bbc4c862ebded6f9e9f12c2156b1e33d1)
|
|
506
|
+
- Align set of known file types with runtime ([#337](https://github.com/SAP/ui5-builder/issues/337)) [`8b372f1`](https://github.com/SAP/ui5-builder/commit/8b372f1ad65d0edfe5cd440bd9352db7e48ea156)
|
|
507
|
+
- **manifestCreator:** Only consider component files called Component.js ([#273](https://github.com/SAP/ui5-builder/issues/273)) [`82fe267`](https://github.com/SAP/ui5-builder/commit/82fe2675114c13603238889e43be498f92d22a51)
|
|
508
|
+
|
|
509
|
+
|
|
510
|
+
<a name="v1.5.1"></a>
|
|
511
|
+
## [v1.5.1] - 2019-09-04
|
|
512
|
+
### Bug Fixes
|
|
513
|
+
- **XMLTemplateAnalyzer:** Throws on tags without attributes ([#322](https://github.com/SAP/ui5-builder/issues/322)) [`b7f3795`](https://github.com/SAP/ui5-builder/commit/b7f379580d92e2d105edfc14e8feceab853f9a11)
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
<a name="v1.5.0"></a>
|
|
517
|
+
## [v1.5.0] - 2019-09-02
|
|
518
|
+
### Features
|
|
519
|
+
- **XMLTemplateAnalyzer:** Support core:require ([#304](https://github.com/SAP/ui5-builder/issues/304)) [`b01fd85`](https://github.com/SAP/ui5-builder/commit/b01fd8538fafd33a4fc6303c58afe039d5ca1341)
|
|
520
|
+
|
|
521
|
+
|
|
522
|
+
<a name="v1.4.2"></a>
|
|
523
|
+
## [v1.4.2] - 2019-08-28
|
|
524
|
+
### Bug Fixes
|
|
525
|
+
- Add 'sap.ui.fl' dependency to manifest.json ([#318](https://github.com/SAP/ui5-builder/issues/318)) [`a8edff4`](https://github.com/SAP/ui5-builder/commit/a8edff4cf63547cc1fc1d1c0ddfe958104fcb801)
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
<a name="v1.4.1"></a>
|
|
529
|
+
## [v1.4.1] - 2019-08-14
|
|
530
|
+
### Bug Fixes
|
|
531
|
+
- Adapt to recent extension of estraverse's set of node types ([#310](https://github.com/SAP/ui5-builder/issues/310)) [`9db14e6`](https://github.com/SAP/ui5-builder/commit/9db14e6afc01c686c1187d8eefe327654e6cc3ca)
|
|
532
|
+
|
|
533
|
+
### Features
|
|
534
|
+
- Switch to Terser for JavaScript minification [`fccb514`](https://github.com/SAP/ui5-builder/commit/fccb5145d05a8509d5b9c47fa4cea4b6299ca91d)
|
|
535
|
+
- **Theme Build:** Add compress option to minify output ([#295](https://github.com/SAP/ui5-builder/issues/295)) [`eea10ba`](https://github.com/SAP/ui5-builder/commit/eea10ba516c36be6aa3cdb2c8be990bc56f14078)
|
|
536
|
+
- **clean build folder:** Allows developers to clean build folder before start building a project [`04eb695`](https://github.com/SAP/ui5-builder/commit/04eb695fd493ce9bd1289933d5494178c1e679d7)
|
|
537
|
+
|
|
538
|
+
|
|
539
|
+
<a name="v1.4.0"></a>
|
|
540
|
+
## [v1.4.0] - 2019-07-29
|
|
541
|
+
### Bug Fixes
|
|
542
|
+
- **versionInfo:** Use correct buildTimestamp format [`6d87b3e`](https://github.com/SAP/ui5-builder/commit/6d87b3e10db11a8755b4049ba82732c6ec4f776c)
|
|
543
|
+
|
|
544
|
+
### Features
|
|
545
|
+
- Properties File Escaping ([#293](https://github.com/SAP/ui5-builder/issues/293)) [`9d213ce`](https://github.com/SAP/ui5-builder/commit/9d213ced942ed7832fbb7b50f9d444f441941f35)
|
|
546
|
+
|
|
547
|
+
|
|
548
|
+
<a name="v1.3.3"></a>
|
|
549
|
+
## [v1.3.3] - 2019-07-01
|
|
550
|
+
### Bug Fixes
|
|
551
|
+
- Use consistent RegExp to detect copyright comments ([#275](https://github.com/SAP/ui5-builder/issues/275)) [`bd7aa40`](https://github.com/SAP/ui5-builder/commit/bd7aa409be340216a88ceb2607e85d951c9de58a)
|
|
552
|
+
|
|
553
|
+
### Dependency Updates
|
|
554
|
+
- Bump globby from 9.2.0 to 10.0.0 [`1ea4a11`](https://github.com/SAP/ui5-builder/commit/1ea4a11e7177602b11049bb42e7c4149a0d55ff2)
|
|
555
|
+
|
|
556
|
+
|
|
557
|
+
<a name="v1.3.2"></a>
|
|
558
|
+
## [v1.3.2] - 2019-06-24
|
|
559
|
+
### Bug Fixes
|
|
560
|
+
- **generateManifestBundle:** Only glob files from project namespace [`fc7f659`](https://github.com/SAP/ui5-builder/commit/fc7f659ab45a6828a1ab05a35dbe856a4a2b5f87)
|
|
561
|
+
|
|
562
|
+
|
|
563
|
+
<a name="v1.3.1"></a>
|
|
564
|
+
## [v1.3.1] - 2019-06-14
|
|
565
|
+
### Bug Fixes
|
|
566
|
+
- Detect library namespace automatically ([#255](https://github.com/SAP/ui5-builder/issues/255)) [`604d4d3`](https://github.com/SAP/ui5-builder/commit/604d4d36745c9581969c411a0a78e56981948d0e)
|
|
567
|
+
|
|
568
|
+
|
|
569
|
+
<a name="v1.3.0"></a>
|
|
570
|
+
## [v1.3.0] - 2019-06-03
|
|
571
|
+
### Features
|
|
572
|
+
- **Builder:** Add excludes option ([#254](https://github.com/SAP/ui5-builder/issues/254)) [`6a7883e`](https://github.com/SAP/ui5-builder/commit/6a7883e9c39220084660993f77c0d4c4c37ec29c)
|
|
573
|
+
|
|
574
|
+
|
|
575
|
+
<a name="v1.2.3"></a>
|
|
576
|
+
## [v1.2.3] - 2019-05-15
|
|
577
|
+
### Bug Fixes
|
|
578
|
+
- **JSDoc:** Implement own tmp dir lifecycle [`3f85abf`](https://github.com/SAP/ui5-builder/commit/3f85abfe9bf05e008c43cf6489d26ecb0b7d8ee3)
|
|
579
|
+
|
|
580
|
+
|
|
581
|
+
<a name="v1.2.2"></a>
|
|
582
|
+
## [v1.2.2] - 2019-05-08
|
|
583
|
+
### Bug Fixes
|
|
584
|
+
- **package.json:** Fix JSDoc version to 3.5.5 [`873469d`](https://github.com/SAP/ui5-builder/commit/873469d0d9295a7d7d5775f446c170068d086502)
|
|
585
|
+
|
|
586
|
+
|
|
587
|
+
<a name="v1.2.1"></a>
|
|
588
|
+
## [v1.2.1] - 2019-05-07
|
|
589
|
+
### Bug Fixes
|
|
590
|
+
- **SmartTemplateAnalyzer:** Detect dependencies from "pages" object [`2d400c2`](https://github.com/SAP/ui5-builder/commit/2d400c2ac0883ad57b4aa894c46a0dd5aecb070a)
|
|
591
|
+
|
|
592
|
+
|
|
593
|
+
<a name="v1.2.0"></a>
|
|
594
|
+
## [v1.2.0] - 2019-04-25
|
|
595
|
+
### Features
|
|
596
|
+
- Add option to use hash signatures in cachebuster info file [`a4e8338`](https://github.com/SAP/ui5-builder/commit/a4e83383c7371cdde8573a901fdadd2ab243440e)
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
<a name="v1.1.1"></a>
|
|
600
|
+
## [v1.1.1] - 2019-04-24
|
|
601
|
+
### Bug Fixes
|
|
602
|
+
- **ApplicationFormatter:** detect the namespace for Maven placeholders ([#243](https://github.com/SAP/ui5-builder/issues/243)) [`49ecb07`](https://github.com/SAP/ui5-builder/commit/49ecb07f41efdf0778f04b05117e0daae01e8710)
|
|
603
|
+
|
|
604
|
+
|
|
605
|
+
<a name="v1.1.0"></a>
|
|
606
|
+
## [v1.1.0] - 2019-04-12
|
|
607
|
+
### Features
|
|
608
|
+
- Build the manifest-bundle.zip for applications and libraries [`f53aeea`](https://github.com/SAP/ui5-builder/commit/f53aeea594071616974d0e14b6d41609603bbd5b)
|
|
609
|
+
- Generate the AppCacheBuster index file for apps [`dd653c8`](https://github.com/SAP/ui5-builder/commit/dd653c8f3883da41f5723093d7e40aeb3258c180)
|
|
610
|
+
|
|
611
|
+
|
|
612
|
+
<a name="v1.0.5"></a>
|
|
613
|
+
## [v1.0.5] - 2019-04-03
|
|
614
|
+
### Bug Fixes
|
|
615
|
+
- Generate sap-ui-custom-dbg.js for self-contained build ([#234](https://github.com/SAP/ui5-builder/issues/234)) [`d769d98`](https://github.com/SAP/ui5-builder/commit/d769d9894fe0a9d5262aea2cde86b463bc55433d)
|
|
616
|
+
- Add bundling sap-ui-core-noJQuery.js and sap-ui-core-noJQuery-dbg.js ([#235](https://github.com/SAP/ui5-builder/issues/235)) [`e7a7a63`](https://github.com/SAP/ui5-builder/commit/e7a7a63983dec54f53ac1c906eb2f970948db25d)
|
|
617
|
+
|
|
618
|
+
|
|
619
|
+
<a name="v1.0.4"></a>
|
|
620
|
+
## [v1.0.4] - 2019-03-27
|
|
621
|
+
### Dependency Updates
|
|
622
|
+
- Bump tmp from 0.0.33 to 0.1.0 ([#220](https://github.com/SAP/ui5-builder/issues/220)) [`4fa642c`](https://github.com/SAP/ui5-builder/commit/4fa642c460f71b48ff690e3dc09de8cb0decca4e)
|
|
623
|
+
|
|
624
|
+
|
|
625
|
+
<a name="v1.0.3"></a>
|
|
626
|
+
## [v1.0.3] - 2019-03-21
|
|
627
|
+
### Dependency Updates
|
|
628
|
+
- Bump [@ui5](https://github.com/ui5)/fs from 1.0.1 to 1.0.2 ([#214](https://github.com/SAP/ui5-builder/issues/214)) [`eb85e0a`](https://github.com/SAP/ui5-builder/commit/eb85e0afa1e5e82571312448ce8ab7ef87a7bcbc)
|
|
629
|
+
- Bump [@ui5](https://github.com/ui5)/logger from 1.0.0 to 1.0.1 ([#212](https://github.com/SAP/ui5-builder/issues/212)) [`20557e8`](https://github.com/SAP/ui5-builder/commit/20557e85ac0de835b5d5ff455d613d102521d3c7)
|
|
630
|
+
|
|
631
|
+
### Features
|
|
632
|
+
- Add JSDoc build functionalities ([#42](https://github.com/SAP/ui5-builder/issues/42)) [`293a4b0`](https://github.com/SAP/ui5-builder/commit/293a4b0ae44706490fb568be69d4032150a2891a)
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
<a name="v1.0.2"></a>
|
|
636
|
+
## [v1.0.2] - 2019-02-28
|
|
637
|
+
### Bug Fixes
|
|
638
|
+
- Warning log of duplicate module declaration [`9a790a3`](https://github.com/SAP/ui5-builder/commit/9a790a30905cdebe6ba3db283b75983135b967d6)
|
|
639
|
+
- **Bundler:** Create sap-ui-core-dbg.js ([#176](https://github.com/SAP/ui5-builder/issues/176)) [`feb95e4`](https://github.com/SAP/ui5-builder/commit/feb95e41c199d5b455272ba5886cdd79d1502cd7)
|
|
640
|
+
- **ComponentAnalyzer:** Detect model types from dataSource [`efc5cef`](https://github.com/SAP/ui5-builder/commit/efc5cef5fb2988e78dfd1ea26f3c6ba818c69d87)
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
<a name="v1.0.1"></a>
|
|
644
|
+
## [v1.0.1] - 2019-02-01
|
|
645
|
+
### Dependency Updates
|
|
646
|
+
- Bump [@ui5](https://github.com/ui5)/fs from 1.0.0 to 1.0.1 [`55ab125`](https://github.com/SAP/ui5-builder/commit/55ab125e60c138a5a419cae1064590e5e535d893)
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
<a name="v1.0.0"></a>
|
|
650
|
+
## [v1.0.0] - 2019-02-01
|
|
651
|
+
### Dependency Updates
|
|
652
|
+
- Bump [@ui5](https://github.com/ui5)/fs from 0.2.0 to 1.0.0 ([#142](https://github.com/SAP/ui5-builder/issues/142)) [`2c6893f`](https://github.com/SAP/ui5-builder/commit/2c6893f9029c161e95a4078caeb7e9f3a22a3af2)
|
|
653
|
+
|
|
654
|
+
### Features
|
|
655
|
+
- Add transformation of apps index.html in self-contained build ([#137](https://github.com/SAP/ui5-builder/issues/137)) [`6549b8a`](https://github.com/SAP/ui5-builder/commit/6549b8a832cc50749159f1295bd93ef6a04733b6)
|
|
656
|
+
|
|
657
|
+
### BREAKING CHANGE
|
|
658
|
+
|
|
659
|
+
When running a self-contained build on an application project, the
|
|
660
|
+
index.html will be transformed by adopting the UI5 bootstrap script tag
|
|
661
|
+
to load the custom bundle file instead.
|
|
662
|
+
|
|
663
|
+
|
|
664
|
+
<a name="v0.2.9"></a>
|
|
665
|
+
## [v0.2.9] - 2019-01-03
|
|
666
|
+
### Bug Fixes
|
|
667
|
+
- **ComponentAnalyzer:** Fully handle sap.ui5/routing ([#124](https://github.com/SAP/ui5-builder/issues/124)) [`c59b5b1`](https://github.com/SAP/ui5-builder/commit/c59b5b1efdc3a588fb8a13029a6593feab142e0c)
|
|
668
|
+
- **XMLTemplateAnalyzer:** Ignore properties with data binding [`0d5cf50`](https://github.com/SAP/ui5-builder/commit/0d5cf5086566dd0609fa354a5822f6538b335065)
|
|
669
|
+
|
|
670
|
+
|
|
671
|
+
<a name="v0.2.8"></a>
|
|
672
|
+
## [v0.2.8] - 2018-12-19
|
|
673
|
+
### Bug Fixes
|
|
674
|
+
- Themes not beeing build [`de26564`](https://github.com/SAP/ui5-builder/commit/de26564c2c3af3376ccf179c972eae4f0e5eeeee)
|
|
675
|
+
|
|
676
|
+
|
|
677
|
+
<a name="v0.2.7"></a>
|
|
678
|
+
## [v0.2.7] - 2018-12-19
|
|
679
|
+
### Bug Fixes
|
|
680
|
+
- **ComponentAnalyzer:** Handle sap.ui5/rootView with type string [`469e558`](https://github.com/SAP/ui5-builder/commit/469e558cae43d6a0c063170dd23e2337c0e5af26)
|
|
681
|
+
- **generateLibraryPreload:** Fix sap-ui-core.js bootstrap [`7a266fd`](https://github.com/SAP/ui5-builder/commit/7a266fd48d6452ce7f6180b026109d47caf195ec)
|
|
682
|
+
|
|
683
|
+
|
|
684
|
+
<a name="v0.2.6"></a>
|
|
685
|
+
## [v0.2.6] - 2018-12-06
|
|
686
|
+
|
|
687
|
+
<a name="v0.2.5"></a>
|
|
688
|
+
## [v0.2.5] - 2018-11-16
|
|
689
|
+
### Features
|
|
690
|
+
- **Builder:** Add handling for custom task configurations [`9b4ae00`](https://github.com/SAP/ui5-builder/commit/9b4ae00f62da1f5bb94aeb8a86711c2a2e98da20)
|
|
691
|
+
|
|
692
|
+
|
|
693
|
+
<a name="v0.2.4"></a>
|
|
694
|
+
## [v0.2.4] - 2018-10-29
|
|
695
|
+
### Features
|
|
696
|
+
- Add module type [`d7efb8a`](https://github.com/SAP/ui5-builder/commit/d7efb8a16334571e7997daccd4f69e1e06591c25)
|
|
697
|
+
|
|
698
|
+
|
|
699
|
+
<a name="v0.2.3"></a>
|
|
700
|
+
## [v0.2.3] - 2018-10-09
|
|
701
|
+
### Bug Fixes
|
|
702
|
+
- Replace copyright and version strings in *.json and .library files [`f305429`](https://github.com/SAP/ui5-builder/commit/f305429067610404f0958b55ef3a570e555a532e)
|
|
703
|
+
- **generateLibraryPreload:** Add new sap.ui.core library namespaces [`ea901a7`](https://github.com/SAP/ui5-builder/commit/ea901a78c27e5fd112f9ac761e621b7f1c474f07)
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
<a name="v0.2.2"></a>
|
|
707
|
+
## [v0.2.2] - 2018-10-05
|
|
708
|
+
### Bug Fixes
|
|
709
|
+
- **processors/versionInfoGenerator:** Remove "gav" property [`2bf41e1`](https://github.com/SAP/ui5-builder/commit/2bf41e1622df70818f925aabafe16de082fa3884)
|
|
710
|
+
|
|
711
|
+
### Features
|
|
712
|
+
- **BundleBuilder:** support modules using ES6 with usePredefineCalls ([#67](https://github.com/SAP/ui5-builder/issues/67)) [`d1a4f1f`](https://github.com/SAP/ui5-builder/commit/d1a4f1f39e4262eafa8df1548f0e944998fd00a3)
|
|
713
|
+
|
|
714
|
+
|
|
715
|
+
<a name="v0.2.1"></a>
|
|
716
|
+
## [v0.2.1] - 2018-07-17
|
|
717
|
+
### Bug Fixes
|
|
718
|
+
- **generateLibraryManifest:** i18n/css handling [`4e52a96`](https://github.com/SAP/ui5-builder/commit/4e52a9654b28a7646597ce0e0f010589ff7905d5)
|
|
719
|
+
|
|
720
|
+
|
|
721
|
+
<a name="v0.2.0"></a>
|
|
722
|
+
## [v0.2.0] - 2018-07-11
|
|
723
|
+
### Bug Fixes
|
|
724
|
+
- Close gaps in routing support of ComponentAnalyzer ([#46](https://github.com/SAP/ui5-builder/issues/46)) [`4697531`](https://github.com/SAP/ui5-builder/commit/4697531cbafebf881e78b80e78d098d1361fe9a5)
|
|
725
|
+
|
|
726
|
+
|
|
727
|
+
<a name="v0.1.1"></a>
|
|
728
|
+
## [v0.1.1] - 2018-07-02
|
|
729
|
+
### Bug Fixes
|
|
730
|
+
- iterate over routes using a for loop if it is an object ([#31](https://github.com/SAP/ui5-builder/issues/31)) [`e9823f6`](https://github.com/SAP/ui5-builder/commit/e9823f68cf038b5fde172916e483a01d5eb88f1f)
|
|
731
|
+
|
|
732
|
+
|
|
733
|
+
<a name="v0.1.0"></a>
|
|
734
|
+
## [v0.1.0] - 2018-06-26
|
|
735
|
+
### Bug Fixes
|
|
736
|
+
- Bundles should be built one after another [`164ba32`](https://github.com/SAP/ui5-builder/commit/164ba328c6e172297d71b9d3ef871005931cca71)
|
|
737
|
+
- reduce build time at the price of a slightly increased code size ([#37](https://github.com/SAP/ui5-builder/issues/37)) [`1fb8d00`](https://github.com/SAP/ui5-builder/commit/1fb8d0049235467fcbd40f53e725cc419a8bc730)
|
|
738
|
+
- Use the target bundle format to decide decoration ([#24](https://github.com/SAP/ui5-builder/issues/24)) [`83703bc`](https://github.com/SAP/ui5-builder/commit/83703bca17fd18b9ac700fae4801d87a4d86961d)
|
|
739
|
+
|
|
740
|
+
|
|
741
|
+
<a name="v0.0.2"></a>
|
|
742
|
+
## [v0.0.2] - 2018-06-21
|
|
743
|
+
### Bug Fixes
|
|
744
|
+
- **Builders:** Do not bundle debug files [`19800a1`](https://github.com/SAP/ui5-builder/commit/19800a16689210c13495bc1bd0949896500cfc52)
|
|
745
|
+
|
|
746
|
+
|
|
747
|
+
<a name="v0.0.1"></a>
|
|
748
|
+
## v0.0.1 - 2018-06-06
|
|
749
|
+
### Bug Fixes
|
|
750
|
+
- Restore default component preload [`a09bec2`](https://github.com/SAP/ui5-builder/commit/a09bec2f57f45a1c5d74681b3bdec4f7fdc45343)
|
|
751
|
+
|
|
752
|
+
### Features
|
|
753
|
+
- Add ability to configure component preloads and custom bundles [`2241e5f`](https://github.com/SAP/ui5-builder/commit/2241e5ff98fd95f1f80cc74959655ae7a9c660e7)
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
[v3.0.0-alpha.10]: https://github.com/SAP/ui5-builder/compare/v3.0.0-alpha.9...v3.0.0-alpha.10
|
|
757
|
+
[v3.0.0-alpha.9]: https://github.com/SAP/ui5-builder/compare/v3.0.0-alpha.8...v3.0.0-alpha.9
|
|
758
|
+
[v3.0.0-alpha.8]: https://github.com/SAP/ui5-builder/compare/v3.0.0-alpha.7...v3.0.0-alpha.8
|
|
759
|
+
[v3.0.0-alpha.7]: https://github.com/SAP/ui5-builder/compare/v3.0.0-alpha.6...v3.0.0-alpha.7
|
|
760
|
+
[v3.0.0-alpha.6]: https://github.com/SAP/ui5-builder/compare/v3.0.0-alpha.5...v3.0.0-alpha.6
|
|
761
|
+
[v3.0.0-alpha.5]: https://github.com/SAP/ui5-builder/compare/v3.0.0-alpha.4...v3.0.0-alpha.5
|
|
762
|
+
[v3.0.0-alpha.4]: https://github.com/SAP/ui5-builder/compare/v3.0.0-alpha.3...v3.0.0-alpha.4
|
|
763
|
+
[v3.0.0-alpha.3]: https://github.com/SAP/ui5-builder/compare/v3.0.0-alpha.2...v3.0.0-alpha.3
|
|
764
|
+
[v3.0.0-alpha.2]: https://github.com/SAP/ui5-builder/compare/v3.0.0-alpha.1...v3.0.0-alpha.2
|
|
765
|
+
[v3.0.0-alpha.1]: https://github.com/SAP/ui5-builder/compare/v3.0.0-alpha.0...v3.0.0-alpha.1
|
|
766
|
+
[v3.0.0-alpha.0]: https://github.com/SAP/ui5-builder/compare/v2.11.2...v3.0.0-alpha.0
|
|
767
|
+
[v2.11.2]: https://github.com/SAP/ui5-builder/compare/v2.11.1...v2.11.2
|
|
768
|
+
[v2.11.1]: https://github.com/SAP/ui5-builder/compare/v2.11.0...v2.11.1
|
|
769
|
+
[v2.11.0]: https://github.com/SAP/ui5-builder/compare/v2.10.0...v2.11.0
|
|
770
|
+
[v2.10.0]: https://github.com/SAP/ui5-builder/compare/v2.9.5...v2.10.0
|
|
771
|
+
[v2.9.5]: https://github.com/SAP/ui5-builder/compare/v2.9.4...v2.9.5
|
|
772
|
+
[v2.9.4]: https://github.com/SAP/ui5-builder/compare/v2.9.3...v2.9.4
|
|
773
|
+
[v2.9.3]: https://github.com/SAP/ui5-builder/compare/v2.9.2...v2.9.3
|
|
774
|
+
[v2.9.2]: https://github.com/SAP/ui5-builder/compare/v2.9.1...v2.9.2
|
|
775
|
+
[v2.9.1]: https://github.com/SAP/ui5-builder/compare/v2.9.0...v2.9.1
|
|
776
|
+
[v2.9.0]: https://github.com/SAP/ui5-builder/compare/v2.8.4...v2.9.0
|
|
777
|
+
[v2.8.4]: https://github.com/SAP/ui5-builder/compare/v2.8.3...v2.8.4
|
|
778
|
+
[v2.8.3]: https://github.com/SAP/ui5-builder/compare/v2.8.2...v2.8.3
|
|
779
|
+
[v2.8.2]: https://github.com/SAP/ui5-builder/compare/v2.8.1...v2.8.2
|
|
780
|
+
[v2.8.1]: https://github.com/SAP/ui5-builder/compare/v2.8.0...v2.8.1
|
|
781
|
+
[v2.8.0]: https://github.com/SAP/ui5-builder/compare/v2.7.2...v2.8.0
|
|
782
|
+
[v2.7.2]: https://github.com/SAP/ui5-builder/compare/v2.7.1...v2.7.2
|
|
783
|
+
[v2.7.1]: https://github.com/SAP/ui5-builder/compare/v2.7.0...v2.7.1
|
|
784
|
+
[v2.7.0]: https://github.com/SAP/ui5-builder/compare/v2.6.1...v2.7.0
|
|
785
|
+
[v2.6.1]: https://github.com/SAP/ui5-builder/compare/v2.6.0...v2.6.1
|
|
786
|
+
[v2.6.0]: https://github.com/SAP/ui5-builder/compare/v2.5.1...v2.6.0
|
|
787
|
+
[v2.5.1]: https://github.com/SAP/ui5-builder/compare/v2.5.0...v2.5.1
|
|
788
|
+
[v2.5.0]: https://github.com/SAP/ui5-builder/compare/v2.4.5...v2.5.0
|
|
789
|
+
[v2.4.5]: https://github.com/SAP/ui5-builder/compare/v2.4.4...v2.4.5
|
|
790
|
+
[v2.4.4]: https://github.com/SAP/ui5-builder/compare/v2.4.3...v2.4.4
|
|
791
|
+
[v2.4.3]: https://github.com/SAP/ui5-builder/compare/v2.4.2...v2.4.3
|
|
792
|
+
[v2.4.2]: https://github.com/SAP/ui5-builder/compare/v2.4.1...v2.4.2
|
|
793
|
+
[v2.4.1]: https://github.com/SAP/ui5-builder/compare/v2.4.0...v2.4.1
|
|
794
|
+
[v2.4.0]: https://github.com/SAP/ui5-builder/compare/v2.3.0...v2.4.0
|
|
795
|
+
[v2.3.0]: https://github.com/SAP/ui5-builder/compare/v2.2.1...v2.3.0
|
|
796
|
+
[v2.2.1]: https://github.com/SAP/ui5-builder/compare/v2.2.0...v2.2.1
|
|
797
|
+
[v2.2.0]: https://github.com/SAP/ui5-builder/compare/v2.1.0...v2.2.0
|
|
798
|
+
[v2.1.0]: https://github.com/SAP/ui5-builder/compare/v2.0.7...v2.1.0
|
|
799
|
+
[v2.0.7]: https://github.com/SAP/ui5-builder/compare/v2.0.6...v2.0.7
|
|
800
|
+
[v2.0.6]: https://github.com/SAP/ui5-builder/compare/v2.0.5...v2.0.6
|
|
801
|
+
[v2.0.5]: https://github.com/SAP/ui5-builder/compare/v2.0.4...v2.0.5
|
|
802
|
+
[v2.0.4]: https://github.com/SAP/ui5-builder/compare/v2.0.3...v2.0.4
|
|
803
|
+
[v2.0.3]: https://github.com/SAP/ui5-builder/compare/v2.0.2...v2.0.3
|
|
804
|
+
[v2.0.2]: https://github.com/SAP/ui5-builder/compare/v2.0.1...v2.0.2
|
|
805
|
+
[v2.0.1]: https://github.com/SAP/ui5-builder/compare/v2.0.0...v2.0.1
|
|
806
|
+
[v2.0.0]: https://github.com/SAP/ui5-builder/compare/v1.10.1...v2.0.0
|
|
807
|
+
[v1.10.1]: https://github.com/SAP/ui5-builder/compare/v1.10.0...v1.10.1
|
|
808
|
+
[v1.10.0]: https://github.com/SAP/ui5-builder/compare/v1.9.0...v1.10.0
|
|
809
|
+
[v1.9.0]: https://github.com/SAP/ui5-builder/compare/v1.8.0...v1.9.0
|
|
810
|
+
[v1.8.0]: https://github.com/SAP/ui5-builder/compare/v1.7.1...v1.8.0
|
|
811
|
+
[v1.7.1]: https://github.com/SAP/ui5-builder/compare/v1.7.0...v1.7.1
|
|
812
|
+
[v1.7.0]: https://github.com/SAP/ui5-builder/compare/v1.6.1...v1.7.0
|
|
813
|
+
[v1.6.1]: https://github.com/SAP/ui5-builder/compare/v1.6.0...v1.6.1
|
|
814
|
+
[v1.6.0]: https://github.com/SAP/ui5-builder/compare/v1.5.3...v1.6.0
|
|
815
|
+
[v1.5.3]: https://github.com/SAP/ui5-builder/compare/v1.5.2...v1.5.3
|
|
816
|
+
[v1.5.2]: https://github.com/SAP/ui5-builder/compare/v1.5.1...v1.5.2
|
|
817
|
+
[v1.5.1]: https://github.com/SAP/ui5-builder/compare/v1.5.0...v1.5.1
|
|
818
|
+
[v1.5.0]: https://github.com/SAP/ui5-builder/compare/v1.4.2...v1.5.0
|
|
819
|
+
[v1.4.2]: https://github.com/SAP/ui5-builder/compare/v1.4.1...v1.4.2
|
|
820
|
+
[v1.4.1]: https://github.com/SAP/ui5-builder/compare/v1.4.0...v1.4.1
|
|
821
|
+
[v1.4.0]: https://github.com/SAP/ui5-builder/compare/v1.3.3...v1.4.0
|
|
822
|
+
[v1.3.3]: https://github.com/SAP/ui5-builder/compare/v1.3.2...v1.3.3
|
|
823
|
+
[v1.3.2]: https://github.com/SAP/ui5-builder/compare/v1.3.1...v1.3.2
|
|
824
|
+
[v1.3.1]: https://github.com/SAP/ui5-builder/compare/v1.3.0...v1.3.1
|
|
825
|
+
[v1.3.0]: https://github.com/SAP/ui5-builder/compare/v1.2.3...v1.3.0
|
|
826
|
+
[v1.2.3]: https://github.com/SAP/ui5-builder/compare/v1.2.2...v1.2.3
|
|
827
|
+
[v1.2.2]: https://github.com/SAP/ui5-builder/compare/v1.2.1...v1.2.2
|
|
828
|
+
[v1.2.1]: https://github.com/SAP/ui5-builder/compare/v1.2.0...v1.2.1
|
|
829
|
+
[v1.2.0]: https://github.com/SAP/ui5-builder/compare/v1.1.1...v1.2.0
|
|
830
|
+
[v1.1.1]: https://github.com/SAP/ui5-builder/compare/v1.1.0...v1.1.1
|
|
831
|
+
[v1.1.0]: https://github.com/SAP/ui5-builder/compare/v1.0.5...v1.1.0
|
|
832
|
+
[v1.0.5]: https://github.com/SAP/ui5-builder/compare/v1.0.4...v1.0.5
|
|
833
|
+
[v1.0.4]: https://github.com/SAP/ui5-builder/compare/v1.0.3...v1.0.4
|
|
834
|
+
[v1.0.3]: https://github.com/SAP/ui5-builder/compare/v1.0.2...v1.0.3
|
|
835
|
+
[v1.0.2]: https://github.com/SAP/ui5-builder/compare/v1.0.1...v1.0.2
|
|
836
|
+
[v1.0.1]: https://github.com/SAP/ui5-builder/compare/v1.0.0...v1.0.1
|
|
837
|
+
[v1.0.0]: https://github.com/SAP/ui5-builder/compare/v0.2.9...v1.0.0
|
|
838
|
+
[v0.2.9]: https://github.com/SAP/ui5-builder/compare/v0.2.8...v0.2.9
|
|
839
|
+
[v0.2.8]: https://github.com/SAP/ui5-builder/compare/v0.2.7...v0.2.8
|
|
840
|
+
[v0.2.7]: https://github.com/SAP/ui5-builder/compare/v0.2.6...v0.2.7
|
|
841
|
+
[v0.2.6]: https://github.com/SAP/ui5-builder/compare/v0.2.5...v0.2.6
|
|
842
|
+
[v0.2.5]: https://github.com/SAP/ui5-builder/compare/v0.2.4...v0.2.5
|
|
843
|
+
[v0.2.4]: https://github.com/SAP/ui5-builder/compare/v0.2.3...v0.2.4
|
|
844
|
+
[v0.2.3]: https://github.com/SAP/ui5-builder/compare/v0.2.2...v0.2.3
|
|
845
|
+
[v0.2.2]: https://github.com/SAP/ui5-builder/compare/v0.2.1...v0.2.2
|
|
846
|
+
[v0.2.1]: https://github.com/SAP/ui5-builder/compare/v0.2.0...v0.2.1
|
|
847
|
+
[v0.2.0]: https://github.com/SAP/ui5-builder/compare/v0.1.1...v0.2.0
|
|
848
|
+
[v0.1.1]: https://github.com/SAP/ui5-builder/compare/v0.1.0...v0.1.1
|
|
849
|
+
[v0.1.0]: https://github.com/SAP/ui5-builder/compare/v0.0.2...v0.1.0
|
|
850
|
+
[v0.0.2]: https://github.com/SAP/ui5-builder/compare/v0.0.1...v0.0.2
|