v143.0.0
·
76 commits
to master
since this release
@sparticuz/chromium v143.0.0, @sparticuz/chromium-min v143.0.0
The chromium-v143.0.0-layer.ARCH.zip file may be uploaded directly as a layer in AWS Lambda using the following code
bucketName="chromiumUploadBucket" && archType="x64" && \
aws s3 cp chromium-v143.0.0-layer.${archType}.zip "s3://${bucketName}/chromiumLayers/chromium-v143.0.0-layer.${archType}.zip" && \
aws lambda publish-layer-version --layer-name chromium --description "Chromium v143.0.0" --content "S3Bucket=${bucketName},S3Key=chromiumLayers/chromium-v143.0.0-layer.${archType}.zip" --compatible-runtimes "nodejs20.x" "nodejs22.x" --compatible-architectures $(if [ "$archType" = "x64" ]; then echo "x86_64"; else echo "$archType"; fi)
The chromium-v143.0.0-pack.ARCH.tar file may be uploaded to any https endpoint and the remote location may be used as the input variable in the chromium.executablePath(input) function.
Support this project's continued development by becoming a monthly sponsor on GitHub. Your contribution helps cover monthly maintenance costs and ensures ongoing improvements.
What's Changed
- fix example code in README.md by @cognettings in #475
- Bump actions/checkout from 5 to 6 by @dependabot[bot] in #473
- Bump actions/upload-artifact from 4 to 5 by @dependabot[bot] in #469
- Bump actions/download-artifact from 5 to 6 by @dependabot[bot] in #468
- Node 24 & Chromium 143 by @Sparticuz in #476
New Contributors
- @cognettings made their first contribution in #475
Full Changelog: v141.0.0...v143.0.0