Skip to content

chore: release#2818

Open
CommanderStorm wants to merge 1 commit into
mainfrom
release-plz-2026-05-22T02-46-59Z
Open

chore: release#2818
CommanderStorm wants to merge 1 commit into
mainfrom
release-plz-2026-05-22T02-46-59Z

Conversation

@CommanderStorm

@CommanderStorm CommanderStorm commented May 22, 2026

Copy link
Copy Markdown
Member

🤖 New release

  • martin-tile-utils: 0.7.3 -> 0.7.4 (✓ API compatible changes)
  • mbtiles: 0.17.6 -> 0.18.0 (⚠ API breaking changes)
  • martin-core: 0.7.0 -> 0.8.0 (⚠ API breaking changes)
  • martin: 1.10.1 -> 1.11.0

mbtiles breaking changes

--- failure enum_tuple_variant_changed_kind: An enum tuple variant changed kind ---

Description:
A public enum's exhaustive tuple variant has changed to a different kind of enum variant, breaking possible instantiations and patterns.
        ref: https://doc.rust-lang.org/reference/items/enumerations.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/enum_tuple_variant_changed_kind.ron

Failed in:
  variant MbtError::InconsistentMetadata in /tmp/.tmpCiFyfT/martin/mbtiles/src/errors.rs:39
  variant MbtError::IncorrectTileHash in /tmp/.tmpCiFyfT/martin/mbtiles/src/errors.rs:50
  variant MbtError::MissingTileReference in /tmp/.tmpCiFyfT/martin/mbtiles/src/errors.rs:59
  variant MbtError::InvalidTileIndex in /tmp/.tmpCiFyfT/martin/mbtiles/src/errors.rs:68
  variant MbtError::AggHashMismatch in /tmp/.tmpCiFyfT/martin/mbtiles/src/errors.rs:78
  variant MbtError::MismatchedTargetType in /tmp/.tmpCiFyfT/martin/mbtiles/src/errors.rs:115
  variant MbtError::AggHashMismatchWithDiff in /tmp/.tmpCiFyfT/martin/mbtiles/src/errors.rs:152
  variant MbtError::AggHashMismatchAfterApply in /tmp/.tmpCiFyfT/martin/mbtiles/src/errors.rs:162
  variant MbtError::BinDiffIncorrectTileHash in /tmp/.tmpCiFyfT/martin/mbtiles/src/errors.rs:177

martin-core breaking changes

--- failure auto_trait_impl_removed: auto trait no longer implemented ---

Description:
A public type has stopped implementing one or more auto traits. This can break downstream code that depends on the traits being implemented.
        ref: https://doc.rust-lang.org/reference/special-types-and-traits.html#auto-traits
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/auto_trait_impl_removed.ron

Failed in:
  type StyleSources is no longer UnwindSafe, in /tmp/.tmpCiFyfT/martin/martin-core/src/resources/styles/mod.rs:93

--- failure enum_tuple_variant_changed_kind: An enum tuple variant changed kind ---

Description:
A public enum's exhaustive tuple variant has changed to a different kind of enum variant, breaking possible instantiations and patterns.
        ref: https://doc.rust-lang.org/reference/items/enumerations.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/enum_tuple_variant_changed_kind.ron

Failed in:
  variant FontError::InvalidFontRangeStartEnd in /tmp/.tmpCiFyfT/martin/martin-core/src/resources/fonts/error.rs:19
  variant PmtilesError::UnknownTileType in /tmp/.tmpCiFyfT/martin/martin-core/src/tiles/pmtiles/error.rs:23
  variant PostgresError::CannotUseClientKey in /tmp/.tmpCiFyfT/martin/martin-core/src/tiles/postgres/errors.rs:40
  variant PostgresError::PostgisTooOld in /tmp/.tmpCiFyfT/martin/martin-core/src/tiles/postgres/errors.rs:84
  variant PostgresError::PostgresqlTooOld in /tmp/.tmpCiFyfT/martin/martin-core/src/tiles/postgres/errors.rs:93
  variant PostgresError::PrepareQueryError in /tmp/.tmpCiFyfT/martin/martin-core/src/tiles/postgres/errors.rs:102

--- failure enum_variant_missing: pub enum variant removed or renamed ---

Description:
A publicly-visible enum has at least one variant that is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/enum_variant_missing.ron

