We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The includeSubdomains option (with a lowercase d) will be removed in hsts@3 and helmet@4. Use the includeSubDomains option (with a capital D) instead.
includeSubdomains
d
hsts@3
helmet@4
includeSubDomains
D
Old:
app.use(hsts({ maxAge: 15552000, includeSubdomains: false }))
New:
app.use(hsts({ maxAge: 15552000, includeSubDomains: false }))
Diff:
- includeSubdomains: false + includeSubDomains: false
The text was updated successfully, but these errors were encountered:
Deprecate includeSubdomains (lowercase d)
1b1e104
See <https://github.com/helmetjs/hsts/issues/21>.
Drop support for Node <8; change maxAge: null behavior; remove deprec…
2cb4cc5
…ated options Closes #21. Closes #22. Closes #26.
9323213
Addressed in 788d69b. To be released in version 4 (see #197).
Sorry, something went wrong.
EvanHahn
Successfully merging a pull request may close this issue.
The
includeSubdomains
option (with a lowercased
) will be removed inhsts@3
andhelmet@4
. Use theincludeSubDomains
option (with a capitalD
) instead.Old:
New:
Diff:
The text was updated successfully, but these errors were encountered: