File tree Expand file tree Collapse file tree 4 files changed +42
-1
lines changed Expand file tree Collapse file tree 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'
22
33const versionsWithContent = {
44 [ PACKAGE_NAMES . RN ] : [
5+ '0.73' ,
56 '0.72' ,
7+ '0.71' ,
68 '0.69' ,
79 '0.68' ,
810 '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'
33
44const release : ReleaseT = {
55 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' ,
78 links : [
89 {
910 title : 'Show about the major changes on React Native 0.72.0-rc.1' ,
1011 url : 'https://github.com/facebook/react-native/releases/tag/v0.72.0-rc.1' ,
1112 } ,
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+ } ,
1217 ] ,
1318 } ,
1419 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