-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: bump angular@19 from rc to stable #227
base: main
Are you sure you want to change the base?
Conversation
✅ Deploy Preview for plugin-angular-universal-demo ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
fbd881f
to
27c79b6
Compare
…ndencies are updated
const excludedPathsWithMaskedHashes = config.excludedPath.map((path) => path.replace(/-[A-Z\d]{8}\./, '-HASHHASH.')) | ||
|
||
assert.deepEqual(excludedPathsWithMaskedHashes, [ | ||
'/.netlify/*', | ||
'/favicon.ico', | ||
'/heroes/index.html', | ||
'/index.csr.html', | ||
'/main-KVCR6MBP.js', | ||
'/polyfills-FFHMD2TL.js', | ||
'/styles-5INURTSO.css', | ||
'/main-HASHHASH.js', | ||
'/polyfills-HASHHASH.js', | ||
'/styles-HASHHASH.css', | ||
'/heroes', | ||
]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updating this assertion is really annoying so I mask actual hashes with HASHHASH
(matching hash length) - we don't necesairly care about concrete hashes - just that we exclude prerendered content from edge function paths
This is to check if #148 was false negative which it is.
Ideally, we don't merge this PR and instead adjust Renovate until it's configured correctly so we could actually rely on Renovate for Angular packages bumps. We should still get the test assertion adjustment from here (but this could be committed to renovate PR once it bumps the packages correctly)