Skip to content

Releases: JasonBoy/wechat-jssdk

v3.1.0-rc.0

23 Mar 06:07
Compare
Choose a tag to compare
v3.1.0-rc.0 Pre-release
Pre-release
  • 🔑Add sandbox key invalid retry
  • 💂Extract wechat config into separate file
  • 📝 Docs updates

v3.1.0-alpha.4

21 Mar 11:13
Compare
Choose a tag to compare
v3.1.0-alpha.4 Pre-release
Pre-release
  • 📎checkout the #20
  • 🥂 almost RC 😆

v3.0.12

19 Mar 01:57
Compare
Choose a tag to compare
  • 🐛 global token flush fix, now flush immediately when update the global token
  • ✏️ clean up Store, add missing jsdoc

v3.1.0-alpha.3

24 Feb 08:13
Compare
Choose a tag to compare
v3.1.0-alpha.3 Pre-release
Pre-release
  • 🐛fix fenToYuan func #17
  • 🐛 some UT fixes
  • 🔧 enable Payment & Card in tests
  • 📛 badges updates

v3.1.0-alpha.2

22 Jan 04:31
Compare
Choose a tag to compare
v3.1.0-alpha.2 Pre-release
Pre-release
  • client side js: provide a unminified file
  • client side js: pass wechatJSSDK instance to ready callback
  • travis: node version update
  • couple of readme & copyright updates

v3.0.11

17 Nov 04:02
Compare
Choose a tag to compare
  • provide both original transpiled client.js and minified one, now you can:
    const WechatJSSDK = require('wechat-jssdk/dist/client') or
    const WechatJSSDK = require('wechat-jssdk/dist/client.min'),
    for browser side usage, before there is only minified version. 👯

v3.0.10

17 Nov 03:42
Compare
Choose a tag to compare
  • add getOriginalWx and setOriginWx in client.js to get or set the original wx object to instance
  • the instance will be passed to success and error callback as the last arg, since when people use the arrow function, this will be lost:
{
  success: w => {console.log(w.getOriginalWx())},
  error: (err, w) => {console.log(w.getOriginalWx())},
}
  • demo updates to use getter above and other minor fixes

v3.1.0-alpha.1

20 Sep 09:46
Compare
Choose a tag to compare
v3.1.0-alpha.1 Pre-release
Pre-release

New Features

  • Wechat Card server side support for jssdk card functionality
  • Wechat Payment server side support for jssdk payment functionality

And lots of issues fixes and updates

I will list all the changes, and usages of new features when it gets ready :)

v3.0.9

23 May 09:17
Compare
Choose a tag to compare
  • update packages to avoid ReDoS vulnerability

v3.0.8

12 Apr 03:33
Compare
Choose a tag to compare
  • fix hasOwnProperty undefined on Store class