Skip to content

Commit fd423ae

Browse files
committedOct 1, 2022
v6.4.0
1 parent 464ec5f commit fd423ae

16 files changed

+115
-18
lines changed
 

‎CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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+
# [6.4.0](https://github.com/gregberge/svgr/compare/v6.3.1...v6.4.0) (2022-10-01)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** add babel-preset to core dependencies ([#782](https://github.com/gregberge/svgr/issues/782)) ([464ec5f](https://github.com/gregberge/svgr/commit/464ec5fe81c6ba98be5a26923f3ad19fc2ef7fc6))
12+
13+
14+
### Features
15+
16+
* **a11y:** add attribute role="img" to the svg element ([#750](https://github.com/gregberge/svgr/issues/750)) ([8b9edc4](https://github.com/gregberge/svgr/commit/8b9edc4e712f3adbd9f9c503dfc5e4d627f763cd))
17+
* support spaces in file names ([#779](https://github.com/gregberge/svgr/issues/779)) ([6ee639a](https://github.com/gregberge/svgr/commit/6ee639a039a0001d3b97fef024f2bd0c3e107182))
18+
19+
20+
21+
22+
623
## [6.3.1](https://github.com/gregberge/svgr/compare/v6.3.0...v6.3.1) (2022-07-22)
724

825

‎lerna.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "6.3.1",
6+
"version": "6.4.0",
77
"useWorkspaces": true
88
}

‎packages/babel-preset/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+
# [6.4.0](https://github.com/gregberge/svgr/compare/v6.3.1...v6.4.0) (2022-10-01)
7+
8+
9+
### Features
10+
11+
* **a11y:** add attribute role="img" to the svg element ([#750](https://github.com/gregberge/svgr/issues/750)) ([8b9edc4](https://github.com/gregberge/svgr/commit/8b9edc4e712f3adbd9f9c503dfc5e4d627f763cd))
12+
13+
14+
15+
16+
617
## [6.3.1](https://github.com/gregberge/svgr/compare/v6.3.0...v6.3.1) (2022-07-22)
718

819

‎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": "6.3.1",
4+
"version": "6.4.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {

‎packages/cli/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+
# [6.4.0](https://github.com/gregberge/svgr/compare/v6.3.1...v6.4.0) (2022-10-01)
7+
8+
9+
### Features
10+
11+
* **a11y:** add attribute role="img" to the svg element ([#750](https://github.com/gregberge/svgr/issues/750)) ([8b9edc4](https://github.com/gregberge/svgr/commit/8b9edc4e712f3adbd9f9c503dfc5e4d627f763cd))
12+
13+
14+
15+
16+
617
## [6.3.1](https://github.com/gregberge/svgr/compare/v6.3.0...v6.3.1) (2022-07-22)
718

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

‎packages/cli/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/cli",
33
"description": "SVGR command line.",
4-
"version": "6.3.1",
4+
"version": "6.4.0",
55
"repository": "https://github.com/gregberge/svgr/tree/master/packages/cli",
66
"author": "Greg Bergé <berge.greg@gmail.com>",
77
"publishConfig": {
@@ -31,8 +31,8 @@
3131
"prepublishOnly": "npm run reset && npm run build"
3232
},
3333
"dependencies": {
34-
"@svgr/core": "^6.3.1",
35-
"@svgr/plugin-jsx": "^6.3.1",
34+
"@svgr/core": "^6.4.0",
35+
"@svgr/plugin-jsx": "^6.4.0",
3636
"@svgr/plugin-prettier": "^6.3.1",
3737
"@svgr/plugin-svgo": "^6.3.1",
3838
"camelcase": "^6.2.0",

‎packages/core/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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+
# [6.4.0](https://github.com/gregberge/svgr/compare/v6.3.1...v6.4.0) (2022-10-01)
7+
8+
9+
### Bug Fixes
10+
11+
* **deps:** add babel-preset to core dependencies ([#782](https://github.com/gregberge/svgr/issues/782)) ([464ec5f](https://github.com/gregberge/svgr/commit/464ec5fe81c6ba98be5a26923f3ad19fc2ef7fc6))
12+
13+
14+
### Features
15+
16+
* **a11y:** add attribute role="img" to the svg element ([#750](https://github.com/gregberge/svgr/issues/750)) ([8b9edc4](https://github.com/gregberge/svgr/commit/8b9edc4e712f3adbd9f9c503dfc5e4d627f763cd))
17+
* support spaces in file names ([#779](https://github.com/gregberge/svgr/issues/779)) ([6ee639a](https://github.com/gregberge/svgr/commit/6ee639a039a0001d3b97fef024f2bd0c3e107182))
18+
19+
20+
21+
22+
623
## [6.3.1](https://github.com/gregberge/svgr/compare/v6.3.0...v6.3.1) (2022-07-22)
724

825

‎packages/core/package.json

+3-3
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": "6.3.1",
4+
"version": "6.4.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {
@@ -38,8 +38,8 @@
3838
"prepublishOnly": "npm run reset && npm run build"
3939
},
4040
"dependencies": {
41-
"@svgr/babel-preset": "^6.3.1",
42-
"@svgr/plugin-jsx": "^6.3.1",
41+
"@svgr/babel-preset": "^6.4.0",
42+
"@svgr/plugin-jsx": "^6.4.0",
4343
"camelcase": "^6.2.0",
4444
"cosmiconfig": "^7.0.1"
4545
},

‎packages/hast-util-to-babel-ast/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+
# [6.4.0](https://github.com/gregberge/svgr/compare/v6.3.1...v6.4.0) (2022-10-01)
7+
8+
**Note:** Version bump only for package @svgr/hast-util-to-babel-ast
9+
10+
11+
12+
13+
614
## [6.3.1](https://github.com/gregberge/svgr/compare/v6.3.0...v6.3.1) (2022-07-22)
715

816

‎packages/hast-util-to-babel-ast/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/hast-util-to-babel-ast",
33
"description": "Transform HAST to Babel AST (JSX)",
4-
"version": "6.3.1",
4+
"version": "6.4.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {

‎packages/plugin-jsx/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+
# [6.4.0](https://github.com/gregberge/svgr/compare/v6.3.1...v6.4.0) (2022-10-01)
7+
8+
9+
### Features
10+
11+
* **a11y:** add attribute role="img" to the svg element ([#750](https://github.com/gregberge/svgr/issues/750)) ([8b9edc4](https://github.com/gregberge/svgr/commit/8b9edc4e712f3adbd9f9c503dfc5e4d627f763cd))
12+
13+
14+
15+
16+
617
## [6.3.1](https://github.com/gregberge/svgr/compare/v6.3.0...v6.3.1) (2022-07-22)
718

819

‎packages/plugin-jsx/package.json

+3-3
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": "6.3.1",
4+
"version": "6.4.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {
@@ -38,8 +38,8 @@
3838
},
3939
"dependencies": {
4040
"@babel/core": "^7.18.5",
41-
"@svgr/babel-preset": "^6.3.1",
42-
"@svgr/hast-util-to-babel-ast": "^6.3.1",
41+
"@svgr/babel-preset": "^6.4.0",
42+
"@svgr/hast-util-to-babel-ast": "^6.4.0",
4343
"svg-parser": "^2.0.4"
4444
}
4545
}

‎packages/rollup/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+
# [6.4.0](https://github.com/gregberge/svgr/compare/v6.3.1...v6.4.0) (2022-10-01)
7+
8+
9+
### Features
10+
11+
* **a11y:** add attribute role="img" to the svg element ([#750](https://github.com/gregberge/svgr/issues/750)) ([8b9edc4](https://github.com/gregberge/svgr/commit/8b9edc4e712f3adbd9f9c503dfc5e4d627f763cd))
12+
13+
14+
15+
16+
617
## [6.3.1](https://github.com/gregberge/svgr/compare/v6.3.0...v6.3.1) (2022-07-22)
718

819

‎packages/rollup/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/rollup",
33
"description": "SVGR Rollup plugin.",
4-
"version": "6.3.1",
4+
"version": "6.4.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {
@@ -44,8 +44,8 @@
4444
"@babel/preset-react": "^7.17.12",
4545
"@babel/preset-typescript": "^7.17.12",
4646
"@rollup/pluginutils": "^4.2.1",
47-
"@svgr/core": "^6.3.1",
48-
"@svgr/plugin-jsx": "^6.3.1",
47+
"@svgr/core": "^6.4.0",
48+
"@svgr/plugin-jsx": "^6.4.0",
4949
"@svgr/plugin-svgo": "^6.3.1"
5050
},
5151
"devDependencies": {

‎packages/webpack/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+
# [6.4.0](https://github.com/gregberge/svgr/compare/v6.3.1...v6.4.0) (2022-10-01)
7+
8+
9+
### Features
10+
11+
* **a11y:** add attribute role="img" to the svg element ([#750](https://github.com/gregberge/svgr/issues/750)) ([8b9edc4](https://github.com/gregberge/svgr/commit/8b9edc4e712f3adbd9f9c503dfc5e4d627f763cd))
12+
13+
14+
15+
16+
617
## [6.3.1](https://github.com/gregberge/svgr/compare/v6.3.0...v6.3.1) (2022-07-22)
718

819

‎packages/webpack/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@svgr/webpack",
33
"description": "SVGR webpack loader.",
4-
"version": "6.3.1",
4+
"version": "6.4.0",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",
77
"exports": {
@@ -43,8 +43,8 @@
4343
"@babel/preset-env": "^7.18.2",
4444
"@babel/preset-react": "^7.17.12",
4545
"@babel/preset-typescript": "^7.17.12",
46-
"@svgr/core": "^6.3.1",
47-
"@svgr/plugin-jsx": "^6.3.1",
46+
"@svgr/core": "^6.4.0",
47+
"@svgr/plugin-jsx": "^6.4.0",
4848
"@svgr/plugin-svgo": "^6.3.1"
4949
},
5050
"devDependencies": {

1 commit comments

Comments
 (1)

vercel[bot] commented on Oct 1, 2022

@vercel[bot]

Successfully deployed to the following URLs:

svgr – ./

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

Please sign in to comment.