Skip to content

Commit

Permalink
v7.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gregberge committed Mar 24, 2023
1 parent f751da8 commit 3b04a92
Show file tree
Hide file tree
Showing 41 changed files with 331 additions and 104 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24)


### Features

* 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)
* remove @svgr/plugin-jsx from core ([a0f078d](https://github.com/gregberge/svgr/commit/a0f078db13936800a32c14ade08b670a14b5a886))
* upgrade to svgo v3 ([#798](https://github.com/gregberge/svgr/issues/798)) ([21b6209](https://github.com/gregberge/svgr/commit/21b6209ef34c51cc0313901f31061afe587ab29b))


### BREAKING CHANGES

* plugin-jsx is no longer included by default in core
* svgr now requires Node.js v14+





## [6.5.1](https://github.com/gregberge/svgr/compare/v6.5.0...v6.5.1) (2022-10-27)

### Reverts
Expand Down
8 changes: 8 additions & 0 deletions examples/mocha-esm/CHANGELOG.md
@@ -0,0 +1,8 @@
# Change Log

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

# [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24)

**Note:** Version bump only for package @svgr/mocha-esm-example
3 changes: 2 additions & 1 deletion examples/mocha-esm/package.json
Expand Up @@ -7,5 +7,6 @@
},
"devDependencies": {
"mocha": "^10.2.0"
}
},
"version": "7.0.0"
}
8 changes: 8 additions & 0 deletions examples/webpack/CHANGELOG.md
@@ -0,0 +1,8 @@
# Change Log

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

# [7.0.0](https://github.com/gregberge/svgr/compare/v6.5.1...v7.0.0) (2023-03-24)

**Note:** Version bump only for package @svgr/webpack-example
5 changes: 3 additions & 2 deletions examples/webpack/package.json
Expand Up @@ -5,10 +5,11 @@
"start": "webpack serve"
},
"devDependencies": {
"@svgr/webpack": "*",
"@svgr/webpack": "^7.0.0",
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.76.3",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
}
},
"version": "7.0.0"
}
7 changes: 5 additions & 2 deletions lerna.json
@@ -1,6 +1,9 @@
{
"lerna": "2.9.0",
"packages": ["packages/*", "examples/*"],
"version": "6.5.1",
"packages": [
"packages/*",
"examples/*"
],
"version": "7.0.0",
"useWorkspaces": true
}

1 comment on commit 3b04a92

@vercel
Copy link

@vercel vercel bot commented on 3b04a92 Mar 24, 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-gregberge.vercel.app
api.react-svgr.com
svgr-git-main-gregberge.vercel.app

Please sign in to comment.