@office-iss/react-native-win32 0.68.0-preview.3 → 0.68.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.json CHANGED
@@ -2,7 +2,34 @@
2
2
  "name": "@office-iss/react-native-win32",
3
3
  "entries": [
4
4
  {
5
- "date": "Mon, 21 Mar 2022 15:08:08 GMT",
5
+ "date": "Mon, 04 Apr 2022 15:11:23 GMT",
6
+ "tag": "@office-iss/react-native-win32_v0.68.0",
7
+ "version": "0.68.0",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "author": "34109996+chiaramooney@users.noreply.github.com",
12
+ "package": "@office-iss/react-native-win32",
13
+ "commit": "133fd353a14c08706d71411191217786347bc10f",
14
+ "comment": "Bump RN Dependency"
15
+ },
16
+ {
17
+ "author": "34109996+chiaramooney@users.noreply.github.com",
18
+ "package": "@office-iss/react-native-win32",
19
+ "commit": "f5199ee384e936805081462ccb2205feb3f332ad",
20
+ "comment": "Promote 0.68 to latest"
21
+ },
22
+ {
23
+ "author": "beachball",
24
+ "package": "@office-iss/react-native-win32",
25
+ "comment": "Bump @react-native-windows/virtualized-list to v0.68.0",
26
+ "commit": "d32c32b9d4cfa48eed7941272af3e9da45c1d51c"
27
+ }
28
+ ]
29
+ }
30
+ },
31
+ {
32
+ "date": "Mon, 21 Mar 2022 15:08:45 GMT",
6
33
  "tag": "@office-iss/react-native-win32_v0.68.0-preview.3",
7
34
  "version": "0.68.0-preview.3",
8
35
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,18 +1,28 @@
1
1
  # Change Log - @office-iss/react-native-win32
2
2
 
3
- This log was last generated on Mon, 21 Mar 2022 15:08:08 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 04 Apr 2022 15:11:23 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.68.0-preview.3
7
+ ## 0.68.0
8
8
 
9
- Mon, 21 Mar 2022 15:08:08 GMT
9
+ Mon, 04 Apr 2022 15:11:23 GMT
10
10
 
11
- ### Changes
11
+ ### Patches
12
12
 
13
- - Integrate 0.68.0-rc.2 (34109996+chiaramooney@users.noreply.github.com)
14
- - Bump @react-native-windows/virtualized-list to v0.68.0-preview.3
13
+ - Bump RN Dependency (34109996+chiaramooney@users.noreply.github.com)
14
+ - Promote 0.68 to latest (34109996+chiaramooney@users.noreply.github.com)
15
+ - Bump @react-native-windows/virtualized-list to v0.68.0
15
16
 
17
+ ## 0.68.0-preview.3
18
+
19
+ Mon, 21 Mar 2022 15:08:45 GMT
20
+
21
+ ### Changes
22
+
23
+ - Integrate 0.68.0-rc.2 (34109996+chiaramooney@users.noreply.github.com)
24
+ - Bump @react-native-windows/virtualized-list to v0.68.0-preview.3
25
+
16
26
  ## 0.68.0-preview.2
17
27
 
18
28
  Mon, 14 Feb 2022 16:08:39 GMT
@@ -170,7 +170,8 @@ const SwitchWithForwardedRef: React.AbstractComponent<
170
170
  // that the update should be ignored and we should stick with the value
171
171
  // that we have in JS.
172
172
  const jsValue = value === true;
173
- const shouldUpdateNativeSwitch = native.value !== jsValue;
173
+ const shouldUpdateNativeSwitch =
174
+ native.value != null && native.value !== jsValue;
174
175
  if (
175
176
  shouldUpdateNativeSwitch &&
176
177
  nativeSwitchRef.current?.setNativeProps != null
@@ -13,5 +13,5 @@ exports.version = {
13
13
  major: 0,
14
14
  minor: 68,
15
15
  patch: 0,
16
- prerelease: 'rc.2',
16
+ prerelease: null,
17
17
  };
package/overrides.json CHANGED
@@ -7,7 +7,7 @@
7
7
  "**/__snapshots__/**",
8
8
  "src/rntypes/**"
9
9
  ],
10
- "baseVersion": "0.68.0-rc.2",
10
+ "baseVersion": "0.68.0",
11
11
  "overrides": [
12
12
  {
13
13
  "type": "derived",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@office-iss/react-native-win32",
3
- "version": "0.68.0-preview.3",
3
+ "version": "0.68.0",
4
4
  "description": "Implementation of react native on top of Office's Win32 platform.",
5
5
  "license": "MIT",
6
6
  "main": "./index.win32.js",
@@ -25,7 +25,7 @@
25
25
  "@react-native-community/cli": "^7.0.3",
26
26
  "@react-native-community/cli-platform-android": "^7.0.1",
27
27
  "@react-native-community/cli-platform-ios": "^7.0.1",
28
- "@react-native-windows/virtualized-list": "0.68.0-preview.3",
28
+ "@react-native-windows/virtualized-list": "0.68.0",
29
29
  "@react-native/assets": "1.0.0",
30
30
  "@react-native/normalize-color": "2.0.0",
31
31
  "@react-native/polyfills": "2.0.0",
@@ -72,21 +72,21 @@
72
72
  "just-scripts": "^1.3.3",
73
73
  "prettier": "^2.4.1",
74
74
  "react": "17.0.2",
75
- "react-native": "0.68.0-rc.2",
75
+ "react-native": "^0.68.0",
76
76
  "react-native-platform-override": "^1.6.4",
77
77
  "react-shallow-renderer": "16.14.1",
78
78
  "typescript": "^4.4.4"
79
79
  },
80
80
  "peerDependencies": {
81
81
  "react": "17.0.2",
82
- "react-native": "0.68.0-rc.2"
82
+ "react-native": "^0.68.0"
83
83
  },
84
84
  "beachball": {
85
- "defaultNpmTag": "preview",
85
+ "defaultNpmTag": "latest",
86
86
  "disallowedChangeTypes": [
87
87
  "major",
88
88
  "minor",
89
- "patch"
89
+ "prerelease"
90
90
  ]
91
91
  },
92
92
  "promoteRelease": true,