Skip to content

Commit a7394e2

Browse files
chore(release): release
1 parent e137071 commit a7394e2

30 files changed

Lines changed: 461 additions & 98 deletions

.changeset/every-buses-drop.md

Lines changed: 0 additions & 19 deletions
This file was deleted.

.changeset/new-dogs-like.md

Lines changed: 0 additions & 29 deletions
This file was deleted.

.changeset/polite-moles-wash.md

Lines changed: 0 additions & 20 deletions
This file was deleted.

.changeset/warm-kiwis-boil.md

Lines changed: 0 additions & 17 deletions
This file was deleted.

packages/bbob-cli/CHANGELOG.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,39 @@
11
# Change Log
22

3+
## 4.4.0
4+
5+
### Minor Changes
6+
7+
- [#327](https://github.com/JiLiZART/BBob/pull/327) [`22bf163`](https://github.com/JiLiZART/BBob/commit/22bf163562b643806f3339334e920464885992e4) Thanks [@JiLiZART](https://github.com/JiLiZART)! - PNPM updated to `11.9.0` version
8+
9+
Minimal Node version set to `22.x`
10+
11+
Example for React updated to new versions of deps
12+
13+
For errors `C1` and `C2` used `ERRORS.md` file, instead of inlined error messages.
14+
15+
`ESlint` migrated to 10.x version
16+
17+
`TypeScript` migrated to 6.x version
18+
19+
- [#318](https://github.com/JiLiZART/BBob/pull/318) [`151af27`](https://github.com/JiLiZART/BBob/commit/151af2772aff9a97cae019c9c862f2edbc8acfe5) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Increased performance of `@bbob/parser`
20+
21+
- Replaced all array searches `[].indexOf` to instant condition comparsion `char === EQ || char === SPACE`
22+
- Increased performance of nested tokens detection `isTokenNested`
23+
- Removed redundant object in `CharGrabber`
24+
25+
- [#310](https://github.com/JiLiZART/BBob/pull/310) [`7fe4a1a`](https://github.com/JiLiZART/BBob/commit/7fe4a1aaa353aef3b2d28fc58fea8194202f8aca) Thanks [@FrenchGithubUser](https://github.com/FrenchGithubUser)! - Adds support to `[size=20]text[/size]` tag
26+
27+
### Patch Changes
28+
29+
- [`89e4c22`](https://github.com/JiLiZART/BBob/commit/89e4c2285741e50875b0ecc04fee732518768db3) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes CVE GHSA-p4wh-gqrq-q2wq
30+
31+
`escapeAttrValue` function now remove ASCII `tab/newline/CR` and ignore other control chars when resolving a URL scheme
32+
33+
- Updated dependencies [[`89e4c22`](https://github.com/JiLiZART/BBob/commit/89e4c2285741e50875b0ecc04fee732518768db3), [`22bf163`](https://github.com/JiLiZART/BBob/commit/22bf163562b643806f3339334e920464885992e4), [`151af27`](https://github.com/JiLiZART/BBob/commit/151af2772aff9a97cae019c9c862f2edbc8acfe5), [`7fe4a1a`](https://github.com/JiLiZART/BBob/commit/7fe4a1aaa353aef3b2d28fc58fea8194202f8aca)]:
34+
- @bbob/html@4.4.0
35+
- @bbob/preset-html5@4.4.0
36+
337
## 4.3.1
438

539
### Patch Changes

packages/bbob-cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbob/cli",
3-
"version": "4.3.1",
3+
"version": "4.4.0",
44
"description": "Comand line bbcode parser",
55
"bin": {
66
"bbob": "lib/cli.js"

packages/bbob-core/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# Change Log
22

3+
## 4.4.0
4+
5+
### Minor Changes
6+
7+
- [#327](https://github.com/JiLiZART/BBob/pull/327) [`22bf163`](https://github.com/JiLiZART/BBob/commit/22bf163562b643806f3339334e920464885992e4) Thanks [@JiLiZART](https://github.com/JiLiZART)! - PNPM updated to `11.9.0` version
8+
9+
Minimal Node version set to `22.x`
10+
11+
Example for React updated to new versions of deps
12+
13+
For errors `C1` and `C2` used `ERRORS.md` file, instead of inlined error messages.
14+
15+
`ESlint` migrated to 10.x version
16+
17+
`TypeScript` migrated to 6.x version
18+
19+
- [#318](https://github.com/JiLiZART/BBob/pull/318) [`151af27`](https://github.com/JiLiZART/BBob/commit/151af2772aff9a97cae019c9c862f2edbc8acfe5) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Increased performance of `@bbob/parser`
20+
21+
- Replaced all array searches `[].indexOf` to instant condition comparsion `char === EQ || char === SPACE`
22+
- Increased performance of nested tokens detection `isTokenNested`
23+
- Removed redundant object in `CharGrabber`
24+
25+
- [#310](https://github.com/JiLiZART/BBob/pull/310) [`7fe4a1a`](https://github.com/JiLiZART/BBob/commit/7fe4a1aaa353aef3b2d28fc58fea8194202f8aca) Thanks [@FrenchGithubUser](https://github.com/FrenchGithubUser)! - Adds support to `[size=20]text[/size]` tag
26+
27+
### Patch Changes
28+
29+
- [`89e4c22`](https://github.com/JiLiZART/BBob/commit/89e4c2285741e50875b0ecc04fee732518768db3) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes CVE GHSA-p4wh-gqrq-q2wq
30+
31+
`escapeAttrValue` function now remove ASCII `tab/newline/CR` and ignore other control chars when resolving a URL scheme
32+
33+
- Updated dependencies [[`89e4c22`](https://github.com/JiLiZART/BBob/commit/89e4c2285741e50875b0ecc04fee732518768db3), [`22bf163`](https://github.com/JiLiZART/BBob/commit/22bf163562b643806f3339334e920464885992e4), [`151af27`](https://github.com/JiLiZART/BBob/commit/151af2772aff9a97cae019c9c862f2edbc8acfe5), [`7fe4a1a`](https://github.com/JiLiZART/BBob/commit/7fe4a1aaa353aef3b2d28fc58fea8194202f8aca)]:
34+
- @bbob/parser@4.4.0
35+
- @bbob/plugin-helper@4.4.0
36+
- @bbob/types@4.4.0
37+
338
## 4.3.1
439

540
### Patch Changes

packages/bbob-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbob/core",
3-
"version": "4.3.1",
3+
"version": "4.4.0",
44
"description": "⚡️Blazing-fast js-bbcode-parser, bbcode js, that transforms and parses to AST with plugin support in pure javascript, no dependencies",
55
"keywords": [
66
"bbcode",

packages/bbob-html/CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,40 @@
11
# Change Log
22

3+
## 4.4.0
4+
5+
### Minor Changes
6+
7+
- [#327](https://github.com/JiLiZART/BBob/pull/327) [`22bf163`](https://github.com/JiLiZART/BBob/commit/22bf163562b643806f3339334e920464885992e4) Thanks [@JiLiZART](https://github.com/JiLiZART)! - PNPM updated to `11.9.0` version
8+
9+
Minimal Node version set to `22.x`
10+
11+
Example for React updated to new versions of deps
12+
13+
For errors `C1` and `C2` used `ERRORS.md` file, instead of inlined error messages.
14+
15+
`ESlint` migrated to 10.x version
16+
17+
`TypeScript` migrated to 6.x version
18+
19+
- [#318](https://github.com/JiLiZART/BBob/pull/318) [`151af27`](https://github.com/JiLiZART/BBob/commit/151af2772aff9a97cae019c9c862f2edbc8acfe5) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Increased performance of `@bbob/parser`
20+
21+
- Replaced all array searches `[].indexOf` to instant condition comparsion `char === EQ || char === SPACE`
22+
- Increased performance of nested tokens detection `isTokenNested`
23+
- Removed redundant object in `CharGrabber`
24+
25+
- [#310](https://github.com/JiLiZART/BBob/pull/310) [`7fe4a1a`](https://github.com/JiLiZART/BBob/commit/7fe4a1aaa353aef3b2d28fc58fea8194202f8aca) Thanks [@FrenchGithubUser](https://github.com/FrenchGithubUser)! - Adds support to `[size=20]text[/size]` tag
26+
27+
### Patch Changes
28+
29+
- [`89e4c22`](https://github.com/JiLiZART/BBob/commit/89e4c2285741e50875b0ecc04fee732518768db3) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes CVE GHSA-p4wh-gqrq-q2wq
30+
31+
`escapeAttrValue` function now remove ASCII `tab/newline/CR` and ignore other control chars when resolving a URL scheme
32+
33+
- Updated dependencies [[`89e4c22`](https://github.com/JiLiZART/BBob/commit/89e4c2285741e50875b0ecc04fee732518768db3), [`22bf163`](https://github.com/JiLiZART/BBob/commit/22bf163562b643806f3339334e920464885992e4), [`151af27`](https://github.com/JiLiZART/BBob/commit/151af2772aff9a97cae019c9c862f2edbc8acfe5), [`7fe4a1a`](https://github.com/JiLiZART/BBob/commit/7fe4a1aaa353aef3b2d28fc58fea8194202f8aca)]:
34+
- @bbob/core@4.4.0
35+
- @bbob/plugin-helper@4.4.0
36+
- @bbob/types@4.4.0
37+
338
## 4.3.1
439

540
### Patch Changes

packages/bbob-html/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@bbob/html",
3-
"version": "4.3.1",
3+
"version": "4.4.0",
44
"description": "A BBCode to HTML Renderer part of @bbob",
55
"keywords": [
66
"html",

0 commit comments

Comments
 (0)