Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
43 changes: 0 additions & 43 deletions .changeset/strange-crabs-tickle.md

This file was deleted.

36 changes: 36 additions & 0 deletions packages/bbob-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/[email protected]
- @bbob/[email protected]

## 4.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-cli/package.json
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
37 changes: 37 additions & 0 deletions packages/bbob-core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/[email protected]
- @bbob/[email protected]
- @bbob/[email protected]

## 4.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-core/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
37 changes: 37 additions & 0 deletions packages/bbob-html/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/[email protected]
- @bbob/[email protected]
- @bbob/[email protected]

## 4.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-html/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
36 changes: 36 additions & 0 deletions packages/bbob-parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/[email protected]
- @bbob/[email protected]

## 4.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-parser/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
35 changes: 35 additions & 0 deletions packages/bbob-plugin-helper/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/[email protected]

## 4.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-plugin-helper/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
37 changes: 37 additions & 0 deletions packages/bbob-preset-html5/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/[email protected]
- @bbob/[email protected]
- @bbob/[email protected]

## 4.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-preset-html5/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
37 changes: 37 additions & 0 deletions packages/bbob-preset-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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/[email protected]
- @bbob/[email protected]
- @bbob/[email protected]

## 4.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/bbob-preset-react/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
Loading