Skip to content

Commit 345cd49

Browse files
author
Andrew Welch
committed
Merge branch 'release/4.0.0' into v4
2 parents 0c1d732 + b4d9c89 commit 345cd49

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+3656
-2361
lines changed

CHANGELOG.md

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

3+
## 4.0.0 - 2022.09.20
4+
### Changed
5+
* Pinned `vitepress` to `^0.22.4` pending official `1.0.0` release
6+
* Add comments to `Makefile`s for Fig
7+
* Use Vite `^3.1.0` & rebuild assets
8+
* Add `allow-plugins` to `composer.json` to allow CI tests to function
9+
10+
### Fixed
11+
* Remove reference to now missing `DefineAssetThumbUrlEvent::generate` property
12+
* Change reference to now renamed `DefineAssetThumbUrlEvent::path` property
13+
314
## 4.0.0-beta.6 - 2022.04.11
415
### Fixed
516
* Fixed method signature for `Transcode::getFileInfo()` so that an Asset object can be passed into it

buildchain/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,30 @@ DOCKERRUN=docker container run \
1111

1212
.PHONY: build dev docker install clean npm
1313

14+
# Build the production assets
1415
build: docker install
1516
${DOCKERRUN} \
1617
run build
18+
# Start up the dev server
1719
dev: docker install
1820
${DOCKERRUN} \
1921
run dev
22+
# Start the Docker container
2023
docker:
2124
docker build \
2225
. \
2326
-t ${CONTAINER}:${TAG} \
2427
--build-arg TAG=${TAG} \
2528
--no-cache
29+
# Run an npm install
2630
install: docker
2731
${DOCKERRUN} \
2832
install
33+
# Remove node_modules/* & package-lock.json
2934
clean:
3035
rm -rf node_modules/
3136
rm -f package-lock.json
37+
# Run the passed in npm command
3238
npm: docker
3339
${DOCKERRUN} \
3440
$(filter-out $@,$(MAKECMDGOALS))

0 commit comments

Comments
 (0)