saml 1.0.1 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.idea/aws.xml ADDED
@@ -0,0 +1,11 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="accountSettings">
4
+ <option name="activeRegion" value="us-east-1" />
5
+ <option name="recentlyUsedRegions">
6
+ <list>
7
+ <option value="us-east-1" />
8
+ </list>
9
+ </option>
10
+ </component>
11
+ </project>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/node-saml.iml" filepath="$PROJECT_DIR$/.idea/node-saml.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="WEB_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$">
5
+ <excludeFolder url="file://$MODULE_DIR$/temp" />
6
+ <excludeFolder url="file://$MODULE_DIR$/.tmp" />
7
+ <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
+ </content>
9
+ <orderEntry type="inheritedJdk" />
10
+ <orderEntry type="sourceFolder" forTests="false" />
11
+ </component>
12
+ </module>
File without changes
package/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
+ </component>
6
+ </project>
package/CHANGELOG.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [2.0.0](https://github.com/auth0/node-saml/compare/v1.0.1...v2.0.0) (2022-02-04)
6
+
7
+
8
+ ### ⚠ BREAKING CHANGES
9
+
10
+ * Requires NodeJS >= 12
11
+
12
+ Upgraded the xml-encryption package which removes the vulnerable node-forge dependency
13
+ See https://github.com/advisories/GHSA-8fr3-hfg3-gpgp
14
+
15
+ ### Bug Fixes
16
+
17
+ * remove vulnerable node-forge dependency ([0106c61](https://github.com/auth0/node-saml/commit/0106c611a1263150e42692411aeeea0c95ec0755))
18
+
5
19
  ### [1.0.1](https://github.com/auth0/node-saml/compare/v1.0.0...v1.0.1) (2021-09-17)
6
20
 
7
21
 
package/README.md CHANGED
@@ -4,6 +4,10 @@ Create SAML assertions. Supports SAML 1.1 and SAML 2.0 tokens.
4
4
 
5
5
  [![Build Status](https://travis-ci.org/auth0/node-saml.png)](https://travis-ci.org/auth0/node-saml)
6
6
 
7
+ ### Supported Node Versions
8
+
9
+ node >= 12
10
+
7
11
  ### Usage
8
12
 
9
13
  ```js
package/package.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "name": "saml",
3
- "version": "1.0.1",
3
+ "version": "2.0.0",
4
+ "engines": {
5
+ "node": ">=12"
6
+ },
4
7
  "devDependencies": {
5
8
  "@commitlint/cli": "^11.0.0",
6
9
  "@commitlint/config-conventional": "^11.0.0",
@@ -24,7 +27,7 @@
24
27
  "moment": "2.19.3",
25
28
  "valid-url": "~1.0.9",
26
29
  "xml-crypto": "^2.1.3",
27
- "xml-encryption": "^1.2.1",
30
+ "xml-encryption": "^2.0.0",
28
31
  "xml-name-validator": "~2.0.1",
29
32
  "xpath": "0.0.5"
30
33
  },