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
Your module is dependent on @adobe/aio-lib-ims.
@adobe/aio-lib-ims
Adobe IMS is retiring TLS 1.0 and TLS 1.1 support on July 14th, 2021. TLSv1.2 is the default for node-12 or higher: https://nodejs.org/api/cli.html#cli_tls_min_v1_2
TLS 1.0
TLS 1.1
TLSv1.2
Therefore any calls to Adobe IMS using @adobe/aio-lib-ims using node-10 will fail after the retirement date above.
node-10
This module should impose a minimum requirement of node-12 going forward.
node-12
Add this to your package.json:
package.json
{ "engineStrict": true, "engines" : { "node" : ">=12" } }
The text was updated successfully, but these errors were encountered:
JIRA issue created: https://jira.corp.adobe.com/browse/ACNA-1209
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Your module is dependent on
@adobe/aio-lib-ims
.Adobe IMS is retiring
TLS 1.0
andTLS 1.1
support on July 14th, 2021.TLSv1.2
is the default for node-12 or higher: https://nodejs.org/api/cli.html#cli_tls_min_v1_2Therefore any calls to Adobe IMS using
@adobe/aio-lib-ims
usingnode-10
will fail after the retirement date above.This module should impose a minimum requirement of
node-12
going forward.Add this to your
package.json
:The text was updated successfully, but these errors were encountered: