Skip to content

Commit 3b04a92

Browse files
committed
v7.0.0
1 parent f751da8 commit 3b04a92

File tree

41 files changed

+331
-104
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+331
-104
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
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+
# [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24)
7+
8+
9+
### Features
10+
11+
* allow specifying `jsxRuntimeImport` in config ([86bb86f](https://github.com/gregberge/svgr/commit/86bb86f47748618f729742e56199355d9c0bc518)), closes [#801](https://github.com/gregberge/svgr/issues/801) [#801](https://github.com/gregberge/svgr/issues/801)
12+
* remove @svgr/plugin-jsx from core ([a0f078d](https://github.com/gregberge/svgr/commit/a0f078db13936800a32c14ade08b670a14b5a886))
13+
* upgrade to svgo v3 ([#798](https://github.com/gregberge/svgr/issues/798)) ([21b6209](https://github.com/gregberge/svgr/commit/21b6209ef34c51cc0313901f31061afe587ab29b))
14+
15+
16+
### BREAKING CHANGES
17+
18+
* plugin-jsx is no longer included by default in core
19+
* svgr now requires Node.js v14+
20+
21+
22+
23+
24+
625
## [6.5.1](https://github.com/gregberge/svgr/compare/v6.5.0...v6.5.1) (2022-10-27)
726

827
### Reverts

examples/mocha-esm/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24)
7+
8+
**Note:** Version bump only for package @svgr/mocha-esm-example

examples/mocha-esm/package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@
77
},
88
"devDependencies": {
99
"mocha": "^10.2.0"
10-
}
10+
},
11+
"version": "7.0.0"
1112
}

examples/webpack/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24)
7+
8+
**Note:** Version bump only for package @svgr/webpack-example

examples/webpack/package.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@
55
"start": "webpack serve"
66
},
77
"devDependencies": {
8-
"@svgr/webpack": "*",
8+
"@svgr/webpack": "^7.0.0",
99
"html-webpack-plugin": "^5.5.0",
1010
"webpack": "^5.76.3",
1111
"webpack-cli": "^5.0.1",
1212
"webpack-dev-server": "^4.13.1"
13-
}
13+
},
14+
"version": "7.0.0"
1415
}

lerna.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
{
22
"lerna": "2.9.0",
3-
"packages": ["packages/*", "examples/*"],
4-
"version": "6.5.1",
3+
"packages": [
4+
"packages/*",
5+
"examples/*"
6+
],
7+
"version": "7.0.0",
58
"useWorkspaces": true
69
}

0 commit comments

Comments
 (0)