@availity/analytics-core 4.1.3 → 5.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 +24 -0
  2. package/package.json +5 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,30 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [5.0.1](https://github.com/Availity/sdk-js/compare/@availity/analytics-core@5.0.0...@availity/analytics-core@5.0.1) (2024-09-19)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `@availity/api-axios` updated to version `5.0.0`
10
+
11
+
12
+ # [5.0.0](https://github.com/Availity/sdk-js/compare/@availity/analytics-core@4.1.3...@availity/analytics-core@5.0.0) (2024-07-29)
13
+
14
+ ### Dependency Updates
15
+
16
+ * `@availity/api-axios` updated to version `4.1.3`
17
+
18
+ ### chore
19
+
20
+ * **analytics-core:** upgrade to node 18 and 20 ([41125bf](https://github.com/Availity/sdk-js/commit/41125bf7f01156c06992af65b3841eceafc40a24))
21
+
22
+
23
+ ### BREAKING CHANGES
24
+
25
+ * **analytics-core:** drop support for node 14 and 16
26
+
27
+
28
+
5
29
  ## [4.1.3](https://github.com/Availity/sdk-js/compare/@availity/analytics-core@4.1.2...@availity/analytics-core@4.1.3) (2024-07-29)
6
30
 
7
31
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/analytics-core",
3
- "version": "4.1.3",
3
+ "version": "5.0.1",
4
4
  "description": "Analytics base configuration for sdk-js",
5
5
  "keywords": [
6
6
  "availity",
@@ -21,6 +21,9 @@
21
21
  "main": "./dist/index.js",
22
22
  "module": "./dist/index.mjs",
23
23
  "types": "./dist/index.d.ts",
24
+ "engines": {
25
+ "node": "^18.0.0 || ^20.0.0"
26
+ },
24
27
  "scripts": {
25
28
  "build": "tsup src/index.js --format esm,cjs --dts",
26
29
  "dev": "tsup src/index.js --format esm,cjs --watch --dts",
@@ -32,7 +35,7 @@
32
35
  "yup": "^0.32.11"
33
36
  },
34
37
  "devDependencies": {
35
- "@availity/api-axios": "8.0.9",
38
+ "@availity/api-axios": "9.0.1",
36
39
  "tsup": "^7.2.0",
37
40
  "typescript": "^5.5.4"
38
41
  },