adapt-authoring-auth-local 2.0.1 → 2.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -25,7 +25,7 @@ jobs:
25
25
  - name: Update npm
26
26
  run: npm install -g npm@latest
27
27
  - name: Install dependencies
28
- run: npm ci
28
+ run: npm install
29
29
  - name: Release
30
30
  env:
31
31
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -10,6 +10,5 @@ jobs:
10
10
  - uses: actions/setup-node@v4
11
11
  with:
12
12
  node-version: 'lts/*'
13
- cache: 'npm'
14
- - run: npm ci
13
+ - run: npm install
15
14
  - run: npm test
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adapt-authoring-auth-local",
3
- "version": "2.0.1",
3
+ "version": "2.1.0",
4
4
  "description": "Module which implements username/password (local) authentication",
5
5
  "homepage": "https://github.com/adapt-security/adapt-authoring-auth-local",
6
6
  "license": "GPL-3.0",
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "repository": "github:adapt-security/adapt-authoring-auth-local",
13
13
  "dependencies": {
14
- "adapt-authoring-auth": "^1.0.7",
14
+ "adapt-authoring-auth": "^2.0.0",
15
15
  "adapt-authoring-core": "^2.0.0",
16
16
  "bcryptjs": "3.0.3",
17
17
  "date-fns": "^4.1.0",
@@ -20,31 +20,11 @@
20
20
  "peerDependencies": {
21
21
  "adapt-authoring-jsonschema": "^1.2.0",
22
22
  "adapt-authoring-mailer": "^1.0.2",
23
- "adapt-authoring-mongodb": "^2.0.0",
23
+ "adapt-authoring-mongodb": "^3.0.0",
24
24
  "adapt-authoring-roles": "^1.1.3",
25
25
  "adapt-authoring-server": "^2.0.0",
26
26
  "adapt-authoring-users": "^1.0.2"
27
27
  },
28
- "peerDependenciesMeta": {
29
- "adapt-authoring-jsonschema": {
30
- "optional": true
31
- },
32
- "adapt-authoring-mailer": {
33
- "optional": true
34
- },
35
- "adapt-authoring-mongodb": {
36
- "optional": true
37
- },
38
- "adapt-authoring-roles": {
39
- "optional": true
40
- },
41
- "adapt-authoring-server": {
42
- "optional": true
43
- },
44
- "adapt-authoring-users": {
45
- "optional": true
46
- }
47
- },
48
28
  "devDependencies": {
49
29
  "@semantic-release/git": "^10.0.1",
50
30
  "conventional-changelog-eslint": "^6.0.0",