Skip to content

Commit

Permalink
Merge pull request #450 from lukecotter/bug-whitepsace-in-extension-p…
Browse files Browse the repository at this point in the history
…ath-caused-load-failure

bug: whitespace in extension path caused load failure
  • Loading branch information
lcottercertinia authored Nov 22, 2023
2 parents f975ecb + 53817c3 commit 1491277
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 24 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.10.4] - 2023-11-22

### Fixed

- Log Analysis not displaying if user path contained whitespace ([#447][#447])

## [1.10.3] - 2023-11-07

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

<!-- v1.10.4 -->

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

<!-- v1.10.2 -->

[#434]: https://github.com/certinia/debug-log-analyzer/issues/434
Expand Down
2 changes: 1 addition & 1 deletion lana/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lana",
"displayName": "Apex Log Analyzer",
"version": "1.10.3",
"version": "1.10.4",
"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",
"keywords": [
"apex",
Expand Down
40 changes: 17 additions & 23 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -87,29 +87,23 @@ export default [
dest: './log-viewer/out/index.html',
minifierOptions: production
? {
collapseBooleanAttributes: true,
collapseInlineTagWhitespace: true,
collapseWhitespace: true,
conservativeCollapse: true,
decodeEntities: true,
html5: true,
includeAutoGeneratedTags: false,
minifyCSS: true,
minifyJS: true,
minifyURLs: true,
preventAttributesEscaping: true,
processConditionalComments: true,
removeAttributeQuotes: true,
removeComments: true,
removeEmptyAttributes: true,
removeOptionalTags: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
sortAttributes: true,
sortClassName: true,
trimCustomFragments: true,
useShortDoctype: true,
collapseWhitespace: true,
html5: true,
includeAutoGeneratedTags: false,
minifyCSS: true,
preventAttributesEscaping: true,
processConditionalComments: true,
removeAttributeQuotes: false,
removeComments: true,
removeEmptyAttributes: false,
removeOptionalTags: true,
removeRedundantAttributes: true,
removeScriptTypeAttributes: true,
removeStyleLinkTypeAttributes: true,
sortAttributes: true,
sortClassName: true,
trimCustomFragments: true,
useShortDoctype: true,
}
: {},
},
Expand Down

0 comments on commit 1491277

Please sign in to comment.