Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
44c4960
fix(csrf): add csrf config to routeRules
kouts Aug 22, 2025
d35de44
fix(cspSsrNonce): element boundaries and full elements
GalacticHypernova Oct 26, 2025
9f614d8
fix: correct capturing groups
GalacticHypernova Oct 26, 2025
bf5cca0
chore: create custom element fixture
GalacticHypernova Oct 26, 2025
496a95c
fix: root
GalacticHypernova Oct 26, 2025
49b453a
fix: use only word boundaries (can't use full tags because of chunks)
GalacticHypernova Oct 26, 2025
f319e5d
refactor(cspSsrNonce): attempt a 2 step approach of redaction to rest…
GalacticHypernova Oct 27, 2025
42a93b0
chore: add missing explanation comment for maskedElement
GalacticHypernova Oct 27, 2025
afc7105
chore(type)
GalacticHypernova Oct 27, 2025
7479dd3
perf: use stored restrore pattern
GalacticHypernova Oct 27, 2025
d8724ab
fix: correct re variable
GalacticHypernova Oct 27, 2025
87d2946
test(ssrNonce): add custom element test
GalacticHypernova Oct 27, 2025
720a03f
chore: remove accidental semicolon
GalacticHypernova Oct 27, 2025
d9e39dd
test: normalize filename
GalacticHypernova Oct 27, 2025
81c72b6
fix: parenthesize await
GalacticHypernova Oct 28, 2025
b9a4e1a
test: allow body classes to match
GalacticHypernova Oct 28, 2025
5eefb37
test: remove group
GalacticHypernova Oct 28, 2025
4669c0d
fix: string.match returns array
GalacticHypernova Oct 28, 2025
0b3f0a1
test: limit to __nuxt div (until teleports)
GalacticHypernova Oct 28, 2025
dfe9a44
fix: avoid expansion regex
GalacticHypernova Oct 28, 2025
50371f0
chore: avoid injectedElements check, only find custom elem
GalacticHypernova Oct 28, 2025
d463d3b
chore: attempt through re.test
GalacticHypernova Oct 28, 2025
35d28cd
chore: comment out test temporarily
GalacticHypernova Oct 28, 2025
0c18d9e
test: add string element fixture
GalacticHypernova Oct 29, 2025
ba26d01
test: stringified elements test
GalacticHypernova Oct 29, 2025
437a0fb
test: read as string
GalacticHypernova Oct 29, 2025
f123627
test: correct nonce lookup
GalacticHypernova Oct 29, 2025
657500d
chore(types): resolve unstorage issue
dargmuesli Nov 12, 2025
72e18e2
fix(types): add type templates
dargmuesli Nov 12, 2025
cd66cd1
fix(headers): add ssg hashes for `script-src-elem` and `style-src-elem`
dargmuesli Nov 12, 2025
93e5dc2
Merge pull request #652 from kouts/fix/issue-651_enable_per_route_csr…
Baroshem Nov 14, 2025
1eba69a
Merge pull request #658 from GalacticHypernova/patch-6
Baroshem Nov 14, 2025
b05ea96
Merge pull request #659 from dargmuesli/fix/headers/src-elem
Baroshem Nov 14, 2025
8c1d3df
Merge pull request #660 from dargmuesli/chore/types/unstorage
Baroshem Nov 14, 2025
95bd8dc
Merge pull request #661 from dargmuesli/fix/types/template
Baroshem Nov 14, 2025
c2e038f
feat(types): upgrade to kit v4
dargmuesli Nov 12, 2025
18d412d
Merge pull request #662 from dargmuesli/feat/types/kit-4
Baroshem Nov 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -52,26 +52,26 @@
},
"packageManager": "[email protected]",
"dependencies": {
"@nuxt/kit": "^3.11.2",
"@nuxt/kit": "^4.2.1",
"basic-auth": "^2.0.1",
"defu": "^6.1.1",
"defu": "^6.1.4",
"nuxt-csurf": "^1.6.5",
"pathe": "^1.0.0",
"pathe": "^2.0.3",
"unplugin-remove": "^1.0.3",
"xss": "^1.0.14"
"xss": "^1.0.15"
},
"devDependencies": {
"@nuxt/eslint-config": "^0.3.10",
"@nuxt/module-builder": "^1.0.1",
"@nuxt/schema": "^3.11.2",
"@nuxt/test-utils": "^3.12.0",
"@types/node": "^20.14.8",
"changelogen": "^0.5.7",
"eslint": "^8.50.0",
"nuxi": "^3.26.4",
"nuxt": "^3.11.2",
"typescript": "^5.4.5",
"vitest": "^1.3.1"
"@nuxt/module-builder": "^1.0.2",
"@nuxt/schema": "^4.2.1",
"@nuxt/test-utils": "^3.20.1",
"@types/node": "^24.10.1",
"changelogen": "^0.6.2",
"eslint": "^8.57.0",
"nuxi": "^3.30.0",
"nuxt": "^4.2.1",
"typescript": "^5.9.3",
"vitest": "^4.0.8"
},
"stackblitz": {
"installDependencies": false,
Expand Down
File renamed without changes.
Loading
Loading