instance_id
stringlengths
17
41
org
stringclasses
19 values
repo
stringclasses
19 values
number
int64
29
21.7k
state
stringclasses
1 value
title
stringlengths
9
118
body
stringlengths
10
5.5k
base
unknown
resolved_issues
unknown
lang
stringclasses
4 values
problem_statement
stringlengths
51
34.5k
hints
stringlengths
1
65.8k
pull_url
stringlengths
40
64
issue_urls
unknown
test_command
stringlengths
66
10.4k
fix_patch
stringlengths
365
784k
test_patch
stringlengths
382
698k
n2p_tests
unknown
f2p_tests
unknown
p2p_tests
unknown
s2p_tests
unknown
wordpress-mobile__WordPress-Android-19112
wordpress-mobile
WordPress-Android
19,112
closed
Implements: Viewmodel slice for ActivityLogCard
Closes #19022 ## Description Implements the viewmodel slice for Activity log card ## To test: - Go to app - Login with a site having activity log - Go to me → Debug settings - Verify that `dashboard_activity_log` flag doesn’t exist - Click on an `ActivityCardItem` - Verify that the event is triggered ...
{ "label": "wordpress-mobile:feature/dashboard-personalization", "ref": "feature/dashboard-personalization", "sha": "16ee5ea5241b24dec4692dd455473b967f64c0f6" }
[ { "number": 19022, "title": "Dashboard Personalization: Refactor Recent Activity Card", "body": "Refactor the recent activity card\r\n\r\n```[tasklist]\r\n### Tasks\r\n- [ ] Remove activity log remote feature flag\r\n- [ ] Create ActivityLogViewModelSlice\r\n- [ ] Move tracking to ViewModelSlice\r\n- [ ...
kotlin
Dashboard Personalization: Refactor Recent Activity Card Refactor the recent activity card ```[tasklist] ### Tasks - [ ] Remove activity log remote feature flag - [ ] Create ActivityLogViewModelSlice - [ ] Move tracking to ViewModelSlice - [ ] Update unit tests ```
null
https://github.com/wordpress-mobile/WordPress-Android/pull/19112
[ "https://github.com/wordpress-mobile/WordPress-Android/issues/19022" ]
./gradlew :WordPress:testWordpressVanillaDebugUnitTest --tests "org.wordpress.android.ui.mysite.cards.dashboard.activity.ActivityLogCardViewModelSliceTest" --tests "org.wordpress.android.ui.mysite.cards.dashboard.activity.DashboardActivityLogCardFeatureUtilsTest" --tests "org.wordpress.android.ui.mysite.MySiteViewModel...
diff --git a/WordPress/build.gradle b/WordPress/build.gradle index db53819515e6..1e56a4912799 100644 --- a/WordPress/build.gradle +++ b/WordPress/build.gradle @@ -146,7 +146,6 @@ android { buildConfigField "boolean", "JETPACK_INSTALL_FULL_PLUGIN", "false" buildConfigField "boolean", "ENABLE_BLAZE_FEAT...
diff --git a/WordPress/src/test/java/org/wordpress/android/ui/mysite/MySiteViewModelTest.kt b/WordPress/src/test/java/org/wordpress/android/ui/mysite/MySiteViewModelTest.kt index 3aa003be9c75..7eacc476e1b0 100644 --- a/WordPress/src/test/java/org/wordpress/android/ui/mysite/MySiteViewModelTest.kt +++ b/WordPress/src/te...
{ "org.wordpress.android.ui.mysite.MySiteViewModelTest.given remove undo snackbar, when undo is clicked, then it updates setting and refresh prompts": { "run": "PASS", "test": "NONE", "fix": "PASS" }, "org.wordpress.android.ui.mysite.MySiteViewModelTest.when domain registration card is shown, then car...
{}
{}
{}
wordpress-mobile__WordPress-Android-19059
wordpress-mobile
WordPress-Android
19,059
closed
Dashboard Personalization: Todays Stats Implement Hide This
Closes #18944 This PR implements the logic for hiding the `todays_stats` dashboard card when the "hide this" more menu item is tapped. **Merge Instructions** - Ensure PR #19058 has been merged - Remove Not Ready for Merge - Ensure base branch is feature/dashboard-personalization - Merge as normal **To tes...
{ "label": "wordpress-mobile:feature/dashboard-personalization", "ref": "feature/dashboard-personalization", "sha": "6f426cd45394c7085a5ccbb391aed6deda97c2d4" }
[ { "number": 18944, "title": "Dashboard Personalization: Add more menu to Today's Stats card", "body": "Today's Stats card\r\n\r\n\r\n```[tasklist]\r\n### Tasks\r\n- [x] Add more menu with options **View Stats** and **Hide This**\r\n- [x] Implement action for Hide This -> Turn the today's stats preferenc...
kotlin
Dashboard Personalization: Add more menu to Today's Stats card Today's Stats card ```[tasklist] ### Tasks - [x] Add more menu with options **View Stats** and **Hide This** - [x] Implement action for Hide This -> Turn the today's stats preference to hide - [x] Implement action for View Stats -> navigate to stat...
null
https://github.com/wordpress-mobile/WordPress-Android/pull/19059
[ "https://github.com/wordpress-mobile/WordPress-Android/issues/18944" ]
./gradlew :WordPress:testWordpressVanillaDebugUnitTest --tests "org.wordpress.android.ui.mysite.cards.dashboard.CardsSourceTest" --tests "org.wordpress.android.ui.mysite.cards.dashboard.todaysstats.TodaysStatsViewModelSliceTest"
diff --git a/WordPress/src/main/java/org/wordpress/android/ui/mysite/MySiteViewModel.kt b/WordPress/src/main/java/org/wordpress/android/ui/mysite/MySiteViewModel.kt index 905d06f1532a..ecf046c70f95 100644 --- a/WordPress/src/main/java/org/wordpress/android/ui/mysite/MySiteViewModel.kt +++ b/WordPress/src/main/java/org/...
diff --git a/WordPress/src/test/java/org/wordpress/android/ui/mysite/cards/dashboard/CardsSourceTest.kt b/WordPress/src/test/java/org/wordpress/android/ui/mysite/cards/dashboard/CardsSourceTest.kt index bb1d6d601da8..01014309a99e 100644 --- a/WordPress/src/test/java/org/wordpress/android/ui/mysite/cards/dashboard/Cards...
{ "org.wordpress.android.ui.mysite.cards.dashboard.CardsSourceTest.given activity feature disabled, when refresh is invoked, then activity not requested": { "run": "PASS", "test": "NONE", "fix": "PASS" }, "org.wordpress.android.ui.mysite.cards.dashboard.todaysstats.TodaysStatsViewModelSliceTest.given ...
{}
{}
{}
wordpress-mobile__WordPress-Android-18959
wordpress-mobile
WordPress-Android
18,959
closed
[Post Upload] Crash fix: remove call to mutex#unlock from UploadStarter
Fixes #18958 The `mutex.unlock` call is redundant (because we already use `withLock`, which unlocks after the block runs) and can be the source of crashes since the mutex cannot be unlocked if it's not locked and the internal `Mutex` source code tries to unlock it in certain Cancellation situations. More info in ...
{ "label": "wordpress-mobile:release/23.0", "ref": "release/23.0", "sha": "361bc30a324fc87355c6f7883c340d89f79743cc" }
[ { "number": 18958, "title": "CompletionHandlerException: Exception in resume onCancellation handler for CancellableContinuation(DispatchedContinuation[Dis...", "body": "Sentry Issue: [JETPACK-ANDROID-92S](https://a8c.sentry.io/issues/4295575735/?referrer=github_integration)\n\n```\nIllegalStateException...
kotlin
CompletionHandlerException: Exception in resume onCancellation handler for CancellableContinuation(DispatchedContinuation[Dis... Sentry Issue: [JETPACK-ANDROID-92S](https://a8c.sentry.io/issues/4295575735/?referrer=github_integration) ``` IllegalStateException: This mutex is not locked at kotlinx.coroutines.sync.M...
**TLDR:** I think our code is silently making the crash look like it’s an internal Mutex problem but in reality, we might be calling `unlock` unnecessarily when the Mutex internals are not expecting it. We should remove [this line](https://github.com/wordpress-mobile/WordPress-Android/blob/1b5e1f3fc97e13d0068ea803d5df7...
https://github.com/wordpress-mobile/WordPress-Android/pull/18959
[ "https://github.com/wordpress-mobile/WordPress-Android/issues/18958" ]
./gradlew :WordPress:testWordpressVanillaDebugUnitTest --tests "org.wordpress.android.ui.uploads.UploadStarterMutexTest"
diff --git a/WordPress/src/main/java/org/wordpress/android/ui/uploads/UploadStarter.kt b/WordPress/src/main/java/org/wordpress/android/ui/uploads/UploadStarter.kt index 66bff7046d62..ceca1428fc62 100644 --- a/WordPress/src/main/java/org/wordpress/android/ui/uploads/UploadStarter.kt +++ b/WordPress/src/main/java/org/wor...
diff --git a/WordPress/src/test/java/org/wordpress/android/ui/uploads/UploadStarterMutexTest.kt b/WordPress/src/test/java/org/wordpress/android/ui/uploads/UploadStarterMutexTest.kt new file mode 100644 index 000000000000..611e018567a2 --- /dev/null +++ b/WordPress/src/test/java/org/wordpress/android/ui/uploads/UploadSt...
{}
{ "org.wordpress.android.ui.uploads.UploadStarterMutexTest.should not crash if uploadPost throws an exception": { "run": "NONE", "test": "FAIL", "fix": "PASS" } }
{}
{}
Expensify__App-2818
Expensify
App
2,818
closed
Add the Recents and Contacts headers to the single-user participants page used in the Request Money and New Chat flows
### Details We are now consistently show the `recents` and `contacts` headers on the participant selector pages across all four of these flows: `Request Money`, `Split Bill`, `New Chat` and New` Group`. ### Fixed Issues Fixed #2760 ### Tests 1. Click the `+` icon on the home screen to access the CreateMenu ...
{ "label": "Expensify:main", "ref": "main", "sha": "a97df32c05c8901f90c0222d32c229a0e89f97aa" }
[ { "number": 2760, "title": "Add the Recents and Contacts headers to the single-user participants page used in the Request Money and New Chat flows ", "body": "If you haven’t already, check out our [contributing guidelines](https://github.com/Expensify/ReactNativeChat/blob/main/CONTRIBUTING.md) for onboa...
typescript
Add the Recents and Contacts headers to the single-user participants page used in the Request Money and New Chat flows If you haven’t already, check out our [contributing guidelines](https://github.com/Expensify/ReactNativeChat/blob/main/CONTRIBUTING.md) for onboarding and email contributors@expensify.com to request t...
Triggered auto assignment to @mallenexpensify (`External`), see https://stackoverflow.com/c/expensify/questions/8582 for more details. Triggered auto assignment to @chiragsalian (`Engineering`), see https://stackoverflow.com/c/expensify/questions/4319 for more details. Sorry about that. Disregard @chiragsalian and @mal...
https://github.com/Expensify/App/pull/2818
[ "https://github.com/Expensify/App/issues/2760" ]
NODE_OPTIONS='--experimental-vm-modules --max-old-space-size=4096' npx --no-install jest tests/unit/OptionsListUtilsTest.js --json --outputFile=/tmp/test-results.json --passWithNoTests 2>&1
diff --git a/src/components/OptionsList.js b/src/components/OptionsList.js index 5629831e7f49..96c06425fbb9 100644 --- a/src/components/OptionsList.js +++ b/src/components/OptionsList.js @@ -188,7 +188,7 @@ class OptionsList extends Component { if (title && shouldShow && !this.props.hideSectionHeaders) { ...
diff --git a/tests/unit/OptionsListUtilsTest.js b/tests/unit/OptionsListUtilsTest.js index d24b3b5a2cdf..9ce34322cdfb 100644 --- a/tests/unit/OptionsListUtilsTest.js +++ b/tests/unit/OptionsListUtilsTest.js @@ -193,20 +193,25 @@ describe('OptionsListUtils', () => { }); it('getNewChatOptions()', () => { + ...
{}
{ "tests/unit/OptionsListUtilsTest.js": { "run": "PASS", "test": "FAIL", "fix": "PASS" }, "getNewChatOptions()": { "run": "PASS", "test": "FAIL", "fix": "PASS" } }
{ "getNewGroupOptions()": { "run": "PASS", "test": "PASS", "fix": "PASS" }, "getSidebarOptions() with GSD priority mode": { "run": "PASS", "test": "PASS", "fix": "PASS" }, "getSidebarOptions() with default priority mode": { "run": "PASS", "test": "PASS", "fix": "PASS" }, ...
{}
Expensify__App-1361
Expensify
App
1,361
closed
Add Expensify.cash to iOS and Android native share menus
### Details Uses [react-native-share-menu](https://github.com/meedan/react-native-share-menu) to add Expensify.cash to the native share menu on mobile platforms and enables sharing to the app. Chat selection is made on separate page, which reuses components from Home page. To achieve this I had to modify some sideb...
{ "label": "Expensify:master", "ref": "master", "sha": "4647fd3038b85b85d1d5ff3d5c0259c4ff4d4f3f" }
[ { "number": 1294, "title": "[Improvement] Add expensify.cash to iOS and Android native share menus", "body": "If you haven’t already, check out our [contributing guidelines](https://github.com/Expensify/ReactNativeChat/blob/master/CONTRIBUTING.md) for onboarding!\r\n___\r\n\r\n**Platform - version:** \...
typescript
[Improvement] Add expensify.cash to iOS and Android native share menus If you haven’t already, check out our [contributing guidelines](https://github.com/Expensify/ReactNativeChat/blob/master/CONTRIBUTING.md) for onboarding! ___ **Platform - version:** iOS, Android - All versions ## Problem A common action...
Is this task still available? I would like to work on this issue.
https://github.com/Expensify/App/pull/1361
[ "https://github.com/Expensify/App/issues/1294" ]
NODE_OPTIONS='--experimental-vm-modules --max-old-space-size=4096' npx --no-install jest tests/unit/loginTest.js --json --outputFile=/tmp/test-results.json --passWithNoTests 2>&1
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 68c269fe1bbe..12e96677ec23 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -19,11 +19,18 @@ android:label="@string/app_name" android:configChan...
diff --git a/tests/unit/loginTest.js b/tests/unit/loginTest.js index 8bc0ec19d6a1..be22eef363f7 100644 --- a/tests/unit/loginTest.js +++ b/tests/unit/loginTest.js @@ -10,6 +10,13 @@ import renderer from 'react-test-renderer'; import App from '../../src/App'; import Expensify from '../../src/Expensify'; +// Set up m...
{ "should render loading screen first": { "run": "PASS", "test": "NONE", "fix": "PASS" }, "renders correctly": { "run": "PASS", "test": "NONE", "fix": "PASS" } }
{ "tests/unit/loginTest.js": { "run": "PASS", "test": "FAIL", "fix": "PASS" } }
{}
{}
RocketChat__Rocket.Chat.ReactNative-3696
RocketChat
Rocket.Chat.ReactNative
3,696
closed
[FIX] Mention from suggestions concatenates to query string on autocomplete
<!-- This is a pull request template, you do not need to uncomment or remove the comments, they won't show up in the PR text. --> ## Proposed changes <!-- Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature r...
{ "label": "RocketChat:develop", "ref": "develop", "sha": "07094aabe6306add00001197bd780144c3645bee" }
[ { "number": 3342, "title": "[bug] Autocomplete don't clear search query", "body": "<!-- \r\n\r\nPlease see our guide for opening issues: https://rocket.chat/docs/contributing/reporting-issues\r\n\r\nIf you have questions or are looking for help/support please see: https://rocket.chat/docs/getting-suppor...
typescript
[bug] Autocomplete don't clear search query <!-- Please see our guide for opening issues: https://rocket.chat/docs/contributing/reporting-issues If you have questions or are looking for help/support please see: https://rocket.chat/docs/getting-support If you are experiencing a bug please search our issues to ...
@diegolmello Hello! Can you take that issue to next sprint? Thank you! Still an issue in 4.24 @ankar84 Done!
https://github.com/RocketChat/Rocket.Chat.ReactNative/pull/3696
[ "https://github.com/RocketChat/Rocket.Chat.ReactNative/issues/3342" ]
NODE_OPTIONS='--experimental-vm-modules --max-old-space-size=4096' npx --no-install jest app/containers/MessageBox/getMentionRegexp.test.js --passWithNoTests 2>&1
diff --git a/app/containers/MessageBox/getMentionRegexp.ts b/app/containers/MessageBox/getMentionRegexp.ts new file mode 100644 index 00000000000..ec8ea5d1483 --- /dev/null +++ b/app/containers/MessageBox/getMentionRegexp.ts @@ -0,0 +1,4 @@ +// Match query string from the message to replace it with the suggestion +cons...
diff --git a/app/containers/MessageBox/getMentionRegexp.test.js b/app/containers/MessageBox/getMentionRegexp.test.js new file mode 100644 index 00000000000..8923ae10013 --- /dev/null +++ b/app/containers/MessageBox/getMentionRegexp.test.js @@ -0,0 +1,56 @@ +import getMentionRegexp from './getMentionRegexp'; + +const re...
{ "removing query text on user suggestion autocomplete (arabic)": { "run": "NONE", "test": "NONE", "fix": "PASS" }, "removing query text on user suggestion autocomplete (latin)": { "run": "NONE", "test": "NONE", "fix": "PASS" }, "removing query text on user suggestion autocomplete (chi...
{ "app/containers/MessageBox/getMentionRegexp.test.js": { "run": "NONE", "test": "FAIL", "fix": "PASS" } }
{}
{}
RocketChat__Rocket.Chat.ReactNative-2462
RocketChat
Rocket.Chat.ReactNative
2,462
closed
[FIX] Local database searches using non-latin characters
<!-- This is a pull request template, you do not need to uncomment or remove the comments, they won't show up in the PR text. --> ## Proposed changes <!-- Describe the big picture of your changes here to communicate to the maintainers why we should accept this pull request. If it fixes a bug or resolves a feature r...
{ "label": "RocketChat:develop", "ref": "develop", "sha": "639d66783800b28bd999a675b6da0b6e37e7a481" }
[ { "number": 2158, "title": "Real Name search doesn't work in Add Users form", "body": "- Your Rocket.Chat Experimental app version: 4.7.0.17188\r\n- Your Rocket.Chat server version: 3.1.1\r\n- Device (or Simulator) you're running with: Xiaomi Mi 9 SE\r\n\r\nSearch for users works perfectly in Directory ...
typescript
Real Name search doesn't work in Add Users form - Your Rocket.Chat Experimental app version: 4.7.0.17188 - Your Rocket.Chat server version: 3.1.1 - Device (or Simulator) you're running with: Xiaomi Mi 9 SE Search for users works perfectly in Directory Search. It does search by username and which is really much imp...
Thanks for opening this @ankar84, we'll try to add this as a fix at our 4.8.0 release, this will probably be launched at end of June. If someone from community want to fix this, feel free to open a Pull Request. 😀 is there any news? The same problem is found in chat search... @ankar84 @djorkaeffalexandre @diegolme...
https://github.com/RocketChat/Rocket.Chat.ReactNative/pull/2462
[ "https://github.com/RocketChat/Rocket.Chat.ReactNative/issues/2158" ]
NODE_OPTIONS='--experimental-vm-modules --max-old-space-size=4096' npx --no-install jest app/lib/database/utils.test.js --passWithNoTests 2>&1
diff --git a/app/containers/MessageBox/index.js b/app/containers/MessageBox/index.js index 8bd71f70499..f5c16bf88b2 100644 --- a/app/containers/MessageBox/index.js +++ b/app/containers/MessageBox/index.js @@ -46,6 +46,7 @@ import CommandsPreview from './CommandsPreview'; import { getUserSelector } from '../../selector...
diff --git a/app/lib/database/utils.test.js b/app/lib/database/utils.test.js new file mode 100644 index 00000000000..dd1e3996e1e --- /dev/null +++ b/app/lib/database/utils.test.js @@ -0,0 +1,37 @@ +/* eslint-disable no-undef */ +import * as utils from './utils'; + +describe('sanitizeLikeStringTester', () => { + // exam...
{}
{ "render test (japanese)": { "run": "NONE", "test": "FAIL", "fix": "PASS" }, "render test (chinese trad)": { "run": "NONE", "test": "FAIL", "fix": "PASS" }, "app/lib/database/utils.test.js": { "run": "NONE", "test": "FAIL", "fix": "PASS" }, "render test (latin)": { ...
{ "render the same result": { "run": "NONE", "test": "PASS", "fix": "PASS" } }
{}