diff --git a/src/releases/index.js b/src/releases/index.js index a039944e..cc21b5ab 100644 --- a/src/releases/index.js +++ b/src/releases/index.js @@ -2,7 +2,9 @@ import { PACKAGE_NAMES } from '../constants' const versionsWithContent = { [PACKAGE_NAMES.RN]: [ + '0.73', '0.72', + '0.71', '0.69', '0.68', '0.64', diff --git a/src/releases/react-native/0.71.tsx b/src/releases/react-native/0.71.tsx new file mode 100644 index 00000000..7ff3a68b --- /dev/null +++ b/src/releases/react-native/0.71.tsx @@ -0,0 +1,17 @@ +import type { ReleaseT } from '../types' + +const release: ReleaseT = { + usefulContent: { + description: + 'React Native 0.71 includes an updated process for the iOS privacy manifest, now required by Apple', + links: [ + { + title: "Learn how to update your app's Apple privacy settings", + url: 'https://github.com/react-native-community/discussions-and-proposals/discussions/776', + }, + ], + }, + comments: [], +} + +export default release diff --git a/src/releases/react-native/0.72.tsx b/src/releases/react-native/0.72.tsx index 9d70805f..97284eaf 100644 --- a/src/releases/react-native/0.72.tsx +++ b/src/releases/react-native/0.72.tsx @@ -3,12 +3,17 @@ import type { ReleaseT } from '../types' const release: ReleaseT = { usefulContent: { - description: 'React Native 0.72 includes a new metro config setup', + description: + 'React Native 0.72 includes a new metro config setup and an updated process for the iOS privacy manifest, now required by Apple', links: [ { title: 'Show about the major changes on React Native 0.72.0-rc.1', url: 'https://github.com/facebook/react-native/releases/tag/v0.72.0-rc.1', }, + { + title: "Learn how to update your app's Apple privacy settings", + url: 'https://github.com/react-native-community/discussions-and-proposals/discussions/776', + }, ], }, comments: [ diff --git a/src/releases/react-native/0.73.tsx b/src/releases/react-native/0.73.tsx new file mode 100644 index 00000000..82a2c3a8 --- /dev/null +++ b/src/releases/react-native/0.73.tsx @@ -0,0 +1,17 @@ +import type { ReleaseT } from '../types' + +const release: ReleaseT = { + usefulContent: { + description: + 'React Native 0.73 includes an updated process for the iOS privacy manifest, now required by Apple', + links: [ + { + title: "Learn how to update your app's Apple privacy settings", + url: 'https://github.com/react-native-community/discussions-and-proposals/discussions/776', + }, + ], + }, + comments: [], +} + +export default release