Skip to content

Commit f975ecb

Browse files
Merge pull request #440 from lukecotter/chore-update-deps-v1.10.2
build(deps): various security + bug fixes
2 parents e003364 + 0177a9f commit f975ecb

7 files changed

Lines changed: 926 additions & 896 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
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-
## [1.10.2] - 2023-11-07
8+
## [1.10.3] - 2023-11-07
99

1010
### Fixed
1111

lana/package.json

Lines changed: 7 additions & 7 deletions
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.2",
4+
"version": "1.10.3",
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",
@@ -163,15 +163,15 @@
163163
},
164164
"dependencies": {
165165
"@apexdevtools/apex-ls": "^4.2.0",
166-
"@apexdevtools/sfdx-auth-helper": "^2.0.0",
166+
"@apexdevtools/sfdx-auth-helper": "^2.0.1",
167167
"@salesforce/apex-node": "^1.6.2"
168168
},
169169
"devDependencies": {
170-
"@rollup/plugin-commonjs": "^25.0.0",
171-
"@rollup/plugin-node-resolve": "^15.0.2",
172-
"@types/node": "^16.x.x",
173-
"@types/vscode": "^1.74.0",
174-
"rollup": "^3.26.3",
170+
"@rollup/plugin-commonjs": "^25.0.7",
171+
"@rollup/plugin-node-resolve": "^15.2.3",
172+
"@types/node": "^16.18.60",
173+
"@types/vscode": "~1.74.0",
174+
"rollup": "^3.29.4",
175175
"typescript": "^5.2.2"
176176
}
177177
}

log-viewer/modules/calltree-view/CalltreeView.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,10 +188,10 @@ export async function renderCallTree(
188188
height: '100%',
189189
maxHeight: '100%',
190190
dataTree: true,
191-
// @ts-expect-error: needs to be added to type definition.
192191
dataTreeChildColumnCalcs: true,
193192
dataTreeBranchElement: '<span/>',
194193
selectable: 1,
194+
// @ts-expect-error custom property for datagrid/module/RowKeyboardNavigation
195195
rowKeyboardNavigation: true,
196196
columnDefaults: {
197197
title: 'default',

log-viewer/modules/datagrid/module/RowNavigation.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ export class RowNavigation extends Module {
3636
row.select();
3737

3838
table.restoreRedraw();
39-
// @ts-expect-error it has 2 params
4039
row.scrollTo('center', true).then(() => {
4140
// row.getElement().scrollIntoView({ behavior: 'auto', block: 'center', inline: 'start' });
4241
// NOTE: This is a workaround for the fact that `row.scrollTo('center'` does not work correctly for ros near the bottom.

log-viewer/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@
1717
"@vscode/codicons": "^0.0.33",
1818
"@vscode/webview-ui-toolkit": "^1.2.2",
1919
"lit": "^2.8.0",
20-
"tabulator-tables": "^5.5.1"
20+
"tabulator-tables": "^5.5.2"
2121
},
2222
"devDependencies": {
23-
"@rollup/plugin-commonjs": "^25.0.0",
24-
"@rollup/plugin-node-resolve": "^15.0.2",
25-
"@types/tabulator-tables": "^5.4.5",
26-
"concurrently": "^8.0.1",
27-
"http-server": "^14.x.x",
23+
"@rollup/plugin-commonjs": "^25.0.7",
24+
"@rollup/plugin-node-resolve": "^15.2.3",
25+
"@types/tabulator-tables": "^5.5.3",
26+
"concurrently": "^8.2.2",
27+
"http-server": "^14.1.1",
2828
"node-sass": "^9.0.0",
2929
"postcss": "^8.4.31",
30-
"rollup": "^3.26.3",
30+
"rollup": "^3.29.4",
3131
"rollup-plugin-polyfill-node": "^0.12.0",
32-
"rollup-plugin-postcss": "^4.0.0",
33-
"typescript": "^5.0.4"
32+
"rollup-plugin-postcss": "^4.0.2",
33+
"typescript": "^5.2.2"
3434
}
3535
}

package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -2,31 +2,31 @@
22
"name": "lana-ws",
33
"private": true,
44
"devDependencies": {
5-
"@rollup/plugin-commonjs": "^25.0.4",
6-
"@rollup/plugin-json": "^6.0.0",
7-
"@rollup/plugin-node-resolve": "^15.2.1",
8-
"@rollup/plugin-terser": "^0.4.3",
9-
"@swc/core": "^1.3.82",
10-
"@swc/helpers": "^0.5.1",
5+
"@rollup/plugin-commonjs": "^25.0.7",
6+
"@rollup/plugin-json": "^6.0.1",
7+
"@rollup/plugin-node-resolve": "^15.2.3",
8+
"@rollup/plugin-terser": "^0.4.4",
9+
"@swc/core": "^1.3.96",
10+
"@swc/helpers": "^0.5.3",
1111
"@swc/jest": "^0.2.29",
12-
"@trivago/prettier-plugin-sort-imports": "^4.2.0",
13-
"@types/jest": "^29.5.4",
12+
"@trivago/prettier-plugin-sort-imports": "^4.2.1",
13+
"@types/jest": "^29.5.7",
1414
"@typescript-eslint/eslint-plugin": "^5.62.0",
1515
"@typescript-eslint/parser": "^5.62.0",
16-
"concurrently": "^8.2.1",
16+
"concurrently": "^8.2.2",
1717
"eslint-config-prettier": "^8.10.0",
1818
"eslint-plugin-prettier": "^4.2.1",
1919
"husky": "^8.0.3",
20-
"jest": "^29.6.4",
21-
"jest-environment-jsdom": "^29.6.4",
20+
"jest": "^29.7.0",
21+
"jest-environment-jsdom": "^29.7.0",
2222
"lint-staged": "^13.3.0",
2323
"prettier": "^2.8.8",
24-
"rollup": "^3.28.1",
24+
"rollup": "^3.29.4",
2525
"rollup-plugin-copy": "^3.5.0",
2626
"rollup-plugin-minify-html": "^1.0.0",
2727
"rollup-plugin-polyfill-node": "^0.12.0",
2828
"rollup-plugin-postcss": "^4.0.2",
29-
"rollup-plugin-swc3": "^0.10.1"
29+
"rollup-plugin-swc3": "^0.10.3"
3030
},
3131
"scripts": {
3232
"bump-prerelease": "node ./scripts/pre-release.js",

0 commit comments

Comments
 (0)