Failed in:
  variant StyleError::SingleThreadedRenderPoolError, previously in file /tmp/.tmpOQGcSi/martin-core/src/resources/styles/error.rs:8
  variant PostgresError::InvalidTableExtent, previously in file /tmp/.tmpOQGcSi/martin-core/src/tiles/postgres/errors.rs:84

--- failure inherent_method_missing: pub method removed or renamed ---

Description:
A publicly-visible method or associated fn is no longer available under its prior name. It may have been renamed or removed entirely.
        ref: https://doc.rust-lang.org/cargo/reference/semver.html#item-remove
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.47.0/src/lints/inherent_method_missing.ron

Failed in:
  StyleSources::set_rendering_enabled, previously in file /tmp/.tmpOQGcSi/martin-core/src/resources/styles/mod.rs:193
Changelog

mbtiles

0.18.0 - 2026-06-13

Added

  • static rendering core (#2804)

Other

  • migrate MBTilesReloader to be based on ReloadDriver and Discovery (pg-reload-6) (#2853)
  • make sure that error types with multiple identical types have names (#2832)
  • lockfile maintenance (#2822)
  • (deps) Update sqlx to 0.9.0 and adapt MBTiles dynamic SQL to SqlSafeStr (#2821)
  • add #![forbid(unsafe_code)] to martin-tile-utils (#2847)

martin-core

0.8.0 - 2026-06-13

Added

  • Auto-refresh pmtiles source on source data change (#2858)
  • duckdb-source implementation at martin-core (#2831)
  • static rendering core (#2804)

Fixed

  • (martin) reject invalid scale and inverted bbox in static rendering (#2830)
  • ignore ignored directory for sprite resolution (#2815)

Other

  • (pg) cleanup how extent is handled (PGReloader 0) (#2837)
  • make sure that error types with multiple identical types have names (#2832)
  • make the MLN renderer multi threaded (#2826)
  • cache render fixtures (#2828)

martin

1.11.0 - 2026-06-13

Added

  • teach ObjectStoreDiscovery to track source data versions (#2864)
  • Auto-refresh pmtiles source on source data change (#2858)
  • Add COGReloader and PMTilesReloader (Tile Reload Phase 2) (#2750)
  • static rendering core (#2804)
  • duckdb-source implementation at martin-core (#2831)

Fixed

  • (martin) reject invalid scale and inverted bbox in static rendering (#2830)
  • Use ST_EstimatedExtent for quick bounds calc (#1220)
  • ignore ignored directory for sprite resolution (#2815)

Other

  • split Config types into config.rs, making main/mod.rs a pure mod (config-3) (#2876)
  • move parsing to its own module (config-2) (#2875)
  • extract impl Config to lifecycle module (confgi-1) (#2874)
  • pg reloader test to reduce the pg-reloader diff (#2867)
  • rename PmTilesReloader to PmtilesReloader (#2861)
  • (deps) Bump the all-npm-version-updates group across 2 directories with 18 updates (#2856)
  • migrate Pmtiles to ReloadDriver and Discovery (pg-reload-7) (#2840)
  • migrate MBTilesReloader to be based on ReloadDriver and Discovery (pg-reload-6) (#2853)
  • adopt ReloadDriver/Discovery for Mbtiles (pg-reload-5) (#2852)
  • move reload-Trigger-ing to a separate trait (#2845)
  • (deps) autoupdate pre-commit (#2849)
  • extract Sink trait for the tile-source manager (#2844)
  • (pg) Refactor discovery to enable fingerprinting (PGReloader 2) (#2835)
  • (pg) split auto-discovery into discover + instantiate phases (PGReloader 1) (#2836)
  • (pg) cleanup how extent is handled (PGReloader 0) (#2837)
  • make sure that error types with multiple identical types have names (#2832)
  • fix import ordering drift (#2838)
  • lockfile maintenance (#2822)
  • make the MLN renderer multi threaded (#2826)
  • add a pre-commit to simplify UTF characters (#2827)
  • cache render fixtures (#2828)
  • add #![forbid(unsafe_code)] to martin-tile-utils (#2847)
  • (deps) Update sqlx to 0.9.0 and adapt MBTiles dynamic SQL to SqlSafeStr (#2821)


This PR was generated with release-plz.

Copilot AI review requested due to automatic review settings May 22, 2026 02:47

Copilot AI left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Release-plz generated release bump for Martin and martin-core, updating crate/package versions and propagating the new Martin Docker tag across docs and helper tooling.

Changes:

  • Bump martin-core from 0.7.0 → 0.7.1 and martin from 1.10.1 → 1.10.2 (manifests + lockfile).
  • Add release entries to martin and martin-core changelogs for the sprite-resolution fix (#2815).
  • Update documentation/examples and justfile to reference the ghcr.io/maplibre/martin:1.10.2 image tag.

Reviewed changes

Copilot reviewed 12 out of 13 changed files in this pull request and generated 2 comments.

Show a summary per file
File Description
martin/martin-ui/package.json Bumps UI package version to 1.10.2.
martin/CHANGELOG.md Adds 1.10.2 changelog entry.
martin/Cargo.toml Bumps martin crate version to 1.10.2.
martin-core/CHANGELOG.md Adds 0.7.1 changelog entry.
martin-core/Cargo.toml Bumps martin-core crate version to 0.7.1.
justfile Updates docker-run to use image tag 1.10.2.
docs/content/run-with-lambda.md Updates lambda deployment example image tags to 1.10.2.
docs/content/run-with-docker.md Updates docker run examples to 1.10.2.
docs/content/run-with-docker-compose.md Updates docker-compose example image tag to 1.10.2.
docs/content/installation.md Updates installation docker example image tag to 1.10.2.
demo/docker-compose.yml Updates demo compose image tag to 1.10.2.
Cargo.toml Updates workspace dependency on martin-core to 0.7.1.
Cargo.lock Updates locked versions for martin and martin-core.

Comment on lines 72 to 74
"type": "module",
"version": "1.10.1"
"version": "1.10.2"
}
Comment thread martin/Cargo.toml
Comment on lines 1 to 4
[package]
name = "martin"
version = "1.10.1"
version = "1.10.2"
authors = [
@github-actions

github-actions Bot commented May 22, 2026

Copy link
Copy Markdown

Performance Comparison mainrelease-plz-2026-05-22T02-46-59Z

Total Elapsed Time: 77.24s → 77.07s (-0.2%)
CPU Baseline: 81.97µs → 84.30µs (+2.8%)
Benchmark ID: timing

timing - Function execution time metrics.

+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| Function                   | Calls                        | Avg                              | P95                              | Total                            | % Total                      |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| martin::main               | 1 → 1 (+0.0%)                | 77.21s → 77.07s (-0.2%)          | 77.24s → 77.11s (-0.2%)          | 77.24s → 77.07s (-0.2%)          | 100.00% → 100.00% (+0.0%)    |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| martin::start              | 1 → 1 (+0.0%)                | 77.21s → 77.07s (-0.2%)          | 77.24s → 77.11s (-0.2%)          | 77.23s → 77.05s (-0.2%)          | 99.99% → 99.98% (-0.0%)      |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| content::get_tile          | 2200600 → 2200600 (+0.0%)    | 27.89µs → 27.50µs (-1.4%)        | 39.20µs → 37.89µs (-3.3%)        | 61.38s → 60.51s (-1.4%)          | 79.47% → 78.51% (-1.2%)      |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| content::get_http_response | 2200600 → 2200600 (+0.0%)    | 19.81µs → 19.42µs (-2.0%)        | 30.96µs → 30.11µs (-2.7%)        | 43.59s → 42.73s (-2.0%)          | 56.43% → 55.45% (-1.7%)      |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| content::get_tile_content  | 2200600 → 2200600 (+0.0%)    | 17.39µs → 16.87µs (-3.0%)        | 28.37µs → 27.61µs (-2.7%)        | 38.27s → 37.12s (-3.0%)          | 49.55% → 48.17% (-2.8%)      |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| content::new               | 2200600 → 2200600 (+0.0%)    | 2.98µs → 3.02µs (+1.3%)          | 2.54µs → 2.50µs (-1.6%)          | 6.55s → 6.64s (+1.4%)            | 8.48% → 8.62% (+1.7%)        |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| content::recompress        | 2200600 → 2200600 (+0.0%)    | 1.85µs → 1.80µs (-2.7%)          | 100.00ns → 110.00ns (+10.0%)     | 4.07s → 3.97s (-2.5%)            | 5.27% → 5.15% (-2.3%)        |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| content::encode            | 100100 → 100100 (+0.0%)      | 39.14µs → 38.06µs (-2.8%)        | 112.25µs → 75.01µs (-33.2%) 🚀   | 3.92s → 3.81s (-2.8%)            | 5.07% → 4.94% (-2.6%)        |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| source::get_sources        | 2200600 → 2200600 (+0.0%)    | 1.57µs → 1.52µs (-3.2%)          | 2.06µs → 1.99µs (-3.4%)          | 3.46s → 3.36s (-2.9%)            | 4.48% → 4.36% (-2.7%)        |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| server::new_server         | 1 → 1 (+0.0%)                | 657.66µs → 285.06µs (-56.7%) 🚀  | 657.92µs → 285.18µs (-56.7%) 🚀  | 657.57µs → 285.13µs (-56.6%) 🚀  | 0.00% → 0.00% (+0.0%)        |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| optimizer::encode          | 1 → 1 (+0.0%)                | 84.83µs → 69.41µs (-18.2%)       | 84.86µs → 69.44µs (-18.2%)       | 84.85µs → 69.39µs (-18.2%)       | 0.00% → 0.00% (+0.0%)        |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| optimizer::encode_into     | 4 → 4 (+0.0%)                | 14.79µs → 12.24µs (-17.2%)       | 43.13µs → 25.68µs (-40.5%) 🚀    | 59.13µs → 48.95µs (-17.2%)       | 0.00% → 0.00% (+0.0%)        |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| encode::write_to           | 4 → 4 (+0.0%)                | 7.38µs → 10.33µs (+40.0%) ⚠️     | 14.38µs → 24.30µs (+69.0%) ⚠️    | 29.51µs → 41.33µs (+40.1%) ⚠️    | 0.00% → 0.00% (+0.0%)        |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| writer::with               | 72 → 72 (+0.0%)              | 162.00ns → 167.00ns (+3.1%)      | 401.00ns → 391.00ns (-2.5%)      | 11.71µs → 12.06µs (+3.0%)        | 0.00% → 0.00% (+0.0%)        |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+
| tile::from_tile            | 4 → 4 (+0.0%)                | 1.71µs → 1.85µs (+8.2%)          | 2.19µs → 2.69µs (+22.8%) ⚠️      | 6.82µs → 7.40µs (+8.5%)          | 0.00% → 0.00% (+0.0%)        |
+----------------------------+------------------------------+----------------------------------+----------------------------------+----------------------------------+------------------------------+

alloc-bytes - Exclusive allocation bytes by each function (excluding nested calls).

+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| Function                       | Calls                        | Avg                             | P95                             | Total                           | % Total                    |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| content::get_tile_content      | 2200600 → 2200600 (+0.0%)    | 93.0 KB → 93.0 KB (+0.0%)       | 181.9 KB → 181.9 KB (+0.0%)     | 195.2 GB → 195.2 GB (+0.0%)     | 84.06% → 84.06% (+0.0%)    |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| content::encode                | 100100 → 100100 (+0.0%)      | 344.5 KB → 344.5 KB (+0.0%)     | 347.2 KB → 347.2 KB (+0.0%)     | 32.9 GB → 32.9 GB (+0.0%)       | 14.16% → 14.16% (+0.0%)    |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| source::get_sources            | 2200600 → 2200600 (+0.0%)    | 1.5 KB → 1.5 KB (+0.0%)         | 2.4 KB → 2.4 KB (+0.0%)         | 3.1 GB → 3.1 GB (+0.0%)         | 1.35% → 1.35% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| content::get_tile              | 2200600 → 2200600 (+0.0%)    | 297 B → 297 B (+0.0%)           | 296 B → 296 B (+0.0%)           | 624.7 MB → 624.7 MB (+0.0%)     | 0.26% → 0.26% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| content::get_http_response     | 2200600 → 2200600 (+0.0%)    | 182 B → 182 B (+0.0%)           | 200 B → 200 B (+0.0%)           | 383.6 MB → 383.6 MB (+0.0%)     | 0.16% → 0.16% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| martin::start                  | 1 → 1 (+0.0%)                | 3.0 MB → 3.0 MB (+0.0%)         | 3.0 MB → 3.0 MB (+0.0%)         | 3.0 MB → 3.0 MB (+0.0%)         | 0.00% → 0.00% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| martin::main                   | 1 → 1 (+0.0%)                | 139.9 KB → 162.9 KB (+16.4%)    | 139.9 KB → 162.9 KB (+16.4%)    | 139.9 KB → 162.9 KB (+16.4%)    | 0.00% → 0.00% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| optimizer::encode              | 1 → 1 (+0.0%)                | 67.7 KB → 67.7 KB (+0.0%)       | 67.7 KB → 67.7 KB (+0.0%)       | 67.7 KB → 67.7 KB (+0.0%)       | 0.00% → 0.00% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| server::new_server             | 1 → 1 (+0.0%)                | 31.1 KB → 31.1 KB (+0.0%)       | 31.1 KB → 31.1 KB (+0.0%)       | 31.1 KB → 31.1 KB (+0.0%)       | 0.00% → 0.00% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| tile::from_tile                | 4 → 4 (+0.0%)                | 376 B → 376 B (+0.0%)           | 376 B → 376 B (+0.0%)           | 1.5 KB → 1.5 KB (+0.0%)         | 0.00% → 0.00% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| encode::write_to               | 4 → 4 (+0.0%)                | 370 B → 370 B (+0.0%)           | 624 B → 624 B (+0.0%)           | 1.4 KB → 1.4 KB (+0.0%)         | 0.00% → 0.00% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| writer::with                   | 72 → 72 (+0.0%)              | 16 B → 16 B (+0.0%)             | 380 B → 380 B (+0.0%)           | 1.2 KB → 1.2 KB (+0.0%)         | 0.00% → 0.00% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| encode::dict_may_be_beneficial | 4 → 4 (+0.0%)                | 256 B → 256 B (+0.0%)           | 256 B → 256 B (+0.0%)           | 1.0 KB → 1.0 KB (+0.0%)         | 0.00% → 0.00% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| sort::sort                     | 4 → 4 (+0.0%)                | 120 B → 120 B (+0.0%)           | 160 B → 160 B (+0.0%)           | 480 B → 480 B (+0.0%)           | 0.00% → 0.00% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+
| writer::write_header           | 4 → 4 (+0.0%)                | 69 B → 69 B (+0.0%)             | 104 B → 104 B (+0.0%)           | 276 B → 276 B (+0.0%)           | 0.00% → 0.00% (+0.0%)      |
+--------------------------------+------------------------------+---------------------------------+---------------------------------+---------------------------------+----------------------------+

Threads

Total Alloc: 3.0 MB → 3.0 MB (+0.0%)
Total Dealloc: 301.4 MB → 301.4 MB (+0.0%)
Mem Diff: -298.4 MB → -298.4 MB (+0.0%)

+--------+--------------------------+----------------------------+--------------------------------+----------------------------+--------------------------------+
| Thread | CPU % Avg                | CPU % Max                  | Alloc                          | Dealloc                    | Mem Diff                       |
+--------+--------------------------+----------------------------+--------------------------------+----------------------------+--------------------------------+
| martin | 0.10% → 0.10% (+0.0%)    | 15.90% → 15.90% (+0.0%)    | 2.8 MB → 2.8 MB (+0.0%)        | 1.9 MB → 1.9 MB (+0.0%)    | 943.0 KB → 946.5 KB (+0.4%)    |
+--------+--------------------------+----------------------------+--------------------------------+----------------------------+--------------------------------+
| hp-mcp | 0.00% → 0.00% (+0.0%)    | 0.00% → 0.00% (+0.0%)      | 54.7 KB → 31.7 KB (-42.0%) 🚀  | 3.4 KB → 3.4 KB (+0.0%)    | 51.4 KB → 28.4 KB (-44.7%) 🚀  |
+--------+--------------------------+----------------------------+--------------------------------+----------------------------+--------------------------------+

Generated with hotpath-rs

@CommanderStorm CommanderStorm force-pushed the release-plz-2026-05-22T02-46-59Z branch 14 times, most recently from d021ad2 to bdab6d7 Compare May 27, 2026 02:20
@CommanderStorm CommanderStorm force-pushed the release-plz-2026-05-22T02-46-59Z branch 7 times, most recently from f762f8d to 2727b90 Compare June 3, 2026 15:54
@CommanderStorm CommanderStorm force-pushed the release-plz-2026-05-22T02-46-59Z branch 4 times, most recently from e410fb4 to 9e19d88 Compare June 9, 2026 04:52
@CommanderStorm CommanderStorm force-pushed the release-plz-2026-05-22T02-46-59Z branch from 18f5786 to 99598e0 Compare June 9, 2026 10:59
@CommanderStorm CommanderStorm linked an issue Jun 11, 2026 that may be closed by this pull request
@CommanderStorm CommanderStorm force-pushed the release-plz-2026-05-22T02-46-59Z branch from 506048c to 3487751 Compare June 12, 2026 02:18
@CommanderStorm CommanderStorm force-pushed the release-plz-2026-05-22T02-46-59Z branch from 808070b to a7bdef6 Compare June 13, 2026 18:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Issue with catalog refresh Release request: include actix-http 3.12.1 security fix in Martin release

2 participants