@availity/hooks 3.3.3 → 4.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 CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ # [4.0.0](https://github.com/Availity/availity-react/compare/@availity/hooks@3.3.3...@availity/hooks@4.0.0) (2023-10-09)
6
+
7
+
8
+ ### Features
9
+
10
+ * upgrade deps ([eccefc0](https://github.com/Availity/availity-react/commit/eccefc0549ebd5057595f6ac696642789375f48a))
11
+
12
+
13
+ ### BREAKING CHANGES
14
+
15
+ * axios v1 is now required
16
+
17
+
18
+
5
19
  ## [3.3.3](https://github.com/Availity/availity-react/compare/@availity/hooks@3.3.2...@availity/hooks@3.3.3) (2023-01-27)
6
20
 
7
21
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/hooks",
3
- "version": "3.3.3",
3
+ "version": "4.0.0",
4
4
  "description": "A group of pre-built hooks that are common in most apps",
5
5
  "keywords": [
6
6
  "react",
@@ -26,17 +26,17 @@
26
26
  },
27
27
  "dependencies": {
28
28
  "prop-types": "^15.8.1",
29
- "react-query": "^3.39.0"
29
+ "react-query": "^3.39.3"
30
30
  },
31
31
  "devDependencies": {
32
- "@availity/api-axios": "^7.0.1",
33
- "axios": "^0.21.4",
34
- "react": "^17.0.2",
35
- "react-dom": "^17.0.2"
32
+ "@availity/api-axios": "^8.0.3",
33
+ "axios": "^1.5.0",
34
+ "react": "^18.2.0",
35
+ "react-dom": "^18.2.0"
36
36
  },
37
37
  "peerDependencies": {
38
- "@availity/api-axios": "^6.0.0",
39
- "axios": "^0.21.1",
38
+ "@availity/api-axios": "^8.0.0",
39
+ "axios": "^1.0.0",
40
40
  "react": ">=16.8.0"
41
41
  },
42
42
  "publishConfig": {
package/project.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "projectType": "library",
4
4
  "targets": {
5
5
  "test": {
6
- "executor": "@nrwl/jest:jest",
6
+ "executor": "@nx/jest:jest",
7
7
  "outputs": ["coverage/hooks"],
8
8
  "options": { "jestConfig": "packages/hooks/jest.config.js", "passWithNoTests": true }
9
9
  },
@@ -11,13 +11,13 @@
11
11
  "executor": "@jscutlery/semver:version",
12
12
  "options": {
13
13
  "preset": "angular",
14
- "commitMessageFormat": "chore(${projectName}): release version ${version} [skip ci]",
15
- "tagPrefix": "@availity/${projectName}@",
14
+ "commitMessageFormat": "chore({projectName}): release version ${version} [skip ci]",
15
+ "tagPrefix": "@availity/{projectName}@",
16
16
  "baseBranch": "master"
17
17
  }
18
18
  },
19
19
  "lint": {
20
- "executor": "@nrwl/linter:eslint",
20
+ "executor": "@nx/linter:eslint",
21
21
  "options": {
22
22
  "eslintConfig": ".eslintrc.yaml",
23
23
  "lintFilePatterns": ["packages/hooks/**/*.{js,ts}"],