Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: cure53/DOMPurify
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.0.5
Choose a base ref
...
head repository: cure53/DOMPurify
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.0.6
Choose a head ref
Loading
Showing with 541 additions and 393 deletions.
  1. +1 −1 .github/workflows/build-and-test.yml
  2. +1 −1 .github/workflows/codeql-analysis.yml
  3. +63 −70 README.md
  4. +1 −1 bower.json
  5. +115 −75 dist/purify.cjs.js
  6. +1 −1 dist/purify.cjs.js.map
  7. +115 −75 dist/purify.es.js
  8. +1 −1 dist/purify.es.js.map
  9. +115 −75 dist/purify.js
  10. +1 −1 dist/purify.js.map
  11. +2 −2 dist/purify.min.js
  12. +1 −1 dist/purify.min.js.map
  13. +8 −5 package-lock.json
  14. +1 −1 package.json
  15. +62 −66 src/purify.js
  16. +51 −15 src/utils.js
  17. +2 −2 website/index.html
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -25,7 +25,7 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is
# a pull request then we can checkout the head.
Loading