Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@
"plugin:import/typescript"
],
"rules": {
"semi": ["warn", "always"],
"@typescript-eslint/semi": ["warn", "always"],
"semi": ["error", "always"],
"@typescript-eslint/semi": ["error", "always"],
"@typescript-eslint/strict-boolean-expressions": ["off"],
"spaced-comment": ["off"],
"@typescript-eslint/consistent-type-imports": ["warn", { "prefer": "type-imports" }],
// import
"import/order": ["warn", { "groups": ["builtin", "external", "internal", "parent", "sibling", "index", "object", "type"] }],
"import/no-duplicates": ["warn"]
"import/order": ["error", { "groups": ["builtin", "external", "internal", "parent", "sibling", "index", "object", "type"] }],
"import/no-duplicates": ["error"]
},
"overrides": [
{
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x, 18.x]
node-version: [14.x, 16.x, 18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,19 @@

## [Unreleased](https://github.com/feathersjs-ecosystem/feathers-authentication-management/tree/HEAD)

[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-authentication-management/compare/v4.0.2...HEAD)
[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-authentication-management/compare/v5.0.0-pre.0...HEAD)

**Merged pull requests:**

- chore: add tsconfig commonjs [\#193](https://github.com/feathersjs-ecosystem/feathers-authentication-management/pull/193) ([fratzinger](https://github.com/fratzinger))
- ci: also check compile step [\#194](https://github.com/feathersjs-ecosystem/feathers-authentication-management/pull/194) ([fratzinger](https://github.com/fratzinger))

## [v5.0.0-pre.0](https://github.com/feathersjs-ecosystem/feathers-authentication-management/tree/v5.0.0-pre.0) (2022-10-13)

[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-authentication-management/compare/v4.0.2...v5.0.0-pre.0)

**Closed issues:**

- Error when using with typescript app [\#192](https://github.com/feathersjs-ecosystem/feathers-authentication-management/issues/192)

## [v4.0.2](https://github.com/feathersjs-ecosystem/feathers-authentication-management/tree/v4.0.2) (2022-09-30)

Expand All @@ -16,6 +24,10 @@

- SyntaxError: Cannot use import statement outside a module [\#191](https://github.com/feathersjs-ecosystem/feathers-authentication-management/issues/191)

**Merged pull requests:**

- chore: add tsconfig commonjs [\#193](https://github.com/feathersjs-ecosystem/feathers-authentication-management/pull/193) ([fratzinger](https://github.com/fratzinger))

## [v4.0.1](https://github.com/feathersjs-ecosystem/feathers-authentication-management/tree/v4.0.1) (2022-09-22)

[Full Changelog](https://github.com/feathersjs-ecosystem/feathers-authentication-management/compare/v4.0.0...v4.0.1)
Expand Down
20 changes: 10 additions & 10 deletions examples/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,19 @@
"ignore": []
},
"dependencies": {
"@feathersjs/authentication": "^4.5.15",
"@feathersjs/authentication-local": "^4.5.15",
"@feathersjs/authentication-oauth": "^4.5.15",
"@feathersjs/configuration": "^4.5.15",
"@feathersjs/errors": "^4.5.15",
"@feathersjs/express": "^4.5.15",
"@feathersjs/feathers": "^4.5.15",
"@feathersjs/socketio": "^4.5.15",
"@feathersjs/transport-commons": "^4.5.15",
"@feathersjs/authentication": "^5.0.0-pre.31",
"@feathersjs/authentication-local": "^5.0.0-pre.31",
"@feathersjs/authentication-oauth": "^5.0.0-pre.31",
"@feathersjs/configuration": "^5.0.0-pre.31",
"@feathersjs/errors": "^5.0.0-pre.31",
"@feathersjs/express": "^5.0.0-pre.31",
"@feathersjs/feathers": "^5.0.0-pre.31",
"@feathersjs/socketio": "^5.0.0-pre.31",
"@feathersjs/transport-commons": "^5.0.0-pre.31",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-authentication-management": "^4.0.0",
"feathers-hooks-common": "^6.1.5",
"feathers-hooks-common": "^7.0.0-pre.1",
"feathers-mailer": "^3.1.0",
"feathers-sequelize": "^6.3.4",
"helmet": "^6.0.0",
Expand Down
Loading