CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
CHANGELOG.md331 linesDownload Raw Back to lint
1## 6.9.7 (2026-06-09)2 3### Bug fixes4 5Avoid lint tooltips overlapping their target text when that is line-wrapped.6 7## 6.9.6 (2026-05-06)8 9### Bug fixes10 11Pop open a diagnostic's tooltip when moving to it with `nextDiagnostic` or `previousDiagnostic`.12 13## 6.9.5 (2026-03-02)14 15### Bug fixes16 17Use more appropriate background colors for the selected diagnostic in dark mode.18 19## 6.9.4 (2026-02-11)20 21### Bug fixes22 23Make sure `nextDiagnostic` selects entire diagnostics, even when they overlap with other diagnostics.24 25## 6.9.3 (2026-01-27)26 27### Bug fixes28 29Fix an issue where the lint panel inappropriately blocks the default behavior of key combinations with Ctrl, Alt, or Cmd held.30 31## 6.9.2 (2025-11-03)32 33### Bug fixes34 35Fix an infinite loop that would occur when a diagnostic pointed beyond the end of the document.36 37## 6.9.1 (2025-10-23)38 39### Bug fixes40 41Properly display diagnostics that just cover multiple newlines as widgets.42 43## 6.9.0 (2025-10-02)44 45### Bug fixes46 47Multiple configurations to `linter` will now be merged without raising an error.48 49### New features50 51The new `markClass` option to actions makes it possible to style action buttons.52 53## 6.8.5 (2025-03-26)54 55### Bug fixes56 57Fix a regression (since 6.8.4) that broke the `markerFilter` option.58 59## 6.8.4 (2024-11-28)60 61### Bug fixes62 63Don't create overlapping decorations when diagnostics overlap.64 65Fix an issue where block widgets could cause the lint gutter to show diagnostics multiple times.66 67## 6.8.3 (2024-11-21)68 69### Bug fixes70 71Fix an issue that prevented tooltips in the lint gutter from being displayed.72 73## 6.8.2 (2024-09-24)74 75### Bug fixes76 77Show lint markers for code replaced by a block widget.78 79When multiple linters are installed, start displaying results from ones that return quickly even if others are slow to return.80 81## 6.8.1 (2024-06-19)82 83### Bug fixes84 85Make lint markers non-inclusive again, since having them that way causes more issues than it solves.86 87## 6.8.0 (2024-05-23)88 89### New features90 91The new `autoPanel` option can be used to make the panel automatically appear when diagnostics are added and close when no diagnostics are left.92 93## 6.7.1 (2024-05-15)94 95### Bug fixes96 97Don't perform an additional superfluous timed lint run after `forceLinting` has been called.98 99## 6.7.0 (2024-04-30)100 101### New features102 103The `renderMessage` function is now called with the editor view as first argument.104 105## 6.6.0 (2024-04-29)106 107### New features108 109The new `hideOn` configuration option can be used to control in what circumstances lint tooltips get hidden by state changes.110 111## 6.5.0 (2024-01-30)112 113### Bug fixes114 115Make lint mark decorations inclusive, so that they are applied even if the marked content is replaced by a widget decoration.116 117### New features118 119`linter` can now be called with null as source to only provide a configuration.120 121`markerFilter` and `tooltipFilter` function now get passed the current editor state.122 123## 6.4.2 (2023-09-14)124 125### Bug fixes126 127Make sure scrolling diagnostic into view in the panel works when the editor is scaled.128 129## 6.4.1 (2023-08-26)130 131### Bug fixes132 133Fix a crash that could occur when a view was reconfigured in a way that removed the lint extension.134 135## 6.4.0 (2023-07-03)136 137### New features138 139Diagnostics can now use `"hint"` as a severity level.140 141Diagnostics can now set a `markClass` property to add an additional CSS class to the text marked by the diagnostic.142 143## 6.3.0 (2023-06-23)144 145### New features146 147A new `previousDiagnostic` command can be used to move back through the active diagnostics.148 149## 6.2.2 (2023-06-05)150 151### Bug fixes152 153Make sure lint gutter tooltips are properly closed when the content of their line changes.154 155## 6.2.1 (2023-04-13)156 157### Bug fixes158 159The `linter` function now eagerly includes all lint-related extensions, rather than appending them to the configuration as-needed, so that turning off linting by clearing the compartment that contains it works properly.160 161## 6.2.0 (2023-02-27)162 163### New features164 165The new `needsRefresh` option to `linter` makes it possible to cause linting to be recalculated for non-document state changes.166 167## 6.1.1 (2023-02-15)168 169### Bug fixes170 171Give lint action buttons a pointer cursor style.172 173Fix a bug that caused diagnostic action callbacks to be called twice when their button was clicked.174 175## 6.1.0 (2022-11-15)176 177### New features178 179The new `forEachDiagnostic` function can be used to iterate over the diagnostics in an editor state.180 181## 6.0.0 (2022-06-08)182 183### Breaking changes184 185Update dependencies to 6.0.0186 187## 0.20.3 (2022-05-25)188 189### New features190 191Diagnostic objects may now have a `renderMessage` method to render their message to the DOM.192 193## 0.20.2 (2022-05-02)194 195### New features196 197The package now exports the `LintSource` function type.198 199The new `markerFilter` and `tooltipFilter` options to `linter` and `lintGutter` allow more control over which diagnostics are visible and which have tooltips.200 201## 0.20.1 (2022-04-22)202 203### Bug fixes204 205Hide lint tooltips when the document is changed.206 207## 0.20.0 (2022-04-20)208 209### Breaking changes210 211Update dependencies to 0.20.0212 213## 0.19.6 (2022-03-04)214 215### Bug fixes216 217Fix a bug where hovering over the icons in the lint gutter would sometimes fail to show a tooltip or show the tooltip for another line.218 219## 0.19.5 (2022-02-25)220 221### Bug fixes222 223Make sure the lint gutter tooltips are positioned under their icon, even when the line is wrapped.224 225## 0.19.4 (2022-02-25)226 227### Bug fixes228 229Fix an issue where an outdated marker could stick around on the lint gutter after all diagnostics were removed.230 231### New features232 233Add a `hoverTime` option to the lint gutter. Change default hover time to 300234 235## 0.19.3 (2021-11-09)236 237### New features238 239Export a function `lintGutter` which returns an extension that installs a gutter marking lines with diagnostics.240 241The package now exports the effect used to update the diagnostics (`setDiagnosticsEffect`).242 243## 0.19.2 (2021-09-29)244 245### Bug fixes246 247Fix a bug where reconfiguring the lint source didn't restart linting.248 249## 0.19.1 (2021-09-17)250 251### Bug fixes252 253Prevent decorations that cover just a line break from being invisible by showing a widget instead of range for them.254 255### New features256 257The `diagnosticCount` method can now be used to determine whether there are active diagnostics.258 259## 0.19.0 (2021-08-11)260 261### Breaking changes262 263Update dependencies to 0.19.0264 265## 0.18.6 (2021-08-08)266 267### Bug fixes268 269Fix a crash in the key handler of the lint panel when no diagnostics are available.270 271## 0.18.5 (2021-08-07)272 273### Bug fixes274 275Fix an issue that caused `openLintPanel` to not actually open the panel when ran before the editor had any lint state loaded.276 277### New features278 279The package now exports a `forceLinting` function that forces pending lint queries to run immediately.280 281## 0.18.4 (2021-06-07)282 283### Bug fixes284 285Multiple `linter` extensions can now be added to an editor without disrupting each other.286 287Fix poor layout on lint tooltips due to changes in @codemirror/tooltip.288 289## 0.18.3 (2021-05-10)290 291### Bug fixes292 293Fix a regression where using `setDiagnostics` when linting hadn't been abled yet ignored the first set of diagnostics.294 295## 0.18.2 (2021-04-16)296 297### Bug fixes298 299Newlines in line messages are now shown as line breaks to the user.300 301### New features302 303You can now pass a delay option to `linter` to configure how long it waits before calling the linter.304 305## 0.18.1 (2021-03-15)306 307### Bug fixes308 309Adjust to current @codemirror/panel and @codemirror/tooltip interfaces.310 311## 0.18.0 (2021-03-03)312 313### Bug fixes314 315Make sure action access keys are discoverable for screen reader users.316 317Selection in the lint panel should now be properly visible to screen readers.318 319## 0.17.1 (2021-01-06)320 321### New features322 323The package now also exports a CommonJS module.324 325## 0.17.0 (2020-12-29)326 327### Breaking changes328 329First numbered release.330 331 
basant307/AI_Governance_Project · CoolFace