adapt-authoring-auth 1.0.4 → 1.0.6

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.
@@ -9,3 +9,5 @@ updates:
9
9
  directory: "/" # Location of package manifests
10
10
  schedule:
11
11
  interval: "weekly"
12
+ commit-message:
13
+ prefix: 'Fix'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "adapt-authoring-auth",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "Authentication + authorisation module for the Adapt authoring tool",
5
5
  "homepage": "https://github.com/adaptlearning/adapt-authoring-auth",
6
6
  "license": "GPL-3.0",
@@ -15,7 +15,36 @@
15
15
  "path-to-regexp": "^8.0.0"
16
16
  },
17
17
  "peerDependencies": {
18
- "adapt-authoring-core": "github:adapt-security/adapt-authoring-core"
18
+ "adapt-authoring-core": "^1.7.0",
19
+ "adapt-authoring-jsonschema": "^1.1.5",
20
+ "adapt-authoring-mongodb": "^1.1.2",
21
+ "adapt-authoring-roles": "^1.1.2",
22
+ "adapt-authoring-server": "^1.2.0",
23
+ "adapt-authoring-sessions": "^1.0.1",
24
+ "adapt-authoring-users": "^1.0.1"
25
+ },
26
+ "peerDependenciesMeta": {
27
+ "adapt-authoring-core": {
28
+ "optional": true
29
+ },
30
+ "adapt-authoring-jsonschema": {
31
+ "optional": true
32
+ },
33
+ "adapt-authoring-mongodb": {
34
+ "optional": true
35
+ },
36
+ "adapt-authoring-roles": {
37
+ "optional": true
38
+ },
39
+ "adapt-authoring-server": {
40
+ "optional": true
41
+ },
42
+ "adapt-authoring-sessions": {
43
+ "optional": true
44
+ },
45
+ "adapt-authoring-users": {
46
+ "optional": true
47
+ }
19
48
  },
20
49
  "devDependencies": {
21
50
  "@semantic-release/git": "^10.0.1",
@@ -39,7 +68,15 @@
39
68
  ],
40
69
  "@semantic-release/npm",
41
70
  "@semantic-release/github",
42
- "@semantic-release/git"
71
+ [
72
+ "@semantic-release/git",
73
+ {
74
+ "assets": [
75
+ "package.json"
76
+ ],
77
+ "message": "Chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
78
+ }
79
+ ]
43
80
  ]
44
81
  }
45
82
  }