Skip to content

Latest commit

 

History

History
222 lines (170 loc) · 7.28 KB

CHANGELOG.md

File metadata and controls

222 lines (170 loc) · 7.28 KB

Twigpack Changelog

1.2.18 - 2024.04.05

Added

  • Add phpstan and ecs code linting
  • Add code-analysis.yaml GitHub action

Changed

  • Updated docs to use node 20 & a new sitemap plugin
  • PHPstan code cleanup
  • ECS code cleanup

1.2.17 - 2022.04.26

Changed

  • Don't log the full exception on a Guzzle error, just log the message

1.2.16 - 2022.04.17

Fixed

  • Fix incorrect User-Agent header that could cause an error to be thrown

1.2.15 - 2021.07.11

Changed

  • Wrap calls to is_file() with try/catch, to handle open_basedir restrictions that cause exceptions to be thrown (#73)
  • Switched documentation system to VitePress

1.2.14 - 2021.04.28

Changed

  • Move settings from the composer.json “extra” to the plugin main class

Fixed

  • Fix DOCSDEST path
  • No longer invalidate caches immediately in local dev, and instead rely on the 1s cache (#67)

1.2.13 - 2021.04.13

Added

  • Added buildchain for docs

Fixed

  • Fixed a malformed User-Agent header in a request to mix-manifest.json (#62)

1.2.12 - 2021.04.05

Changed

  • Catch all errors thrown by Guzzle

Fixed

  • Add a 100ms delay when requesting the manifest file if using it in hot mode, as a hack to avoid a webpack-dev-server / Tailwind CSS JIT race condition (nystudio107/craft#55)

1.2.11 - 2021.03.21

Changed

  • Use Guzzle for remote file fetches rather than curl, for improved performance

1.2.10 - 2021-02-24

Added

  • Added a FileDependency cache dependency for files loaded from a local path, so things like the manifest.json will auto-cache bust if the file changes

Changed

  • Default devServerBuildType reverted to modern

1.2.9 - 2021-01-12

Changed

  • Default devServerBuildType to combined

Fixed

  • Ensure that getHttpResponseCode() returns a 404 on error

1.2.8 - 2021-01-12

Fixed

  • Fixed an issue where includeFileFromManifest() wouldn't properly fall back on non-hot files if the URL returned a 404 with HTML content

1.2.7 - 2020-12-11

Fixed

  • Fixed the craft.twigpack.includeFileFromManifest() so that it will use the internal devServer.publicPath setting for HMR

1.2.6 - 2020-09-16

Changed

  • Ensure that a string is always passed to Template::raw()
  • Updated the docs

1.2.5 - 2020-08-14

Changed

  • Fixed a regression from the styles.js error suppression that would cause it to throw an exception if you attempted to load it

1.2.4 - 2020-08-12

Changed

  • Suppress errors for styles.js modules (which is a work-around to a webpack bug)

1.2.3 - 2020-06-24

Added

  • Added the ability to pass down an $attributes array to functions that generate tags, so you can add arbitrary HTML attributes

1.2.2 - 2020-05-25

Added

  • Added cspNonce setting to allow for Content Security Policy nonce support for inline CSS/JS

Changed

  • Switched over to using Yii2's Html:: helpers for creating various tags

Fixed

  • Make sure $moduleHash is never undefined

1.2.1 - 2020-05-04

Added

  • Added the config setting devServerBuildType to determine which webpack-dev-server bundle is loaded.
  • Support passing an array of filenames for errorEntry

1.2.0 - 2020-02-28

Changed

  • Switched over to using media="print" for asynchronously loading a stylesheet as per The Simplest Way to Load CSS Asynchronously
  • Deprecated craft.twigpack.includeCssRelPreloadPolyfill() since it is no longer necessary. It now does nothing

1.1.14 - 2020-02-04

Added

  • If this is a dev-server, look for the modern manifest file first

1.1.13 - 2020-01-22

Added

  • Added the config setting useAbsoluteUrl to control whether module URLs will be forced to be fully qualified aboslute URLs

Changed

  • If we're in devMode invalidate the cache immediately
  • If an error is reported, and self::$isHot is true log it as a warning, not an error

1.1.12 - 2019-11-12

Fixed

  • Fixed an issue with includeFileFromManifest() not working due to recent changes

1.1.11 - 2019-10-15

Changed

  • Revert a PR that caused Twigpack to no longer gracefully fall back on locally built assets if the webpack-dev-server is not running
  • Add a short timeout to file_get_contents to prevent it from taking too long if the file doesn't exist

1.1.10 - 2019-10-03

Changed

  • Changed examples to use ’dev’ for local development (instead of ’local’)

1.1.9 - 2019-10-01

Added

  • Added getModuleHash() function, to grab the hash key of a module

Changed

  • Fixed an issue where isHot was not set before use
  • Fixed getFileFromManifest() to load files from webpack-dev-server

1.1.8 - 2019-08-06

Changed

  • Added cacheKeySuffix to the Settings model

1.1.7 - 2019-06-05

Changed

  • Clarify expected output with no second param
  • Code cleanup

1.1.6 - 2019-05-05

Changed

  • Fixed an issue where null could potentially be passed in to resolveTemplate()

1.1.5 - 2019-03-24

Changed

  • Fixed a typo in the twigpack-manifest-cache cache key
  • Changed deprecated \Twig_Markup to \Twig\Markup
  • Elaborated on Twigpack's caching and how to clear it in the README.md

1.1.4 - 2019-01-22

Changed

  • Handle the case where there is an error decoding the JSON from the manifest
  • Updated the documentation to reflect using @webroot/ by default for the server manifestPath

1.1.3 - 2018-10-31

Changed

  • Make includeCriticalCssTags() and includeInlineCssTags() soft errors that do nothing if the file is missing

1.1.2 - 2018-10-25

Added

  • Added the ability for Hot Module Replacement (HMR) to work through Twig error template pages via the errorEntry setting in config.php

1.1.1 - 2018-10-16

Changed

  • Fixed an issue where if the manifest.json was served remotely via https, Twigpack was unable to load it
  • Made all errors "soft" for missing CSS/JS modules, so a warning will be logged, but life continues on

1.1.0 - 2018-10-09

Added

  • Strings passed in to manifestPath can now be Yii2 aliases as well
  • Added craft.twigpack.includeFile()
  • Added craft.twigpack.includeFileFromManifest()
  • Added craft.twigpack.includeInlineCssTags()
  • Added craft.twigpack.includeCriticalCssTags()

1.0.5 - 2018-09-28

Changed

  • Check via empty() rather than !== null when checking the manifest for module entries
  • CSS module loading generates a soft error now, rather than throwing an NotFoundHttpException

1.0.4 - 2018-09-28

Added

  • Added this.onload=null; to async CSS link tag
  • Added craft.twigpack.includeCssRelPreloadPolyfill()

Changed

  • Better error reporting if modules don't exist in the manifest

1.0.3 - 2018-09-24

Changed

  • Allow the manifestPath to be a file system path or a URI

1.0.2 - 2018-09-23

Added

  • Added getModuleUri() function
  • Added getManifestFile() function

Changed

  • Fixed return types to allow for null
  • Code refactoring

1.0.1 - 2018-09-22

Added

  • Better error logging if the manifest file can't be found (check storage/logs/web.log)
  • Throw a NotFoundHttpException if the manifest.json cannot be found

1.0.0 - 2018-09-21

Added

  • Initial release