Skip to content

Commit

Permalink
Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
kleisauke committed Feb 10, 2024
1 parent ca69b17 commit a8cbd2a
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 15 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ RUN \
--no-modify-path \
--profile minimal \
--target wasm32-unknown-emscripten \
--default-toolchain nightly-2024-01-20 \
--default-toolchain nightly-2024-02-10 \
--component rust-src

# Cache settings
Expand Down
8 changes: 4 additions & 4 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -163,20 +163,20 @@ export RUSTFLAGS+=" --remap-path-prefix=$DEPS/="
# Dependency version numbers
VERSION_ZLIB_NG=2.1.6 # https://github.com/zlib-ng/zlib-ng
VERSION_FFI=3.4.4 # https://github.com/libffi/libffi
VERSION_GLIB=2.79.0 # https://gitlab.gnome.org/GNOME/glib
VERSION_EXPAT=2.5.0 # https://github.com/libexpat/libexpat
VERSION_GLIB=2.79.1 # https://gitlab.gnome.org/GNOME/glib
VERSION_EXPAT=2.6.0 # https://github.com/libexpat/libexpat
VERSION_EXIF=0.6.24 # https://github.com/libexif/libexif
VERSION_LCMS2=2.16 # https://github.com/mm2/Little-CMS
VERSION_HWY=1.0.7 # https://github.com/google/highway
VERSION_BROTLI=1.1.0 # https://github.com/google/brotli
VERSION_MOZJPEG=4.1.5 # https://github.com/mozilla/mozjpeg
VERSION_JXL=0.9.1 # https://github.com/libjxl/libjxl
VERSION_JXL=0.9.2 # https://github.com/libjxl/libjxl
VERSION_SPNG=0.7.4 # https://github.com/randy408/libspng
VERSION_IMAGEQUANT=2.4.1 # https://github.com/lovell/libimagequant
VERSION_CGIF=0.3.2 # https://github.com/dloebl/cgif
VERSION_WEBP=1.3.2 # https://chromium.googlesource.com/webm/libwebp
VERSION_TIFF=4.6.0 # https://gitlab.com/libtiff/libtiff
VERSION_RESVG=0.37.0 # https://github.com/RazrFalcon/resvg
VERSION_RESVG=0.39.0 # https://github.com/RazrFalcon/resvg
VERSION_AOM=3.8.1 # https://aomedia.googlesource.com/aom
VERSION_HEIF=1.17.6 # https://github.com/strukturag/libheif
VERSION_VIPS=8.15.1 # https://github.com/libvips/libvips
Expand Down
10 changes: 5 additions & 5 deletions playground/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@
"devDependencies": {
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.1",
"fflate": "^0.8.1",
"css-loader": "^6.10.0",
"fflate": "^0.8.2",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.7.7",
"monaco-editor": "^0.45.0",
"mini-css-extract-plugin": "^2.8.0",
"monaco-editor": "^0.46.0",
"monaco-editor-webpack-plugin": "^7.1.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.89.0",
"webpack": "^5.90.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
Expand Down
7 changes: 4 additions & 3 deletions test/unit/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<meta charset="utf-8">
<title>wasm-vips testsuite</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/10.2.0/mocha.min.css" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/mocha/10.3.0/mocha.min.css" crossorigin="anonymous">
<style>
html,
body {
Expand Down Expand Up @@ -67,7 +67,7 @@
</head>
<body>
<div id="mocha"></div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/10.2.0/mocha.min.js" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/10.3.0/mocha.min.js" crossorigin="anonymous"></script>
<script class="mocha-init">
mocha.setup({
ui: 'bdd',
Expand Down Expand Up @@ -95,7 +95,8 @@
// import Vips from './lib/vips-es6.js';

import * as Helpers from './helpers.js';
import { expect } from 'https://cdnjs.cloudflare.com/ajax/libs/chai/5.0.0/chai.min.js';
// FIXME(kleisauke): https://github.com/cdnjs/packages/issues/1748
import { expect } from 'https://cdnjs.cloudflare.com/ajax/libs/chai/5.0.3/chai.js';

// Global variables used throughout the unit tests
globalThis.expect = expect;
Expand Down
4 changes: 2 additions & 2 deletions test/unit/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
"test": "mocha -s 5000 -t 120000 *.js -r node-helper.js"
},
"devDependencies": {
"chai": "^5.0.0",
"mocha": "^10.2.0"
"chai": "^5.0.3",
"mocha": "^10.3.0"
},
"engines": {
"node": ">=16.4.0"
Expand Down

0 comments on commit a8cbd2a

Please sign in to comment.