nuxt-ignis 0.2.3 → 0.2.5

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 CHANGED
@@ -1,7 +1,16 @@
1
1
  # Changelog
2
2
 
3
- ## 0.2.3 (2025-02-08)
4
- - build: bump Nuxt to `3.16.0` + update other deps
3
+ ## 0.2.5 (2025-03-26)
4
+ - build: move `vue` and `vue-router` to devDepencencies (should allow smooth Netlify deployment)
5
+ - build: fix Vite security issue
6
+
7
+ ## 0.2.4 (2025-03-20)
8
+ - build: bump `Nuxt` to `3.16.1`, `Nuxt Content` to `3.4.0` + update other deps
9
+ - build: fix some security issues
10
+ - fix: update necessary default config for `@nuxtjs/i18n`
11
+
12
+ ## 0.2.3 (2025-03-08)
13
+ - build: bump `Nuxt` to `3.16.0` + update other deps
5
14
 
6
15
  ## 0.2.2 (2025-02-25)
7
16
  - build: bump `nuxt-spec` and `nuxt-neon`
package/README.md CHANGED
@@ -20,7 +20,7 @@ Aside from being "forked", `nuxt-ignis` is also available as [NPM package](https
20
20
 
21
21
  1) Add following dependency into your `package.json`:
22
22
  ```
23
- "nuxt-ignis": "0.2.3"
23
+ "nuxt-ignis": "0.2.5"
24
24
  ```
25
25
 
26
26
  2) Add following section into your `nuxt.config.ts`:
package/nuxt.config.ts CHANGED
@@ -12,7 +12,7 @@ const nuxtConfig = defu(ignisFeatures, {
12
12
  ],
13
13
 
14
14
  // https://nuxt.com/docs/api/nuxt-config#compatibilitydate
15
- compatibilityDate: '2025-03-08',
15
+ compatibilityDate: '2025-03-20',
16
16
 
17
17
  // simple eslint config - see eslint.config.mjs
18
18
  eslint: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-ignis",
3
- "version": "0.2.3",
3
+ "version": "0.2.5",
4
4
  "description": "Enhanced and customizable Nuxt application starter pack",
5
5
  "keywords": [
6
6
  "nuxt",
@@ -36,39 +36,44 @@
36
36
  },
37
37
  "dependencies": {
38
38
  "@formkit/nuxt": "1.6.9",
39
- "@nuxt/content": "3.3.0",
39
+ "@nuxt/content": "3.4.0",
40
40
  "@nuxt/eslint": "1.2.0",
41
- "@nuxt/fonts": "0.10.3",
42
- "@nuxt/image": "1.9.0",
43
- "@nuxt/scripts": "0.11.0",
41
+ "@nuxt/fonts": "0.11.0",
42
+ "@nuxt/image": "1.10.0",
43
+ "@nuxt/scripts": "0.11.2",
44
44
  "@nuxt/ui": "2.21.1",
45
- "@nuxtjs/i18n": "9.3.0",
45
+ "@nuxtjs/i18n": "9.3.3",
46
46
  "@nuxtjs/supabase": "1.5.0",
47
- "@nuxtjs/tailwindcss": "6.13.1",
47
+ "@nuxtjs/tailwindcss": "6.13.2",
48
48
  "@pinia/nuxt": "0.10.1",
49
- "@vueuse/core": "12.8.2",
50
- "@vueuse/nuxt": "12.8.2",
51
- "consola": "3.4.0",
49
+ "@vueuse/core": "13.0.0",
50
+ "@vueuse/nuxt": "13.0.0",
51
+ "consola": "3.4.2",
52
52
  "defu": "6.1.4",
53
53
  "elrh-pslo": "1.1.6",
54
54
  "nuxt-neon": "0.4.0",
55
- "nuxt-security": "2.1.5",
55
+ "nuxt-security": "2.2.0",
56
56
  "nuxt-spec": "0.0.4",
57
57
  "nuxt-time": "1.0.3",
58
- "open-props": "1.7.13",
58
+ "open-props": "1.7.14",
59
59
  "pinia": "3.0.1",
60
60
  "postcss-jit-props": "1.0.16",
61
- "typescript": "latest",
62
- "vue": "latest",
63
- "vue-router": "latest"
61
+ "typescript": "5.7.3"
64
62
  },
65
63
  "pnpm": {
66
64
  "overrides": {
67
- "eslint": "9.16.0"
65
+ "@nuxt/kit": "3.16.1",
66
+ "eslint": "9.16.0",
67
+ "esbuild": "^0.25.0",
68
+ "vite": "^6.2.3",
69
+ "vue-i18n": "^10.0.6",
70
+ "@babel/helpers": "^7.26.10"
68
71
  }
69
72
  },
70
73
  "devDependencies": {
71
- "nuxt": "3.16.0"
74
+ "nuxt": "3.16.1",
75
+ "vue": "3.5.13",
76
+ "vue-router": "4.5.0"
72
77
  },
73
- "packageManager": "pnpm@9.15.5"
78
+ "packageManager": "pnpm@9.15.9"
74
79
  }
@@ -1,12 +1,11 @@
1
1
  export default defineEventHandler(async () => {
2
2
  const config = useRuntimeConfig().public.ignis
3
3
  if (config.preset.db === 'neon' || config.neon === true) {
4
- const neon = getNeonClient()
5
4
  return await select(
6
- neon,
5
+ getNeonClient(),
7
6
  ['name', 'value'],
8
- ['playing_with_neon'],
9
- ['name LIKE \'test%\''],
7
+ 'playing_with_neon',
8
+ [{ column: 'name', condition: 'LIKE', value: '\'test%\'' }],
10
9
  'name DESC',
11
10
  2,
12
11
  )
File without changes