Skip to content

Commit 1491277

Browse files
Merge pull request #450 from lukecotter/bug-whitepsace-in-extension-path-caused-load-failure
bug: whitespace in extension path caused load failure
2 parents f975ecb + 53817c3 commit 1491277

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
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.10.4] - 2023-11-22
9+
10+
### Fixed
11+
12+
- Log Analysis not displaying if user path contained whitespace ([#447][#447])
13+
814
## [1.10.3] - 2023-11-07
915

1016
### Fixed
@@ -274,6 +280,10 @@ Skipped due to adopting odd numbering for pre releases and even number for relea
274280
- Add explorer menu item
275281
- Provide more information when selecting log to download
276282

283+
<!-- v1.10.4 -->
284+
285+
[#447]: https://github.com/certinia/debug-log-analyzer/issues/447
286+
277287
<!-- v1.10.2 -->
278288

279289
[#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)