@akemona-org/strapi-admin 3.10.4 → 3.12.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.
package/README.md CHANGED
@@ -2,27 +2,7 @@
2
2
 
3
3
  ---
4
4
 
5
- ## Deprecation Warning :warning:
6
-
7
- Hello! We have some news to share,
8
-
9
- We’ve decided it’ll soon be time to end the support for `strapi-admin`.
10
-
11
- After years of iterations, Strapi is going to V4 and we won’t maintain V3 packages when it’ll reach its end-of-support milestone (~end of Q3 2022).
12
-
13
- If you’ve been using `strapi-admin` and have migrated to V4 (or if you want to), you can find the equivalent and updated version of this package at this [URL](https://github.com/akemona/strapi/tree/master/packages/core/admin) and with the following name on NPM: `@strapi/admin`.
14
-
15
- If you’ve contributed to the development of this package, thank you again for that! We hope to see you on the V4 soon.
16
-
17
- The Akemona team
18
-
19
- ---
20
-
21
- ## Description
22
-
23
- TODO
24
-
25
- ## Contribute
5
+ ### Maintenance release by Akemona
26
6
 
27
7
  ### Setup
28
8
 
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "3.10.4",
6
+ "version": "3.12.0",
7
7
  "description": "Strapi Admin",
8
8
  "repository": {
9
9
  "type": "git",
@@ -17,8 +17,8 @@
17
17
  },
18
18
  "main": "index.js",
19
19
  "dependencies": {
20
- "@akemona-org/strapi-helper-plugin": "3.10.4",
21
- "@akemona-org/strapi-utils": "3.10.4",
20
+ "@akemona-org/strapi-helper-plugin": "3.12.0",
21
+ "@akemona-org/strapi-utils": "3.12.0",
22
22
  "@babel/core": "^7.14.0",
23
23
  "@babel/plugin-proposal-async-generator-functions": "^7.13.15",
24
24
  "@babel/plugin-proposal-class-properties": "^7.12.1",
@@ -125,5 +125,5 @@
125
125
  "devDependencies": {
126
126
  "webpack-bundle-analyzer": "4.4.0"
127
127
  },
128
- "gitHead": "404dd36a3e02a6b9a067a0828ee5070c64071488"
128
+ "gitHead": "5eff2890f97943a724086d37182e1e3815704866"
129
129
  }
package/services/user.js CHANGED
@@ -37,7 +37,7 @@ const create = async (attributes) => {
37
37
  const user = createUser(userInfo);
38
38
  const createdUser = await strapi.query('user', 'admin').create(user);
39
39
 
40
- await strapi.admin.services.metrics.sendDidInviteUser();
40
+ // await strapi.admin.services.metrics.sendDidInviteUser();
41
41
 
42
42
  return createdUser;
43
43
  };