New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@feathersjs/authentication-oauth

Package Overview
Dependencies
Maintainers
3
Versions
109
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@feathersjs/authentication-oauth - npm Package Compare versions

Comparing version 5.0.6 to 5.0.7

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [5.0.7](https://github.com/feathersjs/feathers/compare/v5.0.6...v5.0.7) (2023-07-14)
**Note:** Version bump only for package @feathersjs/authentication-oauth
## [5.0.6](https://github.com/feathersjs/feathers/compare/v5.0.5...v5.0.6) (2023-06-15)

@@ -8,0 +16,0 @@

24

package.json
{
"name": "@feathersjs/authentication-oauth",
"description": "oAuth 1 and 2 authentication for Feathers. Powered by Grant.",
"version": "5.0.6",
"version": "5.0.7",
"homepage": "https://feathersjs.com",

@@ -57,9 +57,9 @@ "main": "lib/",

"dependencies": {
"@feathersjs/authentication": "^5.0.6",
"@feathersjs/commons": "^5.0.6",
"@feathersjs/errors": "^5.0.6",
"@feathersjs/express": "^5.0.6",
"@feathersjs/feathers": "^5.0.6",
"@feathersjs/koa": "^5.0.6",
"@feathersjs/schema": "^5.0.6",
"@feathersjs/authentication": "^5.0.7",
"@feathersjs/commons": "^5.0.7",
"@feathersjs/errors": "^5.0.7",
"@feathersjs/express": "^5.0.7",
"@feathersjs/feathers": "^5.0.7",
"@feathersjs/koa": "^5.0.7",
"@feathersjs/schema": "^5.0.7",
"cookie-session": "^2.0.0",

@@ -72,3 +72,3 @@ "grant": "^5.4.21",

"devDependencies": {
"@feathersjs/memory": "^5.0.6",
"@feathersjs/memory": "^5.0.7",
"@types/cookie-session": "^2.0.44",

@@ -79,3 +79,3 @@ "@types/express": "^4.17.17",

"@types/mocha": "^10.0.1",
"@types/node": "^20.3.1",
"@types/node": "^20.4.2",
"@types/tough-cookie": "^4.0.2",

@@ -87,5 +87,5 @@ "axios": "^1.4.0",

"ts-node": "^10.9.1",
"typescript": "^5.1.3"
"typescript": "^5.1.6"
},
"gitHead": "71ac655d260fbc9aa65cd5b9a6c088f0187ace4e"
"gitHead": "1ab855487d2dfacb114339c634621357bce3a56a"
}

@@ -28,3 +28,7 @@ import { createDebug } from '@feathersjs/commons'

export class OAuthError extends FeathersError {
constructor(message: string, data: any, public location: string) {
constructor(
message: string,
data: any,
public location: string
) {
super(message, 'NotAuthenticated', 401, 'not-authenticated', data)

@@ -64,3 +68,6 @@ }

constructor(public service: AuthenticationService, public settings: OauthSetupSettings) {
constructor(
public service: AuthenticationService,
public settings: OauthSetupSettings
) {
const config = getGrantConfig(service)

@@ -67,0 +74,0 @@

Sorry, the diff of this file is not supported yet

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