Skip to content

Commit

Permalink
Merge pull request #383 from fxamauri/feat/release-useful-content-app…
Browse files Browse the repository at this point in the history
…le-privacy

feat: useful content apple privacy
  • Loading branch information
lucasbento committed Apr 25, 2024
2 parents dbaab4e + 2cf3081 commit 72c581c
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/releases/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
17 changes: 17 additions & 0 deletions src/releases/react-native/0.71.tsx
Original file line number Diff line number Diff line change
@@ -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
7 changes: 6 additions & 1 deletion src/releases/react-native/0.72.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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: [
Expand Down
17 changes: 17 additions & 0 deletions src/releases/react-native/0.73.tsx
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 72c581c

Please sign in to comment.