@smartive/datocms-utils 1.3.2 → 1.4.1

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.
@@ -14,7 +14,7 @@ jobs:
14
14
  - uses: actions/checkout@v4
15
15
  - uses: actions/setup-node@v4
16
16
  with:
17
- node-version: 20
17
+ node-version: 22
18
18
  - run: npm ci
19
19
  - run: npm run build
20
20
  - name: semantic release
@@ -18,7 +18,7 @@ jobs:
18
18
  - uses: actions/checkout@v4
19
19
  - uses: actions/setup-node@v4
20
20
  with:
21
- node-version: 20
21
+ node-version: 22
22
22
  - run: npm ci
23
23
  - run: npm run lint
24
24
  - run: npm run build
package/.nvmrc ADDED
@@ -0,0 +1 @@
1
+ 22
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ## [1.3.2](https://github.com/smartive/datocms-utils/compare/v1.3.1...v1.3.2) (2024-10-22)
1
+ ## [1.4.1](https://github.com/smartive/datocms-utils/compare/v1.4.0...v1.4.1) (2024-12-16)
2
2
 
3
3
 
4
- ### Reverts
4
+ ### Bug Fixes
5
5
 
6
- * Revert "fix: pass query_ids as parameter to prevent SQL injection (#16)" ([7ea911b](https://github.com/smartive/datocms-utils/commit/7ea911b4dfa00bb04fabf1242a822343a9175622)), closes [#16](https://github.com/smartive/datocms-utils/issues/16)
6
+ * **deps:** update dependency graphql to v16.10.0 ([#43](https://github.com/smartive/datocms-utils/issues/43)) ([e45f668](https://github.com/smartive/datocms-utils/commit/e45f668fbfc7ad0d4e614475a97896e0ae7782f5))
@@ -0,0 +1,3 @@
1
+ import { config } from '@smartive/eslint-config';
2
+
3
+ export default config('typescript');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartive/datocms-utils",
3
- "version": "1.3.2",
3
+ "version": "1.4.1",
4
4
  "description": "A set of utilities and helpers to work with DatoCMS in a Next.js project.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
@@ -24,10 +24,10 @@
24
24
  "@semantic-release/gitlab": "^13.2.1",
25
25
  "@semantic-release/npm": "12.0.1",
26
26
  "@semantic-release/release-notes-generator": "14.0.1",
27
- "@smartive/eslint-config": "^5.1.0",
27
+ "@smartive/eslint-config": "^6.4.0",
28
28
  "@smartive/prettier-config": "^3.1.2",
29
29
  "@types/node": "^22.7.0",
30
- "eslint": "^8.57.0",
30
+ "eslint": "^9.16.0",
31
31
  "prettier": "^3.3.3",
32
32
  "semantic-release": "^24.1.1",
33
33
  "typescript": "^5.6.2"
package/.eslintrc.json DELETED
@@ -1,3 +0,0 @@
1
- {
2
- "extends": ["@smartive/eslint-config"]
3
- }