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

Releases: ostark/upper

v1.9.2

Choose a tag to compare

@ostark ostark released this 26 Mar 10:34

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

v1.9.1

Choose a tag to compare

@ostark ostark released this 08 Feb 14:57

Fix for #55, thanks @L3P3

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

Choose a tag to compare

@timkelty timkelty released this 15 Oct 19:45
95b7ec4
  • Fastly soft purge
  • Fix template usage

v1.8.0

Choose a tag to compare

@ostark ostark released this 08 Feb 21:26

MySQL 8 support

v1.7.0

Choose a tag to compare

@ostark ostark released this 08 Feb 21:25
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

Choose a tag to compare

@ostark ostark released this 16 Jun 22:05
0518b43
  • 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

Choose a tag to compare

@ostark ostark released this 03 May 12:43

Prevent purge after auto-resave

v1.5.0

Choose a tag to compare

@ostark ostark released this 12 Mar 20:43
  • Added support for multiple varnish servers (@larsboldt)
  • Fixed a bug when using keyPrefix

v2.0.0-beta1

v2.0.0-beta1 Pre-release
Pre-release

Choose a tag to compare

@ostark ostark released this 02 Jan 23:39
beta1

v1.4.2

Choose a tag to compare

@ostark ostark released this 11 Oct 20:07
  • Backport schema change to initial migration (DB fallback), thanks @putyourlightson