[SCM] postgis.net branch ai/compatibility-header-spacing-20260801 updated. clarity-final-236-gc84be7e

git at osgeo.org git at osgeo.org
Fri Jul 31 20:58:51 PDT 2026


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "postgis.net".

The branch, ai/compatibility-header-spacing-20260801 has been updated
  discards  40dc8fafbd5008e944700c8d87dd1520ed49d896 (commit)
       via  c84be7e4cb63daea5a59c769a2d2548cd99bef3d (commit)

This update added new revisions after undoing existing revisions.  That is
to say, the old revision is not a strict subset of the new revision.  This
situation occurs when you --force push a change and generate a repository
containing something like this:

 * -- * -- B -- O -- O -- O (40dc8fafbd5008e944700c8d87dd1520ed49d896)
            \
             N -- N -- N (c84be7e4cb63daea5a59c769a2d2548cd99bef3d)

When this happens we assume that you've already had alert emails for all
of the O revisions, and so we here report only the revisions in the N
branch from the common base, B.

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit c84be7e4cb63daea5a59c769a2d2548cd99bef3d
Author: Darafei Praliaskouski <me at komzpa.net>
Date:   Sat Aug 1 07:37:45 2026 +0400

    fix: adapt compatibility matrix width to coverage

diff --git a/content/development/compatibility/index.md b/content/development/compatibility/index.md
index 7529924..e825f21 100644
--- a/content/development/compatibility/index.md
+++ b/content/development/compatibility/index.md
@@ -11,10 +11,10 @@ browser shows release intersections across PostgreSQL and dependency versions,
 keeps downstream packaging informational, and keeps historical and patch-level
 detail behind explicit view controls.
 
-<link rel="stylesheet" href="support-browser.css?v=15">
+<link rel="stylesheet" href="support-browser.css?v=17">
 
 <div id="postgis-support-browser" class="postgis-support-browser" data-source="compatibility.json?v=12">
   <p>Loading compatibility data...</p>
 </div>
 
-<script src="support-browser.js?v=12" defer></script>
+<script src="support-browser.js?v=13" defer></script>
diff --git a/content/development/compatibility/support-browser.css b/content/development/compatibility/support-browser.css
index 1cf2eda..cb6abcc 100644
--- a/content/development/compatibility/support-browser.css
+++ b/content/development/compatibility/support-browser.css
@@ -3,20 +3,24 @@
 }
 
 main.container:has(.postgis-support-browser) {
+  max-width: 91rem;
+}
+
+main.container:has(.postgis-support-browser--full-history) {
   max-width: none;
   padding-left: 1.25rem;
   padding-right: 1.25rem;
   width: 100%;
 }
 
-main.container:has(.postgis-support-browser) .gdoc-page {
+main.container:has(.postgis-support-browser--full-history) .gdoc-page {
   flex: 1 1 auto;
   max-width: none;
   min-width: 0;
   width: 100%;
 }
 
-main.container:has(.postgis-support-browser) .gdoc-markdown {
+main.container:has(.postgis-support-browser--full-history) .gdoc-markdown {
   max-width: none;
   width: 100%;
 }
@@ -143,7 +147,11 @@ main.container:has(.postgis-support-browser) .gdoc-markdown {
 }
 
 .support-matrix-shell:not(:has(.support-patch-row)) {
-  --support-series-head-width: 7.4rem;
+  --support-series-head-width: 6.25rem;
+}
+
+.support-matrix-shell--compact {
+  --support-series-group-width: 4rem;
 }
 
 @media (hover: hover) and (pointer: fine) {
@@ -188,6 +196,12 @@ main.container:has(.postgis-support-browser) .support-matrix-shell .support-matr
   padding: 0.38rem 0.28rem;
 }
 
+main.container:has(.postgis-support-browser) .support-matrix-shell--compact .support-matrix th,
+main.container:has(.postgis-support-browser) .support-matrix-shell--compact .support-matrix td {
+  padding-left: 0.18rem;
+  padding-right: 0.18rem;
+}
+
 main.container:has(.postgis-support-browser) .support-matrix-shell .support-corner,
 main.container:has(.postgis-support-browser) .support-matrix-shell .support-series-head {
   width: var(--support-series-head-width);
@@ -288,9 +302,10 @@ main.container:has(.postgis-support-browser) .support-matrix-shell .support-colu
   justify-content: center;
   left: calc(var(--support-series-group-width) + var(--support-series-head-width));
   min-height: 2.4rem;
+  min-width: var(--support-cell-width);
   padding: 0.35rem 0.45rem;
   position: sticky;
-  width: var(--support-cell-width);
+  width: max-content;
 }
 
 .support-corner--overview {
diff --git a/content/development/compatibility/support-browser.js b/content/development/compatibility/support-browser.js
index db19f49..de9fe10 100644
--- a/content/development/compatibility/support-browser.js
+++ b/content/development/compatibility/support-browser.js
@@ -882,6 +882,7 @@
     var state = Object.assign({}, matrix.defaults);
 
     function render() {
+      root.classList.toggle("postgis-support-browser--full-history", state.coverage === "history");
       root.innerHTML = "";
       renderWarnings(root, browser);
       var meta = document.createElement("p");

-----------------------------------------------------------------------

Summary of changes:
 content/development/compatibility/index.md            |  4 ++--
 content/development/compatibility/support-browser.css | 18 ++++++++++++++++--
 content/development/compatibility/support-browser.js  |  1 +
 3 files changed, 19 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
postgis.net


More information about the postgis-tickets mailing list