carthage-software/mago
Mago is a toolchain for PHP that aims to provide a set of tools to help developers write better code.
1.47.3
1.7M downloads/mo
#1542 most downloaded on Packagist
carthage-software/mago
What this package is like to depend on
Last release today
22 Aug 2026
Ships on a steady schedule
a new release about every 2 weeks
Rarely documented
notes for 10 of 115 stable releases
Nothing withdrawn
no release was ever pulled
2 years old
173 releases · first in 2025
112 releases in the last 12 months
see the full history below
Release timeline
173 releases · Jan 2025 to Aug 2026Releases
latest 60 of 173-
1.47.322 Aug 2026Release notes
Open source →Mago 1.47.3
Mago 1.47.3 improves pipe expressions, numeric inference, match narrowing, readonly offsets, nullsafe chains, and loop control.
✨ Features
Analyzer
Formatter
- Pipe formatting: adds
preserve-breaking-pipe-expressionto retain existing line breaks. (#2141, 0cfc8ec)
🐛 Bug Fixes
Analyzer
- Nullsafe chains: narrows receivers after a nullsafe chain is proven non-null. (#2226, 4e678b8)
- Readonly offsets: allows offset writes through readonly properties holding
ArrayAccessobjects. (#2227, af3c576) - Pipe expressions: preserves generic return types through pipe partial applications. (#2141, 0cfc8ec)
- Numeric-string unary ops: models signs, increments, and decrements as PHP does. (#2229, 9316487)
- Boolean match arms: narrows the original subject for
instanceofconditions. (#2231, d6cdf19) - Switch loop levels: resolves numeric
breakandcontinuelevels acrossswitch. (#2233, c5eff01)
🏗️ Internal
Performance
- Match allocations: avoids allocating synthetic variable names during match analysis. (4c2581f)
🙏 Thank You
Contributors
No external pull requests were merged for this release.
Issue Reporters
Thank you to everyone who reported issues that shaped this release:
- @giorgiopogliani: #2141
- @MichaelOwenDyer: #2226, #2231
- @Elhebert: #2227
- @BafS: #2229
- @ddanielou: #2232
- @kamil-tekiela: #2233
Full Changelog: 1.47.2...1.47.3
- Pipe formatting: adds
-
1.47.219 Aug 2026Release notes
Open source →Mago 1.47.2
Mago 1.47.2 prevents invalid UTF-8 reporting crashes, preserves formatter semantics, and fixes several analyzer false positives.
🐛 Bug Fixes
Analyzer
- Static class-string calls: preserves generics returned by
staticfactories. (#2220, 0766957) - Array assignments: reports undefined target variables once. (#2219, 1705475)
- Promoted property hooks: analyzes hook bodies and records method usage. (#2218, 0936c30)
Formatter
- Invoked constructs: preserves required parentheses around invoked
requireexpressions. (#2221, 38f9e2a)
Reporting
🏗️ Internal
Maintenance
- Shared internals: deduplicates closure typing, call analysis, and linter utilities. (1668678)
- Analyzer linting: cleans up Clippy findings after the shared refactor. (782d2cc)
🙏 Thank You
Contributors
No external pull requests were merged for this release.
Issue Reporters
Thank you to everyone who reported issues that shaped this release:
Full Changelog: 1.47.1...1.47.2
- Static class-string calls: preserves generics returned by
-
1.47.118 Aug 2026Release notes
Open source →Mago 1.47.1
This patch release has no user-facing changes. It fixes the release pipeline so every supported target and crate can be published successfully.
🏗️ Internal
Release Pipeline
- PHP SDK tests: skips integration tests when PHP or Composer dependencies are unavailable. (7f9e4ff)
- Extension crate: adds
mago-extensionto the crate publishing order. (68c0818)
Full Changelog: 1.47.0...1.47.1
-
1.47.018 Aug 2026Release notes
Open source →Mago 1.47.0
Extensions in any language, Sponsored by CHECK24
Thanks to CHECK24 (@check24-opensource) for sponsoring Mago's new Extension API and PHP SDK.
✨ Features
Extensions
- Extension API: adds language-neutral workers, a PHP SDK, custom lint rules, analyzer plugins, and CLI tooling. (#2192)
See the extension documentation to get started.
Analyzer
--skip-ignores: disables configured analyzer ignores for a run. (#2191, f05c849)- Array key narrowing: narrows a key after a successful
array_key_existscheck. (#2199, c58e48b, 7cc1739)
🐛 Bug Fixes
Analyzer
- Logical assignments: merges assignments made by short-circuited right-hand expressions. (#2176, a53bc78)
- Magic properties: treats magic properties as possibly undefined. (#2177, cea8d53)
- Nullable inference: preserves
nullwhen inferring into amixedparameter. (#2175, 97988bb) - Scalar narrowing: prevents scalar intersections from collapsing incorrectly to
never. (#2179, #2206, 8d34248, c8bd837) - Flow structures: returns Flow's concrete
StructureTypefromtype_structure(). (#2186, ccde5ae) - Diagnostic casing: preserves method-name casing in unused-method diagnostics. (#2187, 13090af)
- Required interfaces: keeps requirement metadata without inheriting interface members. (#2189, e5a949e, 874ffac)
- Match subjects: evaluates method-call subjects once for exhaustive matching. (#2190, #2208, 7a7faa1)
- Private trait methods: stops inheriting private trait methods into child classes. (#2188, 8a8958a)
- Switch entry flow: keeps independently selected cases reachable after a terminating case. (#2185, efe7526)
- Method assertions: invalidates cached nested call results after mutating calls. (#2180, 353233b)
- Bool templates: recognizes bool-constrained templates in comparisons. (#2172, b84241a)
- Omitted generics: treats missing generic arguments as erased wildcards. (#2178, f1e029b)
- Docblock symbols: reports undefined types in class-level member and mixin tags. (#2193, 2c59ad3)
- Compound conditions: removes order-dependent impossible-comparison diagnostics. (#2195, 7ca65e2)
- Nullable object shapes: preserves object-shape fields in nullable docblock unions. (#2200, 5029124)
- Global annotations: honors
@vardocblocks onglobalstatements. (#2181, #2202, a7023c7) - Callable class strings: recognizes invokable classes in callable class-string bounds. (#2207, f77c965)
- Closure identity: recognizes every closure as an instance of
Closure. (#2203, d54d88e) - Symbol references: preserves source files for references returned to extensions. (#2211, aabe675)
- Unresolved dependencies: analyzes class bodies and exposes missing dependencies to extensions. (#2212, 24c9304, f1558d4)
- Class constants: canonicalizes class names when recording constant references. (#2213, b59529d)
- Missing property types: checks declarations without default values. (#2201, 2e4260f)
Codex
Linter
PHPDoc Syntax
- Trailing hyphens: prevents a hyphen from consuming the next byte in docblocks. (#2194, #2198, d46b35f)
Prelude
Extensions
- Windows startup: prevents an authentication race when extension workers connect. (111413a)
WASM
- Telemetry: excludes unavailable extension orchestrator telemetry from WASM builds. (9e8b752)
📖 Documentation
Extensions
- Extension guide: documents the architecture, PHP SDK, analyzer plugins, and custom rules. (7d67272)
- Starter template: recommends the extension template as the quickest starting point. (bb98a97)
Website
- Version order: lists documentation versions newest first. (#2204, ffd725e)
- Rule reference: refreshes the generated linter rule documentation. (3597d38)
🏗️ Internal
Maintenance
- Codex types: removes dead APIs and deduplicates type and comparator machinery. (3a28052, 3d301af, acd2d56)
- Analyzer internals: removes dead code and deduplicates reconciler and resolver logic. (02b352e)
- Formatter internals: simplifies presets, comments, alignment, and printer machinery. (e07980f, e595c13)
- Shared cleanup: deduplicates extension, codex, analyzer, and linter internals. (4b68329)
- Clippy policy: updates lint allowances for module roots and rest-pattern maintenance. (82b7522, 2053081, 332368a)
- Sponsors: refreshes the generated sponsor list. (8cec88c)
🙏 Thank You
Special thanks to CHECK24 for fully funding the Extension API's full-time development.
Contributors
A huge thank you to everyone who contributed code to this release:
- @dotdash: #2184, #2191, #2193, #2200, #2202
- @norberttech: #2186
- @hdimer: #2198
- @maximal: #2204
- @chrisvasz: #2201
Issue Reporters
Thank you to everyone who reported issues that shaped this release:
- @james2doyle: #39
- @bendavies: #443, #1385
- @swayok: #887
- @SanderMuller: #2164, #2211, #2212, #2213, #2214
- @mathroc: #2172, #2199
- @edsrzf: #2175
- @BafS: #2176, #2177, #2195
- @yoannblot: #2178
- @gsteel: #2179, #2180, #2196
- @Skyript: #2185
- @maximal: #2187
- @conghuyn: #2188
- @mytskine: #2189
- @dragosprotung: #2190
- @kryyova: #2194
- @iainhallam: #2181
- @dantleech: #2203
- @ddanielou: #2206, #2207, #2208
- @Double-Ramzi: #2210
Full Changelog: 1.46.0...1.47.0
-
1.46.005 Aug 2026Release notes
Open source →Mago 1.46.0
This release fixes a workflow-command injection in the GitHub reporting format (GHSA-f256-xqf4-x8pr), adds a
redundant-staticlinter rule and a--statsshorthand, corrects a batch of generic-narrowing and late-static-binding false positives across the analyzer and codex, and speeds up the PHP parser.🔒 Security
Reporting
- Workflow-command injection: escapes untrusted values written to workflow commands and log records. (GHSA-f256-xqf4-x8pr, cc8d5e4)
Reported by Liyi Zhou, Ziyue, Strick, Maurice, and Chenchen of the University of Sydney.
✨ Features
Linter
CLI
Prelude
🐛 Bug Fixes
Analyzer
- Array entry narrowing: narrows possibly-absent entries on the parent shape, independent of conjunct order. (#2132, 2af1cbc, 784b93b)
- Attribute arguments: validates the types of attribute constructor arguments. (#2161, ebf2f8d)
- Switch labels: detects duplicate and unreachable
caselabels. (#2162, 4119141) - Mutation-free calls: narrows repeated calls to mutation-free methods. (#2138, b6e97ee)
- Identical arrays: folds comparisons between identical arrays. (#2149, c2c7bb4)
- Late-static returns: preserves late-static types in generic return positions. (#2151, fe272b8)
voidconditionals: stops demanding a return from conditionals invoidfunctions. (#2160, bd85d70)selfin attributes: resolvesselfin attributes applied to class-likes. (#2168, 7f88255)- Specialized generics: accepts class-strings of specialized generic classes. (#2171, b0b0b91)
- Narrowing leaks: prevents method-call narrowing from leaking across scopes. (42cfd1f)
Codex
- Bounded templates: allows
instanceofnarrowing of generics parameterised by a bounded template. (#2135, a45ffec, 8b2edf6) - Template defaults: populates default template arguments when the generic argument is omitted. (#2140, aff9ce8)
- Static return types: preserves generic parameters in static return types. (#2145, 327ca0a)
voidwithnever: keepsvoidwhen combined withnever. (#2159, 864d0f7)- Late-static rebinding: guards exact late-static type rebinding. (fcd42ec)
Linter
- Naming suggestions: suppresses invalid suggestions for constants starting with a number. (#2158, 7c54906)
missing-docs: renames the exclusion config field. (#2134, a5eab2d)
Syntax
- Method return types: parses grouped static method return types in docblocks. (#2152, 06871ea)
- String interpolation: limits recursion when parsing interpolated strings. (3610502)
Prelude
Attribute: adds the missingTARGET_CONSTANTconstant. (9bef302)
Composer
📖 Documentation
Reporting
🏗️ Internal
Performance
- Parser: streamlines the PHP parser hot paths. (1ec8868)
Analyzer
- Unused templates: uses loop labels for the unused-template checks. (#2133, b4aa9ad)
- Tests: removes invalid attribute stubs. (4d9c611)
🙏 Thank You
Contributors
A huge thank you to everyone who contributed code to this release:
- @dotdash: #2133, #2159, #2160, #2168, #2169, #2171, #2174
- @gsteel: #2155
- @adam-ja: #2134
- @epic-64: #2130
Issue Reporters
Thank you to everyone who reported issues that shaped this release:
- @mathroc: #2132
- @PellegrinoDurante: #2135, #2140
- @BafS: #2138, #2149
- @giorgiopogliani: #2145
- @kryyova: #2151
- @AJenbo: #2152
- @maximal: #2154, #2162
- @Double-Ramzi: #2158
- @ddanielou: #2161
- @Bleksak: #2166, #2167
- @SanderMuller: #2173
Full Changelog: 1.45.0...1.46.0
-
1.45.024 Jul 2026Release notes
Open source →Mago 1.45.0
This release teaches the analyzer to build keyed array shapes from
get_object_vars(), adds@param-closure-thissupport and an auto-fix for overly-wide return types, introduces a linter rule preferringDateTimeImmutable::createFromTimestamp(), fixes a batch of analyzer false positives, and makes empty reports valid SARIF/JSON documents for CI.✨ Features
Analyzer
get_object_vars()shapes: returns keyed array shapes built from the object's visible properties. (#2110, a729ce1)@param-closure-this: supports the docblock tag for typing a closure parameter's$this. (#2131, 6000d41)- Overly-wide return types: adds an auto-fix that narrows the declared return type. (#2068, #2120, 9e4d186)
Linter
prefer-datetimeimmutable-create-from-timestamp: suggests the factory overnew DateTimeImmutable('@...'). (#2118, 38b6152)
🐛 Bug Fixes
Analyzer
- Readonly promotion: detects reinitialization of promoted readonly properties in parent constructors. (#2127, 490452e)
- Escaping breaks: preserves breaks that escape nested loops in reachability analysis. (#2124, 635eeab)
- Guarded members: tracks
method_existsguards on descendant members. (#2125, d1b6e9c) - PSL analysis: eliminates false positives when analyzing PSL-based code. (6527f24)
array_mapshapes: preserves array shapes for untyped closures. (#2122, 816578a)- Catch variables: refines definedness for precise conditions in try/catch. (#2119, aa469b9)
- Hooked properties: tracks property-hook writes against the read type. (#2112, bd95ea5)
- Split property types: supports distinct
@property-readand@property-writetypes. (#2079, #2108, b54a881) @propertyvisibility: resolves tags according to call-site visibility. (#2106, a4b077d)
Codex
- Enum case literals: infers literal values from class constants, tightening integer conditions. (#2111, 237465e)
Prelude
Reporting
- Empty reports: emits valid SARIF, JSON, GitLab, and Checkstyle documents when there are no issues. (#2128, 003ff32)
Playground
🙏 Thank You
Contributors
A huge thank you to everyone who contributed code to this release:
Issue Reporters
Thank you to everyone who reported issues that shaped this release:
- @UweOhse: #2068
- @mytskine: #2079
- @Norbytus: #2110
- @BafS: #2111, #2119, #2124, #2125
- @mathroc: #2116, #2118
- @dotdash: #2121
- @PellegrinoDurante: #2126
- @maximal: #2127
- @gsteel: #2128
Full Changelog: 1.44.0...1.45.0
-
1.44.018 Jul 2026Release notes
Open source →Mago 1.44.0
A faster release with stronger dependent-type analysis, richer guard and linter configuration, and fixes across the CLI, formatter, analyzer, and semantics.
✨ Features
Analyzer
- Override return types: reports overriding methods that omit a declared return type. (#2100, 90c04c0)
Linter
no-missing-format-argument: detects missing format arguments. (#2062, 38857dd)missing-docsexclusions: supports configurable exclusions. (#2102, 4488055)- Disallowed symbol levels: configures levels for functions and type instantiations. (#2101, 34ed400)
Guard
@finalvalidation: supports the annotation during structure validation. (#2065, 78cbbf0)- Restrictions: supports dependency restrictions and public-method allowlists. (#2074, 8d6d359)
CLI
🐛 Bug Fixes
Analyzer
- Dependent types: resolve them across calls, partials, unpacks, and intersections. (a629700, a231709, 81be763)
- Integer conditions: preserve ranges for correct impossible and redundant-condition reports. (#2085, #2087, 2037b9a, 6d71045)
- Loop conditions: stabilize types and avoid false diagnostics in
do-whileiterations. (#2078, 0205e49, 7afc4eb) issetflow: retains unsafe access and try/catch uncertainty after failed checks. (#2076, #2096, b70350c, 23203e5)- Readonly initialization: accepts deferred initialization of readonly properties. (#2095, ad495bd)
- Magic methods: resolves
@methodcalls backed by inherited methods. (#2089, fda90f8) - Mixin receiver types: binds
$thisandstaticto mixin receivers. (#2086, 07086c5) - Property overrides: reports incomparable override types. (#2103, 80dbbfe)
- Dynamic property names: reports
$property, not$$property. (#2066, 5d2116d) - PHPDoc returns: permits
voidin nullable docblock return types. (#2081, #2082, cdfd166) - Optional shapes: recognises optional string-keyed shapes as lists. (#2073, b15f9e1)
Codex
- Enum case identity: distinguishes cases during type identity checks. (#2071, 683220c, 2637cf8)
- Backed enum values: preserves literal values from known
->valueaccess. (#2064, 45ad41b) - Trait bounds: accepts exact
@require-extendsclasses when validating traits. (#2069, 84c0766)
Semantics
Linter
Formatter
- Binary continuations: preserves indentation and
match-arm docblocks. (#2060, #2063, 3057c15) - Multiline chains: keeps short chains attached after receiver arguments wrap. (#1711, #2030, bc0090e)
- Aligned assignments: respects print width and indents continuations. (#2093, #2094, 035d956, 2923585)
Guard
CLI
Distribution
🏗️ Internal
Performance
- Formatter: reduces printer and pipeline overhead. (f6520a2, ed94713)
- Linter: reduces traversal and allocation overhead. (d818460)
- Project analysis: speeds up end-to-end analysis and word interning. (d473383, c0d27c6)
Toolchain
🙏 Thank You
Contributors
A huge thank you to everyone who contributed code to this release:
- @Norbytus: #2065
- @mvanhorn: #2030, #2097
- @dotdash: #2066, #2075, #2086, #2088, #2089, #2098, #2100, #2103
- @xHeaven: #2082
- @maximal: #2011
- @adam-ja: #2101, #2102
Issue Reporters
Thank you to everyone who reported issues that shaped this release:
- @simbig: #2060
- @dantleech: #2062
- @BafS: #2064, #2076, #2085, #2087
- @gsteel: #2069, #2072
- @ddanielou: #2071
- @zonuexe: #2073
- @bram-pkg: #2074
- @UweOhse: #2078
- @mathroc: #2081
- @mansurs: #2084
- @innocenzi: #1711
- @cweiske: #2090, #2093, #2094
- @Tastaturberuf: #2095
- @datahari: #2096
Full Changelog: 1.43.0...1.44.0
-
1.43.005 Jul 2026Release notes
Open source →Mago 1.43.0
A fix-focused release clearing false positives across the analyzer, codex, linter, and formatter.
is_callablenarrowing, strictin_array, type-alias recursion,::classarray keys,no-dead-store, and member-access chains. Plussqlsrvstubs and internal HIR groundwork for the upcoming rule-based checker.✨ Features
Prelude
🐛 Bug Fixes
Analyzer
is_callablenarrowing: no more falseinvalid-callableafter narrowing to a callable type. (#2037, 938a511)- Strict
in_array: keeps the value's type on a negative result instead of wrongly excluding it. (#2048, 3a69d09) redundant-logical-operation: suppressed during loop pre-condition analysis. (#2054, 4b4a7d4)
Codex
- Enum generic narrowing: preserves generic type parameters when narrowing with enum type arguments. (#2035, 0c5fdad)
- Type-alias recursion: rejects aliases shadowing symbols and handles self-references, fixing a stack overflow. (#2050, cde8037)
::classarray keys: no falseinvalid-array-indexfor literal class-string keys. (#2056, e0dc158)
Prelude
- Named arguments: dropped
@no-named-argumentsfrom native functions that accept them. (#2043, 3e77dff)
Linter
no-dead-store: handles terminators and loop exits, clearing false positives. (#2052, #2053, 9f2eb74)
Formatter
- Member-access chains: formatting is idempotent with both preserve options. (#2032, 840cca4)
- Array-base parentheses: avoids redundant parens around a parenthesized array base. (#2038, da54dd7)
Syntax
- Heredoc interpolation: preserves token order for lossless reconstruction. (2a87bf6)
- Abstract methods: allows a
?><?phptag-pair terminator after an abstract method. (e5f81cb)
PHPDoc Syntax
- Docblock close marker: treats consecutive
*before/as one marker, fixing a lost intersection type. (#2055, 8749c2b)
📖 Documentation
- AST → CST: updated stale
ASTreferences toCST. (#2034, 73a9ade) - Helix formatter: fixed the Helix formatter setup docs. (#2058, 15336f4)
🏗️ Internal
- HIR groundwork: flat
Node/NodeKindview and PHP surface syntax carried through the IR for the upcoming rule-based checker. (11349fd, 94927e7) - Composite strings: unified composite/shell strings into one node with spans and heredoc/nowdoc kinds. (732ad8f, 6c880a8)
- Analyzer performance: removed duplicate hashing and redundant allocations. (5ae5198, 072933f, f71b732)
- Crate cleanup: removed the unused
mago-docblockandmago-type-syntaxcrates. (5deb957) - Toolchain: pinned nightly bumped through nightly-2026-07-05. (#2059)
🙏 Thank You
Contributors
A huge thank you to everyone who contributed code to this release:
Issue Reporters
Thank you to everyone who reported issues that shaped this release:
- @josephkerkhof: #2032, #2038
- @mhert: #2035
- @BafS: #2037, #2050
- @thorsten: #2039
- @mathroc: #2043
- @Lukkie: #2048
- @UweOhse: #2052, #2053, #2054
- @Ocramius: #2055
- @tyrsson: #2056
Full Changelog: 1.42.0...1.43.0
-
1.42.027 Jun 2026Release notes
Open source →Mago 1.42.0
A small release adding a
prefer-early-returnlinter rule, fixing Windowsself-update, and clearing analyzer and PHPDoc false positives aroundis_a(), nullable destructuring, and@paramon promoted properties.✨ Features
Linter
prefer-early-return: new rule suggesting early returns to reduce nesting in functions. (#2031, e523ab1)
🐛 Bug Fixes
Analyzer
is_a()withallow_string: a string subject no longer triggers a falseimpossible-type-comparison. (db64917)- Nullable destructuring: destructuring
T|nullkeeps element types (plus null) instead of widening tomixed. (643a037)
PHPDoc Syntax
@paramon promoted properties:@param Twith no variable is allowed and types the property like@var. (8b9af32)
CLI
- Windows
self-update: extracts the.exe-suffixed binary from the archive, fixing "file not found". (805a1c3)
🙏 Thank You
Contributors
A huge thank you to everyone who contributed code to this release:
Full Changelog: 1.41.0...1.42.0
-
1.41.027 Jun 2026Release notes
Open source →Mago 1.41.0
A feature release adding call-site generic variance and a new
no-duplicate-match-armlinter rule, alongside analyzer, codex, and PHPDoc fixes for implicitStringable,do-whilenarrowing,@returnnullability, and enummatchexhaustiveness.✨ Features
Linter
no-duplicate-match-arm: new rule flags amatcharm whose result duplicates an earlier arm. (#2027, a9b3775)
Type System
- Call-site generic variance:
covariant/contravariant/*type-argument modifiers parse and drive assignability. (#2025, c7ff981)
🐛 Bug Fixes
Analyzer
@returnnarrowing: a docblock@return intover native?intnarrows the return instead of re-addingnull. (#2020, dd8a54f)do-whileconditions: the loop body is narrowed by its condition on re-entry, likewhile. (#2029, 496cd0a)- Enum
matchexhaustiveness: a self-typed enum is treated as enumerable, fixing a false non-exhaustive report. (#2019, 6c72db0)
Codex
- Implicit
Stringable: a class declaring or inheriting__toString()now implicitly implementsStringable. (#2026, 7a81571)
PHPDoc Syntax
- Inline code spans: an inline
`code`span may cross continuation lines without an "unclosed code" error. (#2024, af95abc)
🏗️ Internal
- Dependencies: refreshed third-party dependencies. (14ac380)
- Toolchain: pinned nightly bumped to nightly-2026-06-27. (#2010, 9680310)
🙏 Thank You
Issue Reporters
Thank you to everyone who reported issues that shaped this release:
- @dragosprotung: #2019
- @mathroc: #2020
- @bendavies: #2024, #2025, #2026
- @maximal: #2027
- @silen-z: #2029
Full Changelog: 1.40.2...1.41.0
-
1.40.224 Jun 2026Nothing published for this version
-
1.40.124 Jun 2026Nothing published for this version
-
1.40.024 Jun 2026Nothing published for this version
-
1.30.004 Jun 2026Nothing published for this version
-
1.29.023 May 2026Nothing published for this version
-
1.28.019 May 2026Nothing published for this version
-
1.27.113 May 2026Nothing published for this version
-
1.27.013 May 2026Nothing published for this version
-
1.26.006 May 2026Nothing published for this version
-
1.25.202 May 2026Nothing published for this version
-
1.25.130 Apr 2026Nothing published for this version
-
1.25.030 Apr 2026Nothing published for this version
-
1.24.022 Apr 2026Nothing published for this version
-
1.23.119 Apr 2026Nothing published for this version
-
1.23.019 Apr 2026Nothing published for this version
-
1.22.018 Apr 2026Nothing published for this version
-
1.21.117 Apr 2026Nothing published for this version
-
1.21.017 Apr 2026Nothing published for this version
-
1.20.115 Apr 2026Nothing published for this version
-
1.20.014 Apr 2026Nothing published for this version
-
1.19.008 Apr 2026Nothing published for this version
-
1.18.102 Apr 2026Nothing published for this version
-
1.18.002 Apr 2026Nothing published for this version
-
1.17.031 Mar 2026Nothing published for this version
-
1.16.026 Mar 2026Nothing published for this version
-
1.15.320 Mar 2026Nothing published for this version
-
1.15.219 Mar 2026Nothing published for this version
-
1.15.119 Mar 2026Nothing published for this version
-
1.15.018 Mar 2026Nothing published for this version
-
1.14.114 Mar 2026Nothing published for this version
-
1.14.009 Mar 2026Nothing published for this version
-
1.13.302 Mar 2026Nothing published for this version
-
1.13.227 Feb 2026Nothing published for this version
-
1.13.126 Feb 2026Nothing published for this version
-
1.13.026 Feb 2026Nothing published for this version
-
1.12.125 Feb 2026Nothing published for this version
-
1.12.025 Feb 2026Nothing published for this version
-
1.11.024 Feb 2026Nothing published for this version
-
1.10.022 Feb 2026Nothing published for this version
-
1.9.118 Feb 2026Nothing published for this version
-
1.9.017 Feb 2026Nothing published for this version
-
1.8.012 Feb 2026Nothing published for this version
-
1.7.009 Feb 2026Nothing published for this version
-
1.6.007 Feb 2026Nothing published for this version
-
1.5.004 Feb 2026Nothing published for this version
-
1.4.103 Feb 2026Nothing published for this version
-
1.4.003 Feb 2026Nothing published for this version
-
1.3.029 Jan 2026Nothing published for this version
-
1.2.225 Jan 2026Nothing published for this version
-
1.2.125 Jan 2026Nothing published for this version