Skip to content

Commit 72c581c

Browse files
author
Lucas Bento
authored
Merge pull request #383 from fxamauri/feat/release-useful-content-apple-privacy
feat: useful content apple privacy
2 parents dbaab4e + 2cf3081 commit 72c581c

File tree

4 files changed

+42
-1
lines changed

4 files changed

+42
-1
lines changed

Diff for: src/releases/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ import { PACKAGE_NAMES } from '../constants'
22

33
const versionsWithContent = {
44
[PACKAGE_NAMES.RN]: [
5+
'0.73',
56
'0.72',
7+
'0.71',
68
'0.69',
79
'0.68',
810
'0.64',

Diff for: src/releases/react-native/0.71.tsx

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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

Diff for: src/releases/react-native/0.72.tsx

+6-1
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,17 @@ import type { ReleaseT } from '../types'
33

44
const 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: [

Diff for: src/releases/react-native/0.73.tsx

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
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

0 commit comments

Comments
 (0)