diff --git a/THIRD_PARTY.txt b/THIRD_PARTY.txt index e79425b9..37dabcc7 100644 --- a/THIRD_PARTY.txt +++ b/THIRD_PARTY.txt @@ -1358,6 +1358,7 @@ https://cdnjs.cloudflare.com/ajax/libs/react/19.0.0/cjs/react.production.min.js https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.14.0/umd/react-dom.production.min.js https://cdnjs.cloudflare.com/ajax/libs/react-dom/17.0.2/umd/react-dom.production.min.js https://cdnjs.cloudflare.com/ajax/libs/react-dom/18.3.1/umd/react-dom.production.min.js +https://cdnjs.cloudflare.com/ajax/libs/react-dom/19.0.0/cjs/react-dom.production.min.js https://cdnjs.cloudflare.com/ajax/libs/react-redux/7.2.8/react-redux.min.js https://cdnjs.cloudflare.com/ajax/libs/react-redux/8.1.3/react-redux.min.js https://cdnjs.cloudflare.com/ajax/libs/react-router/5.3.3/react-router.min.js diff --git a/audit/audit.sh b/audit/audit.sh index 780ed44d..d5307370 100755 --- a/audit/audit.sh +++ b/audit/audit.sh @@ -761,6 +761,8 @@ function create_url() { url="$CLOUDFLARE/$folder/$version/pure-min.css" elif [ "$folder" = "react" ] && [ "$version" != "16.14.0" ] && [ "$version" != "17.0.2" ] && [ "$version" != "18.3.1" ]; then url="$CLOUDFLARE/$folder/$version/cjs/react.production.min.js" + elif [ "$folder" = "react-dom" ] && [ "$version" != "16.14.0" ] && [ "$version" != "17.0.2" ] && [ "$version" != "18.3.1" ]; then + url="$CLOUDFLARE/$folder/$version/cjs/react-dom.production.min.js" # -------------------------------------------------------------------------- else if [ "$subfile" = "$jfile" ]; then diff --git a/modules/internal/targets.js b/modules/internal/targets.js index 9ed34f39..368fb5b1 100644 --- a/modules/internal/targets.js +++ b/modules/internal/targets.js @@ -397,6 +397,7 @@ targets.setLastVersion = function (type, version) { if (type.startsWith('/react-dom/16.')) return '16.14.0'; if (type.startsWith('/react-dom/17.')) return '17.0.2'; if (type.startsWith('/react-dom/18.')) return '18.3.1'; + if (type.startsWith('/react-dom/19.')) return '19.0.0'; if (type.startsWith('/react-intl/')) { // NOTE: Parameters swapped. (= anything greater than v5.0.0) if (helpers.compareVersion(version, '5.0.0')) return '7.1.6'; // >= v5.0.0 diff --git a/pages/updates/updates.html b/pages/updates/updates.html index a64aa7e6..459e9f2f 100644 --- a/pages/updates/updates.html +++ b/pages/updates/updates.html @@ -30,6 +30,7 @@