@visulima/pagination 2.0.5 → 3.0.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 +18 -0
- package/package.json +16 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
|
1
|
+
## @visulima/pagination [3.0.0](https://github.com/visulima/visulima/compare/@visulima/pagination@2.0.6...@visulima/pagination@3.0.0) (2023-08-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### ⚠ BREAKING CHANGES
|
|
5
|
+
|
|
6
|
+
* update minimum Node.js version requirement to 18
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
* refactor query parsing and update dependencies ([#203](https://github.com/visulima/visulima/issues/203)) ([cf77427](https://github.com/visulima/visulima/commit/cf7742795f970ebeeb5da22a82fd17750028ee87))
|
|
11
|
+
|
|
12
|
+
## @visulima/pagination [2.0.6](https://github.com/visulima/visulima/compare/@visulima/pagination@2.0.5...@visulima/pagination@2.0.6) (2023-07-28)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* Update eslint rules and dependencies ([01a4bef](https://github.com/visulima/visulima/commit/01a4beff467091ac2d2fc6f342d274d282391842))
|
|
18
|
+
|
|
1
19
|
## @visulima/pagination [2.0.5](https://github.com/visulima/visulima/compare/@visulima/pagination@2.0.4...@visulima/pagination@2.0.5) (2023-07-26)
|
|
2
20
|
|
|
3
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visulima/pagination",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Simple Pagination for Node.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -66,29 +66,30 @@
|
|
|
66
66
|
"qs": "^6.11.2"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@anolilab/eslint-config": "^
|
|
70
|
-
"@anolilab/prettier-config": "^5.0.
|
|
71
|
-
"@anolilab/semantic-release-preset": "^6.0.
|
|
69
|
+
"@anolilab/eslint-config": "^11.3.3",
|
|
70
|
+
"@anolilab/prettier-config": "^5.0.3",
|
|
71
|
+
"@anolilab/semantic-release-preset": "^6.0.4",
|
|
72
72
|
"@rushstack/eslint-plugin-security": "^0.6.0",
|
|
73
73
|
"@types/micromatch": "^4.0.2",
|
|
74
|
-
"@types/node": "18.
|
|
74
|
+
"@types/node": "18.17.1",
|
|
75
75
|
"@types/qs": "^6.9.7",
|
|
76
|
-
"@vitest/coverage-v8": "^0.
|
|
76
|
+
"@vitest/coverage-v8": "^0.34.3",
|
|
77
77
|
"cross-env": "^7.0.3",
|
|
78
|
-
"eslint": "^8.
|
|
78
|
+
"eslint": "^8.48.0",
|
|
79
79
|
"eslint-plugin-etc": "^2.0.3",
|
|
80
|
-
"eslint-plugin-mdx": "^2.
|
|
81
|
-
"eslint-plugin-vitest": "^0.2.
|
|
80
|
+
"eslint-plugin-mdx": "^2.2.0",
|
|
81
|
+
"eslint-plugin-vitest": "^0.2.8",
|
|
82
|
+
"eslint-plugin-vitest-globals": "^1.4.0",
|
|
82
83
|
"openapi-types": "^12.1.3",
|
|
83
|
-
"prettier": "^3.0.
|
|
84
|
+
"prettier": "^3.0.2",
|
|
84
85
|
"rimraf": "^5.0.1",
|
|
85
|
-
"semantic-release": "^21.
|
|
86
|
-
"tsup": "^7.
|
|
87
|
-
"typescript": "^5.
|
|
88
|
-
"vitest": "^0.
|
|
86
|
+
"semantic-release": "^21.1.1",
|
|
87
|
+
"tsup": "^7.2.0",
|
|
88
|
+
"typescript": "^5.2.2",
|
|
89
|
+
"vitest": "^0.34.3"
|
|
89
90
|
},
|
|
90
91
|
"engines": {
|
|
91
|
-
"node": ">=
|
|
92
|
+
"node": ">=18.* <=20.*"
|
|
92
93
|
},
|
|
93
94
|
"publishConfig": {
|
|
94
95
|
"access": "public",
|