Migrating to Meteor 2.14
How to migrate your application to Meteor 2.14.
Most of the new features in Meteor 2.14 are either applied directly behind the scenes (in a backwards compatible manner) or are opt-in. For a complete breakdown of the changes, please refer to the changelog.
Changes in Meteor 2.14
Cordova Package
Cordova has been updated to v12.0.1 for Android and v7.0.1 for iOS. This requires a few changes to your Cordova project:
- The
splash-screen
package has removed thecordova-plugin-splashscreen
is now oncordova-android
core, so we have removed the dependency from thesplash-screen
package. As a result we are dropping the support for dark mode splash screen on Android. To create this now you need to create two themes on yourconfig.xml
file. You can follow in their docs how to update your splash screen
Your .mobile-config.js
file should have the following preferences:
App.setPreference('android-targetSdkVersion', '33')
App.setPreference('android-minSdkVersion', '28')
Migrating from a version older than 2.13?
If you’re migrating from a version of Meteor older than Meteor 2.13, there may be important considerations not listed in this guide. Please review the older migration guides for details:
- Migrating to Meteor 2.13 (from 2.12)
- Migrating to Meteor 2.12 (from 2.11)
- Migrating to Meteor 2.11 (from 2.10)
- Migrating to Meteor 2.10 (from 2.9)
- Migrating to Meteor 2.9 (from 2.8)
- Migrating to Meteor 2.8 (from 2.7)
- Migrating to Meteor 2.7 (from 2.6)
- Migrating to Meteor 2.6 (from 2.5)
- Migrating to Meteor 2.5 (from 2.4)
- Migrating to Meteor 2.4 (from 2.3)
- Migrating to Meteor 2.3 (from 2.2)
- Migrating to Meteor 2.2 (from 2.0)
- Migrating to Meteor 2.0 (from 1.12)
- Migrating to Meteor 1.12 (from 1.11)
- Migrating to Meteor 1.11 (from 1.10.2)
- Migrating to Meteor 1.10.2 (from 1.10)
- Migrating to Meteor 1.10 (from 1.9.3)
- Migrating to Meteor 1.9.3 (from 1.9)
- Migrating to Meteor 1.9 (from 1.8.3)
- Migrating to Meteor 1.8.3 (from 1.8.2)
- Migrating to Meteor 1.8.2 (from 1.8)
- Migrating to Meteor 1.8 (from 1.7)
- Migrating to Meteor 1.7 (from 1.6)
- Migrating to Meteor 1.6 (from 1.5)
- Migrating to Meteor 1.5 (from 1.4)
- Migrating to Meteor 1.4 (from 1.3)
- Migrating to Meteor 1.3 (from 1.2)