Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Releases: ostark/upper

v1.9.2

26 Mar 10:34
Compare
Choose a tag to compare

Fix for #62 / Supertable
Thanks @bartdigitalpulse for the report.

v1.9.1

08 Feb 14:57
Compare
Choose a tag to compare

Fix for #55, thanks @L3P3

1.9.0: Merge pull request #41 from timkelty/fix-template-usage

15 Oct 19:45
95b7ec4
Compare
Choose a tag to compare

v1.8.0

08 Feb 21:26
Compare
Choose a tag to compare

MySQL 8 support

v1.7.0

08 Feb 21:25
Compare
Choose a tag to compare
adds uid_urlhash_idx on installation to support

without this Postgres will complain that "ERROR:  there is no unique or exclusion constraint matching the ON CONFLICT specification" with the following SQL,

INSERT INTO "upper_cache" ("urlHash", "url", "tags", "headers", "siteId", "dateCreated", "dateUpdated", "uid") VALUES ($1, $2, ARRAY[]::varchar[], $3, $4, $5, $6, $7) ON CONFLICT ("uid", "urlHash") DO UPDATE SET "urlHash"=$8, "url"=$9, "tags"=ARRAY[]::varchar[], "headers"=$10, "siteId"=$11, "dateCreated"=$12, "dateUpdated"=$13, "uid"=$14

v1.6.0

16 Jun 22:05
0518b43
Compare
Choose a tag to compare
  • Require at least Craft 3.2
  • Prevent cache purge on updated drafts or revisions
  • Prevent caching of CP requests (@timkelty)
  • Allow to modify cache control from template
  • Support for Cloudflare scoped API tokens (@tomdavies)

v1.5.1

03 May 12:43
Compare
Choose a tag to compare

Prevent purge after auto-resave

v1.5.0

12 Mar 20:43
Compare
Choose a tag to compare
  • Added support for multiple varnish servers (@larsboldt)
  • Fixed a bug when using keyPrefix

v2.0.0-beta1

02 Jan 23:39
Compare
Choose a tag to compare
v2.0.0-beta1 Pre-release
Pre-release
beta1

v1.4.2

11 Oct 20:07
Compare
Choose a tag to compare
  • Backport schema change to initial migration (DB fallback), thanks @putyourlightson