Skip to content

Releases: vuesion/vuesion

v2.2.0

02 Mar 17:57
Compare
Choose a tag to compare

2.2.0 (2019-03-02)

Chores
  • storybook: align component structure with atomic design (#355) (a17a2627)
  • update README.md (3768a5b0)
Documentation Changes
  • update clean-up guide to include dashboard (b514d69d)
New Features
Bug Fixes
  • i18n: handle cached locales in client correctly (#356) (d591596a)

@vuesion - Phase 1

23 Feb 16:41
Compare
Choose a tag to compare

This release includes some refactorings regarding the new https://github.com/vuesion organisation. That means we will transition from devCrossNet/vue-starter to vuesion/vuesion in the next couple of weeks.

The first step in this direction is to change all the vue-starter-* packages to @vuesion/* packages and rename the folder .vue-starter to .vuesion.

If you dont use the update script please see the following commit to see the changes: e7b13ed

2.1.0 (2019-02-23)

Build System / Dependencies
Chores
Continuous Integration
Documentation Changes
New Features
Bug Fixes
Refactors

v2.0.2

26 Jan 23:42
Compare
Choose a tag to compare

2.0.2 (2019-01-26)

Bug Fixes

v2.0.1

21 Jan 17:36
Compare
Choose a tag to compare

2.0.1 (2019-01-21)

Chores
  • update vue-starter-packages (6bc71f14)
Documentation Changes
Bug Fixes
  • downgrade webpack because of breaking change (3c4f11af)

Mooncake

19 Jan 15:05
Compare
Choose a tag to compare

Breaking Changes

  • The UI library was completely re-written to evolve into a 100% customizable design system. If you never used the included components you should be able to upgrade your project from version 1.4.0 to 2.0.0.

  • The way to register vuex-modules changed because of lazy-loaded vuex modules:

./src/app/store

...
store.registerModule(['moduleName'], Module, { preserveState: true });
...

to:

./src/app/counter/Counter/Counter.vue

...
  beforeCreate() {
    registerModule('counter', CounterModule);
  },
  prefetch: (options: IPreLoad) => {
    registerModule('counter', CounterModule);
    ...
  },
...

If you don't need lazy-loaded vuex modules you can keep the module registration in ./src/app/store.ts. Add it to the bottom of the file:

...
registerModule('counter', CounterModule);
  • The npm run g script is removed

  • All dev-related code moved into a new CLI, the vue-starter-service

  • We added auto formatting with prettier

2.0.0 (2019-01-19)

Chores
Continuous Integration
Documentation Changes
New Features
Bug Fixes
  • data-table: sanitize regex (993001e3)
  • generator-cli: fix HttpService reference (f78df43a)
  • tslint: remove tslint autofix (#309) (e90d8ad1)
  • tests: get rid of wrapper:any (be7bb3fd)
  • vue-button:
  • vue-donut-chart: reset usedColors on data change (344a1ced)
  • vue-dropdown-menu: stop propagating events (0a891b73)
  • store: check for module state before deleting it (dc33eb32)
  • vue-data-table: remove margin from icon (044f9330)
Refactors
Read more

v1.4.0

27 Oct 16:28
Compare
Choose a tag to compare

1.4.0 (2018-10-27)

Chores
Documentation Changes
New Features
  • vue-input: add auto-focus for SPA's (05996b33)
  • vue-tooltip: add property to programmatically suppress tooltip (#263) (d625656c)
  • vue-data-table: add row to scoped slot; add sortable, fitContent (#256) (fb7ed420)
  • i18n: update portuguese translations (#253) (38655445)
Bug Fixes
Performance Improvements
  • add webpack performance budget (ee944cf2)
Tests

v1.3.0

06 Oct 15:51
Compare
Choose a tag to compare

1.3.0 (2018-10-06)

Chores
Documentation Changes
  • readme: add issue-hunt and all-contributors (#233) (2d84ee50)
  • add missing snipped to 3rd party integration guide (12b18047)
New Features
Refactors
Tests
  • vue-select: add test for disabled property (#239) (907dfd22)

v1.2.2

13 Sep 15:50
Compare
Choose a tag to compare

1.2.2 (2018-09-13)

Chores
Documentation Changes
  • add progressive-web-app section (#227) (3387b957)
  • add guide to integrate with 3rd party UI libraries (#225) (8b3357bc)
  • add a recommended architecture section (#222) (b7b575b4)
  • add tutorial how to prefetch data on the server side (#221) (9b162bb3)
Bug Fixes
Performance Improvements

v1.2.0

04 Aug 11:58
Compare
Choose a tag to compare

1.2.0 (2018-08-04)

Documentation Changes
New Features
Bug Fixes
  • vue-modal: change overlay event listener for Firefox (#205) (678954ad)
Refactors
  • routes: simplify error-handling code (#187) (a24d0961)
  • vuex: change default-state object to a factory function (#183) (66d31fb7)
Tests
  • e2e: add 404 HTTP status integration test (#200) (c65619ae)

v1.1.3

24 Jul 17:48
Compare
Choose a tag to compare

1.1.3 (2018-07-24)

Bug Fixes