From 025f643e36f67a952b5b4d2ba343580e7ec3d14d Mon Sep 17 00:00:00 2001 From: Oscar Otero Date: Fri, 19 May 2023 17:00:52 +0200 Subject: [PATCH] updated deno version --- CHANGELOG.md | 8 ++++++-- core/utils.ts | 2 +- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6ad57049..e1688d4b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,8 +18,12 @@ Any BREAKING CHANGE between minor versions will be documented here in upper case - Cache the remote files using Web Cache API. ### Changed -- `lightningcss` plugin bundlers the CSS code by default (set `includes: false` option to only transform it). -- BREAKING CHANGE: Removed the sync template loader for nunjucks. Use `asyncEach / endeach` and `ifAsync / endif` instead of `for / endfor` and `if / endif` if you need to include templates between these tags. +- The minimum version of Deno supported is `1.33.4`. +- `lightningcss` plugin bundlers the CSS code by default + (set `includes: false` option to only transform it). +- BREAKING CHANGE: Removed the sync template loader for nunjucks. + Use `asyncEach / endeach` and `ifAsync / endif` instead of `for / endfor` and `if / endif` + if you need to include templates between these tags. ### Removed - The `site.includesLoader` class. diff --git a/core/utils.ts b/core/utils.ts index ba4c6357..ccdb7999 100644 --- a/core/utils.ts +++ b/core/utils.ts @@ -55,7 +55,7 @@ export function log(...lines: (string | undefined)[]) { /** Check the compatibility with the current Deno version */ export function checkDenoVersion(): void { - const minimum = "1.29.0"; + const minimum = "1.33.4"; const current = Deno.version.deno; if (current < minimum) {