Changes between Version 12 and Version 13 of PostGISExtensionPaths
- Timestamp:
- 02/11/22 11:21:20 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
PostGISExtensionPaths
v12 v13 87 87 In this model, our extension files look like below: 88 88 89 our generated extension upgrade scripts will look like the below, with only the postgis--3.3 MAX--3.3.0.sql having any upgrade statements in it.89 our generated extension upgrade scripts will look like the below, with only the postgis--3.3.X--3.3.0.sql having any upgrade statements in it. 90 90 91 91 ---- … … 100 100 postgis--3.2.X--3.3.X.sql 101 101 postgis--3.3.X--3.3.0.sql 102 postgis--3.3.0--3.3.X.sql 102 103 }}} 103 104 ---- … … 105 106 106 107 1. We are staying between the lines. Respecting known practices, but still having much lighter weight scripts. 107 2. A little less clutter, but we are relying on the user having the old version still installed so that they have a chain108 postgis--<old-version-minor> MIN--<old-version-minor>MIN.sql108 2. A little less clutter, but we are relying on the user having the old version still installed (or being within 2 micro versions of the last minor they have installed) so that they have a chain 109 postgis--<old-version-minor>.X--<old-version-minor-verson>.sql 109 110 3. An easier release cycle since extensions/updateable.mk doesn't need to list the prior micros. 110 111 4. No change in upgrade extension workflow for packagers (or users who think of PostGIS as any other extension).