Skip to content

Commit

Permalink
v8.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Aug 15, 2023
1 parent 571d5c8 commit 772592e
Show file tree
Hide file tree
Showing 23 changed files with 133 additions and 13 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
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.

# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)


### Bug Fixes

* **cli:** fix default dimensions, prettier & svgo ([571d5c8](https://github.com/gregberge/svgr/commit/571d5c8bd18bc13c12eeb27a9052fa065aeb012e))
* **config:** prefer cli config over rc config ([#845](https://github.com/gregberge/svgr/issues/845)) ([8b97248](https://github.com/gregberge/svgr/commit/8b972484266c45c7f8e4acce4fe2930a024fb4bc))
* **react-native:** fix duplicate import ([#894](https://github.com/gregberge/svgr/issues/894)) ([e612b6a](https://github.com/gregberge/svgr/commit/e612b6a1a4e822178f1e15b82bd2991bf1e84cec))


### Features

* **esm:** add support for svgo.config.cjs ([#879](https://github.com/gregberge/svgr/issues/879)) ([ae91e2e](https://github.com/gregberge/svgr/commit/ae91e2eacbe1156480c96219b993000eb1e7b9bf))





## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)


Expand Down
8 changes: 8 additions & 0 deletions examples/webpack/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)

**Note:** Version bump only for package @svgr/webpack-example





## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)

**Note:** Version bump only for package @svgr/webpack-example
Expand Down
4 changes: 2 additions & 2 deletions examples/webpack/package.json
Expand Up @@ -5,12 +5,12 @@
"start": "webpack serve"
},
"devDependencies": {
"@svgr/webpack": "^8.0.1",
"@svgr/webpack": "^8.1.0",
"html-webpack-plugin": "^5.5.0",
"url-loader": "^4.1.1",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
},
"version": "8.0.1"
"version": "8.1.0"
}
2 changes: 1 addition & 1 deletion lerna.json
@@ -1,6 +1,6 @@
{
"lerna": "2.9.0",
"version": "8.0.1",
"version": "8.1.0",
"npmClient": "pnpm",
"useWorkspaces": true
}
11 changes: 11 additions & 0 deletions packages/babel-plugin-transform-react-native-svg/CHANGELOG.md
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.

# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)


### Bug Fixes

* **react-native:** fix duplicate import ([#894](https://github.com/gregberge/svgr/issues/894)) ([e612b6a](https://github.com/gregberge/svgr/commit/e612b6a1a4e822178f1e15b82bd2991bf1e84cec))





# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09)

**Note:** Version bump only for package @svgr/babel-plugin-transform-react-native-svg
Expand Down
@@ -1,7 +1,7 @@
{
"name": "@svgr/babel-plugin-transform-react-native-svg",
"description": "Transform DOM elements into react-native-svg components",
"version": "8.0.0",
"version": "8.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
Expand Down
8 changes: 8 additions & 0 deletions packages/babel-preset/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)

**Note:** Version bump only for package @svgr/babel-preset





# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09)

**Note:** Version bump only for package @svgr/babel-preset
Expand Down
2 changes: 1 addition & 1 deletion packages/babel-preset/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/babel-preset",
"description": "SVGR preset that apply transformations from config",
"version": "8.0.0",
"version": "8.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
Expand Down
16 changes: 16 additions & 0 deletions packages/cli/CHANGELOG.md
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)


### Bug Fixes

* **cli:** fix default dimensions, prettier & svgo ([571d5c8](https://github.com/gregberge/svgr/commit/571d5c8bd18bc13c12eeb27a9052fa065aeb012e))


### Features

* **esm:** add support for svgo.config.cjs ([#879](https://github.com/gregberge/svgr/issues/879)) ([ae91e2e](https://github.com/gregberge/svgr/commit/ae91e2eacbe1156480c96219b993000eb1e7b9bf))





## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)

**Note:** Version bump only for package @svgr/cli
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/cli",
"description": "SVGR command line.",
"version": "8.0.1",
"version": "8.1.0",
"repository": "https://github.com/gregberge/svgr/tree/main/packages/cli",
"author": "Greg Bergé <berge.greg@gmail.com>",
"publishConfig": {
Expand Down
11 changes: 11 additions & 0 deletions packages/core/CHANGELOG.md
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.

# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)


### Bug Fixes

* **config:** prefer cli config over rc config ([#845](https://github.com/gregberge/svgr/issues/845)) ([8b97248](https://github.com/gregberge/svgr/commit/8b972484266c45c7f8e4acce4fe2930a024fb4bc))





# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09)


Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/core",
"description": "Transform SVG into React Components.",
"version": "8.0.0",
"version": "8.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
Expand Down
8 changes: 8 additions & 0 deletions packages/plugin-jsx/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)

**Note:** Version bump only for package @svgr/plugin-jsx





## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)


Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-jsx/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/plugin-jsx",
"description": "Transform SVG into JSX",
"version": "8.0.1",
"version": "8.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
Expand Down
8 changes: 8 additions & 0 deletions packages/plugin-prettier/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)

**Note:** Version bump only for package @svgr/plugin-prettier





## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)


Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-prettier/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/plugin-prettier",
"description": "Format code using Prettier",
"version": "8.0.1",
"version": "8.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
Expand Down
11 changes: 11 additions & 0 deletions packages/plugin-svgo/CHANGELOG.md
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.

# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)


### Features

* **esm:** add support for svgo.config.cjs ([#879](https://github.com/gregberge/svgr/issues/879)) ([ae91e2e](https://github.com/gregberge/svgr/commit/ae91e2eacbe1156480c96219b993000eb1e7b9bf))





## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)


Expand Down
2 changes: 1 addition & 1 deletion packages/plugin-svgo/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/plugin-svgo",
"description": "Optimize SVG",
"version": "8.0.1",
"version": "8.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
Expand Down
8 changes: 8 additions & 0 deletions packages/rollup/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)

**Note:** Version bump only for package @svgr/rollup





## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)

**Note:** Version bump only for package @svgr/rollup
Expand Down
2 changes: 1 addition & 1 deletion packages/rollup/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/rollup",
"description": "SVGR Rollup plugin.",
"version": "8.0.1",
"version": "8.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
Expand Down
8 changes: 8 additions & 0 deletions packages/webpack/CHANGELOG.md
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)

**Note:** Version bump only for package @svgr/webpack





## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)

**Note:** Version bump only for package @svgr/webpack
Expand Down
2 changes: 1 addition & 1 deletion packages/webpack/package.json
@@ -1,7 +1,7 @@
{
"name": "@svgr/webpack",
"description": "SVGR webpack loader.",
"version": "8.0.1",
"version": "8.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
Expand Down
7 changes: 6 additions & 1 deletion pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 comment on commit 772592e

@vercel
Copy link

@vercel vercel bot commented on 772592e Aug 15, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

svgr – ./

svgr-git-main-gregberge.vercel.app
svgr-gregberge.vercel.app
api.react-svgr.com

Please sign in to comment.