Skip to content

Commit 79a9739

Browse files
committed
Merge branch 'release/1.10.4' into chore-merge-1.10.4-to-main
2 parents 35a10ba + 1491277 commit 79a9739

3 files changed

Lines changed: 28 additions & 24 deletions

File tree

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2727
- Skipped-Lines and Max-Size-reached marker color from green to blue. Green normal mean things are ok, blue better represents information.
2828
- Added faint grey lines between the event markers to seperates them. This helps when two error are next to each other.
2929

30+
## [1.10.4] - 2023-11-22
31+
32+
### Fixed
33+
34+
- Log Analysis not displaying if user path contained whitespace ([#447][#447])
35+
3036
## [1.10.3] - 2023-11-07
3137

3238
### Fixed
@@ -304,6 +310,10 @@ Skipped due to adopting odd numbering for pre releases and even number for relea
304310
[#423]: https://github.com/certinia/debug-log-analyzer/issues/423
305311
[#209]: https://github.com/certinia/debug-log-analyzer/issues/209
306312

313+
<!-- v1.10.4 -->
314+
315+
[#447]: https://github.com/certinia/debug-log-analyzer/issues/447
316+
307317
<!-- v1.10.2 -->
308318

309319
[#434]: https://github.com/certinia/debug-log-analyzer/issues/434

lana/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "lana",
33
"displayName": "Apex Log Analyzer",
4-
"version": "1.10.3",
4+
"version": "1.10.4",
55
"description": "Analyzer for Salesforce debug logs - Visualize code execution via a Flame graph and identify performance and SOQL/DML problems via Method and Database analysis",
66
"keywords": [
77
"apex",

rollup.config.mjs

Lines changed: 17 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -87,29 +87,23 @@ export default [
8787
dest: './log-viewer/out/index.html',
8888
minifierOptions: production
8989
? {
90-
collapseBooleanAttributes: true,
91-
collapseInlineTagWhitespace: true,
92-
collapseWhitespace: true,
93-
conservativeCollapse: true,
94-
decodeEntities: true,
95-
html5: true,
96-
includeAutoGeneratedTags: false,
97-
minifyCSS: true,
98-
minifyJS: true,
99-
minifyURLs: true,
100-
preventAttributesEscaping: true,
101-
processConditionalComments: true,
102-
removeAttributeQuotes: true,
103-
removeComments: true,
104-
removeEmptyAttributes: true,
105-
removeOptionalTags: true,
106-
removeRedundantAttributes: true,
107-
removeScriptTypeAttributes: true,
108-
removeStyleLinkTypeAttributes: true,
109-
sortAttributes: true,
110-
sortClassName: true,
111-
trimCustomFragments: true,
112-
useShortDoctype: true,
90+
collapseWhitespace: true,
91+
html5: true,
92+
includeAutoGeneratedTags: false,
93+
minifyCSS: true,
94+
preventAttributesEscaping: true,
95+
processConditionalComments: true,
96+
removeAttributeQuotes: false,
97+
removeComments: true,
98+
removeEmptyAttributes: false,
99+
removeOptionalTags: true,
100+
removeRedundantAttributes: true,
101+
removeScriptTypeAttributes: true,
102+
removeStyleLinkTypeAttributes: true,
103+
sortAttributes: true,
104+
sortClassName: true,
105+
trimCustomFragments: true,
106+
useShortDoctype: true,
113107
}
114108
: {},
115109
},

0 commit comments

Comments
 (0)