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
19 changes: 0 additions & 19 deletions .changeset/every-buses-drop.md

This file was deleted.

29 changes: 0 additions & 29 deletions .changeset/new-dogs-like.md

This file was deleted.

20 changes: 0 additions & 20 deletions .changeset/polite-moles-wash.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/thick-sites-teach.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/warm-kiwis-boil.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.4.0

### Minor Changes

- [#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

Minimal Node version set to `22.x`

Example for React updated to new versions of deps

For errors `C1` and `C2` used `ERRORS.md` file, instead of inlined error messages.

`ESlint` migrated to 10.x version

`TypeScript` migrated to 6.x version

- [#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`

- Replaced all array searches `[].indexOf` to instant condition comparsion `char === EQ || char === SPACE`
- Increased performance of nested tokens detection `isTokenNested`
- Removed redundant object in `CharGrabber`

- [#316](https://github.com/JiLiZART/BBob/pull/316) [`6221374`](https://github.com/JiLiZART/BBob/commit/6221374c99ca1d438a54895cf7c7ac07d461cad7) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes case where parsing `[LIST][*]test[/LIST]` with `caseFreeTags: true` can't parse tag

- [#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

### Patch Changes

- [`89e4c22`](https://github.com/JiLiZART/BBob/commit/89e4c2285741e50875b0ecc04fee732518768db3) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes CVE GHSA-p4wh-gqrq-q2wq

`escapeAttrValue` function now remove ASCII `tab/newline/CR` and ignore other control chars when resolving a URL scheme

- 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), [`6221374`](https://github.com/JiLiZART/BBob/commit/6221374c99ca1d438a54895cf7c7ac07d461cad7), [`7fe4a1a`](https://github.com/JiLiZART/BBob/commit/7fe4a1aaa353aef3b2d28fc58fea8194202f8aca)]:
- @bbob/html@4.4.0
- @bbob/preset-html5@4.4.0

## 4.3.1

### Patch 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.1",
"version": "4.4.0",
"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.4.0

### Minor Changes

- [#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

Minimal Node version set to `22.x`

Example for React updated to new versions of deps

For errors `C1` and `C2` used `ERRORS.md` file, instead of inlined error messages.

`ESlint` migrated to 10.x version

`TypeScript` migrated to 6.x version

- [#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`

- Replaced all array searches `[].indexOf` to instant condition comparsion `char === EQ || char === SPACE`
- Increased performance of nested tokens detection `isTokenNested`
- Removed redundant object in `CharGrabber`

- [#316](https://github.com/JiLiZART/BBob/pull/316) [`6221374`](https://github.com/JiLiZART/BBob/commit/6221374c99ca1d438a54895cf7c7ac07d461cad7) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes case where parsing `[LIST][*]test[/LIST]` with `caseFreeTags: true` can't parse tag

- [#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

### Patch Changes

- [`89e4c22`](https://github.com/JiLiZART/BBob/commit/89e4c2285741e50875b0ecc04fee732518768db3) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes CVE GHSA-p4wh-gqrq-q2wq

`escapeAttrValue` function now remove ASCII `tab/newline/CR` and ignore other control chars when resolving a URL scheme

- 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), [`6221374`](https://github.com/JiLiZART/BBob/commit/6221374c99ca1d438a54895cf7c7ac07d461cad7), [`7fe4a1a`](https://github.com/JiLiZART/BBob/commit/7fe4a1aaa353aef3b2d28fc58fea8194202f8aca)]:
- @bbob/parser@4.4.0
- @bbob/plugin-helper@4.4.0
- @bbob/types@4.4.0

## 4.3.1

### Patch 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.1",
"version": "4.4.0",
"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.4.0

### Minor Changes

- [#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

Minimal Node version set to `22.x`

Example for React updated to new versions of deps

For errors `C1` and `C2` used `ERRORS.md` file, instead of inlined error messages.

`ESlint` migrated to 10.x version

`TypeScript` migrated to 6.x version

- [#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`

- Replaced all array searches `[].indexOf` to instant condition comparsion `char === EQ || char === SPACE`
- Increased performance of nested tokens detection `isTokenNested`
- Removed redundant object in `CharGrabber`

- [#316](https://github.com/JiLiZART/BBob/pull/316) [`6221374`](https://github.com/JiLiZART/BBob/commit/6221374c99ca1d438a54895cf7c7ac07d461cad7) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes case where parsing `[LIST][*]test[/LIST]` with `caseFreeTags: true` can't parse tag

- [#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

### Patch Changes

- [`89e4c22`](https://github.com/JiLiZART/BBob/commit/89e4c2285741e50875b0ecc04fee732518768db3) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes CVE GHSA-p4wh-gqrq-q2wq

`escapeAttrValue` function now remove ASCII `tab/newline/CR` and ignore other control chars when resolving a URL scheme

- 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), [`6221374`](https://github.com/JiLiZART/BBob/commit/6221374c99ca1d438a54895cf7c7ac07d461cad7), [`7fe4a1a`](https://github.com/JiLiZART/BBob/commit/7fe4a1aaa353aef3b2d28fc58fea8194202f8aca)]:
- @bbob/core@4.4.0
- @bbob/plugin-helper@4.4.0
- @bbob/types@4.4.0

## 4.3.1

### Patch 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.1",
"version": "4.4.0",
"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.4.0

### Minor Changes

- [#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

Minimal Node version set to `22.x`

Example for React updated to new versions of deps

For errors `C1` and `C2` used `ERRORS.md` file, instead of inlined error messages.

`ESlint` migrated to 10.x version

`TypeScript` migrated to 6.x version

- [#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`

- Replaced all array searches `[].indexOf` to instant condition comparsion `char === EQ || char === SPACE`
- Increased performance of nested tokens detection `isTokenNested`
- Removed redundant object in `CharGrabber`

- [#316](https://github.com/JiLiZART/BBob/pull/316) [`6221374`](https://github.com/JiLiZART/BBob/commit/6221374c99ca1d438a54895cf7c7ac07d461cad7) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes case where parsing `[LIST][*]test[/LIST]` with `caseFreeTags: true` can't parse tag

- [#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

### Patch Changes

- [`89e4c22`](https://github.com/JiLiZART/BBob/commit/89e4c2285741e50875b0ecc04fee732518768db3) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes CVE GHSA-p4wh-gqrq-q2wq

`escapeAttrValue` function now remove ASCII `tab/newline/CR` and ignore other control chars when resolving a URL scheme

- 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), [`6221374`](https://github.com/JiLiZART/BBob/commit/6221374c99ca1d438a54895cf7c7ac07d461cad7), [`7fe4a1a`](https://github.com/JiLiZART/BBob/commit/7fe4a1aaa353aef3b2d28fc58fea8194202f8aca)]:
- @bbob/plugin-helper@4.4.0
- @bbob/types@4.4.0

## 4.3.1

### Patch 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.1",
"version": "4.4.0",
"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.4.0

### Minor Changes

- [#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

Minimal Node version set to `22.x`

Example for React updated to new versions of deps

For errors `C1` and `C2` used `ERRORS.md` file, instead of inlined error messages.

`ESlint` migrated to 10.x version

`TypeScript` migrated to 6.x version

- [#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`

- Replaced all array searches `[].indexOf` to instant condition comparsion `char === EQ || char === SPACE`
- Increased performance of nested tokens detection `isTokenNested`
- Removed redundant object in `CharGrabber`

- [#316](https://github.com/JiLiZART/BBob/pull/316) [`6221374`](https://github.com/JiLiZART/BBob/commit/6221374c99ca1d438a54895cf7c7ac07d461cad7) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes case where parsing `[LIST][*]test[/LIST]` with `caseFreeTags: true` can't parse tag

- [#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

### Patch Changes

- [`89e4c22`](https://github.com/JiLiZART/BBob/commit/89e4c2285741e50875b0ecc04fee732518768db3) Thanks [@JiLiZART](https://github.com/JiLiZART)! - Fixes CVE GHSA-p4wh-gqrq-q2wq

`escapeAttrValue` function now remove ASCII `tab/newline/CR` and ignore other control chars when resolving a URL scheme

- 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), [`6221374`](https://github.com/JiLiZART/BBob/commit/6221374c99ca1d438a54895cf7c7ac07d461cad7), [`7fe4a1a`](https://github.com/JiLiZART/BBob/commit/7fe4a1aaa353aef3b2d28fc58fea8194202f8aca)]:
- @bbob/types@4.4.0

## 4.3.1

### Patch 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.1",
"version": "4.4.0",
"description": "Set of utils to help write plugins for @bbob/core",
"keywords": [
"bbob",
Expand Down
Loading
Loading