@availity/dl-axios 5.0.7 → 6.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 +17 -0
  2. package/package.json +5 -2
package/CHANGELOG.md CHANGED
@@ -2,6 +2,23 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ # [6.0.0](https://github.com/Availity/sdk-js/compare/@availity/dl-axios@5.0.7...@availity/dl-axios@6.0.0) (2024-07-29)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `@availity/dl-core` updated to version `5.0.7`
10
+
11
+ ### chore
12
+
13
+ * **dl-axios:** upgrade to node 18 and 20 ([2132628](https://github.com/Availity/sdk-js/commit/213262839ca341eb7b9396277f12a55b04d859ea))
14
+
15
+
16
+ ### BREAKING CHANGES
17
+
18
+ * **dl-axios:** drop support for node 14 and 16
19
+
20
+
21
+
5
22
  ## [5.0.7](https://github.com/Availity/sdk-js/compare/@availity/dl-axios@5.0.6...@availity/dl-axios@5.0.7) (2024-07-29)
6
23
 
7
24
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/dl-axios",
3
- "version": "5.0.7",
3
+ "version": "6.0.0",
4
4
  "description": "Utility to download files from services",
5
5
  "keywords": [
6
6
  "download",
@@ -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.js --format esm,cjs --dts",
27
30
  "dev": "tsup src/index.js --format esm,cjs --watch --dts",
@@ -31,7 +34,7 @@
31
34
  "publish": "yarn npm publish --tolerate-republish --access public"
32
35
  },
33
36
  "dependencies": {
34
- "@availity/dl-core": "4.0.7",
37
+ "@availity/dl-core": "5.0.0",
35
38
  "lodash": "^4.17.21"
36
39
  },
37
40
  "devDependencies": {