Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@advanced-rest-client/oauth-authorization

Package Overview
Dependencies
Maintainers
3
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@advanced-rest-client/oauth-authorization - npm Package Compare versions

Comparing version 5.0.0 to 5.0.1

27

CHANGELOG.md

@@ -606,1 +606,28 @@ <a name="2.0.2"></a>

<a name="5.0.1"></a>
## [5.0.1](https://github.com/advanced-rest-client/oauth-authorization/compare/4.0.3...5.0.1) (2020-12-22)
### Update
* [ci skip] automated merge master->stage. syncing main branches [296b442](https://github.com/advanced-rest-client/oauth-authorization/commit/296b4429525dd07b5f2b7cf63e834296fc956a41) by Ci agent
* removing previous ubuntu from tests [1ce9983](https://github.com/advanced-rest-client/oauth-authorization/commit/1ce99839fc18aa954e06959cdb3a2e57ade18252) by Pawel
* playing with GH actions [fec47ca](https://github.com/advanced-rest-client/oauth-authorization/commit/fec47ca5ee22ef9cdea988735a05e292b74c819c) by Pawel
* [ci skip] automated merge master->stage. syncing main branches [a5a3568](https://github.com/advanced-rest-client/oauth-authorization/commit/a5a356888117e3927d38510784e1cd84562e672e) by Ci agent
### Features
* adding support for PKCE extension [f6f6585](https://github.com/advanced-rest-client/oauth-authorization/commit/f6f6585121d52b68f3171480c091dbe38550fc16) by Pawel
### Bug Fixes
* missing client_secret when constructing popup url [a50496f](https://github.com/advanced-rest-client/oauth-authorization/commit/a50496f01b9434254be717ae6e5bde3343a28e39) by Carolina Wright
* fixes #10 - secret with passwort grant [58bcb81](https://github.com/advanced-rest-client/oauth-authorization/commit/58bcb81dbdb2943bcd6e7763c2c69c34b68e173e) by Pawel
### Refactor
* moving logic to a library [994c7d8](https://github.com/advanced-rest-client/oauth-authorization/commit/994c7d800906f3525490b2e5b03715d196c0e7c7) by Pawel

2

package.json
{
"name": "@advanced-rest-client/oauth-authorization",
"description": "A set of elements that perform oauth authorization",
"version": "5.0.0",
"version": "5.0.1",
"license": "Apache-2.0",

@@ -6,0 +6,0 @@ "main": "index.js",

@@ -240,2 +240,5 @@ /* eslint-disable no-param-reassign */

url.searchParams.set('client_id', settings.clientId);
if (settings.clientSecret) {
url.searchParams.set('client_secret', settings.clientSecret);
}
url.searchParams.set('state', this.state);

@@ -242,0 +245,0 @@ if (settings.redirectUri) {

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc