Skip to content

Commit 772592e

Browse files
committed
v8.1.0
1 parent 571d5c8 commit 772592e

File tree

23 files changed

+133
-13
lines changed

23 files changed

+133
-13
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)
7+
8+
9+
### Bug Fixes
10+
11+
* **cli:** fix default dimensions, prettier & svgo ([571d5c8](https://github.com/gregberge/svgr/commit/571d5c8bd18bc13c12eeb27a9052fa065aeb012e))
12+
* **config:** prefer cli config over rc config ([#845](https://github.com/gregberge/svgr/issues/845)) ([8b97248](https://github.com/gregberge/svgr/commit/8b972484266c45c7f8e4acce4fe2930a024fb4bc))
13+
* **react-native:** fix duplicate import ([#894](https://github.com/gregberge/svgr/issues/894)) ([e612b6a](https://github.com/gregberge/svgr/commit/e612b6a1a4e822178f1e15b82bd2991bf1e84cec))
14+
15+
16+
### Features
17+
18+
* **esm:** add support for svgo.config.cjs ([#879](https://github.com/gregberge/svgr/issues/879)) ([ae91e2e](https://github.com/gregberge/svgr/commit/ae91e2eacbe1156480c96219b993000eb1e7b9bf))
19+
20+
21+
22+
23+
624
## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)
725

826

examples/webpack/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)
7+
8+
**Note:** Version bump only for package @svgr/webpack-example
9+
10+
11+
12+
13+
614
## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)
715

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

examples/webpack/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
"start": "webpack serve"
66
},
77
"devDependencies": {
8-
"@svgr/webpack": "^8.0.1",
8+
"@svgr/webpack": "^8.1.0",
99
"html-webpack-plugin": "^5.5.0",
1010
"url-loader": "^4.1.1",
1111
"webpack": "^5.76.3",
1212
"webpack-cli": "^5.0.1",
1313
"webpack-dev-server": "^4.13.1"
1414
},
15-
"version": "8.0.1"
15+
"version": "8.1.0"
1616
}

lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"lerna": "2.9.0",
3-
"version": "8.0.1",
3+
"version": "8.1.0",
44
"npmClient": "pnpm",
55
"useWorkspaces": true
66
}

packages/babel-plugin-transform-react-native-svg/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)
7+
8+
9+
### Bug Fixes
10+
11+
* **react-native:** fix duplicate import ([#894](https://github.com/gregberge/svgr/issues/894)) ([e612b6a](https://github.com/gregberge/svgr/commit/e612b6a1a4e822178f1e15b82bd2991bf1e84cec))
12+
13+
14+
15+
16+
617
# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09)
718

819
**Note:** Version bump only for package @svgr/babel-plugin-transform-react-native-svg

packages/babel-plugin-transform-react-native-svg/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/babel-plugin-transform-react-native-svg",
33
"description": "Transform DOM elements into react-native-svg components",
4-
"version": "8.0.0",
4+
"version": "8.1.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {

packages/babel-preset/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)
7+
8+
**Note:** Version bump only for package @svgr/babel-preset
9+
10+
11+
12+
13+
614
# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09)
715

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

packages/babel-preset/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/babel-preset",
33
"description": "SVGR preset that apply transformations from config",
4-
"version": "8.0.0",
4+
"version": "8.1.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {

packages/cli/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)
7+
8+
9+
### Bug Fixes
10+
11+
* **cli:** fix default dimensions, prettier & svgo ([571d5c8](https://github.com/gregberge/svgr/commit/571d5c8bd18bc13c12eeb27a9052fa065aeb012e))
12+
13+
14+
### Features
15+
16+
* **esm:** add support for svgo.config.cjs ([#879](https://github.com/gregberge/svgr/issues/879)) ([ae91e2e](https://github.com/gregberge/svgr/commit/ae91e2eacbe1156480c96219b993000eb1e7b9bf))
17+
18+
19+
20+
21+
622
## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)
723

824
**Note:** Version bump only for package @svgr/cli

packages/cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/cli",
33
"description": "SVGR command line.",
4-
"version": "8.0.1",
4+
"version": "8.1.0",
55
"repository": "https://github.com/gregberge/svgr/tree/main/packages/cli",
66
"author": "Greg Bergé <[email protected]>",
77
"publishConfig": {

packages/core/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)
7+
8+
9+
### Bug Fixes
10+
11+
* **config:** prefer cli config over rc config ([#845](https://github.com/gregberge/svgr/issues/845)) ([8b97248](https://github.com/gregberge/svgr/commit/8b972484266c45c7f8e4acce4fe2930a024fb4bc))
12+
13+
14+
15+
16+
617
# [8.0.0](https://github.com/gregberge/svgr/compare/v7.0.0...v8.0.0) (2023-05-09)
718

819

packages/core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/core",
33
"description": "Transform SVG into React Components.",
4-
"version": "8.0.0",
4+
"version": "8.1.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {

packages/plugin-jsx/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)
7+
8+
**Note:** Version bump only for package @svgr/plugin-jsx
9+
10+
11+
12+
13+
614
## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)
715

816

packages/plugin-jsx/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/plugin-jsx",
33
"description": "Transform SVG into JSX",
4-
"version": "8.0.1",
4+
"version": "8.1.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {

packages/plugin-prettier/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)
7+
8+
**Note:** Version bump only for package @svgr/plugin-prettier
9+
10+
11+
12+
13+
614
## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)
715

816

packages/plugin-prettier/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/plugin-prettier",
33
"description": "Format code using Prettier",
4-
"version": "8.0.1",
4+
"version": "8.1.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {

packages/plugin-svgo/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)
7+
8+
9+
### Features
10+
11+
* **esm:** add support for svgo.config.cjs ([#879](https://github.com/gregberge/svgr/issues/879)) ([ae91e2e](https://github.com/gregberge/svgr/commit/ae91e2eacbe1156480c96219b993000eb1e7b9bf))
12+
13+
14+
15+
16+
617
## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)
718

819

packages/plugin-svgo/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/plugin-svgo",
33
"description": "Optimize SVG",
4-
"version": "8.0.1",
4+
"version": "8.1.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {

packages/rollup/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)
7+
8+
**Note:** Version bump only for package @svgr/rollup
9+
10+
11+
12+
13+
614
## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)
715

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

packages/rollup/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/rollup",
33
"description": "SVGR Rollup plugin.",
4-
"version": "8.0.1",
4+
"version": "8.1.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {

packages/webpack/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [8.1.0](https://github.com/gregberge/svgr/compare/v8.0.1...v8.1.0) (2023-08-15)
7+
8+
**Note:** Version bump only for package @svgr/webpack
9+
10+
11+
12+
13+
614
## [8.0.1](https://github.com/gregberge/svgr/compare/v8.0.0...v8.0.1) (2023-05-09)
715

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

packages/webpack/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/webpack",
33
"description": "SVGR webpack loader.",
4-
"version": "8.0.1",
4+
"version": "8.1.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {

pnpm-lock.yaml

+6-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)