@buddy-technology/offer-component 1.6.0 → 1.7.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 +24 -0
- package/README.md +2 -1
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,27 @@
|
|
|
1
|
+
# [@buddy-technology/offer-component-v1.7.0](https://github.com/Buddy-Technology/ion-to-react/compare/@buddy-technology/offer-component-v1.6.0...@buddy-technology/offer-component-v1.7.0) (2026-02-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Features
|
|
5
|
+
|
|
6
|
+
* simplify PR deploy yml; test both react versions locally via yarn test ([b014286](https://github.com/Buddy-Technology/ion-to-react/commit/b014286fda1884b3b0c677ead990aca8a8074ecf))
|
|
7
|
+
* update peerDependencies to include React 19; new tests for version switching; Update @testing-library/react to v16.1.0; 8. Fully backward compatible with React 16.8+, 17, and 18 ([411576b](https://github.com/Buddy-Technology/ion-to-react/commit/411576b7e229f70c91f1f0c6ed2dccbd5e96db21))
|
|
8
|
+
|
|
9
|
+
# [@buddy-technology/offer-component-v1.7.0](https://github.com/Buddy-Technology/ion-to-react/compare/@buddy-technology/offer-component-v1.6.0...@buddy-technology/offer-component-v1.7.0) (Unreleased)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* Add React 19 support to peerDependencies
|
|
14
|
+
* Add multi-version testing infrastructure for React 18 and 19
|
|
15
|
+
* Update @testing-library/react to v16.1.0 for React 19 compatibility
|
|
16
|
+
|
|
17
|
+
### Notes
|
|
18
|
+
|
|
19
|
+
* Fully backward compatible with React 16.8+, 17, and 18
|
|
20
|
+
* No breaking changes for existing users
|
|
21
|
+
* CI now tests both React 18 and 19 in parallel
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
1
25
|
# [@buddy-technology/offer-component-v1.6.0](https://github.com/Buddy-Technology/ion-to-react/compare/@buddy-technology/offer-component-v1.5.0...@buddy-technology/offer-component-v1.6.0) (2026-01-28)
|
|
2
26
|
|
|
3
27
|
|
package/README.md
CHANGED
|
@@ -22,7 +22,8 @@ React component for adding [Buddy's](https://buddy.insure) Insurance Gateway
|
|
|
22
22
|
- [Capturing Data](#capturing-data)
|
|
23
23
|
|
|
24
24
|
## Requirements
|
|
25
|
-
|
|
25
|
+
- React 16.8.0+
|
|
26
|
+
- Contact [Buddy](mailto:partners@buddy.insure) to obtain a `partnerID` and compatible `ions` for your specific use case.
|
|
26
27
|
|
|
27
28
|
---
|
|
28
29
|
## Installation
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@buddy-technology/offer-component",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"author": "Buddy Technology",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.modern.mjs",
|
|
7
7
|
"types": "./lib/index.d.ts",
|
|
8
8
|
"license": "UNLICENSED",
|
|
9
|
+
"private": false,
|
|
9
10
|
"repository": {
|
|
10
11
|
"type": "git",
|
|
11
12
|
"url": "git://github.com/Buddy-Technology/ion-to-react.git",
|
|
@@ -42,7 +43,7 @@
|
|
|
42
43
|
"devDependencies": {
|
|
43
44
|
"@testing-library/dom": "^10.4.0",
|
|
44
45
|
"@testing-library/jest-dom": "^6.4.8",
|
|
45
|
-
"@testing-library/react": "^16.
|
|
46
|
+
"@testing-library/react": "^16.1.0",
|
|
46
47
|
"@testing-library/user-event": "^14.5.2",
|
|
47
48
|
"@types/jest": "^29.5.10",
|
|
48
49
|
"eslint-config-custom": "*",
|
|
@@ -53,8 +54,8 @@
|
|
|
53
54
|
"typescript": "^5.3.2"
|
|
54
55
|
},
|
|
55
56
|
"peerDependencies": {
|
|
56
|
-
"react": "^16.8.0 || ^17.0.0 || ^18.0.0",
|
|
57
|
-
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
|
|
57
|
+
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
|
|
58
|
+
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
|
|
58
59
|
},
|
|
59
60
|
"publishConfig": {
|
|
60
61
|
"access": "public"
|