auth0 / node-samlp

SAML Protocol support for node (only IdP for now)
MIT License
136 stars 117 forks source link

Remove deprecated dependency querystring #138

Open aelliott1485 opened 1 year ago

aelliott1485 commented 1 year ago

Description

Per issue 137 the dependency querystring is deprecated. The changes here remove that dependency.

References

issue 137

Testing

I created a Dockerfile with the node 12

# specify the node base image with your desired version node:<version>
FROM node:12

and changed it for node 16:

# specify the node base image with your desired version node:<version>
FROM node:12

Then I add a mount (with the -v parameter) to /code. I could then run cd code && npm run cover

Checklist

aelliott-atlas commented 9 months ago

@jakelacey2012, @machadolucasvp or @julienwoll would one of you be able to take a peek at this please?