From d070a66db332f350415dba7458032b8b57e05eba Mon Sep 17 00:00:00 2001 From: Nikolay Kostyurin Date: Mon, 29 Nov 2021 00:55:29 +0200 Subject: [PATCH] chore(release): publish v2.8.0 (#122) * chore(lerna): don't publish packages to npm by lerna * chore(lerna): add publish to npm command * fix(github): publish using lerna * chore(lerna): add publish minor * chore(release): publish v2.8.0 --- .github/workflows/npm-publish.yml | 4 +- CHANGELOG.md | 38 +++++++++++++++++++ examples/vue2-example/CHANGELOG.md | 32 ++++++++++++++++ examples/vue2-example/package-lock.json | 2 +- examples/vue2-example/package.json | 6 +-- lerna.json | 2 +- package.json | 8 ++-- packages/bbob-cli/CHANGELOG.md | 32 ++++++++++++++++ packages/bbob-cli/package-lock.json | 2 +- packages/bbob-cli/package.json | 6 +-- packages/bbob-core/CHANGELOG.md | 32 ++++++++++++++++ packages/bbob-core/package-lock.json | 2 +- packages/bbob-core/package.json | 4 +- packages/bbob-html/CHANGELOG.md | 32 ++++++++++++++++ packages/bbob-html/package-lock.json | 2 +- packages/bbob-html/package.json | 6 +-- packages/bbob-parser/CHANGELOG.md | 32 ++++++++++++++++ packages/bbob-parser/package-lock.json | 2 +- packages/bbob-parser/package.json | 4 +- packages/bbob-plugin-helper/CHANGELOG.md | 32 ++++++++++++++++ packages/bbob-plugin-helper/package-lock.json | 2 +- packages/bbob-plugin-helper/package.json | 2 +- packages/bbob-preset-html5/CHANGELOG.md | 32 ++++++++++++++++ packages/bbob-preset-html5/package-lock.json | 2 +- packages/bbob-preset-html5/package.json | 8 ++-- packages/bbob-preset-react/CHANGELOG.md | 32 ++++++++++++++++ packages/bbob-preset-react/package-lock.json | 2 +- packages/bbob-preset-react/package.json | 6 +-- packages/bbob-preset-vue/CHANGELOG.md | 32 ++++++++++++++++ packages/bbob-preset-vue/package.json | 6 +-- packages/bbob-preset/CHANGELOG.md | 32 ++++++++++++++++ packages/bbob-preset/package-lock.json | 2 +- packages/bbob-preset/package.json | 2 +- packages/bbob-react/CHANGELOG.md | 37 ++++++++++++++++++ packages/bbob-react/package-lock.json | 2 +- packages/bbob-react/package.json | 10 ++--- packages/bbob-vue2/CHANGELOG.md | 32 ++++++++++++++++ packages/bbob-vue2/package-lock.json | 2 +- packages/bbob-vue2/package.json | 10 ++--- 39 files changed, 481 insertions(+), 52 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index fd061ae..e607591 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -28,7 +28,7 @@ jobs: node-version: 14 registry-url: https://registry.npmjs.org/ - run: npm ci - - run: npm publish + - run: npm run publish-ci env: NODE_AUTH_TOKEN: ${{secrets.npm_token}} @@ -45,6 +45,6 @@ jobs: node-version: 14 registry-url: https://npm.pkg.github.com/ - run: npm ci - - run: npm publish + - run: npm run publish-ci env: NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/CHANGELOG.md b/CHANGELOG.md index d0ab42b..96c892e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,44 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/BBob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Bug Fixes + +* **github:** publish using lerna ([2eb9d28](https://github.com/JiLiZART/BBob/commit/2eb9d285153549e6f5b052bf4142ab54c8535789)) +* **react:** adjust PropTypes for React Component `container` ([#107](https://github.com/JiLiZART/BBob/issues/107)) ([93d8027](https://github.com/JiLiZART/BBob/commit/93d802773cbe733ccf4b0124257c6fc6707c873b)) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/BBob/issues/120)) ([da6709d](https://github.com/JiLiZART/BBob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) diff --git a/examples/vue2-example/CHANGELOG.md b/examples/vue2-example/CHANGELOG.md index f7d51f0..2539162 100644 --- a/examples/vue2-example/CHANGELOG.md +++ b/examples/vue2-example/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/BBob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/BBob/issues/120)) ([da6709d](https://github.com/JiLiZART/BBob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) **Note:** Version bump only for package vue2-example diff --git a/examples/vue2-example/package-lock.json b/examples/vue2-example/package-lock.json index f4cc629..7f5d129 100644 --- a/examples/vue2-example/package-lock.json +++ b/examples/vue2-example/package-lock.json @@ -1,6 +1,6 @@ { "name": "vue2-example", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/examples/vue2-example/package.json b/examples/vue2-example/package.json index 2d80f14..d580d4c 100644 --- a/examples/vue2-example/package.json +++ b/examples/vue2-example/package.json @@ -1,14 +1,14 @@ { "name": "vue2-example", - "version": "2.7.1", + "version": "2.8.0", "private": true, "scripts": { "start": "vue-cli-service serve", "generate": "vue-cli-service build" }, "dependencies": { - "@bbob/preset-vue": "^2.7.1", - "@bbob/vue2": "^2.7.1", + "@bbob/preset-vue": "^2.8.0", + "@bbob/vue2": "^2.8.0", "core-js": "^3.18.2", "vue": "^2.6.14" }, diff --git a/lerna.json b/lerna.json index ea87bad..7f8a771 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "lerna": "2.11.0", - "version": "2.7.1", + "version": "2.8.0", "packages": [ "benchmark", "scripts", diff --git a/package.json b/package.json index d280221..8a0fa0a 100644 --- a/package.json +++ b/package.json @@ -2,9 +2,11 @@ "scripts": { "prepublishOnly": "npm run test", "bootstrap": "lerna bootstrap", - "publish-from-packages": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits --create-release github --registry=https://registry.npmjs.org/", - "publish-all": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --registry=https://registry.npmjs.org/", - "publish-patch": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --cd-version patch --registry=https://registry.npmjs.org/", + "publish-ci": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits", + "publish-from-packages": "npm run build && lerna publish from-package --yes --include-merged-tags --conventional-commits --create-release github --skip-npm", + "publish-all": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --skip-npm", + "publish-patch": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --cd-version patch --skip-npm", + "publish-minor": "npm run build && lerna publish --include-merged-tags --conventional-commits --create-release github --cd-version minor --skip-npm", "size": "lerna run --parallel size", "bundlesize": "lerna run --parallel bundlesize", "test": "npm run build && lerna run --parallel link && lerna run --parallel test", diff --git a/packages/bbob-cli/CHANGELOG.md b/packages/bbob-cli/CHANGELOG.md index e71e4f0..cc548c2 100644 --- a/packages/bbob-cli/CHANGELOG.md +++ b/packages/bbob-cli/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) **Note:** Version bump only for package @bbob/cli diff --git a/packages/bbob-cli/package-lock.json b/packages/bbob-cli/package-lock.json index 8e314b2..4cfe3f7 100644 --- a/packages/bbob-cli/package-lock.json +++ b/packages/bbob-cli/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bbob/cli", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/bbob-cli/package.json b/packages/bbob-cli/package.json index b996db0..46c854c 100644 --- a/packages/bbob-cli/package.json +++ b/packages/bbob-cli/package.json @@ -1,6 +1,6 @@ { "name": "@bbob/cli", - "version": "2.7.1", + "version": "2.8.0", "description": "Comand line bbcode parser", "main": "lib/cli.js", "bin": { @@ -10,8 +10,8 @@ "lib": "lib" }, "dependencies": { - "@bbob/html": "^2.7.1", - "@bbob/preset-html5": "^2.7.1", + "@bbob/html": "^2.8.0", + "@bbob/preset-html5": "^2.8.0", "commander": "^2.15.1" }, "repository": { diff --git a/packages/bbob-core/CHANGELOG.md b/packages/bbob-core/CHANGELOG.md index 9728fd6..742154b 100644 --- a/packages/bbob-core/CHANGELOG.md +++ b/packages/bbob-core/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) **Note:** Version bump only for package @bbob/core diff --git a/packages/bbob-core/package-lock.json b/packages/bbob-core/package-lock.json index 37eb845..49df751 100644 --- a/packages/bbob-core/package-lock.json +++ b/packages/bbob-core/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bbob/core", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/bbob-core/package.json b/packages/bbob-core/package.json index 062b8dd..85ab1ea 100644 --- a/packages/bbob-core/package.json +++ b/packages/bbob-core/package.json @@ -1,6 +1,6 @@ { "name": "@bbob/core", - "version": "2.7.1", + "version": "2.8.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", @@ -20,7 +20,7 @@ "core" ], "dependencies": { - "@bbob/parser": "^2.7.1" + "@bbob/parser": "^2.8.0" }, "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/bbob-html/CHANGELOG.md b/packages/bbob-html/CHANGELOG.md index 4c9026c..3da4ec2 100644 --- a/packages/bbob-html/CHANGELOG.md +++ b/packages/bbob-html/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) **Note:** Version bump only for package @bbob/html diff --git a/packages/bbob-html/package-lock.json b/packages/bbob-html/package-lock.json index 01d52e6..53b39b0 100644 --- a/packages/bbob-html/package-lock.json +++ b/packages/bbob-html/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bbob/html", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/bbob-html/package.json b/packages/bbob-html/package.json index 06c1ecc..ea2de41 100644 --- a/packages/bbob-html/package.json +++ b/packages/bbob-html/package.json @@ -1,6 +1,6 @@ { "name": "@bbob/html", - "version": "2.7.1", + "version": "2.8.0", "description": "A BBCode to HTML Renderer part of @bbob", "keywords": [ "html", @@ -9,8 +9,8 @@ "bbob" ], "dependencies": { - "@bbob/core": "^2.7.1", - "@bbob/plugin-helper": "^2.7.1" + "@bbob/core": "^2.8.0", + "@bbob/plugin-helper": "^2.8.0" }, "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/bbob-parser/CHANGELOG.md b/packages/bbob-parser/CHANGELOG.md index e9e3e2f..9bbfd1f 100644 --- a/packages/bbob-parser/CHANGELOG.md +++ b/packages/bbob-parser/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) **Note:** Version bump only for package @bbob/parser diff --git a/packages/bbob-parser/package-lock.json b/packages/bbob-parser/package-lock.json index 9a42686..15ea78b 100644 --- a/packages/bbob-parser/package-lock.json +++ b/packages/bbob-parser/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bbob/parser", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/bbob-parser/package.json b/packages/bbob-parser/package.json index 7a66f19..bd35a08 100644 --- a/packages/bbob-parser/package.json +++ b/packages/bbob-parser/package.json @@ -1,6 +1,6 @@ { "name": "@bbob/parser", - "version": "2.7.1", + "version": "2.8.0", "description": "A BBCode to AST Parser part of @bbob", "keywords": [ "bbcode", @@ -13,7 +13,7 @@ "parse" ], "dependencies": { - "@bbob/plugin-helper": "^2.7.1" + "@bbob/plugin-helper": "^2.8.0" }, "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/bbob-plugin-helper/CHANGELOG.md b/packages/bbob-plugin-helper/CHANGELOG.md index 94914e0..ccc2d82 100644 --- a/packages/bbob-plugin-helper/CHANGELOG.md +++ b/packages/bbob-plugin-helper/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) **Note:** Version bump only for package @bbob/plugin-helper diff --git a/packages/bbob-plugin-helper/package-lock.json b/packages/bbob-plugin-helper/package-lock.json index bb98455..661533c 100644 --- a/packages/bbob-plugin-helper/package-lock.json +++ b/packages/bbob-plugin-helper/package-lock.json @@ -1,5 +1,5 @@ { "name": "@bbob/plugin-helper", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 1 } diff --git a/packages/bbob-plugin-helper/package.json b/packages/bbob-plugin-helper/package.json index eac9cb3..e633594 100644 --- a/packages/bbob-plugin-helper/package.json +++ b/packages/bbob-plugin-helper/package.json @@ -1,6 +1,6 @@ { "name": "@bbob/plugin-helper", - "version": "2.7.1", + "version": "2.8.0", "description": "Set of utils to help write plugins for @bbob/core", "keywords": [ "bbob", diff --git a/packages/bbob-preset-html5/CHANGELOG.md b/packages/bbob-preset-html5/CHANGELOG.md index ddca7bf..30b2f0f 100644 --- a/packages/bbob-preset-html5/CHANGELOG.md +++ b/packages/bbob-preset-html5/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) **Note:** Version bump only for package @bbob/preset-html5 diff --git a/packages/bbob-preset-html5/package-lock.json b/packages/bbob-preset-html5/package-lock.json index 5caa77c..5fc7210 100644 --- a/packages/bbob-preset-html5/package-lock.json +++ b/packages/bbob-preset-html5/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bbob/preset-html5", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/bbob-preset-html5/package.json b/packages/bbob-preset-html5/package.json index 74bc988..04b103b 100644 --- a/packages/bbob-preset-html5/package.json +++ b/packages/bbob-preset-html5/package.json @@ -1,6 +1,6 @@ { "name": "@bbob/preset-html5", - "version": "2.7.1", + "version": "2.8.0", "description": "HTML5 preset to transform BBCode to HTML for @bbob/parser", "keywords": [ "preset", @@ -8,11 +8,11 @@ "bbob" ], "dependencies": { - "@bbob/plugin-helper": "^2.7.1", - "@bbob/preset": "^2.7.1" + "@bbob/plugin-helper": "^2.8.0", + "@bbob/preset": "^2.8.0" }, "devDependencies": { - "@bbob/html": "^2.7.1" + "@bbob/html": "^2.8.0" }, "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/bbob-preset-react/CHANGELOG.md b/packages/bbob-preset-react/CHANGELOG.md index 567da5f..43a6747 100644 --- a/packages/bbob-preset-react/CHANGELOG.md +++ b/packages/bbob-preset-react/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) **Note:** Version bump only for package @bbob/preset-react diff --git a/packages/bbob-preset-react/package-lock.json b/packages/bbob-preset-react/package-lock.json index 0de078d..dfcb8a2 100644 --- a/packages/bbob-preset-react/package-lock.json +++ b/packages/bbob-preset-react/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bbob/preset-react", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/bbob-preset-react/package.json b/packages/bbob-preset-react/package.json index 2636543..526ab39 100644 --- a/packages/bbob-preset-react/package.json +++ b/packages/bbob-preset-react/package.json @@ -1,6 +1,6 @@ { "name": "@bbob/preset-react", - "version": "2.7.1", + "version": "2.8.0", "description": "React preset to transform BBCode to React for @bbob/react", "keywords": [ "bbob", @@ -8,10 +8,10 @@ "react" ], "dependencies": { - "@bbob/preset-html5": "^2.7.1" + "@bbob/preset-html5": "^2.8.0" }, "devDependencies": { - "@bbob/core": "^2.7.1" + "@bbob/core": "^2.8.0" }, "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/bbob-preset-vue/CHANGELOG.md b/packages/bbob-preset-vue/CHANGELOG.md index 2118b52..0dd0c98 100644 --- a/packages/bbob-preset-vue/CHANGELOG.md +++ b/packages/bbob-preset-vue/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) **Note:** Version bump only for package @bbob/preset-vue diff --git a/packages/bbob-preset-vue/package.json b/packages/bbob-preset-vue/package.json index d6acc34..632362a 100644 --- a/packages/bbob-preset-vue/package.json +++ b/packages/bbob-preset-vue/package.json @@ -1,6 +1,6 @@ { "name": "@bbob/preset-vue", - "version": "2.7.1", + "version": "2.8.0", "description": "Vue preset to transform BBCode to Vue for @bbob/vue*", "keywords": [ "bbob", @@ -8,10 +8,10 @@ "vue" ], "dependencies": { - "@bbob/preset-html5": "^2.7.1" + "@bbob/preset-html5": "^2.8.0" }, "devDependencies": { - "@bbob/core": "^2.7.1" + "@bbob/core": "^2.8.0" }, "main": "lib/index.js", "module": "es/index.js", diff --git a/packages/bbob-preset/CHANGELOG.md b/packages/bbob-preset/CHANGELOG.md index f8c9784..0f7bba3 100644 --- a/packages/bbob-preset/CHANGELOG.md +++ b/packages/bbob-preset/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) **Note:** Version bump only for package @bbob/preset diff --git a/packages/bbob-preset/package-lock.json b/packages/bbob-preset/package-lock.json index f153158..f2c1875 100644 --- a/packages/bbob-preset/package-lock.json +++ b/packages/bbob-preset/package-lock.json @@ -1,5 +1,5 @@ { "name": "@bbob/preset", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 1 } diff --git a/packages/bbob-preset/package.json b/packages/bbob-preset/package.json index 5fbc2e4..f411041 100644 --- a/packages/bbob-preset/package.json +++ b/packages/bbob-preset/package.json @@ -1,6 +1,6 @@ { "name": "@bbob/preset", - "version": "2.7.1", + "version": "2.8.0", "description": "Base preset for creating extensible presets for @bbob/core", "keywords": [ "preset", diff --git a/packages/bbob-react/CHANGELOG.md b/packages/bbob-react/CHANGELOG.md index 719ffef..741e135 100644 --- a/packages/bbob-react/CHANGELOG.md +++ b/packages/bbob-react/CHANGELOG.md @@ -3,6 +3,43 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Bug Fixes + +* **react:** adjust PropTypes for React Component `container` ([#107](https://github.com/JiLiZART/bbob/issues/107)) ([93d8027](https://github.com/JiLiZART/bbob/commit/93d802773cbe733ccf4b0124257c6fc6707c873b)) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) diff --git a/packages/bbob-react/package-lock.json b/packages/bbob-react/package-lock.json index 095c30b..83872d1 100644 --- a/packages/bbob-react/package-lock.json +++ b/packages/bbob-react/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bbob/react", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/bbob-react/package.json b/packages/bbob-react/package.json index 008dee7..120e5e9 100644 --- a/packages/bbob-react/package.json +++ b/packages/bbob-react/package.json @@ -1,6 +1,6 @@ { "name": "@bbob/react", - "version": "2.7.1", + "version": "2.8.0", "description": "A BBCode to React Renderer part of @bbob", "keywords": [ "react", @@ -9,16 +9,16 @@ "bbob" ], "dependencies": { - "@bbob/core": "^2.7.1", - "@bbob/html": "^2.7.1", - "@bbob/plugin-helper": "^2.7.1" + "@bbob/core": "^2.8.0", + "@bbob/html": "^2.8.0", + "@bbob/plugin-helper": "^2.8.0" }, "peerDependencies": { "prop-types": "15.x", "react": "15.x" }, "devDependencies": { - "@bbob/preset-react": "^2.7.1", + "@bbob/preset-react": "^2.8.0", "enzyme": "^3.9.0", "enzyme-adapter-react-15": "^1.0.6", "react": "15.x", diff --git a/packages/bbob-vue2/CHANGELOG.md b/packages/bbob-vue2/CHANGELOG.md index 333d7a5..8327738 100644 --- a/packages/bbob-vue2/CHANGELOG.md +++ b/packages/bbob-vue2/CHANGELOG.md @@ -3,6 +3,38 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.8.0](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.8.0) (2021-11-28) + + +### Features + +* update core deps ([#120](https://github.com/JiLiZART/bbob/issues/120)) ([da6709d](https://github.com/JiLiZART/bbob/commit/da6709d43799304e62d51cd03921e261308db80f)) + + +### BREAKING CHANGES + +* now we use swc.rs as main bundler and transpiler instead of babel + - jest now uses swc + - rollup now uses swc + +* feat: benchmark now separate package with `npm start` and colored output + - benchmark as separate package with error throw if package drops performance + +* feat: all lerna packages now using scripts/pkg-task + +* feat(github): publish to npm and github registry + - when release was created this action automaticly publish packages to npm and github + +* feat(github): move all from Travis CI to Github Actions + - code analysis and tests now using github actions + +* test: increase tests coverage + - add more tests for @bbob/react, @bbob/vue2 and @bbob/parser + + + + + ## [2.7.1](https://github.com/JiLiZART/bbob/compare/v2.7.0...v2.7.1) (2021-11-04) **Note:** Version bump only for package @bbob/vue2 diff --git a/packages/bbob-vue2/package-lock.json b/packages/bbob-vue2/package-lock.json index 69b7fbf..cee23a8 100644 --- a/packages/bbob-vue2/package-lock.json +++ b/packages/bbob-vue2/package-lock.json @@ -1,6 +1,6 @@ { "name": "@bbob/vue2", - "version": "2.7.1", + "version": "2.8.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/packages/bbob-vue2/package.json b/packages/bbob-vue2/package.json index 636a069..5fbbab6 100644 --- a/packages/bbob-vue2/package.json +++ b/packages/bbob-vue2/package.json @@ -1,6 +1,6 @@ { "name": "@bbob/vue2", - "version": "2.7.1", + "version": "2.8.0", "description": "A BBCode to Vue2 Renderer part of @bbob", "keywords": [ "vue", @@ -9,15 +9,15 @@ "bbob" ], "dependencies": { - "@bbob/core": "^2.7.1", - "@bbob/html": "^2.7.1", - "@bbob/plugin-helper": "^2.7.1" + "@bbob/core": "^2.8.0", + "@bbob/html": "^2.8.0", + "@bbob/plugin-helper": "^2.8.0" }, "peerDependencies": { "vue": "2.x" }, "devDependencies": { - "@bbob/preset-vue": "2.7.1", + "@bbob/preset-vue": "^2.8.0", "@testing-library/vue": "5.6.2", "vue": "2.6.12", "vue-template-compiler": "2.6.12"