commit_hash stringlengths 40 40 | input stringlengths 13 7.99k | output stringlengths 5 155 | full_message stringlengths 6 8.96k |
|---|---|---|---|
2c7ec6150006f8077dbb8e94fb23c85d6ed9eccf | --- ios/Podfile.lock
@@ -548,8 +548,6 @@ PODS:
- React
- RNPermissions (3.0.0):
- React-Core
- - RNReactNativeABeep (1.0.4):
- - React
- RNReactNativeHapticFeedback (1.11.0):
- React-Core
- RNReanimated (1.13.1):
@@ -676,7 +674,6 @@ DEPENDENCIES:
- RNFS (from `../node_modules/react-native... | Removing an unused package and removing some error logs in item info | Removing an unused package and removing some error logs in item info
|
1ccdec9644f22a96090bac17f242f9e7de987d67 | --- .looper-pr.yml
@@ -30,4 +30,3 @@ envs:
SLACK_CHANNEL: 'smdv-miniapp'
-
| feat(ui): update associate exp #SMDV-9999 | feat(ui): update associate exp #SMDV-9999
|
561e8ded59d7c705b76bc35572ffdc6e730b2dd4 | --- package-lock.json
@@ -40,7 +40,7 @@
"@walmart/amp-mini-app": "1.1.59",
"@walmart/ask-sam-chat-components": "^0.2.7",
"@walmart/ask-sam-mini-app": "1.15.4",
- "@walmart/attendance-mini-app": "1.62.9",
+ "@walmart/attendance-mini-app": "1.62.10",
"@walmart/compass-sdk... | ama v1.62.10 | ama v1.62.10
|
0425787c7be1f94f3a6a9d9a2ecc692b0aecea1e | --- package-lock.json
@@ -63,7 +63,7 @@
"@walmart/gtp-shared-components": "2.1.3",
"@walmart/impersonation-mini-app": "1.20.7",
"@walmart/ims-print-services-ui": "2.8.0",
- "@walmart/inbox-mini-app": "0.90.0",
+ "@walmart/inbox-mini-app": "0.90.0-485-977b45c",
"@walmart... | Inbox WmWeek Bug Fix | Inbox WmWeek Bug Fix
|
207ebce6e8222277d7a0126abe26b7d653e27217 | --- packages/allspark-graphql-client/src/apollo/globalRef.ts
@@ -0,0 +1,32 @@
+import { ApolloClient, NormalizedCacheObject } from '@apollo/client';
+
+export const clientRef: { current?: ApolloClient<NormalizedCacheObject> } = {
+ current: undefined,
+};
+
+export const getGraphQLClient = (): ApolloClient<NormalizedC... | feat: add global reference and methods for shared client | feat: add global reference and methods for shared client
|
182aae4b22dd962b7dc09dfb1d1fa597f9dcee37 | --- packages/me-at-walmart-container/__tests__/services/config.test.ts
@@ -0,0 +1,35 @@
+import {
+ ConfigLogger,
+ LISTENER_KEY,
+ MeAtWalmartConfigService,
+ IMeAtWalmartConfigService,
+ MeAtWalmartConfigFetchParams,
+} from '../../src/services/config';
+
+describe('ConfigLogger Module', () => {
+ it('should ex... | chore: test coverage | chore: test coverage
|
e86ae019b7d306ce25789fc77ea0f05a976e02ef | --- packages/allspark-graphql-client/CHANGELOG.md
@@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [0.0.7](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-graphql-c... | chore(version): updating package version | chore(version): updating package version
- @walmart/allspark-graphql-client@0.0.7
- @walmart/allspark-redux-store@1.0.6
|
4e120eb753946aed450968dffcf3f300fb6c1fbd | --- src/mocks/teamMock.ts
@@ -2362,6 +2362,12 @@ export const teamsMock = [
workgroupId: '1000214',
workgroup: 'Food & Consumables',
membership: [
+ {
+ win: '219469728',
+ baseTeam: true,
+ role: 'TA',
+ userId: 'a0p0ioy',
+ },
{
win: '219469721',
... | add abinash to teams mock | add abinash to teams mock
|
f6909aef379d46e0a3a76299269992a6c4a9414b | --- package-lock.json
@@ -50,7 +50,7 @@
"@walmart/core-widget-registry": "~1.2.4",
"@walmart/counts-component-miniapp": "0.1.8",
"@walmart/emergency-mini-app": "1.26.5",
- "@walmart/exception-mini-app": "1.6.5",
+ "@walmart/exception-mini-app": "1.6.10",
"@walmart/facil... | updated exception mini app | updated exception mini app
|
cfed755fad78bda6eab001d3da55106ec3585110 | --- packages/me-at-walmart-container/src/network/index.ts
@@ -9,6 +9,7 @@ export const MeAtWalmartNetworkConfig = (
): AllsparkNetworkConfig => ({
getConnectionType: createGetConnectionType(env.network.internalTestURL),
getWifiSiteId: getWifiSiteId,
+ shouldFetchWiFiSSID: true,
});
export * from './getNetwo... | Update core container network config to fetch ssid | Update core container network config to fetch ssid
|
a709dec83890c3c1d03c846e1ec29502c54b3f85 | --- packages/associate-exp-hub-mini-app/src/components/team-switcher/MyWalmartTeamSwitcher.tsx
@@ -45,7 +45,12 @@ import {
} from '@walmart/allspark-foundation-hub';
import {getUserTeamSelectionInProgress} from '../../store';
import {useTeamSwitcher} from '../../hooks';
-import {useTeamSelection, convertToSelectedTe... | feat(ui): update shift update | feat(ui): update shift update
|
2fa64b3eb1694fcbed896be843bfd02446fbfa03 | --- packages/allspark-redux-store/src/index.ts
@@ -4,6 +4,7 @@ export {
dispatch,
getStore,
reducerManager,
+ useSharedStore,
} from './store';
export * from './actions';
--- packages/allspark-redux-store/src/store/hooks.ts
@@ -0,0 +1,7 @@
+import { useStore } from 'react-redux';
+import { SharedReduxSt... | feat: add hook and utils | feat: add hook and utils
|
d5ecae1b3cb7741662f4e93cf590dbdc87c8a31e | --- README.md
@@ -49,7 +49,7 @@ You will also need to add your SSH key to Walmart github using [these](https://d
## Running on Android
-For faster consecutive builds, ensure that you have successfully run the Android app on the simulator at least once. Once this is confirmed, you can enhance the speed of consecuti... | Update README.md | Update README.md |
b6d14cd700b07ac29488b806450aa8874ec59e7d | --- package-lock.json
@@ -36,8 +36,8 @@
"@walmart/allspark-neon-core": "0.1.31",
"@walmart/amp-mini-app": "1.0.11",
"@walmart/ask-sam-chat-components": "^0.2.7",
- "@walmart/ask-sam-mini-app": "1.3.56",
- "@walmart/attendance-mini-app": "0.33.0",
+ "@walmart/ask-sam-mini-... | replaced TCMA tor imports with AMA | replaced TCMA tor imports with AMA
|
0e1521dedc85eea394e6aad816ec5e9db2bd9f85 | --- package.json
@@ -37,7 +37,7 @@
"@react-navigation/stack": "^5.9.0",
"@terrylinla/react-native-sketch-canvas": "^0.8.0",
"@types/lodash": "^4.14.159",
- "@walmart/allspark-home-mini-app": "^0.1.0",
+ "@walmart/allspark-home-mini-app": "0.1.0",
"@walmart/allspark-me-mini-app": "0.0.3",
... | use specific version only | use specific version only
|
4f1f8ed58f78b1332f9d2d2363348684076322de | --- package-lock.json
@@ -66,7 +66,7 @@
"@walmart/metrics-mini-app": "0.17.9",
"@walmart/mod-flex-mini-app": "1.13.7",
"@walmart/moment-walmart": "1.0.4",
- "@walmart/money-auth-shared-components": "0.0.13",
+ "@walmart/money-auth-shared-components": "0.0.14",
"@walmart... | bump version | bump version
|
a8660856a0347feaa8e11372630c2c17c5a86f91 | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/roster-mini-app",
- "version": "2.12.41",
+ "version": "2.12.42",
"main": "dist/index.js",
"files": [
"dist"
--- src/hooks/teams.ts
@@ -172,7 +172,7 @@ export const useGetViewersShiftData = () => {
const {t} = translationClient.useTranslation();... | Update the roster mini app version | Update the roster mini app version
|
864ceba5c7965fae297e26b2dc40ab9d7bc0bc37 | --- core/__tests__/home/services/HomeApi/indexTest.ts
@@ -145,18 +145,15 @@ describe('fetchCelebrationData', () => {
const result = await fetchCelebrationData('someValidQuery');
expect(result).toEqual('Valid result');
});
- it('should throw error when underlying APIs fail', async () => {
+ it('should thr... | home api services core file test coverage | home api services core file test coverage
|
45f970454aa0be496e97d93f6c1a2dbddccfda2a | --- package.json
@@ -117,7 +117,7 @@
"@walmart/me-at-walmart-athena-queries": "6.1.4",
"@walmart/me-at-walmart-common": "6.1.4",
"@walmart/me-at-walmart-container": "6.1.4",
- "@walmart/metrics-mini-app": "0.22.1",
+ "@walmart/metrics-mini-app": "0.22.2",
"@walmart/mod-flex-mini-app": "1.16.4"... | Bumping metrics-mini-app version to 0.22.2 | Bumping metrics-mini-app version to 0.22.2
|
7e7cbfa2801445b4b99a2dac8ee926fdaf7e9f6c | --- package-lock.json
@@ -36,7 +36,7 @@
"@walmart/allspark-neon-core": "0.1.31",
"@walmart/amp-mini-app": "0.2.13",
"@walmart/ask-sam-chat-components": "^0.2.7",
- "@walmart/ask-sam-mini-app": "1.2.96",
+ "@walmart/ask-sam-mini-app": "1.3.1",
"@walmart/config-components... | bump up ask sam version of rn 70 | bump up ask sam version of rn 70
|
9b0360b87b1fc0f4d5afa651f15dffdeb6492ce1 | --- package-lock.json
@@ -81,7 +81,7 @@
"@walmart/shelfavailability-mini-app": "1.5.13",
"@walmart/taskit-mini-app": "2.24.5",
"@walmart/time-clock-mini-app": "2.49.0",
- "@walmart/topstock-mini-app": "1.0.3",
+ "@walmart/topstock-mini-app": "1.0.2",
"@walmart/ui-compon... | build(version): topstock version - 1.0.2 | build(version): topstock version - 1.0.2
|
76e11950e948d8ff416861a8771043c19fbd63ff | --- packages/me-at-walmart-container/src/redux/config.ts
@@ -169,6 +169,7 @@ export function* initAppConfig() {
);
try {
+ // @ts-ignore - logger is not typed correct in config-components
yield call(MeAtWalmartConfigService.initialize, {
baseURL: `${env.http.externalUrl}${env.http.bffService}`,
... | chore: ignore typescript error from incorrectly typed config components | chore: ignore typescript error from incorrectly typed config components
|
7985cbf0ddd6feccea2b979eaa6f976b6b9fc957 | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/me-at-walmart",
- "version": "1.22.0",
+ "version": "1.24.0",
"private": true,
"workspaces": [
"core",
--- targets/US/android/app/build.gradle
@@ -106,8 +106,8 @@ android {
applicationId "com.walmart.stores.allspark.beta"
minSdkVe... | chore: bump taskit version | chore: bump taskit version
|
70b8f02d6d7f066485aa10d207dc5fa356669153 | --- packages/core-services/Network/index.tsx
@@ -114,7 +114,7 @@ export const useNetwork = () => AllsparkNetworkClient;
*
* const networkState = useSelector(NetworkSelectors.getState)
*/
-export const useNetworkState = () => useSelector(NetworkSelectors.getState);
+export const useNetworkState = () => useSelector... | fix: backwards compatible fix for network selectors | fix: backwards compatible fix for network selectors
|
a5c8d17e51301777417556bfcaf44487fcb71262 | --- package-lock.json
@@ -66,7 +66,7 @@
"@walmart/react-native-shared-navigation": "1.0.2",
"@walmart/react-native-sumo-sdk": "2.6.0",
"@walmart/ui-components": "1.15.1",
- "@walmart/wmconnect-mini-app": "1.0.16-alpha-2",
+ "@walmart/wmconnect-mini-app": "1.0.16-alpha-3",
... | versionUpdate | versionUpdate
|
6622806759a337acd854f704bfaea2a05cbf126d | --- .yarn/patches/@walmart-ui-components-npm-1.21.3-509a6d703d.patch
@@ -1,5 +1,5 @@
diff --git a/components/FontIcon/FontIcon.js b/components/FontIcon/FontIcon.js
-index 7c52440c6790eb6b0df892737dee011f8a5a470d..0faa18761ed7de6cc13e0881e78ff9c693c959a5 100644
+index 7c52440c6790eb6b0df892737dee011f8a5a470d..26c12c694... | update UI comp | update UI comp
|
776d71d3e8a5e8860c54cafa9dee0c5cddfd6704 | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/roster-mini-app",
- "version": "2.27.0",
+ "version": "2.28.0",
"main": "dist/index.js",
"files": [
"dist/"
| feat: SMDV-9999 update package | feat: SMDV-9999 update package
|
4a531147200976cc533fe8ec6382a4e7ef565c59 | --- ios/Podfile.lock
@@ -1036,4 +1036,4 @@ SPEC CHECKSUMS:
PODFILE CHECKSUM: 7efc314454ab8f495d11a401c27762edcf1c5e4f
-COCOAPODS: 1.11.3
+COCOAPODS: 1.11.2
| fixing podfile to match develop | fixing podfile to match develop
|
58ca81fd29e333e195624742b092a98ff0e7e29b | --- packages/allspark-foundation-hub/src/HubFeature/Hub/Container/Screens/HubDashboard.tsx
@@ -212,28 +212,15 @@ export const HubDashboard = ({ name, widgets }: HubDashboardProps) => {
const renderContent = useCallback(() => {
return (
<HubOnboardingImage
- title={
- isMutationError ? t('... | feat(ui): updated content for bottomsheet | feat(ui): updated content for bottomsheet
|
307b2b0908f489f0e88561ce91da56275845b531 | --- targets/US/package.json
@@ -91,7 +91,7 @@
"@walmart/avp-shared-library": "0.10.1",
"@walmart/backroom-mini-app": "1.5.20",
"@walmart/calling-mini-app": "0.5.17",
- "@walmart/checkout-mini-app": "3.24.0",
+ "@walmart/checkout-mini-app": "4.0.1",
"@walmart/compass-sdk-rn": "5.19.15",
"@... | CO version 4.0.1 | CO version 4.0.1
|
d48786da8e83513ed9e2f81a0aa9099505920acc | --- android/app/build.gradle
@@ -134,7 +134,7 @@ android {
applicationId "com.walmart.stores.allspark.beta"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 48
+ versionCode 49
versionName "1.0.2"
}
sp... | Incrementing build number | Incrementing build number
|
5337db50bfab192aa71428a700008d77a42cfffa | --- .gitignore
@@ -18,6 +18,7 @@ yarn-error.log
# generated by bob
lib/
+packages/allspark-foundation/cli/
packages/allspark-foundation/cli/*
# jest
--- packages/allspark-foundation/src/cli/envReplacer.ts
@@ -1,4 +1,7 @@
-const envReplacer = (config, env) => {
+export const envReplacer = (
+ config: Record<s... | chore: update foundation cli | chore: update foundation cli
|
e1d67529b0ca19c608e8b1ec160ee28803d948e2 | --- package.json
@@ -131,7 +131,7 @@
"@walmart/react-native-encrypted-storage": "~1.1.3",
"@walmart/react-native-env": "6.1.4",
"@walmart/react-native-logger": "1.34.8",
- "@walmart/react-native-scanner-3.0": "0.6.6",
+ "@walmart/react-native-scanner-3.0": "0.6.7",
"@walmart/react-native-share... | scanner version upgrade | scanner version upgrade
|
a7d9fe962ab8c585ccb35ddb3d072495fcd5bb15 | --- docs/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [1.33.0](https://gecgithub01.walmart.com/smdv/myteam-miniapp/compare/v1.32.0...v1.33.0) (2025-05-12)
+
+
+### Features
+
+* **ui:** updating roster version ([9bb82dc](https://gecgithub01.walmart.com/smdv/myteam-miniapp/commit/9bb82dc4a067ec619f454123d3af40b9f42006b8))
+
# [1.3... | chore(release): 1.33.0 [skip ci] | chore(release): 1.33.0 [skip ci]
# [1.33.0](https://gecgithub01.walmart.com/smdv/myteam-miniapp/compare/v1.32.0...v1.33.0) (2025-05-12)
### Features
* **ui:** updating roster version ([9bb82dc](https://gecgithub01.walmart.com/smdv/myteam-miniapp/commit/9bb82dc4a067ec619f454123d3af40b9f42006b8))
|
2fcf078aab71efcf533146858391cd6f837ef921 | --- src/hooks/roster.ts
@@ -1,3 +1,4 @@
+import {useState} from 'react';
import {useSelector} from 'react-redux';
import moment from 'moment-timezone';
import {SiteSelectors, UserSelectors} from '@walmart/redux-store';
@@ -19,6 +20,7 @@ import {getGraphQLConfig} from '../services/config';
import {useIsSalariedOrTea... | feat(ui): moved error handler to onComplete to avoid unnecessary logging | feat(ui): moved error handler to onComplete to avoid unnecessary logging
|
10ea270884282d4bdd4a5a55d06a4689988e9ffa | --- ios/Podfile.lock
@@ -621,9 +621,9 @@ PODS:
- JWT (~> 3.0.0-beta.12)
- React-Core
- SSZipArchive (~> 2.2.2)
- - compass-sdk-ios (0.4.12.2)
- - compass-sdk-rn (5.19.8):
- - compass-sdk-ios (= 0.4.12.2)
+ - compass-sdk-ios (0.4.12.3)
+ - compass-sdk-rn (5.19.13):
+ - compass-sdk-ios (= 0.4.12.... | Drop 23 compass and fixt version upgrade | Drop 23 compass and fixt version upgrade
|
641a218c1fd7dd997cc10bf36af307fa1a0b1a59 | --- jest.config.js
@@ -17,10 +17,10 @@ module.exports = {
],
coverageThreshold: {
global: {
- statements: 87.22,
- branches: 75.09,
- functions: 85.22,
- lines: 87.31,
+ statements: 87,
+ branches: 75,
+ functions: 85,
+ lines: 87,
},
},
transformIgnorePatte... | Update version | Update version
|
2c7e2dd7296784edc1310dbd59a0d8e1c80d26df | --- packages/me-at-walmart-container/__tests__/services/user/cache.test.ts
@@ -137,21 +137,6 @@ describe('Test suite for cache functions', () => {
});
describe('cacheUserInfo', () => {
- it('should cache user info with correct expiry time', async () => {
- const user = {userId: '123'} as User;
- co... | chore: fix test | chore: fix test
|
8aa567a5f38292c6eda41deab7fdc0944d906a44 | --- .looper.multibranch.yml
@@ -4,7 +4,7 @@ inherit: 'job:///metropolis/metroloop/metroloop-parent'
## Whenever you update the nodes, please update it at the two-place, below line & the global variable LOOPER_NODES
##
-node: ((osx||stable_osx)&&!dualcore&&!MAC-DRFQLAB-MINI21&&!MAC-LAB-MINI33)
+node: ((osx||stable_o... | Reverting the node to original definition | Reverting the node to original definition |
99ec3a3558f0dc9a90aaacbf70ae6119f3731ce6 | --- package.json
@@ -9,7 +9,7 @@
"installConfig": {
"hoistingLimits": "none"
},
- "packageManager": "yarn@4.4.0",
+ "packageManager": "yarn@4.6.0",
"engines": {
"node": ">=18"
},
@@ -414,4 +414,4 @@
"typescript": "~5.3.3",
"uuid": "^3.3.2"
}
-}
+}
\ No newline at end of file
| chore: bump yarn version | chore: bump yarn version
|
97bd98b196efce8ef623e3c5b5d7f3d19359c415 | --- graphql.yml
@@ -103,21 +103,21 @@ applications:
queryTemplate: 'packages/me-at-walmart-athena-queries/src/getLoggedInUser.graphql'
tags:
- 'v1'
- # - name: "GetSupplyChainShifts"
- # hash: "b0f8dbb33dfb79cf68890fa719d4a9a6a2ab8e851ea3a81708a31ac9078c988c"... | fix: team switcher issue fix | fix: team switcher issue fix
* Merge the parent branch
* Update the reducer for both Store and Supply Chain
* Update the reducer for both Store and Supply Chain
* Update the reducer for both Store and Supply Chain
* Update hub
* Update hub
* Update hub
* Update hub
* Update roster version
* ... |
607863eb481050a7cc1beabe6cc02957b264cd79 | --- src/cafeOrders/navigation/ChatNav.tsx
@@ -23,10 +23,12 @@ const CafeStack = createStackNavigator();
export const ChatNav = () => {
const {top} = useSafeAreaInsets();
- const userId = useSelector(UserSelectors.getUserId);
- const chatScreenOptions = useMemo(() => buildChatScreenOptions(top), [top]);
+
con... | fix: temp solution for new message replace animation | fix: temp solution for new message replace animation
|
b54028643361a1e52de62cfeac7c2f939b5dce6b | --- android/app/build.gradle
@@ -134,7 +134,7 @@ android {
applicationId "com.walmart.stores.allspark.beta"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 104
+ versionCode 105
versionName "1.0.8"
}
... | Incrementing build number | Incrementing build number
|
93a7f795b729dd53681ed5ea2ccba706386f2417 | --- packages/my-walmart-hub/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [1.11.0](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/my-walmart-hub@1.10.1...@wa... | chore(version): updating package version | chore(version): updating package version
- @walmart/my-walmart-hub@1.11.0
|
c316a475b1d0fb97c0d94fa3173dedbbccc89a33 | --- package.json
@@ -143,7 +143,7 @@
"@walmart/returns-mini-app": "4.16.7",
"@walmart/rfid-scan-mini-app": "2.10.4",
"@walmart/rn-mobile-sdk-pairing": "2.1.8",
- "@walmart/rn-receiving-mini-app": "2.4.81",
+ "@walmart/rn-receiving-mini-app": "2.4.85",
"@walmart/roster-mini-app": "2.26.0",
... | fix(bug) - Unified Receiving update for bug fix - Drop 30 - part 1 (#4129) | fix(bug) - Unified Receiving update for bug fix - Drop 30 - part 1 (#4129)
* receiving fix
* receiving fix
* Fix(UI): fix the image compression and ADA bugs : IP-11968
* updating version of receiving
* updating version of receiving
* Bug fix for keyboard for LQA - receiving version upgrade
---------
... |
5f6e68a51394e2740ff7d32c099016222d5614da | --- ios/AllSpark.xcodeproj/project.pbxproj
@@ -737,11 +737,7 @@
ONLY_ACTIVE_ARCH = YES;
OTHER_CFLAGS = "$(inherited)";
OTHER_CPLUSPLUSFLAGS = "$(inherited)";
- OTHER_LDFLAGS = (
- "$(inherited)",
- "-Wl",
- "-ld_classic",
- );
+ OTHER_LDFLAGS = "$(inherited)";
REACT_NATIVE_PATH ... | updated xcode settings | updated xcode settings
|
35db36fae09a8c30c15f2110312bfe0261792ad6 | --- package-lock.json
@@ -52,7 +52,7 @@
"@walmart/emergency-mini-app": "1.25.1",
"@walmart/exception-mini-app": "1.5.1",
"@walmart/facilities-management-miniapp": "0.6.67",
- "@walmart/feedback-all-spark-miniapp": "0.9.41",
+ "@walmart/feedback-all-spark-miniapp": "0.9.42",
... | Feedback mini app version bump | Feedback mini app version bump
|
2e638db4468840d411c0d498a9b9e70909fe2ba2 | --- packages/me-at-walmart-container/src/services/user/types.ts
@@ -52,3 +52,7 @@ export type TokenData = {
win: string;
exp: number;
};
+
+export type MeAtWalmartUserFields = {
+ meAtWalmartId?: string;
+};
| feat: extend allspark global types for me at typings | feat: extend allspark global types for me at typings
|
d343079e3b1495933b10022a2c8974ba64b2b280 | --- src/components/TeamList.tsx
@@ -453,7 +453,9 @@ export const TeamChatCard = (props: {
action(team) {
analytics('team_messagebtn', {
teamName: team?.teamName,
- teamID: team.teamId,
+ teamID: team?.team... | updating team msg btn event | updating team msg btn event
|
91c5edaac8e227db081a59c8e4ce7cd6ca47be3a | --- packages/allspark-foundation-hub/src/HubFeature/Hooks/useUserPreferences.ts
@@ -35,7 +35,6 @@ export const useUserPreferences = () => {
const storeId: string | undefined = useSelector(UserSelectors.getWorkingSite);
const win = useSelector(UserSelectors.getWin);
const [teamData, setTeamData] = useState<Arra... | Adding team switcher alert | Adding team switcher alert
|
f6693b82eac9051d19eb4aceaf5426f906dc1aa4 | --- src/components/TeamList.tsx
@@ -113,7 +113,7 @@ const TeamItem = (props: {
}
};
- const clockedInCount = teamRoster?.filter(associateIsClockedIn).length;
+ const clockedInCount = teamRoster?.filter(associateIsClockedIn)?.length ?? 0;
return (
<ListItem
--- src/components/TeamList.tsx
@@ -113... | more defensive | more defensive
|
22d55bca5bea39f0036315f0411085b08c3462e4 | --- packages/allspark-cli/package.json
@@ -30,8 +30,8 @@
"link:cli": "npm run build && chmod +x dist/cli-tool/index.js && npm link",
"prepublishOnly": "npm run build && chmod +x dist/cli-tool/index.js",
"prepare": "npm run build && chmod +x dist/cli-tool/index.js",
- "copy-deps-map": "cp -R $(pwd)/src... | fix(cli): package publish issue (#407) | fix(cli): package publish issue (#407)
|
a340c31d6b737fce0d27ff5f839e1211c3ff67f1 | --- __tests__/managerExperience/components/FilterChipHeader.test.tsx
@@ -5,7 +5,7 @@ import {FilterChipHeader} from '../../../src/managerExperience/components/Filter
describe('FilterChipHeader Component', () => {
const props = {
headerText: 'Test Label',
- scheduledAssociates: 42,
+ numberOfAssociates: 4... | feat: rename props to numberOfAssociates | feat: rename props to numberOfAssociates
|
a8301bca02f763b84db9929e942b810ba609290f | --- src/utils/user.ts
@@ -33,10 +33,10 @@ export const associateIsOnMeal = (associate?: Associate) =>
export const associateIsOnPPTO = (associate?: Associate) =>
associate?.punch?.clockStatus === '4';
-export const associateDisplayName = (associate: Associate) => {
+export const associateDisplayName = (associate?... | protect against falsy values | protect against falsy values
|
643c4e093ed4c051edecf193353c737a3e7eed1a | --- packages/allspark-foundation/src/Feature/FeatureCreators.tsx
@@ -9,6 +9,9 @@ import {
IAllsparkFeatureModal,
IAllsparkFeatureListeners,
IAllsparkTranslations,
+ IAllsparkFeatureRedux,
+ IAllsparkFeatureScreens,
+ IAllsparkFeatureModals,
} from './types';
/**
@@ -68,6 +71,17 @@ export const AllsparkF... | feat: add feature creators for screens, modals, and redux. | feat: add feature creators for screens, modals, and redux.
|
6ff0c39cc3bf6fab35fea9ac9abeb700f9bfecd6 | --- package.json
@@ -165,7 +165,7 @@
"@walmart/rfid-scan-mini-app": "2.15.6",
"@walmart/rn-mobile-sdk-digital-locks": "1.0.9",
"@walmart/rn-mobile-sdk-pairing": "3.0.3",
- "@walmart/rn-receiving-mini-app": "2.8.43",
+ "@walmart/rn-receiving-mini-app": "2.8.44",
"@walmart/roster-mini-app": "3.1... | fix(receiving): drop 35.1 bug revert hotfix (#5234) | fix(receiving): drop 35.1 bug revert hotfix (#5234)
Co-authored-by: Shubhang Shah - s0s0zug <Shubhang.Shah@walmart.com>
Co-authored-by: Pavan Lingamallu - p0l04ug <Pavan.Lingamallu@walmart.com> |
9302245f8f130b2ac308a1fa3e877bffdc1ec3c3 | --- __tests__/navigation/AssociateHallwayNav/__snapshots__/MainStackNavTest.tsx.snap
@@ -36,6 +36,30 @@ exports[`AssociateHallwayNav matches snapshot 1`] = `
component="SettingsMiniApp"
name="Settings"
/>
+ <Screen
+ initialParams={
+ Object {
+ "navigateToTaskIt... | Updated snapshots | Updated snapshots
|
4eb398208df8b7056614dec9bd850ab56c4b0e39 | --- .yarn/patches/@walmart-time-clock-mini-app-npm-3.19.13-d3039974f6.patch
@@ -35,3 +35,15 @@ diff --git a/dist/containers/ClockOutScreen/index.js b/dist/containers/ClockOutS
}, [dispatch, navigation, navigationOrigin]);
// TO DO: FIGURE OUT BETTER WAY TO DETERMINE IF THERE ARE CHANGES TO THE EXISTING PUNC... | fix(gta): GTA-168225 clock status fix develop (#5348) | fix(gta): GTA-168225 clock status fix develop (#5348)
Co-authored-by: Hariharan Sundaram <121838+h0s0em0@users.noreply.gecgithub01.walmart.com> |
fe3adcd3aa64c2d36072c41b842f77c8e9c26d92 | --- packages/allspark-foundation-hub/src/HubFeature/Shared/Components/SearchInput/style.ts
@@ -5,8 +5,6 @@ export const TeamSearchInputStyles = StyleSheet.create({
container: {
flexDirection: 'row',
alignItems: 'center',
- marginRight: 16,
- marginLeft: 16,
borderWidth: 1,
borderRadius: 30,... | Updating TeamSearchInput styles | Updating TeamSearchInput styles
|
6b211bf0968f7bd5982aa88fc6ad1b5bcb670ff1 | --- sonar-project.properties
@@ -5,7 +5,7 @@ sonar.host.url=http://sonar.looper.prod.walmartlabs.com
sonar.sources=packages/allspark-authentication/src, packages/allspark-foundation/src, packages/allspark-utils/src
sonar.tests=packages/allspark-authentication/__tests__, packages/allspark-foundation/__tests__, packa... | chore: edit sonar project file | chore: edit sonar project file
|
ad5a741cc491f11e9a6d139474b647ed3af2791e | --- src/screens/ChannelsScreen.tsx
@@ -0,0 +1,10 @@
+import React from 'react';
+import { View, Text } from 'react-native';
+
+export const RosterScreen = () => {
+ return (
+ <View>
+ <Text>Placeholder For Channels Screen Integration</Text>
+ </View>
+ )
+};
--- src/screens/TabsScreen.... | updating screens | updating screens
|
c643ddaf494cf1c8cd4cb22d551785710684c67d | --- packages/allspark-foundation-hub/src/HubFeature/SupplyChain/Components/TeamShiftSwitcher/TeamShiftSwitcher.tsx
@@ -84,7 +84,7 @@ export const TeamShiftSwitcher = ({
}
};
- return isLoading ? (
+ return isLoading || !teamAndShiftText ? (
<TeamSwitcherLoading />
) : (
<TouchableOpacity
@@ -10... | feat: added all saved teams text in team switcher | feat: added all saved teams text in team switcher
|
c00357d1131541e9ab91d26fa490d4d8c9ac66f3 | --- scripts/mini-app-scan/github-comment-helper.ts
@@ -4,6 +4,7 @@
*/
// --- GitHub Enterprise Configuration --- //
+import {execSync} from 'child_process';
const GITHUB_ENTERPRISE_URL = 'https://gecgithub01.walmart.com';
const GITHUB_API_BASE_URL = `${GITHUB_ENTERPRISE_URL}/api/v3`;
@@ -43,7 +44,6 @@ function... | fix(package-dep): address comments | fix(package-dep): address comments
|
3ad403383620adb35252cfec22b9fdcc396d42d7 | --- core/src/manifest.ts
@@ -47,8 +47,6 @@ export const getCandiateFeatures = (): AllsparkFeatureModule[] => {
require('@walmart/welcomeme-mini-app').default,
require('@walmart/payrollsolution_miniapp').default,
require('@walmart/ask-sam-mini-app').default,
- // Add ask same once on foundation
- //... | removed comments | removed comments
|
cf4afb0c80164b35dbd2b3c1583cc571d7818a25 | --- packages/allspark-foundation-hub/__tests__/__mocks__/data/apolloMocks.ts
@@ -231,7 +231,7 @@ export const apolloMocks = [
mewClockedOutCount: 30,
site: '100',
teamId: '1000282',
- teamName: 'Apparel',
+ teamName: 'Fashion',
workgroup: 'GM',
... | chore(ui): clean up apparel from code base (#275) | chore(ui): clean up apparel from code base (#275)
Co-authored-by: Maksym Novakh <maksym.novakh@walmart.com> |
3d8c6c1fce06665eecaf2c75a444adf26714bdab | --- .looper.multibranch.yml
@@ -72,7 +72,7 @@ envs:
XC_SCHEME: 'AllSpark'
XC_TARGET: 'AllSpark'
PRODUCT_NAME: 'Me@Walmart'
- NO_PROXY: "*.walmart.com,chromium.googlesource.com"
+ NO_PROXY: "*.walmart.com,chromium.googlesource.com,ssl.scandit.com"
ALLSPARK_CORE_GITHUB_URL: "https://... | Update .looper.multibranch.yml | Update .looper.multibranch.yml |
ff0bbbbf243eb86d3e862c9c48b64ef69915f24f | --- package.json
@@ -121,12 +121,12 @@
"@walmart/metrics-mini-app": "1.29.12",
"@walmart/mod-flex-mini-app": "1.27.0",
"@walmart/moment-walmart": "1.0.4",
- "@walmart/money-auth-shared-components": "2.3.8",
+ "@walmart/money-auth-shared-components": "2.3.9",
"@walmart/myteam-mini-app": "1.34.1... | fix(fix ada bug): OPIF-218982 ada bug fix (#4309) | fix(fix ada bug): OPIF-218982 ada bug fix (#4309)
* fix(fix ada bug): PAYROLL-29271 ada bug fix
* fix(fix crash issue): PAYROLL-29271 fix crash
* bump version
* update yarn.lock
---------
Co-authored-by: Maksym Novakh - m0n09mr <Maksym.Novakh0@walmart.com>
Co-authored-by: Savankumar Akbari - sakbari <s... |
68a4bf83b595a6ebd8e1f0d4f240f381770f4b6c | --- package.json
@@ -112,6 +112,7 @@
"@walmart/ui-components": "1.4.0-rc.0",
"@walmart/welcomeme-mini-app": "0.69.0",
"@walmart/wfm-ui": "0.2.17",
+ "@walmart/facilities-management-miniapp": "0.0.4",
"axios": "^0.26.1",
"axios-cache-adapter": "2.7.3",
"crypto-js": "^3.3.0",
--- src/na... | facility management miniapp drop8 release | facility management miniapp drop8 release
|
ec59a6456247675fcc6d86137fc3eeb46eeed326 | --- src/screens/AllTeamsScreen/AllTeamsScreen.tsx
@@ -11,7 +11,6 @@ export const AllTeamsScreen = () => {
const navigation = useNavigation();
useEffect(() => {
- console.log('AllTeamsScreen -> useEffect');
navigation.setOptions({
title: translationClient.translate('allTeams.title', {
def... | fix(bug): adding additional test coverage | fix(bug): adding additional test coverage
|
79d0364d23df592309306ea8e767a1e54e2de8ba | --- core/src/core/ClockOutGuard.tsx
@@ -1,7 +1,6 @@
import React, {ComponentProps, ComponentType, PropsWithChildren} from 'react';
import {useSelector} from 'react-redux';
-import {TypedNavigator, useNavigation} from '@react-navigation/native';
-import {StackNavigationOptions} from '@react-navigation/stack';
+import ... | ALLSPARK-3960: added oneclick and featureToggleGuard | ALLSPARK-3960: added oneclick and featureToggleGuard
|
185fd58fc2747ef1a699e205d668860fe8aeef7f | --- packages/allspark-foundation-hub/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.10.5](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-foundati... | chore(version): updating package version | chore(version): updating package version
- @walmart/allspark-foundation-hub@1.10.5
|
864a9ee659a238c7c6a25f65c23ab09e4d50cf36 | --- __tests__/navigation/AssociateHallwayNav/MainTabsNavTest.tsx
@@ -23,6 +23,7 @@ jest.mock('@walmart/push-to-talk-mini-app', () => ({
PushToTalkMiniApp: 'PushToTalkMiniApp',
Components: {
HeaderSearch: 'HeaderSearch',
+ HeaderSearchIcon: 'HeaderSearchIcon',
},
Hooks: {
useVMBadgesCount: jest.... | PTT bug fixes | PTT bug fixes
|
7d29d816a9c1cfbaa1a1d2ed305d7c9f5f1bbc38 | --- packages/allspark-foundation/src/Navigation/index.ts
@@ -22,3 +22,4 @@ export { NavConfigSagas } from './config/sagas';
export { NavConfigService, NavConfigServiceCreator } from './config/service';
export * from './config/selectors';
export * from './config/types';
+export { createNavigationContainerAdapter } fr... | chore: export navigation container adapter utility from subdirectory root | chore: export navigation container adapter utility from subdirectory root
|
32a0cd3d2983d472d24971c2797292236f4b603b | --- src/redux/audioPlayThunk.ts
@@ -10,12 +10,12 @@ export const playReceivingPTTMessage = createAsyncThunk(
const audioRemoteURI = await fetchResource(remoteURI);
const {sound} = await Audio.Sound.createAsync(
{uri: audioRemoteURI},
- {volume: 100, shouldPlay: true},
+ {volume: 1.0, shouldPl... | update the volume | update the volume
|
b14a48166ec03b74f1e03a89b3652a1673ddc081 | --- __tests__/screens/MessagesScreen/OneToOneChatTest.tsx
@@ -34,7 +34,7 @@ import {createMessageList} from "../../../dist/utils";
import {MessageList} from "../../../src/components/MessageList";
import {AudioMedia, ImageMedia, LocalMessage} from "../../../src/types";
import {store100Collection, storeCollections} fr... | mocking a message to display message bubble | mocking a message to display message bubble
|
0ec24c19e1876d9d079b8b4097873b938548c351 | --- package.json
@@ -96,7 +96,7 @@
"@walmart/react-native-sumo-sdk": "2.8.0",
"@walmart/redux-store": "6.3.29",
"@walmart/ui-components": "1.15.1",
- "@walmart/wmconnect-mini-app": "2.42.0",
+ "@walmart/wmconnect-mini-app": "3.1.1",
"babel-jest": "^29.6.3",
"chance": "^1.1.11",
"cryp... | fix(ui): update wmconnect version for roster | fix(ui): update wmconnect version for roster
|
6ad0c1a2f3ab9097f6dc97e9836b2470dd317dfc | --- docs/CHANGELOG.md
@@ -1,3 +1,36 @@
+# [2.43.0](https://gecgithub01.walmart.com/smdv/wmconnect-miniapp/compare/v2.42.0...v2.43.0) (2025-06-28)
+
+
+### Bug Fixes
+
+* sonar violations major ([d9ef556](https://gecgithub01.walmart.com/smdv/wmconnect-miniapp/commit/d9ef5562b886886b1aaf10edd0d02f57becaa869))
+* **ui:** ... | chore(release): 2.43.0 [skip ci] | chore(release): 2.43.0 [skip ci]
# [2.43.0](https://gecgithub01.walmart.com/smdv/wmconnect-miniapp/compare/v2.42.0...v2.43.0) (2025-06-28)
### Bug Fixes
* sonar violations major ([d9ef556](https://gecgithub01.walmart.com/smdv/wmconnect-miniapp/commit/d9ef5562b886886b1aaf10edd0d02f57becaa869))
* **ui:** fixing lint e... |
da34d161f6239c9ec09c7d17ebf6cd628452091e | --- core/src/features/timeclock.tsx
@@ -6,6 +6,7 @@ import {AllsparkComponentContainers} from '@walmart/allspark-foundation/Componen
import {AllsparkFeature} from '@walmart/allspark-foundation/Feature';
import {IUserActions, UserActionTypes} from '@walmart/allspark-foundation/User';
import {useAllsparkTranslation} f... | feat: tcma clock switch update package | feat: tcma clock switch update package
|
6ccbbfa879f411871bfe0ab625063414786dabb7 | --- package-lock.json
@@ -65,7 +65,7 @@
"@walmart/payrollsolution_miniapp": "0.130.46",
"@walmart/price-changes-mini-app": "1.9.3",
"@walmart/profile-feature-app": "0.221.0",
- "@walmart/push-to-talk-mini-app": "1.9.22",
+ "@walmart/push-to-talk-mini-app": "1.11.1",
"@w... | update package-lock | update package-lock
|
df02b79e39f47a7e4742ca844270313c4b4db987 | --- package-lock.json
@@ -43,7 +43,7 @@
"@walmart/attendance-mini-app": "1.62.13",
"@walmart/compass-sdk-rn": "5.18.9",
"@walmart/config-components": "4.2.13",
- "@walmart/copilot-mini-app": "3.33.8",
+ "@walmart/copilot-mini-app": "^3.33.8",
"@walmart/core-services": "... | Revert "chore: bump gtp@2.1.6" | Revert "chore: bump gtp@2.1.6"
This reverts commit 4053366a43246fb7c1bbc5cfa885531a4ed0afcf.
|
5cc18b2e6e21b8964c1f4827a6d37d0df8eed94a | --- targets/US/ios/Podfile.lock
@@ -2153,7 +2153,7 @@ PODS:
- Realm/Headers (10.51.0)
- RealmJS (12.8.1):
- React
- - rn-mobile-sdk-pairing (2.1.4-osirisfix.2):
+ - rn-mobile-sdk-pairing (2.1.4-osirisfix.4):
- glog
- OsirisDigitalLocks (= 0.8.9)
- RCT-Folly (= 2022.05.16.00)
@@ -2941,7 +2941... | bump to mini app osirisfix.2, pairing app osirisfix.4 | bump to mini app osirisfix.2, pairing app osirisfix.4
|
3619c003114a8f06475f84d14e478a09cf9de28f | --- core/__tests__/navigation/USHallway/AssociateHallwayNav/Tabs/__snapshots__/MeStackNavTest.tsx.snap
@@ -3,6 +3,7 @@
exports[`MeStackNav headerLeft of initial screen match snapshot 1`] = `
[
<IconButton
+ accessibilityLabel="drawerButton.accessiblityLabel"
color="white"
disabled={false}
onPress... | updating tests | updating tests
|
7bbb9bd1a950d1e6a1a472ab6ade3861b26a6ffc | --- package-lock.json
@@ -4333,9 +4333,9 @@
}
},
"@walmart/payrollsolution_miniapp": {
- "version": "0.98.0",
- "resolved": "https://npme.walmart.com/@walmart/payrollsolution_miniapp/-/payrollsolution_miniapp-0.98.0.tgz",
- "integrity": "sha512-wt41q4osD4+sahqXwsuwrgMzi4JPJpDYQPmno2WtX05... | chore(welcomeMe): WelcomeMe v0.47.0 | PayrollMiniApp v0.101.0 | chore(welcomeMe): WelcomeMe v0.47.0 | PayrollMiniApp v0.101.0
|
8fe34b577a0dac1ad2e3726ef8527ad2b7340764 | --- packages/allspark-foundation/src/Components/ComponentContainers.md
@@ -177,3 +177,12 @@ Returns `true` if the component exists in the container.
const hasEmergencyCard = HomeScreen.hasComponent('emergency-card');
// true in example above
```
+
+#### `getComponents`
+
+Returns list of components added to the cont... | feat: add get components method to component container | feat: add get components method to component container
|
cc44e28a84c89483dc24733d6305a20da73fc239 | --- targets/US/package.json
@@ -89,7 +89,7 @@
"@walmart/attendance-mini-app": "3.44.0",
"@walmart/avp-feature-app": "0.10.7",
"@walmart/avp-shared-library": "0.10.1",
- "@walmart/backroom-mini-app": "1.5.15",
+ "@walmart/backroom-mini-app": "1.5.18",
"@walmart/calling-mini-app": "0.5.17",
... | Update @walmart/backroom-mini-app to 1.5.18 | Update @walmart/backroom-mini-app to 1.5.18
|
34a8a31bab1985a472a11a497b0e73db68f89252 | --- babel.config.js
@@ -1,7 +1,8 @@
module.exports = (api) => {
const babelEnv = api.env();
- console.log('sva babelEnv', babelEnv);
+
+ console.log('sva babelEnv', babelEnv, 'ci', process.env.CI);
const plugins = ['react-native-reanimated/plugin'];
//change to 'production' to check if this is working in ... | added CI | added CI
|
5c01f3c8997ff152eb605e1759da4bcd9113e2c0 | --- core/src/oneClick/DataSelector.tsx
@@ -1,7 +0,0 @@
-import {createSelector} from 'reselect';
-import {IAllsparkReduxState} from '@walmart/allspark-foundation/Redux';
-
-export const getAppConfig = (state: IAllsparkReduxState): any =>
- state?.appConfig;
-
-export const AppConfigSelector = createSelector([getAppCon... | ALLSPARK-3906: remove one click from core | ALLSPARK-3906: remove one click from core
|
fe093fe2e60b714cae540c97eab7092467217287 | --- packages/allspark-cli/CHANGELOG.md
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [1.4.2](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-cli@1.4.1...@walmart... | chore(version): updating package version | chore(version): updating package version
- @walmart/allspark-cli@1.4.2
- @walmart/allspark-foundation@7.1.1
- @walmart/allspark-foundation-hub@1.19.1
- @walmart/me-at-walmart-geolocation@1.3.1
|
4eaa5938543854eab83ebe45360b972bea77da36 | --- packages/allspark-foundation/src/Components/Banners/AllsparkBanner.tsx
@@ -47,7 +47,7 @@ export const AllsparkBanner = (props: {
const { banner, onRemove } = props;
const { id, type = 'banner', variant = 'info', closable, value } = banner;
- const {t} = useAllsparkTranslation();
+ const { t } = useAllspar... | Fixed lint issues. | Fixed lint issues.
|
186368c7bea4eb3a49d3e8f2375d2897895f1bec | --- packages/allspark-foundation/__tests__/Work/redux.test.tsx
@@ -17,6 +17,16 @@ describe('WorkActions', () => {
type: 'work/WORK_FLOW_COMPLETE',
});
});
+ test('create the correct "work flow incomplete" action', () => {
+ expect(WorkActions.WORK_FLOW_INCOMPLETE()).toEqual({
+ type: 'work/WORK_... | fix: add incomplete and error actions DWORK-7010 | fix: add incomplete and error actions DWORK-7010
|
1a4df132edbc9441526346b7083a749f6f7c49fd | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/myteam-mini-app",
- "version": "1.15.34",
+ "version": "1.15.35",
"main": "dist/index.js",
"files": [
"dist"
@@ -81,7 +81,7 @@
"@typescript-eslint/parser": "^5.37.0",
"@walmart/allspark-authentication": "6.1.4",
"@walmart/allspark-foun... | Update the roster mini app version | Update the roster mini app version
|
bbb2176025f5c5c8c09cace80f17520169a4e885 | --- src/translations/es-MX.ts
@@ -117,7 +117,7 @@ export const esMX_common = {
},
navigation: {
askSam: 'Ask Sam',
- copilot: 'Work',
+ copilot: 'Trabajo',
emergency: 'Message Details',
featureRestrictions: 'Restricciones',
feedback: 'Comentarios',
| chore: fix spanish translation | chore: fix spanish translation
|
77cca5a30e11699c54b091ff7d9068fb0e351fec | --- __tests__/navigation/__snapshots__/indexTest.tsx.snap
@@ -75,6 +75,7 @@ exports[`RootNav matches snapshot when app accessible 1`] = `
options={
Object {
"headerBackImage": undefined,
+ "headerShown": true,
"title": "navigation.signInFailed",
}
}
--- src/navigation/... | Displaying error screen as modal | Displaying error screen as modal
|
8ff386651867554b58d19daaa26fd60f93897528 | --- docs/CHANGELOG.md
@@ -1,3 +1,28 @@
+## [2.25.4](https://gecgithub01.walmart.com/smdv/roster-miniapp/compare/v2.25.3...v2.25.4) (2025-04-07)
+
+
+### Bug Fixes
+
+* **bug:** add tests for AllTeamsScreen ([d299a57](https://gecgithub01.walmart.com/smdv/roster-miniapp/commit/d299a57b3e4fad69c1447c17afea995139780995))
+... | chore(release): 2.25.4 [skip ci] | chore(release): 2.25.4 [skip ci]
## [2.25.4](https://gecgithub01.walmart.com/smdv/roster-miniapp/compare/v2.25.3...v2.25.4) (2025-04-07)
### Bug Fixes
* **bug:** add tests for AllTeamsScreen ([d299a57](https://gecgithub01.walmart.com/smdv/roster-miniapp/commit/d299a57b3e4fad69c1447c17afea995139780995))
* **bug:** ad... |
ca996297df55b4fd3fe9a4566fb31b67671ef86c | --- .looper.multibranch.yml
@@ -259,6 +259,7 @@ flows:
- echo "default flow not required"
pr:
+ - echo "PR flow is being executed"
- excludeTools():
- tools(maven, jdk, android)
- npm install
| Update .looper.multibranch.yml | Update .looper.multibranch.yml |
1b8f107da5a0eecf347e03d7c2ddb49fe2971d94 | --- package.json
@@ -102,7 +102,7 @@
"@walmart/react-native-sumo-sdk": "2.6.0",
"@walmart/redux-store": "6.1.4",
"@walmart/ui-components": "1.15.1",
- "@walmart/wmconnect-mini-app": "2.5.4",
+ "@walmart/wmconnect-mini-app": "2.6.0",
"babel-jest": "^29.2.1",
"chance": "^1.1.11",
"esli... | fix(ui): updated wmconnect version for roster | fix(ui): updated wmconnect version for roster
|
f17272d966e065b76ba16d8764329c620cb0cb03 | --- packages/allspark-foundation/src/Navigation/utils.tsx
@@ -1,4 +1,4 @@
-import React, { PropsWithChildren, useEffect } from 'react';
+import React, { PropsWithChildren, useEffect, forwardRef, useImperativeHandle } from 'react';
import {
NavigationContainerRef,
ParamListBase,
@@ -64,24 +64,31 @@ export const c... | fix(navigation): ref unhandled on NavigationContainer adapter | fix(navigation): ref unhandled on NavigationContainer adapter
|
dd3e523fdb2140c3778b695e6a4b442b351ed46f | --- package.json
@@ -83,7 +83,7 @@
"@walmart/feedback-all-spark-miniapp": "0.3.8",
"@walmart/functional-components": "2.0.3",
"@walmart/gta-react-native-calendars": "0.0.15",
- "@walmart/gtp-shared-components": "1.8.5",
+ "@walmart/gtp-shared-components": "1.8.6",
"@walmart/impersonation-mini-... | Update package.json | Update package.json |
3b3c6571fdaf6b7264c0e72850d19bb59c4c9052 | --- packages/allspark-foundation/src/Components/Onboarding/TeamSelection/Screens/TeamSelection.tsx
@@ -20,7 +20,7 @@ export const TeamSelection = () => {
return viewerTeam;
};
const primaryTeam = useGetViewersPrimaryTeamName();
- const primaryTeamName = primaryTeam?.[0]?.teamName;
+ const primaryTeamName =... | Updating primaryTeamName | Updating primaryTeamName
|
b8334322d582443b187760a8bd0b2e035e38a425 | --- package-lock.json
@@ -39,7 +39,7 @@
"@walmart/ask-sam-mini-app": "1.12.2",
"@walmart/attendance-mini-app": "0.190.2",
"@walmart/compass-sdk-rn": "4.0.0",
- "@walmart/config-components": "4.2.0-98-336725c",
+ "@walmart/config-components": "4.2.0-98-f23262b",
"@walmar... | Platform bug fixes | Platform bug fixes
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.