Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "0.9.2"
".": "0.9.3"
}
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# Changelog

## [0.9.3](https://github.com/askpt/code-metrics/compare/v0.9.2...v0.9.3) (2026-09-19)


### 🐛 Bug Fixes

* dispose CodeLens provider event emitter on deactivation ([#634](https://github.com/askpt/code-metrics/issues/634)) ([2b8c019](https://github.com/askpt/code-metrics/commit/2b8c0196e454ff1332b65446d05b01058d1a2665))
* freeze excludePatterns array returned by ConfigurationManager.get() ([#624](https://github.com/askpt/code-metrics/issues/624)) ([328451d](https://github.com/askpt/code-metrics/commit/328451dd6e84c87cd9cea9922aad2db5c3a19c17))
* validate that complexity thresholds are positive numbers ([#632](https://github.com/askpt/code-metrics/issues/632)) ([afdb7ec](https://github.com/askpt/code-metrics/commit/afdb7ec4630afba5eb514e0567d938c5b9168792))


### 🚀 Performance

* avoid array allocation in Java else-branch lookup ([#648](https://github.com/askpt/code-metrics/issues/648)) ([d36a992](https://github.com/askpt/code-metrics/commit/d36a992e95f95e9fd9f39263db8b265c702cfc80))
* use O(1) Set lookup for C# preprocessor directive detection in visit() ([#630](https://github.com/askpt/code-metrics/issues/630)) ([7c12843](https://github.com/askpt/code-metrics/commit/7c12843eb01ee7827c800804f1d11a70dd063bbb))


### 🔄 Refactoring

* extract magic number for config-change refresh delay ([#621](https://github.com/askpt/code-metrics/issues/621)) ([2fb1001](https://github.com/askpt/code-metrics/commit/2fb1001c3b1d03e662ddb9a7f499439bc40e907c))
* extract shared addDetail helper across analyzers ([#656](https://github.com/askpt/code-metrics/issues/656)) ([686076a](https://github.com/askpt/code-metrics/commit/686076aceff447cb99eba5761fe538fc294cb3fc))
* extract shared getBinaryLogicalOperator helper ([#597](https://github.com/askpt/code-metrics/issues/597)) ([ebe1a46](https://github.com/askpt/code-metrics/commit/ebe1a46b790c9fcf79f4a551dade05121a4c4a07))
* extract shared hasLabelChild helper for labeled break/continue detection ([#650](https://github.com/askpt/code-metrics/issues/650)) ([afaab35](https://github.com/askpt/code-metrics/commit/afaab3577c0ca52ef060af8f2d928187cc7ffb4e))
* freeze DEFAULT_CONFIG to prevent shared-state mutation ([#584](https://github.com/askpt/code-metrics/issues/584)) ([3d30dc8](https://github.com/askpt/code-metrics/commit/3d30dc8ff17fc36cee4e58dca4e51ea705c4da1b))
* share findEnclosingTypeName helper between C# and Java analyzers ([#654](https://github.com/askpt/code-metrics/issues/654)) ([8eba5d1](https://github.com/askpt/code-metrics/commit/8eba5d1f2539a2006f64f0bb4c0961ce7ac43657))
* use Set-based lookup for Java type-declaration node types ([#649](https://github.com/askpt/code-metrics/issues/649)) ([4b3b50d](https://github.com/askpt/code-metrics/commit/4b3b50d17370b301a8610ebab30138e8aaa2e82b))

## [0.9.2](https://github.com/askpt/code-metrics/compare/v0.9.1...v0.9.2) (2026-08-29)


Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "code-metrics",
"displayName": "Code Complexity Metrics",
"description": "A comprehensive Visual Studio Code extension that calculates and displays code metrics including Cognitive Complexity based on SonarSource's specification.",
"version": "0.9.2",
"version": "0.9.3",
"publisher": "dev-asilva",
"preview": true,
"repository": {
Expand Down
Loading