Skip to content

Latest commit

 

History

History
74 lines (47 loc) · 3.17 KB

CHANGELOG.md

File metadata and controls

74 lines (47 loc) · 3.17 KB

2.0.3 (Oct 22, 2015)

  • Fix Listen usage, to support Vagrant 1.7.3, which updated its dependency from 2.8.0 to 3.0.2 [52d9f84]

2.0.2 (May 7, 2015)

  • Load nvm in non-interactive shells, install bundler in provisioner [fde6873]

2.0.1 (May 7, 2015)

2.0.0 (May 7, 2015)

  • Update start messages to reflect new script names [565ac76]
  • Use site's node and npm versions from package.json [a3f4c19]

BREAKING CHANGES:

  • The default Node version goes from 0.10.22 to stable
  • The default npm version goes from 1.3.14 to ^2.0.0

1.0.0 (Jan 14, 2015)

  • Use npm scripts instead of grunt [a626484]
  • Create/update site from specific tag on cloned template repo [1b3075b]

BREAKING CHANGES:

  • vagrant-solidus no longer manages the Solidus sites using the grunt command line. Instead, each site is started directly with its local Solidus bin (./node_modules/.bin/solidus). For sites that need to compile assets and run a file watcher, new scripts need to be added to their package.json files. For example, existing grunt tasks can still be used, but they need to be called directly with the two new special npm scripts:
{
  "scripts": {
    "build": "./node_modules/.bin/grunt build",
    "watch": "./node_modules/.bin/grunt watch"
  },
  "devDependencies": {
    "grunt": "~0.4.1",
    "grunt-cli": "~0.1.13"
  }
}

0.2.1 (Nov 19, 2014)

  • Restore Vagrant >1.6.3 support [460291e]

0.2.0 (Sep 11, 2014)

0.1.0 (Aug 4, 2014)

  • Add support for Solidus log server [8d5ffb8]

0.0.2 (May 22, 2014)

0.0.1 (May 22, 2014)

  • Initial release

BREAKING CHANGES:

  • If you have an old version of solidus-devbox, it's simplest to reset the whole box (this will not remove your sites' files):
$ vagrant destroy
$ vagrant plugin install vagrant-solidus
$ vagrant solidus-box init # Make sure to reapply your custom changes to the new Vagrantfile
$ vagrant up