@quiltt/react-native 3.5.6 → 3.6.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 +14 -0
- package/dist/index.js +1 -1
- package/package.json +3 -3
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @quiltt/react-native
|
|
2
2
|
|
|
3
|
+
## 3.6.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#229](https://github.com/quiltt/quiltt-js/pull/229) [`f688563`](https://github.com/quiltt/quiltt-js/commit/f6885635d989fb75918cb13e449ca0eec60850fc) Thanks [@zubairaziz](https://github.com/zubairaziz)! - Fix Websockets protocol variable
|
|
8
|
+
|
|
9
|
+
- [#229](https://github.com/quiltt/quiltt-js/pull/229) [`f688563`](https://github.com/quiltt/quiltt-js/commit/f6885635d989fb75918cb13e449ca0eec60850fc) Thanks [@zubairaziz](https://github.com/zubairaziz)! - Fix Websockets protocol variable
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [[`f688563`](https://github.com/quiltt/quiltt-js/commit/f6885635d989fb75918cb13e449ca0eec60850fc), [`f688563`](https://github.com/quiltt/quiltt-js/commit/f6885635d989fb75918cb13e449ca0eec60850fc)]:
|
|
14
|
+
- @quiltt/core@3.6.0
|
|
15
|
+
- @quiltt/react@3.6.0
|
|
16
|
+
|
|
3
17
|
## 3.5.6
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quiltt/react-native",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.6.0",
|
|
4
4
|
"description": "React Native components for Quiltt Connector",
|
|
5
5
|
"homepage": "https://github.com/quiltt/quiltt-js/tree/main/packages/react-native#readme",
|
|
6
6
|
"repository": {
|
|
@@ -26,8 +26,8 @@
|
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@honeybadger-io/core": "6.6.0",
|
|
29
|
-
"@quiltt/core": "3.
|
|
30
|
-
"@quiltt/react": "3.
|
|
29
|
+
"@quiltt/core": "3.6.0",
|
|
30
|
+
"@quiltt/react": "3.6.0"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@apollo/client": "3.9.9",
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '3.
|
|
2
|
+
export const version = '3.6.0'
|