File tree 4 files changed +42
-1
lines changed
4 files changed +42
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,9 @@ import { PACKAGE_NAMES } from '../constants'
2
2
3
3
const versionsWithContent = {
4
4
[ PACKAGE_NAMES . RN ] : [
5
+ '0.73' ,
5
6
'0.72' ,
7
+ '0.71' ,
6
8
'0.69' ,
7
9
'0.68' ,
8
10
'0.64' ,
Original file line number Diff line number Diff line change
1
+ import type { ReleaseT } from '../types'
2
+
3
+ const release : ReleaseT = {
4
+ usefulContent : {
5
+ description :
6
+ 'React Native 0.71 includes an updated process for the iOS privacy manifest, now required by Apple' ,
7
+ links : [
8
+ {
9
+ title : "Learn how to update your app's Apple privacy settings" ,
10
+ url : 'https://github.com/react-native-community/discussions-and-proposals/discussions/776' ,
11
+ } ,
12
+ ] ,
13
+ } ,
14
+ comments : [ ] ,
15
+ }
16
+
17
+ export default release
Original file line number Diff line number Diff line change @@ -3,12 +3,17 @@ import type { ReleaseT } from '../types'
3
3
4
4
const release : ReleaseT = {
5
5
usefulContent : {
6
- description : 'React Native 0.72 includes a new metro config setup' ,
6
+ description :
7
+ 'React Native 0.72 includes a new metro config setup and an updated process for the iOS privacy manifest, now required by Apple' ,
7
8
links : [
8
9
{
9
10
title : 'Show about the major changes on React Native 0.72.0-rc.1' ,
10
11
url : 'https://github.com/facebook/react-native/releases/tag/v0.72.0-rc.1' ,
11
12
} ,
13
+ {
14
+ title : "Learn how to update your app's Apple privacy settings" ,
15
+ url : 'https://github.com/react-native-community/discussions-and-proposals/discussions/776' ,
16
+ } ,
12
17
] ,
13
18
} ,
14
19
comments : [
Original file line number Diff line number Diff line change
1
+ import type { ReleaseT } from '../types'
2
+
3
+ const release : ReleaseT = {
4
+ usefulContent : {
5
+ description :
6
+ 'React Native 0.73 includes an updated process for the iOS privacy manifest, now required by Apple' ,
7
+ links : [
8
+ {
9
+ title : "Learn how to update your app's Apple privacy settings" ,
10
+ url : 'https://github.com/react-native-community/discussions-and-proposals/discussions/776' ,
11
+ } ,
12
+ ] ,
13
+ } ,
14
+ comments : [ ] ,
15
+ }
16
+
17
+ export default release
You can’t perform that action at this time.
0 commit comments