2
0
mirror of https://github.com/tenrok/BBob.git synced 2026-06-14 18:42:24 +03:00

chore(release): publish v4.3.1 (#298)

chore(release): release

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-10-17 14:36:07 +02:00
committed by GitHub
parent 3e4c87f720
commit 5904ef46ed
27 changed files with 486 additions and 56 deletions
-43
View File
@@ -1,43 +0,0 @@
---
"@bbob/parser": patch
"@bbob/cli": patch
"@bbob/core": patch
"@bbob/html": patch
"@bbob/plugin-helper": patch
"@bbob/preset": patch
"@bbob/preset-html5": patch
"@bbob/preset-react": patch
"@bbob/preset-vue": patch
"@bbob/react": patch
"@bbob/types": patch
"@bbob/vue2": patch
"@bbob/vue3": patch
---
Now `@bbob/parser` correctly parses tags like
```html
[url=javascript:alert('XSS ME');]TEXT[/url]
```
to correct attributes
```json
{
"tag": "url",
"attrs": {
"javascript:alert('XSS ME')": "javascript:alert('XSS ME')"
},
"content": [
"TEXT"
],
"start": {
"from": 0,
"to": 38
},
"end": {
"from": 38,
"to": 42
}
}
```
Fixes #300