-
Notifications
You must be signed in to change notification settings - Fork 255
[PLAT-8912] Review session definition #1820
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
Merged
gingerbenw
merged 18 commits into
integration/v8
from
PLAT-8912-review-session-definition
Oct 10, 2022
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
355407f
ci(electron): add latest major to matrix
kattrali 8fdd891
remove startSession from pushState and replaceState
gingerbenw fbc23a1
remove test for start session
gingerbenw a40ecf3
update CHANGELOG.md
gingerbenw 00c6ddb
deps(react-native): Update bugsnag-cocoa to v6.23.1 (#1817)
nickdowell 1acd89d
ci(electron): use macos 11
kattrali fae168c
ci(electron): add latest major to matrix (#1818)
kattrali 18f7bcb
ci(browser): remove android 5 env (#1822)
kattrali d0a076a
only reset event count on replaceState
gingerbenw 79f4dde
only resetCounter on pushState, _not_ replaceState
gingerbenw 917bc69
Update CHANGELOG.md
gingerbenw d131c04
write basic integration tests for replaceState
gingerbenw 4ef5dbf
Merge branch 'PLAT-8912-review-session-definition' of github.com:bugs…
gingerbenw c221d2f
add tests for startSession
gingerbenw 7aa04f9
deps(react-native): Update bugsnag-cocoa to v6.24.0 (#1825)
nickdowell ceff544
fix(test): lock `react-native-gesture-handler` in the RN test fixture…
lemnik ff3a846
Merge pull request #1828 from bugsnag/lemnik/rn-fix-kotlin-incompatib…
lemnik 5e64a6e
Merge remote-tracking branch 'origin/next' into PLAT-8912-review-sess…
gingerbenw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule bugsnag-cocoa
updated
50 files
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,12 +8,22 @@ if [ "$REACT_NATIVE_VERSION" = "rn0.60" ]; then | |
npm install react-native-reanimated@^1.13 --registry=$REGISTRY_URL | ||
npm install react-native-safe-area-context@^3.1 --registry=$REGISTRY_URL | ||
npm install react-native-screens@^2.18 --registry=$REGISTRY_URL | ||
else | ||
elif [ "$REACT_NATIVE_VERSION" = "rn0.66" ] || [ "$REACT_NATIVE_VERSION" = "rn0.67" ] || [ "$REACT_NATIVE_VERSION" = "rn0.68-hermes" ]; then | ||
npm install @react-native-community/masked-view@^0.1 --registry=$REGISTRY_URL | ||
npm install @react-navigation/native@^6.0 --registry=$REGISTRY_URL | ||
npm install @react-navigation/stack@^6.0 --registry=$REGISTRY_URL | ||
npm install react-native-gesture-handler@^2.2 --registry=$REGISTRY_URL | ||
# gesture-handler locked to avoid Kotlin version conflicts, see "Important changes" at: | ||
# https://github.com/software-mansion/react-native-gesture-handler/releases/tag/2.7.0 | ||
npm install [email protected] --registry=$REGISTRY_URL | ||
npm install react-native-reanimated@^1.13 --registry=$REGISTRY_URL | ||
npm install [email protected] --registry=$REGISTRY_URL | ||
npm install [email protected] --registry=$REGISTRY_URL | ||
else | ||
npm install @react-native-community/masked-view@^0.1 --registry=$REGISTRY_URL | ||
npm install @react-navigation/native@^6.0 --registry=$REGISTRY_URL | ||
npm install @react-navigation/stack@^6.0 --registry=$REGISTRY_URL | ||
npm install react-native-gesture-handler@^2.2 --registry=$REGISTRY_URL | ||
npm install react-native-reanimated@^1.13 --registry=$REGISTRY_URL | ||
npm install [email protected] --registry=$REGISTRY_URL | ||
npm install [email protected] --registry=$REGISTRY_URL | ||
fi |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
consider testing this (at integration level?) or is there already e2e tests