@nuxtus/nuxtus 1.4.0 → 1.5.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/CHANGELOG.md +12 -0
- package/TODO +4 -4
- package/client/.env +0 -2
- package/client/package.json +1 -1
- package/package.json +2 -2
- package/server/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
Changelog
|
|
2
2
|
|
|
3
|
+
# [1.5.0](https://github.com/nuxtus/nuxtus/compare/v1.4.0...v1.5.0) (2022-08-27)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* :sparkles: update @nuxtus/cli to allow static token auth ([a3996e7](https://github.com/nuxtus/nuxtus/commit/a3996e715858ea544935d7cf1c4ebd4ffbea8029))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Performance Improvements
|
|
12
|
+
|
|
13
|
+
* :zap: remove unrequired entries in .env ([064d829](https://github.com/nuxtus/nuxtus/commit/064d8293d06769b6aa96698feba29d032c41778a))
|
|
14
|
+
|
|
3
15
|
# [1.4.0](https://github.com/nuxtus/nuxtus/compare/v1.3.1...v1.4.0) (2022-08-24)
|
|
4
16
|
|
|
5
17
|
|
package/TODO
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
Todo:
|
|
3
3
|
☐ Look at https://renovatebot.com/
|
|
4
4
|
☐ Make opening browser window on start optional using npm run start (not possible)
|
|
5
|
-
☐ When adding a new collection the new page triggers a nuxt restart then directus tries to send a field.create which fails. We get around this by getting the create field first but Directus still returns a 404 for the second request.
|
|
5
|
+
☐ When adding a new collection the new page triggers a nuxt restart then directus tries to send a field.create which fails. We get around this by getting the create field first but Directus still returns a 404 for the second request. Look into https://github.com/directus/directus/issues/14165?utm_campaign=Newsletter&utm_medium=email&_hsmi=223814263&utm_content=223814263&utm_source=hs_email
|
|
6
6
|
☐ GraphQL?
|
|
7
7
|
☐ Websockets (https://github.com/br41nslug/directus-websocket-subscribe)
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
✔ Add ability to use Directus static token instead of login (requires nuxt-directus v2.3.0) - UPDATE DOCS cli.md too! @done(22-08-27 09:12)
|
|
9
|
+
✔ Get added to some nuxt/directus lists etc. @done(22-08-27 09:03)
|
|
10
10
|
☐ Remove Google Fonts module (replace with fonts.bunny.net?)
|
|
11
11
|
☐ Nuxtus website should actually pull data from Directus!
|
|
12
12
|
☐ Look into nx for running as monorepo instead of concurrent
|
|
13
|
-
|
|
13
|
+
✔ Add Nuxtus logo to index.vue page @done(22-08-24 17:48)
|
|
14
14
|
|
|
15
15
|
Archive:
|
|
16
16
|
✔ Handle fetch failures @done(22-08-18 18:06) @project(Todo)
|
package/client/.env
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
# Nuxt directus required values
|
|
2
2
|
DIRECTUS_URL=http://localhost:8055
|
|
3
3
|
# Nuxtus values
|
|
4
|
-
# For now using email and password as nuxt-directus does not support token auth
|
|
5
|
-
# NUXT_PUBLIC_DIRECTUS_TOKEN=UNSECURE_ACCESS_TOKEN
|
|
6
4
|
NUXT_PUBLIC_DIRECTUS_EMAIL=admin@example.com
|
|
7
5
|
NUXT_PUBLIC_DIRECTUS_PASSWORD=password
|
package/client/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nuxtus/nuxtus",
|
|
3
3
|
"description": "Directus/Nuxt boilerplate with Tailwind CSS.",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.5.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/nuxtus/nuxtus.git"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@semantic-release/changelog": "^6.0.1",
|
|
33
33
|
"@semantic-release/git": "^10.0.1",
|
|
34
|
-
"@semantic-release/github": "^8.0.
|
|
34
|
+
"@semantic-release/github": "^8.0.6",
|
|
35
35
|
"@semantic-release/release-notes-generator": "^10.0.3",
|
|
36
36
|
"concurrently": "^7.2.2",
|
|
37
37
|
"semantic-release": "^19.0.5"
|