mirror of
https://github.com/tenrok/BBob.git
synced 2026-05-15 11:59:37 +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:
committed by
GitHub
parent
3e4c87f720
commit
5904ef46ed
@@ -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
|
||||
@@ -1,5 +1,41 @@
|
||||
# Change Log
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
- Updated dependencies [[`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced)]:
|
||||
- @bbob/html@4.3.1
|
||||
- @bbob/preset-html5@4.3.1
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/cli",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "Comand line bbcode parser",
|
||||
"bin": {
|
||||
"bbob": "lib/cli.js"
|
||||
|
||||
@@ -1,5 +1,42 @@
|
||||
# Change Log
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
- Updated dependencies [[`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced)]:
|
||||
- @bbob/parser@4.3.1
|
||||
- @bbob/plugin-helper@4.3.1
|
||||
- @bbob/types@4.3.1
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/core",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "⚡️Blazing-fast js-bbcode-parser, bbcode js, that transforms and parses to AST with plugin support in pure javascript, no dependencies",
|
||||
"keywords": [
|
||||
"bbcode",
|
||||
|
||||
@@ -1,5 +1,42 @@
|
||||
# Change Log
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
- Updated dependencies [[`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced)]:
|
||||
- @bbob/core@4.3.1
|
||||
- @bbob/plugin-helper@4.3.1
|
||||
- @bbob/types@4.3.1
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/html",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "A BBCode to HTML Renderer part of @bbob",
|
||||
"keywords": [
|
||||
"html",
|
||||
|
||||
@@ -1,5 +1,41 @@
|
||||
# Change Log
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
- Updated dependencies [[`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced)]:
|
||||
- @bbob/plugin-helper@4.3.1
|
||||
- @bbob/types@4.3.1
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/parser",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "A BBCode to AST Parser part of @bbob",
|
||||
"keywords": [
|
||||
"bbcode",
|
||||
|
||||
@@ -1,5 +1,40 @@
|
||||
# Change Log
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
- Updated dependencies [[`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced)]:
|
||||
- @bbob/types@4.3.1
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/plugin-helper",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "Set of utils to help write plugins for @bbob/core",
|
||||
"keywords": [
|
||||
"bbob",
|
||||
|
||||
@@ -1,5 +1,42 @@
|
||||
# Change Log
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
- Updated dependencies [[`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced)]:
|
||||
- @bbob/plugin-helper@4.3.1
|
||||
- @bbob/preset@4.3.1
|
||||
- @bbob/types@4.3.1
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/preset-html5",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "HTML5 preset to transform BBCode to HTML for @bbob/parser",
|
||||
"keywords": [
|
||||
"preset",
|
||||
|
||||
@@ -1,5 +1,42 @@
|
||||
# Change Log
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
- Updated dependencies [[`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced)]:
|
||||
- @bbob/plugin-helper@4.3.1
|
||||
- @bbob/preset-html5@4.3.1
|
||||
- @bbob/types@4.3.1
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/preset-react",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "React preset to transform BBCode to React for @bbob/react",
|
||||
"keywords": [
|
||||
"bbob",
|
||||
|
||||
@@ -1,5 +1,41 @@
|
||||
# Change Log
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
- Updated dependencies [[`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced)]:
|
||||
- @bbob/preset-html5@4.3.1
|
||||
- @bbob/types@4.3.1
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/preset-vue",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "Vue preset to transform BBCode to Vue for @bbob/vue*",
|
||||
"keywords": [
|
||||
"bbob",
|
||||
|
||||
@@ -1,5 +1,41 @@
|
||||
# Change Log
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
- Updated dependencies [[`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced)]:
|
||||
- @bbob/plugin-helper@4.3.1
|
||||
- @bbob/types@4.3.1
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/preset",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "Base preset for creating extensible presets for @bbob/core",
|
||||
"keywords": [
|
||||
"preset",
|
||||
|
||||
@@ -1,5 +1,43 @@
|
||||
# Change Log
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
- Updated dependencies [[`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced)]:
|
||||
- @bbob/core@4.3.1
|
||||
- @bbob/html@4.3.1
|
||||
- @bbob/plugin-helper@4.3.1
|
||||
- @bbob/types@4.3.1
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/react",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "A BBCode to React Renderer part of @bbob",
|
||||
"keywords": [
|
||||
"react",
|
||||
|
||||
@@ -1,5 +1,37 @@
|
||||
# @bbob/types
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/types",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "Shared Typescript types of @bbob",
|
||||
"keywords": [
|
||||
"bbcode",
|
||||
|
||||
@@ -1,5 +1,43 @@
|
||||
# Change Log
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
- Updated dependencies [[`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced)]:
|
||||
- @bbob/core@4.3.1
|
||||
- @bbob/html@4.3.1
|
||||
- @bbob/plugin-helper@4.3.1
|
||||
- @bbob/types@4.3.1
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/vue2",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "A BBCode to Vue2 Renderer part of @bbob",
|
||||
"keywords": [
|
||||
"vue",
|
||||
|
||||
@@ -1,5 +1,43 @@
|
||||
# @bbob/vue3
|
||||
|
||||
## 4.3.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#281](https://github.com/JiLiZART/BBob/pull/281) [`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced) Thanks [@JiLiZART](https://github.com/JiLiZART)! - 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
|
||||
|
||||
- Updated dependencies [[`322f88a`](https://github.com/JiLiZART/BBob/commit/322f88ad423c87252bda10c7dfd8677c8d6c9ced)]:
|
||||
- @bbob/core@4.3.1
|
||||
- @bbob/html@4.3.1
|
||||
- @bbob/plugin-helper@4.3.1
|
||||
- @bbob/types@4.3.1
|
||||
|
||||
## 4.3.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@bbob/vue3",
|
||||
"version": "4.3.0",
|
||||
"version": "4.3.1",
|
||||
"description": "A BBCode to Vue3 Renderer part of @bbob",
|
||||
"keywords": [
|
||||
"vue",
|
||||
|
||||
Reference in New Issue
Block a user