Skip to content

Commit e0c4f2a

Browse files
committed
Merge branch 'release/1.6.56' into v1
2 parents 73903e3 + 57c816a commit e0c4f2a

33 files changed

+3127
-1359
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# ImageOptimize Changelog
22

3+
## 1.6.56 - 2024.10.21
4+
## Changed
5+
* Allow for empty `alt` tags for screen readers as per WCAG ([411](https://github.com/nystudio107/craft-imageoptimize/issues/411))
6+
7+
### Fixed
8+
* Don't add image variants if no variant creator for them exists ([#410](https://github.com/nystudio107/craft-imageoptimize/issues/410))
9+
* Don't apply background placeholder CSS to images that may be transparent like SVGs or GIFs ([#410](https://github.com/nystudio107/craft-imageoptimize/issues/410))
10+
311
## 1.6.55 - 2024.06.19
412
### Fixed
513
* Fixed an issue where `srcsetMaxWidth()` could return incorrect results ([#407](https://github.com/nystudio107/craft-imageoptimize/issues/407))

Makefile

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
MAJOR_VERSION?=3
2+
PLUGINDEV_PROJECT_DIR?=/Users/andrew/webdev/sites/plugindev/cms_v${MAJOR_VERSION}/
3+
VENDOR?=nystudio107
4+
PROJECT_PATH?=${VENDOR}/$(shell basename $(CURDIR))
5+
6+
.PHONY: dev docs release
7+
8+
# Start up the buildchain dev server
9+
dev:
10+
${MAKE} -C buildchain/ dev
11+
# Start up the docs dev server
12+
docs:
13+
${MAKE} -C docs/ dev
14+
# Run code quality tools, tests, and build the buildchain & docs in preparation for a release
15+
release: --code-quality --code-tests --buildchain-clean-build --docs-clean-build
16+
# The internal targets used by the dev & release targets
17+
--buildchain-clean-build:
18+
${MAKE} -C buildchain/ clean
19+
${MAKE} -C buildchain/ image-build
20+
${MAKE} -C buildchain/ build
21+
--code-quality:
22+
${MAKE} -C ${PLUGINDEV_PROJECT_DIR} -- ecs check vendor/${PROJECT_PATH}/src --fix
23+
${MAKE} -C ${PLUGINDEV_PROJECT_DIR} -- phpstan analyze -c vendor/${PROJECT_PATH}/phpstan.neon
24+
--code-tests:
25+
--docs-clean-build:
26+
${MAKE} -C docs/ clean
27+
${MAKE} -C docs/ image-build
28+
${MAKE} -C docs/ fix

0 commit comments

Comments
 (0)