@availity/exceptions-axios 4.0.7 → 5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +6 -3
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
+ # [5.0.0](https://github.com/Availity/sdk-js/compare/@availity/exceptions-axios@4.0.7...@availity/exceptions-axios@5.0.0) (2024-07-29)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `@availity/api-axios` updated to version `4.0.7`
10
+ * `@availity/exceptions-core` updated to version `4.0.7`
11
+
12
+ ### chore
13
+
14
+ * **exceptions-axios:** upgrade to node 18 and 20 ([8fc337a](https://github.com/Availity/sdk-js/commit/8fc337a066ddeca2b07a15926aff0b4270227d79))
15
+
16
+
17
+ ### BREAKING CHANGES
18
+
19
+ * **exceptions-axios:** drop support for node 14 and 16
20
+
21
+
22
+
5
23
  ## [4.0.7](https://github.com/Availity/sdk-js/compare/@availity/exceptions-axios@4.0.6...@availity/exceptions-axios@4.0.7) (2024-07-29)
6
24
 
7
25
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/exceptions-axios",
3
- "version": "4.0.7",
3
+ "version": "5.0.0",
4
4
  "description": "Availity class to log exceptions via axios",
5
5
  "license": "MIT",
6
6
  "author": "Evan Sharp <evan.sharp@availity.com>",
@@ -8,6 +8,9 @@
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",
10
10
  "types": "./dist/index.d.ts",
11
+ "engines": {
12
+ "node": "^18.0.0 || ^20.0.0"
13
+ },
11
14
  "scripts": {
12
15
  "build": "tsup src/index.js --format esm,cjs --dts",
13
16
  "dev": "tsup src/index.js --format esm,cjs --watch --dts",
@@ -17,8 +20,8 @@
17
20
  "publish": "yarn npm publish --tolerate-republish --access public"
18
21
  },
19
22
  "dependencies": {
20
- "@availity/api-axios": "8.0.9",
21
- "@availity/exceptions-core": "4.1.4"
23
+ "@availity/api-axios": "9.0.0",
24
+ "@availity/exceptions-core": "5.0.0"
22
25
  },
23
26
  "devDependencies": {
24
27
  "tsup": "^7.2.0",