> ## Documentation Index
> Fetch the complete documentation index at: https://ancplua.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# AL0055 - Diagnostic missing from release notes

> Diagnostics should be tracked in release notes

Source: [Al0054ToAl0056DiagnosticsAlignmentAnalyzer.cs](https://github.com/ANcpLua/ANcpLua.Analyzers/blob/main/src/ANcpLua.Analyzers/Analyzers/Al0054ToAl0056DiagnosticsAlignmentAnalyzer.cs)

## Description

A diagnostic ID exists in source code but is not listed in AnalyzerReleases.Shipped.md or AnalyzerReleases.Unshipped.md. All diagnostics should be tracked for release management.

## Bad Code

```markdown theme={null}
<!-- AnalyzerReleases.Unshipped.md -->
<!-- AL0099 is missing from this file -->
```

## Good Code

```markdown theme={null}
<!-- AnalyzerReleases.Unshipped.md -->

| Rule ID | Category | Severity | Notes                |
| ------- | -------- | -------- | -------------------- |
| AL0099  | Design   | Warning  | New rule description |
```

## Properties

* **Category**: VersionManagement
* **Severity**: Warning
* **Enabled by default**: True
* **Code fix available**: False

## Configuration

```editorconfig theme={null}
dotnet_diagnostic.AL0055.severity = warning
```
