Respect output.hashSalt in RealContentHashPlugin#16789
Merged
TheLarkInn merged 1 commit intowebpack:mainfrom Mar 8, 2023
Merged
Respect output.hashSalt in RealContentHashPlugin#16789TheLarkInn merged 1 commit intowebpack:mainfrom
TheLarkInn merged 1 commit intowebpack:mainfrom
Conversation
|
|
Contributor
|
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
Member
|
@alexander-akait I think this could be acceptable for v5 change. The behavior today is technically a bug, although |
Member
|
@TheLarkInn Yeah, I agree, we can merge |
This was referenced Apr 7, 2023
This file contains hidden or 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
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.Suggestion cannot be applied right now. Please check back later.
Update
RealContentHashPluginto initialize hash instances with the value ofoutput.hashSalt, if provided. This allows developers to use theoutput.hashSaltproperty 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.realContentHashproperty was set tofalse, the value of[contenthash]already includedoutput.hashSaltin 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.hashSaltproduce 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.hashSaltproperty and depending on the value of[contenthash]not changing whenoptimization.realContentHashis 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
RealContentHashPluginis the entity that generates the content hash.What needs to be documented once your changes are merged?
Documentation of
optimization.realContentHashshould be updated to explicitly call out that it does includeoutput.hashSaltif set. The current state of the documentation is unclear on whether or not it is expected.