Skip to content

Commit e8f0d1b

Browse files
chore(deps): update lb4 dependencies (#218)
Update the lb4 dependencies as lb4 dropped support for node 16 or lower BREAKING CHANGE: Yes YES GH-217
1 parent 8f5e033 commit e8f0d1b

15 files changed

+896
-790
lines changed

package-lock.json

Lines changed: 875 additions & 766 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -133,28 +133,28 @@
133133
"vendor"
134134
],
135135
"peerDependencies": {
136-
"@loopback/boot": "^6.1.5",
137-
"@loopback/rest": "^13.1.5"
136+
"@loopback/boot": "^7.0.0",
137+
"@loopback/rest": "^14.0.0"
138138
},
139139
"dependencies": {
140-
"@loopback/context": "^6.1.5",
141-
"@loopback/core": "^5.1.5",
140+
"@loopback/context": "^7.0.0",
141+
"@loopback/core": "^6.0.0",
142142
"ajv": "^8.11.0",
143143
"https-proxy-agent": "^5.0.0",
144144
"jsonwebtoken": "^9.0.0",
145145
"passport": "^0.7.0",
146146
"passport-http-bearer": "^1.0.1",
147147
"passport-oauth2-client-password": "^0.1.2",
148-
"tslib": "^2.6.2"
148+
"tslib": "^2.0.0"
149149
},
150150
"devDependencies": {
151151
"@commitlint/cli": "^17.7.1",
152152
"@commitlint/config-conventional": "^17.7.0",
153153
"@istanbuljs/nyc-config-typescript": "^1.0.2",
154-
"@loopback/boot": "^6.1.5",
155-
"@loopback/build": "^10.1.5",
156-
"@loopback/metadata": "^6.1.5",
157-
"@loopback/testlab": "^6.1.5",
154+
"@loopback/boot": "^7.0.0",
155+
"@loopback/build": "^11.0.0",
156+
"@loopback/metadata": "^7.0.0",
157+
"@loopback/testlab": "^7.0.0",
158158
"@semantic-release/changelog": "^6.0.1",
159159
"@semantic-release/commit-analyzer": "^9.0.2",
160160
"@semantic-release/git": "^10.0.1",
@@ -177,8 +177,8 @@
177177
"cz-conventional-changelog": "^3.3.0",
178178
"cz-customizable": "^6.3.0",
179179
"cz-customizable-ghooks": "^2.0.0",
180-
"eslint": "^8.51.0",
181-
"fs-extra": "^11.1.1",
180+
"eslint": "^8.57.0",
181+
"fs-extra": "^11.2.0",
182182
"git-release-notes": "^5.0.0",
183183
"husky": "^7.0.4",
184184
"jsdom": "^21.0.0",

src/strategies/SAML/saml-verify.provider.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
import {Provider} from '@loopback/context';
22
import {HttpErrors, Request} from '@loopback/rest';
33

4-
// eslint-disable-next-line @typescript-eslint/naming-convention
54
import * as SamlStrategy from '@node-saml/passport-saml';
65

76
import {VerifyFunction} from '../../types';

src/strategies/passport/passport-apple-oauth2/apple-auth-strategy-factory-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {inject, Provider} from '@loopback/core';
22
import {AnyObject} from '@loopback/repository';
33
import {HttpErrors, Request} from '@loopback/rest';
44
import {HttpsProxyAgent} from 'https-proxy-agent';
5-
// eslint-disable-next-line @typescript-eslint/naming-convention
5+
66
import Strategy, {
77
AuthenticateOptions,
88
AuthenticateOptionsWithRequest,

src/strategies/passport/passport-apple-oauth2/apple-auth-verify.provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {Provider} from '@loopback/context';
22
import {HttpErrors, Request} from '@loopback/rest';
3-
// eslint-disable-next-line @typescript-eslint/naming-convention
3+
44
import * as AppleStrategy from 'passport-apple';
55

66
import {DecodedIdToken} from 'passport-apple';

src/strategies/passport/passport-azure-ad/azuread-auth-verify.provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {Provider} from '@loopback/context';
22
import {HttpErrors, Request} from '@loopback/rest';
3-
// eslint-disable-next-line @typescript-eslint/naming-convention
3+
44
import * as AzureADStrategy from 'passport-azure-ad';
55
import {VerifyFunction} from '../../types';
66
/**

src/strategies/passport/passport-bearer/bearer-strategy-factory-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {inject, Provider} from '@loopback/core';
22
import {HttpErrors, Request} from '@loopback/rest';
3-
// eslint-disable-next-line @typescript-eslint/naming-convention
3+
44
import * as PassportBearer from 'passport-http-bearer';
55

66
import {AuthErrorKeys} from '../../../error-keys';

src/strategies/passport/passport-client-password/client-password-strategy-factory-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
// SONAR-IGNORE-ALL
22
import {inject, Provider} from '@loopback/core';
33
import {HttpErrors, Request} from '@loopback/rest';
4-
// eslint-disable-next-line @typescript-eslint/naming-convention
4+
55
import * as ClientPasswordStrategy from './client-password-strategy';
66

77
import {AuthErrorKeys} from '../../../error-keys';

src/strategies/passport/passport-client-password/secure-client-password-strategy-factory-provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {inject, Provider} from '@loopback/core';
22
import {HttpErrors, Request} from '@loopback/rest';
3-
// eslint-disable-next-line @typescript-eslint/naming-convention
3+
44
import * as ClientPasswordStrategy from './client-password-strategy';
55

66
import {AuthErrorKeys} from '../../../error-keys';

src/strategies/passport/passport-facebook-oauth2/facebook-auth-verify.provider.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import {Provider} from '@loopback/context';
22
import {HttpErrors, Request} from '@loopback/rest';
3-
// eslint-disable-next-line @typescript-eslint/naming-convention
3+
44
import * as FacebookStrategy from 'passport-facebook';
55
import {VerifyCallback, VerifyFunction} from '../../types';
66
/**

0 commit comments

Comments
 (0)