react-native-windows 0.65.11 → 0.65.14

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,52 @@
2
2
  "name": "react-native-windows",
3
3
  "entries": [
4
4
  {
5
- "date": "Mon, 31 Jan 2022 16:12:01 GMT",
5
+ "date": "Mon, 11 Jul 2022 15:10:43 GMT",
6
+ "tag": "react-native-windows_v0.65.14",
7
+ "version": "0.65.14",
8
+ "comments": {
9
+ "patch": [
10
+ {
11
+ "comment": "[0.65] CG updates for 6/28/22",
12
+ "author": "jthysell@microsoft.com",
13
+ "commit": "4ff64a9cc1cddc2ff2d70517726e9e20c6e4afeb",
14
+ "package": "react-native-windows"
15
+ }
16
+ ]
17
+ }
18
+ },
19
+ {
20
+ "date": "Mon, 30 May 2022 15:09:30 GMT",
21
+ "tag": "react-native-windows_v0.65.13",
22
+ "version": "0.65.13",
23
+ "comments": {
24
+ "patch": [
25
+ {
26
+ "comment": "[0.65] Change CG registration for folly and fmt from `other` to `git`",
27
+ "author": "jthysell@microsoft.com",
28
+ "commit": "9de7d5e8140723942f8734a16c0a100714324f34",
29
+ "package": "react-native-windows"
30
+ }
31
+ ]
32
+ }
33
+ },
34
+ {
35
+ "date": "Mon, 07 Feb 2022 16:12:32 GMT",
36
+ "tag": "react-native-windows_v0.65.12",
37
+ "version": "0.65.12",
38
+ "comments": {
39
+ "patch": [
40
+ {
41
+ "comment": "Replace __APPLE__ with __clang__ where applicable (#9461)",
42
+ "author": "julio.rocha@microsoft.com",
43
+ "commit": "a6dfccfb6cb32bbfd0ab9fa565f18b1b88890ac4",
44
+ "package": "react-native-windows"
45
+ }
46
+ ]
47
+ }
48
+ },
49
+ {
50
+ "date": "Mon, 31 Jan 2022 16:12:18 GMT",
6
51
  "tag": "react-native-windows_v0.65.11",
7
52
  "version": "0.65.11",
8
53
  "comments": {
package/CHANGELOG.md CHANGED
@@ -1,17 +1,41 @@
1
1
  # Change Log - react-native-windows
2
2
 
3
- This log was last generated on Mon, 31 Jan 2022 16:12:01 GMT and should not be manually modified.
3
+ This log was last generated on Mon, 11 Jul 2022 15:10:43 GMT and should not be manually modified.
4
4
 
5
5
  <!-- Start content -->
6
6
 
7
- ## 0.65.11
7
+ ## 0.65.14
8
8
 
9
- Mon, 31 Jan 2022 16:12:01 GMT
9
+ Mon, 11 Jul 2022 15:10:43 GMT
10
10
 
11
11
  ### Patches
12
12
 
13
- - [0.65] Avoid capturing raw this pointer in WebSocket module (julio.rocha@microsoft.com)
13
+ - [0.65] CG updates for 6/28/22 (jthysell@microsoft.com)
14
14
 
15
+ ## 0.65.13
16
+
17
+ Mon, 30 May 2022 15:09:30 GMT
18
+
19
+ ### Patches
20
+
21
+ - [0.65] Change CG registration for folly and fmt from `other` to `git` (jthysell@microsoft.com)
22
+
23
+ ## 0.65.12
24
+
25
+ Mon, 07 Feb 2022 16:12:32 GMT
26
+
27
+ ### Patches
28
+
29
+ - Replace __APPLE__ with __clang__ where applicable (#9461) (julio.rocha@microsoft.com)
30
+
31
+ ## 0.65.11
32
+
33
+ Mon, 31 Jan 2022 16:12:18 GMT
34
+
35
+ ### Patches
36
+
37
+ - [0.65] Avoid capturing raw this pointer in WebSocket module (julio.rocha@microsoft.com)
38
+
15
39
  ## 0.65.10
16
40
 
17
41
  Mon, 17 Jan 2022 16:11:34 GMT
@@ -18,8 +18,12 @@
18
18
  The PR (windows-vs-pr.yml) and CI (publish.yml() turn it back on.
19
19
  -->
20
20
  <EnableSourceLink Condition="'$(EnableSourceLink)' == ''">false</EnableSourceLink>
21
+ <!-- When bumping the Folly version, be sure to bump the git hash of that version's commit too. -->
21
22
  <FollyVersion>2021.05.10.00</FollyVersion>
23
+ <FollyCommitHash>ba405c6be59bc77905602d25d7dd4fb9685e6e04</FollyCommitHash>
24
+ <!-- When bumping the fmt version, be sure to bump the git hash of that version's commit too. -->
22
25
  <FmtVersion>7.1.3</FmtVersion>
26
+ <FmtCommitHash>7bdf0628b1276379886c7f6dda2cef2b3b374f0b</FmtCommitHash>
23
27
  </PropertyGroup>
24
28
 
25
29
  <PropertyGroup Label="Configuration">
@@ -299,12 +299,11 @@
299
299
  <CGManifestText>{
300
300
  "Registrations": [
301
301
  {
302
- "Component": {
303
- "Type": "other",
304
- "Other": {
305
- "Name": "folly",
306
- "Version": "$(FollyVersion)",
307
- "DownloadUrl": "https://github.com/facebook/folly/archive/v$(FollyVersion).zip"
302
+ "Component": {
303
+ "Type": "git",
304
+ "Git": {
305
+ "RepositoryUrl": "https://github.com/facebook/folly",
306
+ "CommitHash": "$(FollyCommitHash)"
308
307
  }
309
308
  },
310
309
  "DevelopmentDependency": false
@@ -280,7 +280,7 @@ constexpr void ValidateCoroutineArg() noexcept {
280
280
  static_assert(
281
281
  !std::is_reference_v<TArg> && !std::is_pointer_v<TArg>,
282
282
  "Coroutine parameter must be passed by value for safe access"
283
- #ifndef __APPLE__
283
+ #ifndef __clang__
284
284
  ": " __FUNCSIG__
285
285
  #endif
286
286
  );
package/fmt/fmt.vcxproj CHANGED
@@ -111,14 +111,13 @@
111
111
  <Message Importance="High" Text="Generating $([MSBuild]::NormalizePath($(FmtDir)..))\cgmanifest.json." Condition="!Exists('$([MSBuild]::NormalizePath($(FmtDir)..))\cgmanifest.json')" />
112
112
  <PropertyGroup>
113
113
  <CGManifestText>{
114
- "Registrations": [
114
+ "Registrations": [
115
115
  {
116
- "Component": {
117
- "Type": "other",
118
- "Other": {
119
- "Name": "fmt",
120
- "Version": "$(FmtVersion)",
121
- "DownloadUrl": "https://github.com/fmtlib/fmt/archive/refs/tags/$(FmtVersion).zip"
116
+ "Component": {
117
+ "Type": "git",
118
+ "Git": {
119
+ "RepositoryUrl": "https://github.com/fmtlib/fmt",
120
+ "CommitHash": "$(FmtCommitHash)"
122
121
  }
123
122
  },
124
123
  "DevelopmentDependency": false
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-windows",
3
- "version": "0.65.11",
3
+ "version": "0.65.14",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",