-
Notifications
You must be signed in to change notification settings - Fork 44
Release for 2.3.0-beta.o #812
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
b9fbb06
3b252d1
8b6f82c
628a4c2
79f71ec
a5558d6
d74383f
a8d3008
ba7fccc
95e8d92
ef7cf1d
980123d
917835b
4a47ef2
85b18fa
fb1e938
c474b93
e0c0a24
05114b1
d097190
7de5d61
015f8fa
2385cc0
44ffd76
d5c4c04
f0cdd24
8df3131
47a283d
7278e0c
a22a039
2f06661
b6d5354
fd91c2b
6cd11bb
7374226
4b2dff4
82f9b15
a41952d
4623abe
82b2cda
be76f7e
7890401
2abe457
e609aa1
094fa0c
028323f
9b76334
7c4f984
2cffe33
573db46
2ba364f
dfc6a16
df4ae5e
2e983a8
96ad2c6
c72f9d1
9067981
9097428
17deaef
2db3ae7
83f65b4
186e9d9
c758bcb
d94b4d3
edcd445
e0c9d7f
c9311c9
78927bc
af74f6c
3b8a98d
3c75cac
99b9ebd
7ac4c6f
1526040
93232f5
f3a6f5b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,3 +1,17 @@ | ||||||||||||||
| ## 2.3.0-beta.0 | ||||||||||||||
|
|
||||||||||||||
| ### Updates | ||||||||||||||
| - Added embedded messaging functionality. This includes the ability to: | ||||||||||||||
| - Manually sync the messages with `Iterable.embeddedManager.syncMessages()` | ||||||||||||||
| - Get the messages with `Iterable.embeddedManager .getMessages([PLACEMENT_IDS])` | ||||||||||||||
| - Start an embedded session with `Iterable.embeddedManager.startSession()` | ||||||||||||||
| - End an embedded session with `Iterable.embeddedManager.endSession()` | ||||||||||||||
| - Start an embedded impression with | ||||||||||||||
| `Iterable.embeddedManager.startImpression(MESSAGE_ID, PLACEMENT_ID])` | ||||||||||||||
| - Pause an embedded impression with | ||||||||||||||
| `Iterable.embeddedManager.pauseImpression(MESSAGE_ID])` | ||||||||||||||
|
Comment on lines
+10
to
+12
|
||||||||||||||
| `Iterable.embeddedManager.startImpression(MESSAGE_ID, PLACEMENT_ID])` | |
| - Pause an embedded impression with | |
| `Iterable.embeddedManager.pauseImpression(MESSAGE_ID])` | |
| `Iterable.embeddedManager.startImpression(MESSAGE_ID, PLACEMENT_ID)` | |
| - Pause an embedded impression with | |
| `Iterable.embeddedManager.pauseImpression(MESSAGE_ID)` |
Large diffs are not rendered by default.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
| @@ -1,38 +1,131 @@ | ||||||
| import { StyleSheet } from 'react-native'; | ||||||
| import { button, buttonText, container, hr, link, input, title, subtitle } from '../../constants'; | ||||||
| import { utilityColors, backgroundColors } from '../../constants/styles/colors'; | ||||||
| import { | ||||||
| backgroundColors, | ||||||
| button, | ||||||
| buttonText, | ||||||
| colors, | ||||||
| container, | ||||||
| hr, | ||||||
| input, | ||||||
| modalButton, | ||||||
| modalButtons, | ||||||
| modalContent, | ||||||
| modalOverlay, | ||||||
| subtitle, | ||||||
| title, | ||||||
| utilityColors | ||||||
|
||||||
| utilityColors | |
| utilityColors, |
Copilot
AI
Apr 29, 2026
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Minor formatting: container:{ should be container: { to match the codebase’s formatting conventions (and what Prettier will output).
| container:{ | |
| container: { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In this changelog bullet, there’s an extra space between
embeddedManagerand.getMessages(...), which makes the example invalid when copied. Please remove the space so the example matches the actual API (Iterable.embeddedManager.getMessages(...)).