ultimate-jekyll-manager 1.4.0 → 1.4.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -14,6 +14,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
14
14
  - `Fixed` for any bug fixes.
15
15
  - `Security` in case of vulnerabilities.
16
16
 
17
+ ---
18
+ ## [1.4.2] - 2026-05-27
19
+
20
+ ### Fixed
21
+
22
+ - **Imagemin: uppercase image extensions (e.g. `IMG_3119.JPG`) no longer break the responsive build.** `gulp-responsive-modern` uses micromatch internally, which is strictly case-sensitive regardless of filesystem. On macOS APFS, gulp's `src()` would discover the file and count it toward expected outputs, but the lowercase-only `**/*.{jpg,jpeg,png}` pattern wouldn't match — producing zero outputs and erroring with "Available images do not match the following config". [src/gulp/tasks/imagemin.js](src/gulp/tasks/imagemin.js) now expands `ALL_IMAGE_GLOB` and `RESPONSIVE_GLOB` to include uppercase variants so consumers don't need to rename camera/phone files.
23
+
24
+ ---
25
+ ## [1.4.1] - 2026-05-27
26
+
27
+ ### Changed
28
+
29
+ - **Bumped `puppeteer` `^24.43.1` → `^25.1.0`.** Puppeteer 25 is ESM-only and requires Node 22+; UJM's existing `require('puppeteer')` calls in [src/test/runners/boot.js](src/test/runners/boot.js) and [src/test/runners/chromium.js](src/test/runners/chromium.js) keep working via Node 22's native ESM-require interop.
30
+ - **Bumped `html-validate` `^10.17.0` → `^11.4.0`.** Used by [src/gulp/tasks/audit.js](src/gulp/tasks/audit.js); audit suite still passes.
31
+
17
32
  ---
18
33
  ## [1.4.0] - 2026-05-27
19
34
 
@@ -25,8 +25,12 @@ let githubCache;
25
25
  // Supported image extensions
26
26
  const ALL_IMAGE_EXTENSIONS = ['jpg', 'jpeg', 'png', 'gif', 'svg', 'webp'];
27
27
  const RESPONSIVE_EXTENSIONS = new Set(['jpg', 'jpeg', 'png']);
28
- const ALL_IMAGE_GLOB = `*.{${ALL_IMAGE_EXTENSIONS.join(',')}}`;
29
- const RESPONSIVE_GLOB = `*.{${[...RESPONSIVE_EXTENSIONS].join(',')}}`;
28
+ // Globs include upper- and lower-case variants so micromatch (used by gulp-responsive-modern)
29
+ // matches files like IMG_3119.JPG. micromatch is strictly case-sensitive even on case-insensitive
30
+ // filesystems, so we expand each extension to both cases rather than relying on a nocase flag.
31
+ const expandCases = (exts) => exts.flatMap((ext) => [ext, ext.toUpperCase()]);
32
+ const ALL_IMAGE_GLOB = `*.{${expandCases(ALL_IMAGE_EXTENSIONS).join(',')}}`;
33
+ const RESPONSIVE_GLOB = `*.{${expandCases([...RESPONSIVE_EXTENSIONS]).join(',')}}`;
30
34
 
31
35
  // Glob
32
36
  const input = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "1.4.0",
3
+ "version": "1.4.2",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {
@@ -67,8 +67,8 @@
67
67
  "lighthouse": "Removed from deps to avoid @sentry/core version conflicts with web-manager. Install globally: npm i -g lighthouse"
68
68
  },
69
69
  "dependencies": {
70
- "@babel/core": "^7.29.0",
71
- "@babel/preset-env": "^7.29.5",
70
+ "@babel/core": "^7.29.7",
71
+ "@babel/preset-env": "^7.29.7",
72
72
  "@fullhuman/postcss-purgecss": "^8.0.0",
73
73
  "@minify-html/node": "^0.18.1",
74
74
  "@octokit/rest": "^22.0.1",
@@ -81,9 +81,9 @@
81
81
  "chart.js": "^4.5.1",
82
82
  "cheerio": "^1.2.0",
83
83
  "chrome-launcher": "^1.2.1",
84
- "dompurify": "^3.4.2",
84
+ "dompurify": "^3.4.6",
85
85
  "dotenv": "^17.4.2",
86
- "fast-xml-parser": "^5.7.3",
86
+ "fast-xml-parser": "^5.8.0",
87
87
  "fs-jetpack": "^5.1.0",
88
88
  "glob": "^13.0.6",
89
89
  "gulp-clean-css": "^4.3.0",
@@ -93,22 +93,22 @@
93
93
  "gulp-responsive-modern": "^1.0.0",
94
94
  "gulp-sass": "^6.0.1",
95
95
  "html-minifier-terser": "^7.2.0",
96
- "html-validate": "^10.16.0",
96
+ "html-validate": "^11.4.0",
97
97
  "itwcw-package-analytics": "^1.0.8",
98
98
  "js-yaml": "^4.1.1",
99
99
  "json5": "^2.2.3",
100
100
  "libsodium-wrappers": "^0.8.4",
101
101
  "lodash": "^4.18.1",
102
- "markdown-it": "^14.1.1",
102
+ "markdown-it": "^14.2.0",
103
103
  "minimatch": "^10.2.5",
104
104
  "node-powertools": "^3.0.0",
105
105
  "npm-api": "^1.0.1",
106
- "postcss": "^8.5.14",
106
+ "postcss": "^8.5.15",
107
107
  "prettier": "^3.8.3",
108
- "sass": "^1.99.0",
108
+ "sass": "^1.100.0",
109
109
  "spellchecker": "^3.7.1",
110
110
  "web-manager": "^4.2.0",
111
- "webpack": "^5.106.2",
111
+ "webpack": "^5.107.2",
112
112
  "wonderful-fetch": "^2.0.5",
113
113
  "wonderful-version": "^1.3.2",
114
114
  "yargs": "^18.0.0"
@@ -118,6 +118,6 @@
118
118
  },
119
119
  "devDependencies": {
120
120
  "prepare-package": "^2.1.0",
121
- "puppeteer": "^24.43.1"
121
+ "puppeteer": "^25.1.0"
122
122
  }
123
123
  }