Skip to content

Commit

Permalink
v2.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
renatobenks committed Feb 11, 2022
1 parent b275615 commit 9ec9a3c
Show file tree
Hide file tree
Showing 28 changed files with 210 additions and 23 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,31 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.4.0) (2022-02-11)


### Bug Fixes

* **babel-plugin-export-metadata:** fix `hasOwnProperty` method call ([#1581](https://github.com/doczjs/docz/issues/1581)) ([9067ffb](https://github.com/doczjs/docz/commit/9067ffb))
* **dev-env/basic:** building and running development ([#1646](https://github.com/doczjs/docz/issues/1646)) ([7baaaf2](https://github.com/doczjs/docz/commit/7baaaf2))
* **docz:** dependency issues ([#1647](https://github.com/doczjs/docz/issues/1647)) ([5bdca48](https://github.com/doczjs/docz/commit/5bdca48))
* **docz-utils:** fix closing tag detection in `removeTags` ([#1696](https://github.com/doczjs/docz/issues/1696)) ([bfcd923](https://github.com/doczjs/docz/commit/bfcd923))
* **examples:** import alert component by correct lib name. ([#1605](https://github.com/doczjs/docz/issues/1605)) ([fadb6dd](https://github.com/doczjs/docz/commit/fadb6dd))
* **gatsby-theme-docz:** wrong imports ([ed169cf](https://github.com/doczjs/docz/commit/ed169cf))
* add functions never to eslint rule ([#1487](https://github.com/doczjs/docz/issues/1487)) ([becd589](https://github.com/doczjs/docz/commit/becd589))


### Features

* add gatsby https flag to use in dev mode ([#1569](https://github.com/doczjs/docz/issues/1569)) ([9d91503](https://github.com/doczjs/docz/commit/9d91503))
* **docz-core:** add modifyEntry plugin supported ([#1621](https://github.com/doczjs/docz/issues/1621)) ([317987e](https://github.com/doczjs/docz/commit/317987e))
* **gatsby-theme-docz:** configure SEO information from md/mdx files ([#1477](https://github.com/doczjs/docz/issues/1477)) ([24bb600](https://github.com/doczjs/docz/commit/24bb600))
* **gatsby-theme-docz:** no reload on relative links ([#1482](https://github.com/doczjs/docz/issues/1482)) ([ff7211c](https://github.com/doczjs/docz/commit/ff7211c))





# [2.3.3-alpha.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.3.3-alpha.0) (2021-09-10)


Expand Down
17 changes: 17 additions & 0 deletions core/docz-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,23 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.4.0) (2022-02-11)


### Bug Fixes

* **docz:** dependency issues ([#1647](https://github.com/doczjs/docz/issues/1647)) ([5bdca48](https://github.com/doczjs/docz/commit/5bdca48))


### Features

* add gatsby https flag to use in dev mode ([#1569](https://github.com/doczjs/docz/issues/1569)) ([9d91503](https://github.com/doczjs/docz/commit/9d91503))
* **docz-core:** add modifyEntry plugin supported ([#1621](https://github.com/doczjs/docz/issues/1621)) ([317987e](https://github.com/doczjs/docz/commit/317987e))





# [2.3.3-alpha.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.3.3-alpha.0) (2021-09-10)


Expand Down
8 changes: 4 additions & 4 deletions core/docz-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docz-core",
"version": "2.3.3-alpha.0",
"version": "2.4.0",
"description": "All docz core logic of bundle and parsing is included on this package",
"license": "MIT",
"main": "dist/index.js",
Expand Down Expand Up @@ -34,7 +34,7 @@
"chokidar": "^3.0.2",
"cross-spawn": "^7.0.2",
"detect-port": "^1.3.0",
"docz-utils": "2.3.3-alpha.0",
"docz-utils": "^2.4.0",
"env-dot-prop": "^2.0.1",
"fast-deep-equal": "^2.0.1",
"fast-glob": "^3.0.4",
Expand All @@ -44,13 +44,13 @@
"gatsby-plugin-typescript": "^2.1.6",
"get-pkg-repo": "4.1.1",
"humanize-string": "^2.1.0",
"load-cfg": "2.3.3-alpha.0",
"load-cfg": "^2.4.0",
"lodash": "^4.17.14",
"minimatch": "^3.0.4",
"open": "^7.0.3",
"ora": "^3.4.0",
"react-docgen": "^4.1.1",
"react-docgen-actual-name-handler": "2.3.3-alpha.0",
"react-docgen-actual-name-handler": "^2.4.0",
"react-docgen-external-proptypes-handler": "^1.0.3",
"react-docgen-typescript": "^2.1.0",
"recast": "^0.18.1",
Expand Down
12 changes: 12 additions & 0 deletions core/docz-rollup/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.4.0) (2022-02-11)


### Bug Fixes

* **dev-env/basic:** building and running development ([#1646](https://github.com/doczjs/docz/issues/1646)) ([7baaaf2](https://github.com/doczjs/docz/commit/7baaaf2))
* **docz:** dependency issues ([#1647](https://github.com/doczjs/docz/issues/1647)) ([5bdca48](https://github.com/doczjs/docz/commit/5bdca48))





# [2.3.3-alpha.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.3.3-alpha.0) (2021-09-10)


Expand Down
2 changes: 1 addition & 1 deletion core/docz-rollup/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docz-rollup",
"version": "2.3.3-alpha.0",
"version": "2.4.0",
"license": "MIT",
"main": "src/index.js",
"files": [
Expand Down
12 changes: 12 additions & 0 deletions core/docz-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.4.0) (2022-02-11)


### Bug Fixes

* **docz:** dependency issues ([#1647](https://github.com/doczjs/docz/issues/1647)) ([5bdca48](https://github.com/doczjs/docz/commit/5bdca48))
* **docz-utils:** fix closing tag detection in `removeTags` ([#1696](https://github.com/doczjs/docz/issues/1696)) ([bfcd923](https://github.com/doczjs/docz/commit/bfcd923))





# [2.3.3-alpha.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.3.3-alpha.0) (2021-09-10)


Expand Down
2 changes: 1 addition & 1 deletion core/docz-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docz-utils",
"version": "2.3.3-alpha.0",
"version": "2.4.0",
"description": "Some methods used and utilities used on docz",
"license": "MIT",
"main": "lib/index.js",
Expand Down
11 changes: 11 additions & 0 deletions core/docz/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.4.0) (2022-02-11)


### Bug Fixes

* **docz:** dependency issues ([#1647](https://github.com/doczjs/docz/issues/1647)) ([5bdca48](https://github.com/doczjs/docz/commit/5bdca48))





# [2.3.3-alpha.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.3.3-alpha.0) (2021-09-10)


Expand Down
6 changes: 3 additions & 3 deletions core/docz/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docz",
"version": "2.3.3-alpha.1",
"version": "2.4.0",
"description": "It's has never been so easy to documents your things!",
"license": "MIT",
"main": "dist/index.js",
Expand Down Expand Up @@ -32,12 +32,12 @@
"@mdx-js/react": "^1.0.27",
"array-sort": "^1.0.0",
"capitalize": "^2.0.0",
"docz-core": "2.3.3-alpha.0",
"docz-core": "^2.4.0",
"fast-deep-equal": "^2.0.1",
"gatsby": "^2.13.27",
"gatsby-plugin-eslint": "^2.0.5",
"gatsby-plugin-typescript": "^2.1.6",
"gatsby-theme-docz": "2.3.3-alpha.1",
"gatsby-theme-docz": "^2.4.0",
"lodash": "^4.17.14",
"marksy": "^8.0.0",
"match-sorter": "^3.1.1",
Expand Down
18 changes: 18 additions & 0 deletions core/gatsby-theme-docz/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,24 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.4.0) (2022-02-11)


### Bug Fixes

* **docz:** dependency issues ([#1647](https://github.com/doczjs/docz/issues/1647)) ([5bdca48](https://github.com/doczjs/docz/commit/5bdca48))
* **gatsby-theme-docz:** wrong imports ([ed169cf](https://github.com/doczjs/docz/commit/ed169cf))


### Features

* **gatsby-theme-docz:** configure SEO information from md/mdx files ([#1477](https://github.com/doczjs/docz/issues/1477)) ([24bb600](https://github.com/doczjs/docz/commit/24bb600))
* **gatsby-theme-docz:** no reload on relative links ([#1482](https://github.com/doczjs/docz/issues/1482)) ([ff7211c](https://github.com/doczjs/docz/commit/ff7211c))





# [2.3.3-alpha.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.3.3-alpha.0) (2021-09-10)


Expand Down
8 changes: 4 additions & 4 deletions core/gatsby-theme-docz/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gatsby-theme-docz",
"version": "2.3.3-alpha.1",
"version": "2.4.0",
"description": "Gatsby theme created to use Docz",
"license": "MIT",
"author": "Pedro Nauck ([email protected])",
Expand All @@ -27,7 +27,7 @@
"@mdx-js/mdx": "^1.1.0",
"@mdx-js/react": "^1.0.27",
"@theme-ui/typography": "^0.2.5",
"babel-plugin-export-metadata": "2.3.3-alpha.0",
"babel-plugin-export-metadata": "^2.4.0",
"copy-text-to-clipboard": "^2.1.0",
"fs-extra": "^8.1.0",
"gatsby": "^2.13.27",
Expand All @@ -49,9 +49,9 @@
"react-helmet-async": "^1.0.4",
"react-live": "^2.2.1",
"react-resize-detector": "^4.2.1",
"rehype-docz": "2.3.3-alpha.0",
"rehype-docz": "^2.4.0",
"rehype-slug": "^2.0.3",
"remark-docz": "2.3.3-alpha.0",
"remark-docz": "^2.4.0",
"remark-frontmatter": "^1.3.2",
"theme-ui": "^0.2.38",
"to-style": "^1.3.3",
Expand Down
11 changes: 11 additions & 0 deletions core/rehype-docz/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.4.0) (2022-02-11)


### Bug Fixes

* **docz:** dependency issues ([#1647](https://github.com/doczjs/docz/issues/1647)) ([5bdca48](https://github.com/doczjs/docz/commit/5bdca48))





# [2.3.3-alpha.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.3.3-alpha.0) (2021-09-10)


Expand Down
4 changes: 2 additions & 2 deletions core/rehype-docz/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rehype-docz",
"version": "2.3.3-alpha.0",
"version": "2.4.0",
"description": "Rehype plugin used by docz",
"license": "MIT",
"main": "dist/index.js",
Expand All @@ -26,7 +26,7 @@
},
"dependencies": {
"brace": "^0.11.1",
"docz-utils": "2.3.3-alpha.0",
"docz-utils": "^2.4.0",
"hast-util-to-string": "^1.0.2",
"jsx-ast-utils": "^2.2.1",
"lodash": "^4.17.14",
Expand Down
11 changes: 11 additions & 0 deletions core/remark-docz/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.4.0) (2022-02-11)


### Bug Fixes

* **docz:** dependency issues ([#1647](https://github.com/doczjs/docz/issues/1647)) ([5bdca48](https://github.com/doczjs/docz/commit/5bdca48))





# [2.3.3-alpha.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.3.3-alpha.0) (2021-09-10)


Expand Down
2 changes: 1 addition & 1 deletion core/remark-docz/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "remark-docz",
"version": "2.3.3-alpha.0",
"version": "2.4.0",
"description": "Remark plugin used by docz",
"license": "MIT",
"main": "dist/index.js",
Expand Down
12 changes: 12 additions & 0 deletions dev-env/basic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Change Log

All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.4.0) (2022-02-11)


### Bug Fixes

* **dev-env/basic:** building and running development ([#1646](https://github.com/doczjs/docz/issues/1646)) ([7baaaf2](https://github.com/doczjs/docz/commit/7baaaf2))
* **docz:** dependency issues ([#1647](https://github.com/doczjs/docz/issues/1647)) ([5bdca48](https://github.com/doczjs/docz/commit/5bdca48))
2 changes: 1 addition & 1 deletion dev-env/basic/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "dev-env-basic",
"private": true,
"version": "2.3.3-alpha.0",
"version": "2.4.0",
"license": "MIT",
"files": [
"src/",
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"core/**/*",
"other-packages/**/*"
],
"version": "2.3.3-alpha.0",
"version": "2.4.0",
"npmClient": "yarn",
"useWorkspaces": true
}
12 changes: 12 additions & 0 deletions other-packages/babel-plugin-export-metadata/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.4.0) (2022-02-11)


### Bug Fixes

* **babel-plugin-export-metadata:** fix `hasOwnProperty` method call ([#1581](https://github.com/doczjs/docz/issues/1581)) ([9067ffb](https://github.com/doczjs/docz/commit/9067ffb))
* **docz:** dependency issues ([#1647](https://github.com/doczjs/docz/issues/1647)) ([5bdca48](https://github.com/doczjs/docz/commit/5bdca48))





# [2.3.3-alpha.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.3.3-alpha.0) (2021-09-10)


Expand Down
2 changes: 1 addition & 1 deletion other-packages/babel-plugin-export-metadata/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "babel-plugin-export-metadata",
"version": "2.3.3-alpha.0",
"version": "2.4.0",
"description": "Add file metadata for function declarations",
"license": "MIT",
"author": {
Expand Down
12 changes: 12 additions & 0 deletions other-packages/eslint-config-docz-js/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [2.4.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.4.0) (2022-02-11)


### Bug Fixes

* **docz:** dependency issues ([#1647](https://github.com/doczjs/docz/issues/1647)) ([5bdca48](https://github.com/doczjs/docz/commit/5bdca48))
* add functions never to eslint rule ([#1487](https://github.com/doczjs/docz/issues/1487)) ([becd589](https://github.com/doczjs/docz/commit/becd589))





# [2.3.3-alpha.0](https://github.com/doczjs/docz/compare/v2.3.2-alpha.0...v2.3.3-alpha.0) (2021-09-10)


Expand Down
2 changes: 1 addition & 1 deletion other-packages/eslint-config-docz-js/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "eslint-config-docz-js",
"version": "2.3.3-alpha.0",
"version": "2.4.0",
"description": "Eslint config of Docz for Javascript",
"license": "MIT",
"author": {
Expand Down
Loading

0 comments on commit 9ec9a3c

Please sign in to comment.