@availity/yup 5.1.7 → 6.0.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +5 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,24 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [6.0.1](https://github.com/Availity/sdk-js/compare/@availity/yup@6.0.0...@availity/yup@6.0.1) (2024-10-14)
6
+
7
+
8
+
9
+ # [6.0.0](https://github.com/Availity/sdk-js/compare/@availity/yup@5.1.7...@availity/yup@6.0.0) (2024-07-29)
10
+
11
+
12
+ ### chore
13
+
14
+ * **yup:** upgrade to node 18 and 20 ([007868b](https://github.com/Availity/sdk-js/commit/007868b84070a36ea6295904825816dfb82cdf60))
15
+
16
+
17
+ ### BREAKING CHANGES
18
+
19
+ * **yup:** drop support for node 14 and 16
20
+
21
+
22
+
5
23
  ## [5.1.7](https://github.com/Availity/sdk-js/compare/@availity/yup@5.1.6...@availity/yup@5.1.7) (2024-07-29)
6
24
 
7
25
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/yup",
3
- "version": "5.1.7",
3
+ "version": "6.0.1",
4
4
  "description": "Additional methods for yup validation library",
5
5
  "keywords": [
6
6
  "yup",
@@ -22,6 +22,9 @@
22
22
  "main": "./dist/index.js",
23
23
  "module": "./dist/index.mjs",
24
24
  "types": "./dist/index.d.ts",
25
+ "engines": {
26
+ "node": "^18.0.0 || ^20.0.0"
27
+ },
25
28
  "scripts": {
26
29
  "build": "tsup src/index.ts --format esm,cjs --dts",
27
30
  "dev": "tsup src/index.ts --format esm,cjs --watch --dts",
@@ -40,7 +43,7 @@
40
43
  "typescript": "^5.5.4"
41
44
  },
42
45
  "peerDependencies": {
43
- "moment": "^2.24.0"
46
+ "moment": "^2.30.1"
44
47
  },
45
48
  "publishConfig": {
46
49
  "access": "public"