Comparing version
{ | ||
"name": "reffy", | ||
"version": "18.4.0", | ||
"version": "18.4.1", | ||
"description": "W3C/WHATWG spec dependencies exploration companion. Features a short set of tools to study spec references as well as WebIDL term definitions and references found in W3C specifications.", | ||
@@ -40,5 +40,5 @@ "repository": { | ||
"fetch-filecache-for-crawling": "5.1.1", | ||
"puppeteer": "24.2.1", | ||
"puppeteer": "24.3.1", | ||
"semver": "^7.3.5", | ||
"web-specs": "3.41.0", | ||
"web-specs": "3.42.0", | ||
"webidl2": "24.4.1" | ||
@@ -50,3 +50,3 @@ }, | ||
"respec-hljs": "2.1.1", | ||
"rollup": "4.34.8", | ||
"rollup": "4.34.9", | ||
"undici": "^7.0.0" | ||
@@ -53,0 +53,0 @@ }, |
@@ -173,2 +173,29 @@ /** | ||
mockAgent | ||
.get("https://www.w3.org") | ||
.intercept({ method: "GET", path: "/TR/iredirect/" }) | ||
.reply(200, | ||
`<!DOCTYPE html><script>window.location = '/TR/recentlyupdated/';</script>`, | ||
{ | ||
headers: { | ||
"Content-Type": "text/html", | ||
"Last-Modified": "Fri, 11 Feb 2022 00:00:42 GMT" | ||
} | ||
} | ||
); | ||
mockAgent | ||
.get("https://www.w3.org") | ||
.intercept({ method: "GET", path: "/TR/recentlyupdated/" }) | ||
.reply(200, | ||
`<html><title>Recently updated</title> | ||
<h1>Recently updated</h1>`, | ||
{ | ||
headers: { | ||
"Content-Type": "text/html", | ||
"Last-Modified": (new Date()).toString() | ||
} | ||
} | ||
); | ||
mockAgent | ||
.get("https://drafts.csswg.org") | ||
@@ -179,3 +206,3 @@ .intercept({ method: "GET", path: "/server-hiccup/" }) | ||
<h1> Index of Server Hiccup Module Level 42 </h1>`, | ||
{ header: { "Content-Type": "text/html" } }) | ||
{ headers: { "Content-Type": "text/html" } }) | ||
.persist(); | ||
@@ -182,0 +209,0 @@ |
@@ -141,4 +141,11 @@ #!/usr/bin/env node | ||
} | ||
if (result.crawlCacheInfo) { | ||
spec.crawlCacheInfo = result.crawlCacheInfo; | ||
if (result.crawlCacheInfo && | ||
(result.crawled === spec.url || | ||
result.crawled === spec.nightly?.url)) { | ||
// Note: Some redirection took place. That happens when, e.g., a | ||
// WICG spec gets moved to another group, until we update the URL | ||
// in browser-specs. Redirection is done through scripting. Reffy | ||
// follows the redirect but the cache info it receives from | ||
// Puppeteer is for the initial URL. We cannot rely on it! | ||
spec.crawlCacheInfo = result.crawlCacheInfo; | ||
} | ||
@@ -145,0 +152,0 @@ crawlOptions.modules.forEach(mod => { |
425335
0.27%10431
0.31%+ Added
+ Added
+ Added
+ Added
- Removed
- Removed
- Removed
- Removed
Updated
Updated