Releases: JasonBoy/wechat-jssdk
Releases · JasonBoy/wechat-jssdk
v3.1.0-rc.0
- 🔑Add sandbox key invalid retry
- 💂Extract wechat config into separate file
- 📝 Docs updates
v3.1.0-alpha.4
- 📎checkout the #20
- 🥂 almost RC 😆
v3.0.12
v3.1.0-alpha.3
- 🐛fix fenToYuan func #17
- 🐛 some UT fixes
- 🔧 enable Payment & Card in tests
- 📛 badges updates
v3.1.0-alpha.2
- 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
- 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
- add
getOriginalWx
andsetOriginWx
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
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 :)