v7.0.0-rc.1

This commit is contained in:
ionitron
2023-03-08 15:35:13 +00:00
parent 98db1be475
commit 87c9012e22
26 changed files with 1110 additions and 37 deletions

View File

@ -3,6 +3,59 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
# [7.0.0-rc.1](https://github.com/ionic-team/ionic/compare/v6.6.1...v7.0.0-rc.1) (2023-03-08)
# [7.0.0-rc.0](https://github.com/ionic-team/ionic/compare/v7.0.0-beta.6...v7.0.0-rc.0) (2023-03-01)
# [7.0.0-beta.6](https://github.com/ionic-team/ionic/compare/v6.6.0...v7.0.0-beta.6) (2023-03-01)
### Bug Fixes
* **angular:** devs can import ionic/angular styles in css ([#26875](https://github.com/ionic-team/ionic/issues/26875)) ([0d2fac2](https://github.com/ionic-team/ionic/commit/0d2fac2eefd610271fbbbecc36e844b6b289dfee))
# [7.0.0-beta.5](https://github.com/ionic-team/ionic/compare/v7.0.0-beta.4...v7.0.0-beta.5) (2023-02-27)
# [7.0.0-beta.4](https://github.com/ionic-team/ionic/compare/v6.5.6...v7.0.0-beta.4) (2023-02-22)
# [7.0.0-beta.3](https://github.com/ionic-team/ionic/compare/v6.5.4...v7.0.0-beta.3) (2023-02-15)
# [7.0.0-beta.2](https://github.com/ionic-team/ionic/compare/v6.5.3...v7.0.0-beta.2) (2023-02-08)
# [7.0.0-beta.1](https://github.com/ionic-team/ionic/compare/v6.5.2...v7.0.0-beta.1) (2023-02-01)
# [7.0.0-beta.0](https://github.com/ionic-team/ionic/compare/v6.5.1...v7.0.0-beta.0) (2023-01-25)
### Code Refactoring
* **vue:** only ship es modules ([#26054](https://github.com/ionic-team/ionic/issues/26054)) ([86bbed0](https://github.com/ionic-team/ionic/commit/86bbed07fc51fa1e3771f0198211c5064606e5bb)), closes [#25104](https://github.com/ionic-team/ionic/issues/25104)
### BREAKING CHANGES
* **vue:** `@ionic/vue` and `@ionic/vue-router` no longer ship a CommonJS entry point. Instead, only an ES Module entry point is provided for improved compatibility with Vite.
## [6.6.1](https://github.com/ionic-team/ionic/compare/v6.6.0...v6.6.1) (2023-03-08)

View File

@ -1,15 +1,15 @@
{
"name": "@ionic/vue-router",
"version": "7.0.0-rc.0",
"version": "7.0.0-rc.1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@ionic/vue-router",
"version": "7.0.0-rc.0",
"version": "7.0.0-rc.1",
"license": "MIT",
"dependencies": {
"@ionic/vue": "^7.0.0-rc.0"
"@ionic/vue": "^7.0.0-rc.1"
},
"devDependencies": {
"@ionic/eslint-config": "^0.3.0",

View File

@ -1,6 +1,6 @@
{
"name": "@ionic/vue-router",
"version": "7.0.0-rc.0",
"version": "7.0.0-rc.1",
"description": "Vue Router integration for @ionic/vue",
"scripts": {
"test.spec": "jest",
@ -45,7 +45,7 @@
},
"homepage": "https://github.com/ionic-team/ionic#readme",
"dependencies": {
"@ionic/vue": "^7.0.0-rc.0"
"@ionic/vue": "^7.0.0-rc.1"
},
"devDependencies": {
"@ionic/eslint-config": "^0.3.0",