Skip to content

Releases: sanchezzzhak/node-moleculer-web

1.1.7

29 Aug 14:22
Compare
Choose a tag to compare

Remove cache for route option
Added settings for send statics files and fix cork.write

Full Changelog: 1.1.6...1.1.7

1.1.6

29 Aug 07:34
Compare
Choose a tag to compare

Update jsDocs
Added JWT component to AbstractController
Update dependencies: uWebSockets.js to v20.48.0 version

Full Changelog: 1.1.5...1.1.6

1.1.5

06 Aug 13:59
Compare
Choose a tag to compare

Full Changelog: 1.1.3...1.1.5

1.1.3

27 Jun 08:54
Compare
Choose a tag to compare

fix get cookie value
Full Changelog: 1.1.2...1.1.3

1.1.2

26 Jun 16:07
Compare
Choose a tag to compare

feat: added cookie read and write for controller
example:

class Home extends AbstractController {

   async write() {
      this.initRequest();
      this.cookieData.set('my-cookie-value', 'Jon')
      
      return this.asJson({
         name: this.cookieData.get('my-cookie-value')
      })
   }
   
   async read() {
      this.initRequest();
 
      return this.asJson({
         name: this.cookieData.get('my-cookie-value', 'not set cookie name')
      })
   }
 
}

fix: method asJson
feat: update types-script annotations

1.1.1

24 Jun 14:59
Compare
Choose a tag to compare

Full Changelog: 1.1.0...1.1.1

1.1.0

24 Jun 14:48
Compare
Choose a tag to compare

added support nested query for this.requestData.query object

Full Changelog: 1.0.0...1.1.0

Version 1.0.0

14 Mar 11:10
Compare
Choose a tag to compare
fix typo package name