Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 1.38 KB

CHANGELOG.md

File metadata and controls

40 lines (32 loc) · 1.38 KB

v1.0.4 [2017-04-09]

  1. Fix versions in Readme and Changelog

v1.0.3 [2017-04-09]

  1. Fix webpack.dev
  2. Fix returning URLS const - now its name is uppercase
  3. Services private fields now is acceptable from Symbol.for() and created automatically from static defaultValues
  4. Library sample-app has a view with comparison of react-singleton-state and redux with code examples

v1.0.2 [2017-04-04]

  1. Fix bundle output
  2. Replace some packages from dependencies to devDependencies

v1.0.1 [2017-04-04] Output Error

  1. Add CHANGELOG.md
  2. Add sample app
  3. New webpack configurations
  4. Additional files and directories in package.json files
  5. Output npm file is bundeled now and has now need to use object-rest-spread and transform-class-properties pl
  6. Service.getClass() is deprecated and will be removed sinse v1.1.0

v1.0.0 [2017-04-02]

  1. Add class Provider with methods:
  • defineServices();
  • defineUrls().
  1. Add function providerExporter(Provider).

  2. Add class Service with methods:

  • get serviceName();
  • toDefault();
  • defaultAll();
  • getClass(Service).
  1. Add class Component with methods:
  • __injectServices(arrOfServices [, InjectMerging])_;
  • __bindMethods(strMethod / arrOfMethodAndItsArguments)_;
  • reRender(Service / Service.serviceName).
  1. Add enum InjectMerging with values: BEFORE, AFTER.