# Meteor Upgrade

**URL:** https://publichappinessmovement.com/t/topic/1367
**Category:** Backend and Operations - Documentation
**Tags:** meteor, operations
**Created:** [15 July 2019 15:19 UTC](https://publichappinessmovement.com/t/topic/1367 "2019-07-15T15:19:57Z")
**Posts on this page:** 3
**Page:** 1

<div class="post-metadata">

### Author: ![tmcnulty](https://publichappinessmovement.com/user_avatar/publichappinessmovement.com/tmcnulty/32/953_2.png) [@tmcnulty](https://publichappinessmovement.com/u/tmcnulty)
#### Post date: [15 July 2019 15:19 UTC](https://publichappinessmovement.com/t/topic/1367/1 "2019-07-15T15:19:57Z")

</div>

We’ve all known meteor needs and upgrade for a while now.

My experience with Meteor is limited mostly to this project. I’m going to be running some experiments desk side to see what this’ll take. Operations like this are what we need a robust testing framework for.

---

<div class="post-metadata">

### Author: ![tmcnulty](https://publichappinessmovement.com/user_avatar/publichappinessmovement.com/tmcnulty/32/953_2.png) [@tmcnulty](https://publichappinessmovement.com/u/tmcnulty)
#### Post date: [15 August 2019 23:33 UTC](https://publichappinessmovement.com/t/topic/1367/2 "2019-08-15T23:33:23Z")

</div>

```
` While selecting package versions:
   error: Potentially incompatible change required to top-level dependency: mongo 1.4.7, was 1.6.2.
   Constraints on package "mongo":
   * mongo@1.4.2 <- top level
   * mongo@~1.4.2 <- top level
   * mongo@1.4.2 <- autoupdate 1.4.0 <- hot-code-push 1.0.4 <- meteor-base 1.3.0
   * mongo@1.1.14 <- service-configuration 1.0.11
   * mongo@1.3.0 <- accounts-base 1.4.2 <- alanning:roles 1.2.16
   * mongo@1.0.4 <- aldeed:collection2 3.0.0
   * mongo@1.1.2 <- alanning:roles 1.2.16
   * mongo@1.4.2 <- sylque:accounts-discourse 0.0.5

   Potentially incompatible change required to top-level dependency: standard-minifier-css 1.4.1, was 1.5.3.
   Constraints on package "standard-minifier-css":
   * standard-minifier-css@1.4.0 <- top level
   * standard-minifier-css@~1.4.0 <- top level

   Potentially incompatible change required to top-level dependency: standard-minifier-js 2.3.4, was 2.4.1.
   Constraints on package "standard-minifier-js":
   * standard-minifier-js@2.3.1 <- top level
   * standard-minifier-js@~2.3.1 <- top level

   To allow potentially incompatible changes to top-level dependencies, you must pass --allow-incompatible-update on the command line.`

```

Then running the update:

```
    10:36 $ meteor update --allow-incompatible-update
    fl-maps: updated to Meteor 1.8.1.
    Changes to your project's package version selections from updating package versions:

    accounts-base upgraded from 1.4.3 to 1.4.4
    aldeed:collection2 upgraded from 3.0.0 to 3.0.2
    ardatan:webpack upgraded from 0.0.5_7 to 0.0.13
    ardatan:webpack-dev-middleware upgraded from 0.0.5 to 0.0.13
    base64 upgraded from 1.0.11 to 1.0.12
    ecmascript upgraded from 0.12.4 to 0.12.7
    mdg:validated-method upgraded from 1.1.0 to 1.2.0
    mongo upgraded from 1.6.2 to 1.6.3
    sylque:accounts-discourse upgraded from 0.0.5 to 0.0.7
    webapp upgraded from 1.7.3 to 1.7.4

    Newer versions of the following indirect dependencies are available:
     * raix:eventemitter 0.1.3 (1.0.0 is available)
    These versions may not be compatible with your project.
    To update one or more of these packages to their latest
    compatible versions, pass their names to meteor update,
    or just run meteor update --all-packages

```

Starting the project:

```
10:37 $ meteor npm run start

\> fl-maps-react@ start /Users/mcnultt/Documents/Projects/fl-maps
\> meteor run --settings settings.json

[[[[[~/Documents/Projects/fl-maps]]]]]

=> Started proxy.
Unexpected mongo exit code 62. Restarting.
Unexpected mongo exit code 62. Restarting.
```

---

<div class="post-metadata">

### Author: ![ArtyS](https://publichappinessmovement.com/user_avatar/publichappinessmovement.com/artys/32/288_2.png) [@ArtyS](https://publichappinessmovement.com/u/ArtyS)
#### Post date: [16 August 2019 23:25 UTC](https://publichappinessmovement.com/t/topic/1367/3 "2019-08-16T23:25:03Z")

</div>

The above exit code 62 is what I was getting as well - necessitated restarting the db (wiping it); or in our case probably patching it as discussed 🤞
