Skip to content

Commit c814426

Browse files
Merge pull request #532 from lukecotter/chore-bump-release-to-v1.16.0
chore: bump release version to v1.16.0
2 parents 472898d + 9a484b3 commit c814426

21 files changed

Lines changed: 29 additions & 28 deletions

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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-
## [Unreleased]
8+
## [1.16.0] - 2024-07-23
99

1010
### Added
1111

@@ -351,7 +351,7 @@ Skipped due to adopting odd numbering for pre releases and even number for relea
351351
- Add explorer menu item
352352
- Provide more information when selecting log to download
353353

354-
<!-- Unreleased -->
354+
<!-- v1.16.0 -->
355355

356356
[#488]: https://github.com/certinia/debug-log-analyzer/issues/488
357357
[#382]: https://github.com/certinia/debug-log-analyzer/issues/382

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
Apex Log Analyzer makes performance analysis of Salesforce debug logs much easier and quicker. Visualize code execution via a Flame chart and Call Tree, identify and resolve performance and SOQL/DML problems via Method and Database Analysis.
99

10-
![preview](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.14/lana-preview.gif)
10+
![preview](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-preview.gif)
1111

1212
## WARNING
1313

@@ -32,7 +32,7 @@ Apex Log Analyzer makes performance analysis of Salesforce debug logs much easie
3232

3333
### Installation
3434

35-
![install](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.10/install-lana.webp)
35+
![install](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/install-lana.webp)
3636

3737
Search for `Apex Log Analyzer` from the extensions side bar in VS Code and click `Install` or
3838
install from the VS Code market place by clicking install on [Visual Studio Code Market Place: Apex Log Analyzer](https://marketplace.visualstudio.com/items?itemName=financialforce.lana)
@@ -61,7 +61,7 @@ With the `.log` file open in VSCode.
6161
1. Open command pallette (CMD/CTRL + Shift + P) -> 'Log: Show Apex Log Analysis'\
6262
or
6363
1. Click the 'Log: Show Apex Log Analysis' code lens at the top of the file\
64-
![show analysis lens](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.10/lana-showanalysis-lens.webp)\
64+
![show analysis lens](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-showanalysis-lens.webp)\
6565
or
6666
1. Right click -> 'Log: Show Apex Log Analysis'
6767
or
@@ -85,7 +85,7 @@ With the `.log` file open in VSCode.
8585

8686
The Timeline shows a visualization of code execution during a request’s execution. Each color represents a different Salesforce event type e.g DB, Method, SOQL etc. The length of a bar relates to realtime taken, a longer bar means that method took longer.
8787

88-
![timeline](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.10/lana-timeline.png)
88+
![timeline](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-timeline.png)
8989

9090
#### Zoom + pan
9191

@@ -101,7 +101,7 @@ The Timeline shows a visualization of code execution during a request’s execut
101101

102102
#### Tooltip
103103

104-
![tooltip](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.10/lana-tooltip.webp)
104+
![tooltip](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-tooltip.webp)
105105

106106
Hovering over an element provides information on the item. If you click on an item it will take you to that row in the Call Tree.
107107

@@ -116,7 +116,7 @@ The tooltip provides the following information.\
116116

117117
Shows the call stack which can be expanded and collapsed. Clicking on a link will take you to that line in the class if it can be found in the current open project.
118118

119-
![Call Tree](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.14/lana-calltree.png)
119+
![Call Tree](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-calltree.png)
120120

121121
Each row shows event type, details such as method signature, self and total time as well as aggregated DML, SOQL, Throws and Row counts.
122122

@@ -143,7 +143,7 @@ The Call Tree can be navigated with the keyboard. The up and down keys will move
143143

144144
Show analysis of method calls by showing Self Time, Total Time, Count (number of times a method was called), name and type. Each column can be sorted ascending or descending by clicking the column header.
145145

146-
![analysis](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.14/lana-analysis.png)
146+
![analysis](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-analysis.png)
147147

148148
#### Sort
149149

@@ -170,7 +170,7 @@ Focus the Analysis table and use `CMD / CTRL + c` to copy the table content to c
170170

171171
Shows the SOQL and DML that occurred the number of rows returned, the time taken and for SOQL the selectivity and number of aggregations.
172172

173-
![database](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.14/lana-database.png)
173+
![database](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-database.png)
174174

175175
The _Selectivity_ column will have a green tick if the query is selective, a red cross if it is not and will be blank if the selectivity could not be determine. Sorting on this column will sort the rows by relative query cost, this number can be seen by hovering the cell on the selectivity column.
176176

@@ -217,21 +217,21 @@ Focus the Analysis table and use `CMD / CTRL + c` to copy the table content to c
217217
- The find will match on Event Type or text in the event
218218
- The tooltip is shown for the current matching event, making it easy to view the event details such as Total or Self time.
219219

220-
![Timeline find](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.16/lana-timeline-find.png)
220+
![Timeline find](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-timeline-find.png)
221221

222222
#### Call Tree
223223

224224
- If the next matching text is within a parent that parent will be expanded.
225225
- The row with the current matching text will also be highlighted
226226

227-
![Call Tree find](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.16/lana-calltree-find.png)
227+
![Call Tree find](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-calltree-find.png)
228228

229229
#### Analysis + Database
230230

231231
- If the next matching text is within a group that group will be expanded.
232232
- The row with the current matching text will also be highlighted
233233

234-
![Analysis find](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.16/lana-analysis-find.png)
234+
![Analysis find](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-analysis-find.png)
235235

236236
## 🛠️ Settings
237237

@@ -240,7 +240,7 @@ Focus the Analysis table and use `CMD / CTRL + c` to copy the table content to c
240240
The default colors shown on the timeline can be changed in the VSCode settings.\
241241
Either in the UI `preferences -> extensions -> Apex Log Analyzer`
242242

243-
![color settings](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.10/settings-color-lana.webp)
243+
![color settings](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/settings-color-lana.webp)
244244

245245
or
246246

lana-docs-site/docs/docs/features.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ sidebar_position: 4
1414

1515
The Timeline shows a visualization of code execution during a request’s execution. Each color represents a different Salesforce event type e.g DB, Method, SOQL etc. The length of a bar relates to realtime taken, a longer bar means that method took longer.
1616

17-
![timeline](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.10/lana-timeline.png)
17+
![timeline](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-timeline.png)
1818

1919
### Zoom + pan
2020

@@ -29,7 +29,7 @@ Clicking an event in the Timeline will go to and select that event in the Call T
2929

3030
### Tooltip
3131

32-
![tooltip](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.10/lana-tooltip.webp)
32+
![tooltip](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-tooltip.webp)
3333

3434
Hovering over an element provides information on the item. If you click on an item it will take you to that row in the Call Tree.
3535

@@ -44,7 +44,7 @@ The tooltip provides the following information.\
4444

4545
Shows the call stack which can be expanded and collapsed. Clicking on a link will take you to that line in the class if it can be found in the current open project.
4646

47-
![Call Tree](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.14/lana-calltree.png)
47+
![Call Tree](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-calltree.png)
4848

4949
Each row shows event type, details such as method signature, self and total time as well as aggregated DML, SOQL, Throws and Row counts.
5050

@@ -71,7 +71,7 @@ The Call Tree can be navigated with the keyboard. The up and down keys will move
7171

7272
Show analysis of method calls by showing Self Time, Total Time, Count (number of times a method was called), name and type. Each column can be sorted ascending or descending by clicking the column header.
7373

74-
![analysis](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.14/lana-analysis.png)
74+
![analysis](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-analysis.png)
7575

7676
### Sort
7777

@@ -98,7 +98,7 @@ Focus the Analysis table and use `CMD / CTRL + c` to copy the table content to c
9898

9999
Shows the SOQL and DML that occurred the number of rows returned, the time taken and for SOQL the selectivity and number of aggregations.
100100

101-
![database](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.14/lana-database.png)
101+
![database](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-database.png)
102102

103103
The _Selectivity_ column will have a green tick if the query is selective, a red cross if it is not and will be blank if the selectivity could not be determine. Sorting on this column will sort the rows by relative query cost, this number can be seen by hovering the cell on the selectivity column.
104104

@@ -145,18 +145,18 @@ Focus the Analysis table and use `CMD / CTRL + c` to copy the table content to c
145145
- The find will match on Event Type or text in the event
146146
- The tooltip is shown for the current matching event, making it easy to view the event details such as Total or Self time.
147147

148-
![Timeline find](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.16/lana-timeline-find.png)
148+
![Timeline find](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-timeline-find.png)
149149

150150
### Call Tree
151151

152152
- If the next matching text is within a parent that parent will be expanded.
153153
- The row with the current matching text will also be highlighted
154154

155-
![Call Tree find](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.16/lana-calltree-find.png)
155+
![Call Tree find](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-calltree-find.png)
156156

157157
### Analysis + Database
158158

159159
- If the next matching text is within a group that group will be expanded.
160160
- The row with the current matching text will also be highlighted
161161

162-
![Analysis find](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.16/lana-analysis-find.png)
162+
![Analysis find](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-analysis-find.png)

lana-docs-site/docs/docs/gettingstarted.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ With the `.log` file open in VSCode.
1414
1. Open command pallette (CMD/CTRL + Shift + P) -> 'Log: Show Apex Log Analysis'\
1515
or
1616
1. Click the 'Log: Show Apex Log Analysis' code lens at the top of the file\
17-
![show analysis lens](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.10/lana-showanalysis-lens.webp)\
17+
![show analysis lens](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-showanalysis-lens.webp)\
1818
or
1919
1. Right click -> 'Log: Show Apex Log Analysis'
2020
or

lana-docs-site/docs/docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ sidebar_position: 2
44

55
# Installation
66

7-
![install](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.10/install-lana.webp)
7+
![install](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/install-lana.webp)
88

99
Search for `Apex Log Analyzer` from the extensions side bar in VS Code and click `Install` or
1010
install from the VS Code market place by clicking install on [Visual Studio Code Market Place: Apex Log Analyzer](https://marketplace.visualstudio.com/items?itemName=financialforce.lana)

lana-docs-site/docs/docs/intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sidebar_position: 1
88

99
Apex Log Analyzer makes performance analysis of Salesforce debug logs much easier and quicker. Visualize code execution via a Flame chart and Call Tree, identify and resolve performance and SOQL/DML problems via Method and Database Analysis.
1010

11-
![preview](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.14/lana-preview.gif)
11+
![preview](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/lana-preview.gif)
1212

1313
## WARNING
1414

lana-docs-site/docs/docs/settings.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ sidebar_position: 4
99
The default colors shown on the timeline can be changed in the VSCode settings.\
1010
Either in the UI `preferences -> extensions -> Apex Log Analyzer`
1111

12-
![color settings](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/v1.10/settings-color-lana.webp)
12+
![color settings](https://raw.githubusercontent.com/certinia/debug-log-analyzer/main/lana/dist/images/settings-color-lana.webp)
1313

1414
or
1515

lana/dist/images/install-lana.webp

5.53 KB
Loading

lana/dist/images/lana-analysis.png

158 KB
Loading

0 commit comments

Comments
 (0)