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
Respect output.hashSalt in RealContentHashPlugin #16789
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
For maintainers only:
|
cc0b9d8
to
63e2f42
Compare
Fix webpack#16788 Update RealContentHashPlugin to initialize hash instances with the value of `output.hashSalt`, if provided.
63e2f42
to
07283fa
Compare
TheLarkInn
approved these changes
Mar 8, 2023
snitin315
approved these changes
Mar 8, 2023
alexander-akait
approved these changes
Mar 8, 2023
@alexander-akait I think this could be acceptable for v5 change. The behavior today is technically a bug, although |
@TheLarkInn Yeah, I agree, we can merge |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Update
RealContentHashPlugin
to initialize hash instances with the value ofoutput.hashSalt
, if provided. This allows developers to use theoutput.hashSalt
property to force all emitted webpack assets to have new hashes, even though the content has not changed, for example to deliberately cache break a CDN.Note that if the
optimization.realContentHash
property was set tofalse
, the value of[contenthash]
already includedoutput.hashSalt
in the calculation.What kind of change does this PR introduce?
Fix #16788
Did you add tests for your changes?
Yes. Changes verify that running three configs with identical source files and two different values of
output.hashSalt
produce exactly 2 unique output hashes.Does this PR introduce a breaking change?
This could be considered a breaking change if a consumer is using the
output.hashSalt
property and depending on the value of[contenthash]
not changing whenoptimization.realContentHash
is set.Plugins that provide a custom implementation of the content hash (e.g. for Sub-Resource Integrity) will not be impacted, because this change only applies when the
RealContentHashPlugin
is the entity that generates the content hash.What needs to be documented once your changes are merged?
Documentation of
optimization.realContentHash
should be updated to explicitly call out that it does includeoutput.hashSalt
if set. The current state of the documentation is unclear on whether or not it is expected.