Skip to content

Commit e9128b1

Browse files
author
Kevin Hellemun
committed
Merge branch 'release/0.6.2'
2 parents 6ab8191 + 129cf06 commit e9128b1

File tree

6 files changed

+7527
-11012
lines changed

6 files changed

+7527
-11012
lines changed

CHANGELOG.md

+19-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,24 @@
11
# Change Log
22

3-
## [Unreleased](https://github.com/bunq/doc/tree/0.6.0)
3+
## [0.6.2](https://github.com/bunq/doc/tree/0.6.2)
44

5+
[Full Changelog](https://github.com/bunq/doc/compare/0.6.1...0.6.2)
6+
7+
**Closed issues:**
8+
9+
- Add oauth assests to description. [\#53](https://github.com/bunq/doc/issues/53)
10+
- OAuth authorization request parameter response\_code not correct [\#52](https://github.com/bunq/doc/issues/52)
11+
12+
**Merged pull requests:**
13+
14+
- Bunq/doc\#53 regenerate [\#55](https://github.com/bunq/doc/pull/55) ([OGKevin](https://github.com/OGKevin))
15+
- Added asset reference to description. \(bunq/doc\#53\) [\#54](https://github.com/bunq/doc/pull/54) ([OGKevin](https://github.com/OGKevin))
16+
- Replace parameter response\_code with response\_type [\#51](https://github.com/bunq/doc/pull/51) ([basst85](https://github.com/basst85))
17+
18+
## [0.6.1](https://github.com/bunq/doc/tree/0.6.1) (2018-07-25)
19+
[Full Changelog](https://github.com/bunq/doc/compare/0.6.0...0.6.1)
20+
21+
## [0.6.0](https://github.com/bunq/doc/tree/0.6.0) (2018-07-24)
522
[Full Changelog](https://github.com/bunq/doc/compare/0.5.3...0.6.0)
623

724
**Closed issues:**
@@ -11,8 +28,8 @@
1128

1229
**Merged pull requests:**
1330

14-
- Oauth bunq/doc\#48 [\#49](https://github.com/bunq/doc/pull/49) ([OGKevin](https://github.com/OGKevin))
1531
- bunq/doc\#46 - updated description.md [\#47](https://github.com/bunq/doc/pull/47) ([painjansen](https://github.com/painjansen))
32+
- Oauth bunq/doc\#48 [\#49](https://github.com/bunq/doc/pull/49) ([OGKevin](https://github.com/OGKevin))
1633

1734
## [0.5.3](https://github.com/bunq/doc/tree/0.5.3) (2018-06-01)
1835
[Full Changelog](https://github.com/bunq/doc/compare/0.5.2...0.5.3)

DESCRIPTION.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ Your web or mobile app should redirect users to the following URL:
6060

6161
The following parameters should be passed:
6262

63-
- `response_code` - bunq supports the authorization code grant, provide `code` as parameter (required)
63+
- `response_type` - bunq supports the authorization code grant, provide `code` as parameter (required)
6464
- `client_id` - your Client ID, get it from the bunq app (required)
6565
- `redirect_uri` - the URL you wish the user to be redirected after the authorization, make sure you register the Redirect URL in the bunq app (required)
6666
- `state` - a unique string to be passed back upon completion (optional)
@@ -128,6 +128,13 @@ Note: the request only contains URL parameters.
128128
"error_description": "The authorization code is invalid or expired."
129129
}
130130
```
131+
### Using the Connect button
132+
133+
All good? Ready to connect to your bunq users? Refer to our style guide and use the following assets when implementing the **Connect to bunq** button.
134+
135+
- [Style guide](https://bunq.com/info/oauth-styleguide)
136+
- [Connect button assets](https://bunq.com/info/oauth-connect-buttons)
137+
131138

132139
### What's next?
133140

docs/index.html

+304-445
Large diffs are not rendered by default.

docs/service-worker.js

+6-6
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,23 @@
3737
/* eslint-disable indent, no-unused-vars, no-multiple-empty-lines, max-nested-callbacks, space-before-function-paren, quotes, comma-spacing */
3838
'use strict';
3939

40-
var precacheConfig = [["/index.html","b43d20599ed2e9662189c169f8f9aef8"]];
40+
var precacheConfig = [["/index.html","cac36495ede9dd644674cfcfdd35bdb7"]];
4141
var cacheName = 'sw-precache-v3--' + (self.registration ? self.registration.scope : '');
4242

4343

4444
var ignoreUrlParametersMatching = [/^utm_/];
4545

4646

4747

48-
var addDirectoryIndex = function (originalUrl, index) {
48+
var addDirectoryIndex = function(originalUrl, index) {
4949
var url = new URL(originalUrl);
5050
if (url.pathname.slice(-1) === '/') {
5151
url.pathname += index;
5252
}
5353
return url.toString();
5454
};
5555

56-
var cleanResponse = function (originalResponse) {
56+
var cleanResponse = function(originalResponse) {
5757
// If this is not a redirected response, then we don't have to do anything.
5858
if (!originalResponse.redirected) {
5959
return Promise.resolve(originalResponse);
@@ -75,7 +75,7 @@ var cleanResponse = function (originalResponse) {
7575
});
7676
};
7777

78-
var createCacheKey = function (originalUrl, paramName, paramValue,
78+
var createCacheKey = function(originalUrl, paramName, paramValue,
7979
dontCacheBustUrlsMatching) {
8080
// Create a new URL object to avoid modifying originalUrl.
8181
var url = new URL(originalUrl);
@@ -91,7 +91,7 @@ var createCacheKey = function (originalUrl, paramName, paramValue,
9191
return url.toString();
9292
};
9393

94-
var isPathWhitelisted = function (whitelist, absoluteUrlString) {
94+
var isPathWhitelisted = function(whitelist, absoluteUrlString) {
9595
// If the whitelist is empty, then consider all URLs to be whitelisted.
9696
if (whitelist.length === 0) {
9797
return true;
@@ -104,7 +104,7 @@ var isPathWhitelisted = function (whitelist, absoluteUrlString) {
104104
});
105105
};
106106

107-
var stripIgnoredUrlParameters = function (originalUrl,
107+
var stripIgnoredUrlParameters = function(originalUrl,
108108
ignoreUrlParametersMatching) {
109109
var url = new URL(originalUrl);
110110
// Remove the hash; see https://github.com/GoogleChrome/sw-precache/issues/290

0 commit comments

Comments
 (0)