diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 371aabb..74d7f5a 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,6 +4,27 @@ All notable changes of this project will be documented in this file. Unreleased > The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.6.5] - 2024-03-21 + +### Added + +- NEXT_INTERNAL_MANGATSU_API_URL environment variable to specify which API URL to use for internal requests (currently only for image proxying) +- Add AVIF support + +### Fixed + +- Useless network calls that ended up in 404 when opening the Library page +- NSFW badges not showing on the Series page +- Warning on empty functions and unnecessary type +- Fixed an issue with image remote patterns that would cause the image proxy to return error 400 + +### Changed + +- Updated Node.js runtime to v20 +- Updated dependencies +- Disabled Next.js telemetry in the Docker image before building +- Decreased minimum TTL of the image proxy from 30 days to 24 hours + ## [0.6.4] - 2024-01-23 ### Added diff --git a/package-lock.json b/package-lock.json index 838987a..8285882 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "mangatsu-web", - "version": "0.6.4", + "version": "0.6.5", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "mangatsu-web", - "version": "0.6.4", + "version": "0.6.5", "license": "GPL3", "dependencies": { "@heroicons/react": "^2.0.18", diff --git a/package.json b/package.json index d644f5e..85316b4 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "name": "mangatsu-web", "license": "GPL3", "private": true, - "version": "0.6.4", + "version": "0.6.5", "scripts": { "dev": "next dev", "build": "next build",