commit_hash stringlengths 40 40 | input stringlengths 13 7.99k | output stringlengths 5 155 | full_message stringlengths 6 8.96k |
|---|---|---|---|
1039e0e3dd0e7241d2fe3fcfca4e2da6ab852902 | --- packages/allspark-foundation/__tests__/Feature/AllsparkFeature.test.tsx
@@ -91,6 +91,24 @@ describe('AllsparkFeature', () => {
expect(warnSpy).toHaveBeenCalledWith(
`AllsparkFeature(testFeature).createModule called multiple times. A feature module shoud only be created once. All subsequent calls will be... | added more unit test allspartkfeature | added more unit test allspartkfeature
|
731f17183864279e5176c9bf5a8f1a7cab67675e | --- .looper.yml
@@ -18,4 +18,4 @@ flows:
- (name Yarn Version) yarn --version
- yarn install
- yarn run lint
- - yarn run coverage
+ # - yarn run coverage
--- __tests__/__mocks__/@walmart/allspark-foundation-hub/Store/HubFeature.js
--- __tests__/__mocks__/@walmart/allspark-foundation-hub/Store/... | Update foundation hub imports | Update foundation hub imports
|
6501bd8b26215b0727a10a544f2bc81c194fe11c | --- package.json
@@ -161,7 +161,7 @@
"@walmart/sidekick-mini-app": "4.231.0",
"@walmart/store-feature-orders": "1.34.7",
"@walmart/talent-preboarding-mini-app": "1.0.48",
- "@walmart/taskit-mini-app": "5.42.40",
+ "@walmart/taskit-mini-app": "5.42.41",
"@walmart/time-clock-mini-app": "3.19.6",... | feat: OCT-15 fixing safety prod issues (#4905) | feat: OCT-15 fixing safety prod issues (#4905)
Co-authored-by: Savankumar Akbari - sakbari <sakbari@m-c02rv0v4g8wl.homeoffice.wal-mart.com> |
18fb1d5ca9daa84963f76213f7083696baad07ef | --- packages/allspark-foundation/__tests__/Clock/saga.test.ts
@@ -6,15 +6,15 @@ jest.mock('../../src/Clock/service', ()=>({
fetch:jest.fn(),
}
}))
-describe('Auth/sagas.ts', () => {
- it('should call AuthService.getUser', ()=>{
+describe('Clock/sagas.ts', () => {
+ it('should call ClockService.onInit', ()=>{
... | unit test for clock saga cleanup | unit test for clock saga cleanup
|
05c48c055ece880ad319c5e4e9190b9b2afc4647 | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/roster-mini-app",
- "version": "2.12.0-alpha.7",
+ "version": "2.12.0-alpha.8",
"main": "dist/index.js",
"files": [
"dist"
--- src/managerExperience/screens/RosterDetailScreen/RosterDetailScreen.tsx
@@ -41,6 +41,7 @@ import {AssociateListLoading} f... | Update roster mini app for refresh | Update roster mini app for refresh
|
22f49a3a7fbf3e36bca3d0bd32e3cdebee15dcf1 | --- packages/me-at-walmart-athena-queries/CHANGELOG.md
@@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+## [6.29.1](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/me-at-walmar... | chore(version): updating package version | chore(version): updating package version
- @walmart/me-at-walmart-athena-queries@6.29.1
|
54be38eb2e9912a1f5f5d20d8e24f669e50c2d89 | --- __tests__/harness/index.tsx
@@ -15,7 +15,6 @@ import {
EnvironmentProvider,
} from '@walmart/core-services/Environment/index';
import {EnvType} from '@walmart/core-services/Environment/types';
-import {PresenceContext} from '../../src/presence/context';
import {IChannelsContext} from '../../src/channels';
im... | fix lint | fix lint
|
2bd28d238c2530c441737e2cddb16283c3ff4c32 | --- core/__tests__/__mocks__/@walmart/mod-flex-mini-app.js
@@ -1,3 +1,6 @@
module.exports = {
- ModFlexMiniApp: 'ModFlexMiniApp',
+ __esModule: true,
+ default: {
+ buildAllScreens: () => 'ModFlexScreens',
+ },
};
--- core/__tests__/navigation/USHallway/AssociateHallwayNav/__snapshots__/MainStackNavTest.tsx.... | Update modflex test mocks | Update modflex test mocks
|
7486d8852765303ffc32d09382004540e1964033 | --- package-lock.json
@@ -3157,9 +3157,9 @@
"integrity": "sha512-0sVdqnfYb2Z90rZpk8drAttxOFKAIR3fAvOvFlVWOyxtPPXrAACOFzoTx++gO5SO5vZ1w6IlMKe8uTi2rpCWTA=="
},
"@walmart/schedule-mini-app": {
- "version": "0.2.73",
- "resolved": "https://npme.walmart.com/@walmart/schedule-mini-app/-/schedule-mi... | patch for map is not a function bug (#535) | patch for map is not a function bug (#535)
Co-authored-by: k0p03fa <k0p03fa@homeoffice.wal-mart.com>
Co-authored-by: Anthony Helms - awhelms <awhelms@wal-mart.com> |
fd41a034e484c5d089936ff35bfe0eb97e3517c0 | --- package-lock.json
@@ -4263,9 +4263,9 @@
"integrity": "sha512-dDQLOze2s/xkp/NYsUsZAMo7pu9zQ6prENJoPc90/zV8wqbA7LjTGe2JfGTHLo71QGG1at6YGNZv5YZzgWSq1g=="
},
"@walmart/iteminfo-mini-app": {
- "version": "4.0.26",
- "resolved": "https://npme.walmart.com/@walmart/iteminfo-mini-app/-/iteminfo-mi... | ItemInfo minor fix | ItemInfo minor fix
|
42214132ebeeb72fa02d689ec31c595720d5d88c | --- packages/allspark-authentication/src/Authentication.ts
@@ -321,6 +321,7 @@ export class AllsparkAuthentication {
public signOut = async () => {
try {
const authResult = await this._cachedResult.get();
+ await this._cachedResult.remove();
if (!authResult) {
throw NO_CACHE_ERROR;
... | fix: clear auth localstorage immediately on signout | fix: clear auth localstorage immediately on signout
|
c446af939ce749ffbbf97b77144ebe36fb6ba516 | --- package-lock.json
@@ -81,7 +81,7 @@
"@walmart/settings-mini-app": "1.18.1",
"@walmart/shelfavailability-mini-app": "1.5.16",
"@walmart/taskit-mini-app": "2.34.6",
- "@walmart/time-clock-mini-app": "2.108.0",
+ "@walmart/time-clock-mini-app": "2.109.0",
"@walmart/top... | Update time clock to 2.109.0 | Update time clock to 2.109.0
|
c3120b543ecf5d982011026929d897c2f73c71f8 | --- package.json
@@ -79,7 +79,7 @@
"@walmart/ask-sam-chat-components": "^0.2.7",
"@walmart/ask-sam-mini-app": "1.3.74",
"@walmart/attendance-mini-app": "0.86.0",
- "@walmart/compass-sdk-rn": "3.24.1",
+ "@walmart/compass-sdk-rn": "3.25.0",
"@walmart/config-components": "4.1.0-rc.4",
"@wal... | Update package.json | Update package.json
|
d59eafb5ea3bf4229050857503c291964a64ee35 | --- android/app/src/main/AndroidManifest.xml
@@ -13,7 +13,7 @@
<!-- SUMO -->
<application
- android:name="com.walmart.stores.allspark.MainApplication"
+ android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipm... | updated package name to beta | updated package name to beta
|
0f4191ac7222d8de3ab1702680da914632533c0d | --- src/managerExperience/components/AssociateListItem/AssociateListItem.tsx
@@ -61,6 +61,7 @@ export const AssociateListItem = ({
associate?.wfmSchedule?.scheduleWeeks &&
associate?.wfmSchedule?.scheduleWeeks?.[0]?.scheduleShifts &&
associate?.wfmSchedule?.scheduleWeeks?.[0].scheduleShifts?.length > 0;
... | chore: added todo comment | chore: added todo comment
|
881a20d7715b25d7207ba6a57911fea038df8ce2 | --- core/__tests__/navigation/USHallway/AssociateHallwayNav/__snapshots__/MainStackNavTest.tsx.snap
@@ -530,7 +530,7 @@ exports[`AssociateHallwayNav matches snapshot; handles mount and unmount effects
}
/>
<Screen
- getComponent={[Function]}
+ component={[Function]}
name="Core.ChangeStoreModal"
... | chore: snapshot fix | chore: snapshot fix
|
7ecd63bb139b472da9606a1a2a1e06ae4212f6a4 | --- src/channels/components/ChannelRow.tsx
@@ -63,8 +63,7 @@ const styles = StyleSheet.create({
},
timestamp: {
flex: 1,
- justifyContent: 'flex-start',
- marginRight: -16,
+ left: 16,
},
});
@@ -152,9 +151,7 @@ export const ChannelRow = (props: ChannelRowProps) => {
}
... | Added chnages as per PR comments | Added chnages as per PR comments
|
674cec634709af5d872e1534dc3b90330e5e0559 | --- jest.config.js
@@ -11,7 +11,7 @@ module.exports = {
global: {
statements: 19.5,
branches: 11.11,
- functions: 13,
+ functions: 12,
lines: 19,
},
},
--- jest.config.js
@@ -11,7 +11,7 @@ module.exports = {
global: {
statements: 19.5,
branches: 11.11,
- ... | jest config | jest config
|
1328a241eb1dd37b07857ef56647a5749626b18f | --- package.json
@@ -93,4 +93,4 @@
"axios@npm:^1.0.0": "patch:axios@npm%3A1.11.0#~/.yarn/patches/axios-npm-1.11.0-16e0bc699c.patch"
},
"packageManager": "yarn@4.4.0"
-}
\ No newline at end of file
+}
--- packages/allspark-foundation/package.json
@@ -146,6 +146,9 @@
"react-native-safe-area-context": "4... | chore: making netinfo an optional peer dependency as its now opt in | chore: making netinfo an optional peer dependency as its now opt in
|
1eebd204f2235d3e5e7481ebbe420b62c928ce12 | --- __tests__/screens/ChannelsScreen/ChannelsScreenTest.tsx
@@ -1,7 +1,6 @@
import React from 'react';
const {renderWithProviders} = require('../../harness');
import {ChannelsScreen} from '../../../src/screens/ChannelsScreen';
-import {ChannelRow} from '../../../src/channels/components/ChannelRow';
import {useNavig... | fix lint | fix lint
|
ed5fb28ae3ecd187e4736addc4342724c195b582 | --- docs/CHANGELOG.md
@@ -1,3 +1,10 @@
+## [3.0.2](https://gecgithub01.walmart.com/smdv/myteam-miniapp/compare/v3.0.1...v3.0.2) (2025-07-01)
+
+
+### Bug Fixes
+
+* **ui:** update roster mini app version ([c98f926](https://gecgithub01.walmart.com/smdv/myteam-miniapp/commit/c98f9269778b3086c32cce144131f145e6630afa))
+
... | chore(release): 3.0.2 [skip ci] | chore(release): 3.0.2 [skip ci]
## [3.0.2](https://gecgithub01.walmart.com/smdv/myteam-miniapp/compare/v3.0.1...v3.0.2) (2025-07-01)
### Bug Fixes
* **ui:** update roster mini app version ([c98f926](https://gecgithub01.walmart.com/smdv/myteam-miniapp/commit/c98f9269778b3086c32cce144131f145e6630afa))
|
4311cfb43979d4d9ed6d96a0a761a1cb01312288 | --- README.md
@@ -1,6 +1,6 @@
# allspark-core
-This is the core container app for the AllSpark Project (Me@Walmart redesign)
+This is the core container app for the AllSpark Project (Me@Walmart redesign) - [Onboarding docs](https://confluence.walmart.com/display/ALLSPARK/AllSpark+Ecosystem+Onboarding+and+Documentati... | Update README.md | Update README.md |
f0b1de364455a8a45770219e5f8f185662c7e643 | --- src/translations/es-MX.ts
@@ -13,46 +13,46 @@ export const esMX = {
},
rosterScreen: {
rosterName: ' Today’s {{teamName}} roster',
- weeklySchedule: 'Weekly schedule',
+ weeklySchedule: 'Turno semanal',
filters: {
all: 'All',
- absent: 'Absent',
+ absent: 'Co... | using spanish translations | using spanish translations
|
65f2da07a248b83a71561a24be4577986fd57405 | --- packages/me-at-walmart-container/__tests__/http/interceptors/successLogger.test.ts
@@ -18,6 +18,7 @@ describe('SuccessLoggerInterceptor', () => {
headers: {
'x-http-client-feature-key': 'mini-app',
'WM_QOS.CORRELATION_ID': '12345',
+ authorization: 'Bearer token',
},
me... | remove token from getting logged in http success logger | remove token from getting logged in http success logger
|
b42c9ed0f5cddbf1ee3a2fdb717e761289749999 | --- package-lock.json
@@ -80,7 +80,7 @@
"@walmart/schedule-mini-app": "0.35.0",
"@walmart/settings-mini-app": "1.18.1",
"@walmart/shelfavailability-mini-app": "1.5.13",
- "@walmart/taskit-mini-app": "2.34.4",
+ "@walmart/taskit-mini-app": "2.34.5",
"@walmart/time-clock-... | updated taskit version | updated taskit version
|
437fc91a0c78e6c5e3b0ea929b9a382bdca45324 | --- package-lock.json
@@ -5510,9 +5510,9 @@
"integrity": "sha512-Tz8PRLTpf4goLTBXayZxsBRuy/8+fnxjt+m7g3kfu0NRG58n/MgKi9krclf+LSLBhYTJcL5sKg8ckhA90dHlYQ=="
},
"@walmart/receipt-check-miniapp": {
- "version": "1.8.11",
- "resolved": "https://npme.walmart.com/@walmart/receipt-check-miniapp/-/rec... | fix: receipt audit mini app removing private key for api proxy | fix: receipt audit mini app removing private key for api proxy
|
53f7c9505516c5025e2e9fa520d8a408cf16df4e | --- package.json
@@ -1,6 +1,11 @@
{
"name": "allspark",
"workspaces": [
+ "./packages/allspark-utils",
+ "./packages/allspark-foundation",
+ "./packages/allspark-authentication",
+ "./packages/me-at-walmart-common",
+ "./packages/me-at-walmart-container",
"./packages/*"
],
"version": "1.16.0",
| fix: workspace config didnt specify order to build packages | fix: workspace config didnt specify order to build packages
|
58e1ad2160083d649a71c5736315011933a42ac2 | --- package-lock.json
@@ -43,7 +43,7 @@
"@walmart/core-utils": "~1.3.0",
"@walmart/core-widget-registry": "~0.7.2",
"@walmart/counts-component-miniapp": "0.0.42",
- "@walmart/emergency-mini-app": "1.11.0",
+ "@walmart/emergency-mini-app": "1.12.0",
"@walmart/exception-m... | updated emergency mini app version | updated emergency mini app version
|
41275106b4215128d68720781c2fffcc43bbf112 | --- __tests__/auth/ErrorScreenTest.tsx
@@ -157,7 +157,7 @@ describe('ErrorScreen', () => {
it('handles save with no detail', () => {
(useTranslation as jest.Mock).mockReturnValueOnce([
(translate) => {
- const t = {'ssoError.issues.other': 'Other'};
+ const t = {'ssoError.other': 'Other'};
... | remove local issues list | add other on spanish | remove local issues list | add other on spanish
|
d301c36f6964e8bf0aa81e969b2de399e12559b7 | --- docs/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [2.37.0](https://gecgithub01.walmart.com/smdv/wmconnect-miniapp/compare/v2.36.3...v2.37.0) (2025-05-29)
+
+
+### Features
+
+* **ui:** update package ([ecfdbba](https://gecgithub01.walmart.com/smdv/wmconnect-miniapp/commit/ecfdbba6006e2ce825a3be1235c6e3e48a32c5fc))
+
## [2.36.... | chore(release): 2.37.0 [skip ci] | chore(release): 2.37.0 [skip ci]
# [2.37.0](https://gecgithub01.walmart.com/smdv/wmconnect-miniapp/compare/v2.36.3...v2.37.0) (2025-05-29)
### Features
* **ui:** update package ([ecfdbba](https://gecgithub01.walmart.com/smdv/wmconnect-miniapp/commit/ecfdbba6006e2ce825a3be1235c6e3e48a32c5fc))
|
96329f4e4d6eafffb6253459f8b5868b591e70d3 | --- packages/celebration-mini-app-graphql/src/components/CelebrationLists/types.ts
@@ -58,6 +58,8 @@ export interface AssociateRowProps {
isLastItem?: boolean;
/** Type of celebration (birthday/anniversary) */
celebrationType?: 'birthday' | 'anniversary';
+ /** Optional press handler */
+ onPress?: () => voi... | feat(ui): fix the build issues | feat(ui): fix the build issues
|
a2ade27aa63d4985377f1fb760d483f011242298 | --- example/src/core/index.tsx
@@ -79,7 +79,7 @@ const Tab2Nav = () => {
);
};
-const Tab3Stack = AllsparkNavigationClient.createAllsparkStackNavigator();
+const Tab3Stack = createStackNavigator();
const Tab3Nav = () => {
return (
--- example/src/teamHub/screens/screen.tsx
@@ -6,7 +6,6 @@ import {useNavig... | feat: fix navigation and remove team list from screen | feat: fix navigation and remove team list from screen
|
38fc1d1a8fcb02c71a4829d16feaee6a4fbb08e9 | --- src/managerExperience/components/FilterChip/types.ts
@@ -1,7 +1,9 @@
import {ChipProps} from '@walmart/gtp-shared-components/dist';
+import {FilterValue} from '../../../containers/RosterFilters';
export interface FilterChipProps extends Omit<ChipProps, 'children'> {
count: number | null;
label: string;
+ ... | feat: updated roster info and filter | feat: updated roster info and filter
|
4257734a6d2914ab4d539a9da315481b331f0b87 | --- android/app/build.gradle
@@ -134,7 +134,7 @@ android {
applicationId "com.walmart.stores.allspark.beta"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 10
+ versionCode 11
versionName "1.0.1"
}
sp... | Incrementing build number | Incrementing build number
|
04ac2f31e33cdc72ae4feba5e9f1d8e4a34da646 | --- __mocks__/@react-navigation/native.js
@@ -19,6 +19,12 @@ module.exports = {
reset: jest.fn(() => ({type: 'RESET'})),
goBack: jest.fn(() => ({type: 'GO_BACK'})),
},
+ StackActions: {
+ popTo: jest.fn((name) => ({type: 'POP_TO', payload: {name}})),
+ pop: jest.fn(() => ({type: 'POP'})),
+ push:... | fix(ui): ALLSPARK-7445 sidebutton navigation fix (#5202) | fix(ui): ALLSPARK-7445 sidebutton navigation fix (#5202)
Co-authored-by: Hariharan Sundaram <hariharan.sundaram0@walmart.com>
Co-authored-by: Hariharan Sundaram <121838+h0s0em0@users.noreply.gecgithub01.walmart.com>
Co-authored-by: Pavan Lingamallu - p0l04ug <Pavan.Lingamallu@walmart.com> |
361588cf02c5cab82ce71c5d0fd80de2b740feae | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/myteam-mini-app",
- "version": "1.15.1-alpha.17",
+ "version": "1.15.1-alpha.18",
"main": "dist/index.js",
"files": [
"dist"
@@ -99,7 +99,7 @@
"@walmart/react-native-shared-navigation": "6.1.4",
"@walmart/react-native-sumo-sdk": "2.6.0",
... | feat(ui): update my team mini app version | feat(ui): update my team mini app version
|
36e0ee756edf12777a0954bed86b74b02bfd4615 | --- packages/allspark-foundation-hub/__tests__/supplyChain/Components/AllSupplyTeamList.test.tsx
@@ -0,0 +1,99 @@
+jest.useFakeTimers();
+import React from 'react';
+import { render as newRender } from '@walmart/allspark-foundation/__tests__/utils/index';
+import { fireEvent, render, screen } from '@testing-library/rea... | Adding initial tests | Adding initial tests
|
49a9f9972adf4ecf38ed34d0289b1bae9f420ea5 | --- packages/associate-exp-hub-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.
+# [2.17.0](https://gecgithub01.walmart.com/allspark/associate-exp-hub-mini-app/compare/@walmart/as... | chore(version): updating package version | chore(version): updating package version
- @walmart/associate-exp-hub-hub@2.17.0
- @walmart/associate-exp-hub-mini-app@1.10.0
- @walmart/associate-exp-hub-team-switcher@2.19.0
|
afa365eab1156cf2c9fed95581a61cca0bdba97d | --- package-lock.json
@@ -3125,9 +3125,9 @@
}
},
"@walmart/push-to-talk-mini-app": {
- "version": "0.2.6",
- "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push-to-talk-mini-app-0.2.6.tgz",
- "integrity": "sha512-rc1cY+B0SrickTaQF50aen6fGqSZUjxC/M7JL8BA/R486CFvYGM... | PTT version bump (#357) | PTT version bump (#357)
* version update for AskSam and PTT dependencies
* PTT version bump |
f41a53ce67a39742fb92f0017f09a6481f7a50f7 | --- src/screens/ViewTeamScreen.tsx
@@ -80,7 +80,7 @@ export const ViewTeamScreen: React.FC<ViewTeamScreenProps> = (props) => {
associates={teamRoster}
clockedInCount={clockedInCount ?? 0}
onFilter={onFilter}
- tardyCount={tardyCount}
+ tardyCount={t... | Adding tardy count | Adding tardy count
|
52652c3cf97d14158cb7b5c606cc4f5908ffca2a | --- package.json
@@ -86,7 +86,7 @@
"@walmart/ask-sam-chat-components": "^0.2.7",
"@walmart/ask-sam-mini-app": "1.31.5",
"@walmart/associate-listening-mini-app": "1.2.32",
- "@walmart/attendance-mini-app": "3.156.0",
+ "@walmart/attendance-mini-app": "3.169.0",
"@walmart/avp-feature-app": "0.16... | feat: Schedules - LA Fair Work Week (#4325) | feat: Schedules - LA Fair Work Week (#4325)
* feat: bump scheduling packages. Patch attendance-mini for shiftChangeRequests
* fix(schedules): aSWFMT-73598 fix the patch definition for attendance
* fix(fix typo): fix typo
* fix(fix selector): update selector to use feature flag
* feat(la fair work week): B... |
85df9a0ac06ba0c91d7759e7ce8af5805fb4e8b5 | --- __tests__/harness/athenaQueries/getTeamsByStore.ts
@@ -1,4 +1,4 @@
-import {GetTeamsByStoreDocument} from '../../../src/queries/getTeamsbyStore';
+import {GetTeamsByStoreDocument} from '../../../src/queries/getTeamsByStore';
import moment from 'moment-timezone';
const currentDay = moment().format('YYYY-MM-DD');... | fix: fixed query file name | fix: fixed query file name
|
22b5473c556766e3f48ef9c457212f603d171d78 | --- packages/allspark-foundation/src/FeatureRunner/components/PluginSection.tsx
@@ -7,7 +7,6 @@ import {
CardHeader,
Heading,
} from '@walmart/gtp-shared-components';
-
import { FeatureRunnerPlugin } from '../types';
import { PluginComponentContainer } from '../navigation';
import { createScreenLink } from '.... | fix: feature runner improvements | fix: feature runner improvements
|
2feba4bcae1438d1a973f10729c0e98e7a2fb90b | --- packages/allspark-foundation/__tests__/Hub/__snapshots__/TeamOnboardingCards.test.tsx.snap
@@ -5,8 +5,8 @@ exports[`TeamOnboardingCards should render snapshot 1`] = `
contentContainerStyle={
[
{
- "flex": 1,
- "paddingBottom": 0,
+ "flexGrow": 1,
+ "paddingBottom": 100,
... | fet(ui): update tests for onboarding | fet(ui): update tests for onboarding
|
a424a2aff0f5d82d79871c7e5dadcaf66a75f527 | --- package-lock.json
@@ -4886,7 +4886,9 @@
}
},
"node_modules/@walmart/config-components": {
- "version": "4.0.1",
+ "version": "4.1.0-rc.0",
+ "resolved": "https://npme.walmart.com/@walmart/config-components/-/config-components-4.1.0-rc.0.tgz",
+ "integrity": "sha512-mAnd46Xmlwj8D... | update lock file | update lock file
|
593ce7987f5018cd6a5622bc3029382848b71772 | --- package-lock.json
@@ -3272,9 +3272,9 @@
}
},
"@walmart/allspark-home-mini-app": {
- "version": "0.4.60",
- "resolved": "https://npme.walmart.com/@walmart/allspark-home-mini-app/-/allspark-home-mini-app-0.4.60.tgz",
- "integrity": "sha512-Okcf1CauYjOD/xYJ8iADu8HfqdaPU35+Gygjy6fq3YRGII... | fixing home version | fixing home version
|
534500048e360ac7fd72752b2f1c6efa9d4bdc68 | --- ios/Podfile.lock
@@ -541,7 +541,7 @@ PODS:
- RCTTypeSafety
- React
- ReactCommon/turbomodule/core
- - react-native-scanner-3.0 (0.1.27):
+ - react-native-scanner-3.0 (0.1.26):
- Firebase/Analytics
- React
- ScanditBarcodeCapture (= 6.14.0)
| :reverting scanner update | :reverting scanner update
|
00ff32a014e63d005d8e3fa194d6060bfa6d5520 | --- targets/US/package.json
@@ -86,7 +86,7 @@
"@walmart/ask-sam-chat-components": "^0.2.7",
"@walmart/ask-sam-mini-app": "1.24.7",
"@walmart/associate-listening-mini-app": "1.2.7",
- "@walmart/attendance-mini-app": "3.92.0",
+ "@walmart/attendance-mini-app": "3.93.0",
"@walmart/avp-feature-app... | bump ama verion 3.93.0 | bump ama verion 3.93.0
|
ece0110734823a08b402b3fa75c28cb0ea673449 | --- core/__tests__/__mocks__/@walmart/taskit-mini-app.js
@@ -1,6 +1,8 @@
module.exports = {
__esModule: true,
- default: 'TaskItMiniApp',
+ default: {
+ buildAllScreens: () => 'TaskItMiniApp',
+ },
TaskItQuickActions: 'TaskItQuickActions',
- getTaskBadge: jest.fn(),
+ getTaskTabBarBadge: jest.fn(),
};
... | fix: updated test coverage | fix: updated test coverage
|
edb9e396d4a87ad7b89f446b1800c93c4278dc74 | --- package-lock.json
@@ -3490,9 +3490,9 @@
}
},
"@walmart/ui-components": {
- "version": "1.1.40",
- "resolved": "https://npme.walmart.com/@walmart/ui-components/-/ui-components-1.1.40.tgz",
- "integrity": "sha512-LKPrF3LoCv/R2MzUzulq3VbMJlOi/fT6S+HBx+AGsUvnsWb/wA9h6BYDeg4KRSnlj2tAQS5K8... | ui-componets version bump | ui-componets version bump
|
b2f84e90b7f80cf0c99c3119aa3de7bcd1f95b10 | --- ios/Podfile.lock
@@ -623,9 +623,9 @@ PODS:
- JWT (~> 3.0.0-beta.12)
- React-Core
- SSZipArchive (~> 2.2.2)
- - compass-sdk-ios (0.2.13)
- - compass-sdk-rn (5.7.0):
- - compass-sdk-ios (= 0.2.13)
+ - compass-sdk-ios (0.2.18)
+ - compass-sdk-rn (5.10.0):
+ - compass-sdk-ios (= 0.2.18)
- ... | FixiT-Compass fix for External BETA build | FixiT-Compass fix for External BETA build
|
7cd89eb89d3305c7acacd638a1488264db10b145 | --- jest.config.js
@@ -11,7 +11,7 @@ module.exports = {
global: {
statements: 18,
branches: 8,
- functions: 12,
+ functions: 11,
lines: 18,
},
},
--- package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@walmart/texting-mini-app",
- "version": "2.0.8",
+ "version": "2.0.11"... | bumping down coverage threshold | bumping down coverage threshold
|
717e546e771765295dd059e6608029e757f87840 | --- android/app/src/main/res/raw/walmart_try_again_01.m4a
Binary files /dev/null and b/android/app/src/main/res/raw/walmart_try_again_01.m4a differ
--- ios/AllSpark.xcodeproj/project.pbxproj
@@ -33,6 +33,7 @@
A37C73092A1BDF8EB0453A46 /* libPods-AllSpark.a in Frameworks */ = {isa = PBXBuildFile; fileRef = FAAB70403... | update sound files | update sound files
|
d58890c71605741cae401b20d98c9cce53966b3e | --- package-lock.json
@@ -4480,9 +4480,9 @@
"integrity": "sha512-372RXILEa5RJMG76+n/ouWCzcYShiOFJIvf/zDKc4D44Fw6WqbuubQwu7rMhO1uQSGjlh3T3rvgVZOCXS+dr4g=="
},
"@walmart/time-clock-mini-app": {
- "version": "0.4.26",
- "resolved": "https://npme.walmart.com/@walmart/time-clock-mini-app/-/time-cl... | Update time clock mini app | Update time clock mini app |
e1c3eb47b2eaee15c6b8eabe29f4863eacfb8de6 | --- package-lock.json
@@ -3565,9 +3565,9 @@
"integrity": "sha512-DnuWICgwXUEwBTmZlx+iEFmh1t7rtQLQICQ7RVYpbHABQAQDFMRUwhyBPCoZT6DVGCkDGhXV5HcsCUFMs8UZsQ=="
},
"@walmart/shelfavailability-mini-app": {
- "version": "0.3.99",
- "resolved": "https://npme.walmart.com/@walmart/shelfavailability-mini... | Revert version | Revert version
|
65ac4c899c96f774a8b338c51de5fbf9dfdef3d8 | --- package-lock.json
@@ -46,12 +46,12 @@
"@walmart/counts-component-miniapp": "0.0.42",
"@walmart/emergency-mini-app": "1.17.0",
"@walmart/exception-mini-app": "1.0.14",
- "@walmart/facilities-management-miniapp": "0.5.14",
+ "@walmart/facilities-management-miniapp": "0.5.15",
... | Updated package-lock and patch name | Updated package-lock and patch name
|
8cf7dfa81edfad5a3f5556fa75c9146e530d29b3 | --- core/__tests__/home/services/HomeApi/indexTest.ts
@@ -145,15 +145,15 @@ describe('fetchCelebrationData', () => {
const result = await fetchCelebrationData('someValidQuery');
expect(result).toEqual('Valid result');
});
- it('should throw error when there the response is undefined', async () => {
+ it(... | code cleanup | code cleanup
|
539dd01980aa8cc04487167edde3b141d5ddc456 | --- package.json
@@ -90,7 +90,7 @@
"@walmart/allspark-utils": "7.1.0",
"@walmart/amp-mini-app": "1.2.10",
"@walmart/ask-sam-chat-components": "^0.2.7",
- "@walmart/ask-sam-mini-app": "1.35.17",
+ "@walmart/ask-sam-mini-app": "1.35.20",
"@walmart/associate-exp-hub-hub": "2.17.0",
"@walmart... | chore(ask-sam-mini-app): SMBLV-9326 LD 3.5 Migration (#5167) | chore(ask-sam-mini-app): SMBLV-9326 LD 3.5 Migration (#5167)
Co-authored-by: Sowmya Munaganuri <Sowmya.Munaganuri+walmart@walmart.com>
Co-authored-by: Maksym Novakh - m0n09mr <Maksym.Novakh0@walmart.com> |
7a435cb7cace549c8aa088b26d78e276a007dcdb | --- targets/US/android/app/build.gradle
@@ -190,11 +190,6 @@ android {
// @customization - Dynamic mini app features
dynamicFeatures.add(':compass_dynamic_module')
dynamicFeatures.add(':webex_dynamic_module')
-
- // Block to prevent duplicate classes issues we observed
- packagingOptions {
- ... | Scanner 3.0 - Moved INDEX.LIST into packaging options | Scanner 3.0 - Moved INDEX.LIST into packaging options
|
4f7a34656ab906bfea33acdcdace2130153487db | --- package-lock.json
@@ -3339,9 +3339,9 @@
"integrity": "sha512-KDL4QbdhuOnIeMs4dIZ9wbDdj2wO2VBR4aYaJ8CxKW+xrZA13k0PzpAiZiH6BcP3gxr10DvdRIg6lcJuLHJ8Dw=="
},
"@walmart/functional-components": {
- "version": "1.0.33",
- "resolved": "https://npme.walmart.com/@walmart/functional-components/-/fun... | Added additional log field to identify mini apps | Added additional log field to identify mini apps
|
a72faa3a48e1f9b8fd1ea3da68e1285146b7776e | --- __tests__/navigation/AssociateHallwayNav/Tabs/MainTabsNavTest.tsx
@@ -268,8 +268,6 @@ test('TabListeners', () => {
describe('MainTabsNav', () => {
const config = {enabled: true};
- // (Hooks.useVMBadgesCount as jest.Mock).mockReturnValueOnce([0]);
- // (Hooks.useTextBadgesCount as jest.Mock).mockReturnValue... | remove commented code | remove commented code
|
2f36b59a41c7d4497af2c3e88f6dd55dcb77d3cd | --- .looper.multibranch.yml
@@ -47,6 +47,7 @@ envs:
global:
variables:
LOOPER_NODES: "((stable_osx||xcode12.5)&&!MAC-LAB-MINI36&&!MAC-LAB-MINI32&&!MAC-LAB-MINI07&&!MAC-DRFQLAB-MINI43)"
+ GITHUB_TOKEN: "%{credentials.secret('GITHUB_TOKEN')}"
TMPDIR: /tmp
| Added GitHub token | Added GitHub token
|
e2dbddd463a8057f74dd1740977d6b7829793ab4 | --- package-lock.json
@@ -4477,7 +4477,7 @@
"@walmart/taskit-mini-app": {
"version": "0.146.0-rc.2",
"resolved": "https://npme.walmart.com/@walmart/taskit-mini-app/-/taskit-mini-app-0.146.0-rc.2.tgz",
- "integrity": "sha512-CnclOd9H0lwjbaPCLEF+prM/ycJ9Aaruxa7C6FxXXqayWOyW/Jk0WEa0OwUPU3wC8IU/wL4+... | new package-json | new package-json
|
0d74711d0d6cb24e091bb8f3029ae7b37a4eb7b5 | --- core/jest.config.js
@@ -25,4 +25,8 @@ module.exports = {
transformIgnorePatterns: [
'<rootDir>/node_modules/(?!(react-native|@walmart/core-utils|@walmart/allspark-foundation|@walmart/allspark-utils|@walmart/allspark-http-client|@walmart/core-services|@walmart/gtp-shared-components|@walmart/gtp-shared-icons|... | added png and tests to code coverage ignore path | added png and tests to code coverage ignore path
|
de5209a49552c32e8199c9132e525b3a52ebdda2 | --- src/screens/RosterDetailScreen/SupplyChainRosterDetailScreen/useSupplyChainRosterDetails.ts
@@ -1,14 +1,14 @@
-import { useCallback, useState } from "react";
-import { RosterDetailScreenProps } from "../types";
+import {useCallback, useState} from 'react';
+import {RosterDetailScreenProps} from '../types';
import ... | fix(ui): update lint errors | fix(ui): update lint errors
|
c82102c1ce414fab3b3791b72a7d93c101a715a7 | --- scripts/mini-app-scan/scan-changed-walmart-libs.sh
@@ -8,6 +8,9 @@ set -e
COMPARE_BRANCH="${1:-origin/main}"
echo "Comparing package.json to $COMPARE_BRANCH..."
+# Ensure the comparison branch is available (important for CI)
+git fetch origin "${COMPARE_BRANCH}:${COMPARE_BRANCH}" || git fetch origin
+
# Get ch... | fix: scan script did not fetch comparison branch before git diff | fix: scan script did not fetch comparison branch before git diff
|
7eca1f4562019d718f7687c0ac66c1026ae5cc54 | --- core/src/navigation/USHallway/AssociateHallwayNav/MainStackNav.tsx
@@ -174,7 +174,7 @@ const MiniAppScreens = createMiniAppScreens(MainStack, [
clockCheckEnabled: true,
},
{
- featureId: 'GlobalVPI',
+ featureId: MINI_APPS.GLOBAL_VPI,
name: 'GlobalVPI',
component: GlobalVpiMiniApp,
o... | feat: upgrade version global vpi and add constant | feat: upgrade version global vpi and add constant
|
e38170234ae6e9259147988baa7c28baa3bb2f09 | --- packages/allspark-app-auth/package.json
@@ -28,6 +28,7 @@
},
"peerDependencies": {
"@react-native-community/async-storage": "^1.12.1",
+ "@walmart/allspark-utils": "~1.0.0",
"@walmart/react-native-encrypted-storage": "^1.1.13",
"react": "^18.2.0",
"react-native": "~0.70.5",
@@ -35,6 +36... | feat: add proxy method to base instance | feat: add proxy method to base instance
|
341f7e8f625a942c82ae729864bd194f7d9bbc73 | --- .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)
+node: ((osx||stable_osx)&&!dualcore&&!MAC-LAB-MINI05)
##... | excluding mini 05 | excluding mini 05
|
a0f6457e36a7e73f7f7fb1c82cde56f6763c8f14 | --- targets/US/package.json
@@ -140,7 +140,7 @@
"@walmart/redux-store": "~6.3.20",
"@walmart/returns-mini-app": "4.13.0",
"@walmart/rfid-scan-mini-app": "2.3.16",
- "@walmart/rn-receiving-mini-app": "2.3.133",
+ "@walmart/rn-receiving-mini-app": "2.3.150",
"@walmart/roster-mini-app": "2.8.2",
... | Updated receiving version | Updated receiving version
|
e2554b6292bc867b791ca6b0a68ac3c0c6ac3d81 | --- package-lock.json
@@ -9000,9 +9000,9 @@
"integrity": "sha512-VjX25hR+zaK5vnHlJP2+1pPl+0KQ+mDrM9w7kJ3RpYhy8wFnB8S3qry/Xvgcy5WJnoOWUHyalFC0Qp0FKTuVAA=="
},
"react-native-wm-voice-text": {
- "version": "0.2.1",
- "resolved": "https://npme.walmart.com/react-native-wm-voice-text/-/react-native... | update version of voice-text | update version of voice-text
|
12ad6b8ece94bff23c46d6d1bab0b5b03df2e803 | --- ios/AllSpark/Info.plist
@@ -10,6 +10,8 @@
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>com.walmart.stores.allspark.beta</string>
+ <key>SumoAppGroupId</key>
+ <string>group.com.walmart</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleNam... | updated sumo sdk version. | updated sumo sdk version.
|
adfc7191217a50c5650c91dc109131867f879bad | --- packages/allspark-foundation-hub/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/allspark-foundation-hub",
- "version": "1.2.16",
+ "version": "1.2.17",
"description": "",
"main": "lib/index.js",
"types": "lib/index.d.ts",
--- packages/allspark-foundation-hub/src/SupplyChain/Hub/SiteHubDashboard.t... | Update hub | Update hub
|
f28f63d7848f70cdf64376f31168a666955469ef | --- package-lock.json
@@ -67,7 +67,7 @@
"@walmart/gta-react-native-calendars": "0.7.0",
"@walmart/gtp-shared-components": "2.2.1",
"@walmart/impersonation-mini-app": "1.20.8",
- "@walmart/ims-print-services-ui": "2.10.3",
+ "@walmart/ims-print-services-ui": "2.11.1",
"@... | Update @walmart/ims-print-services-ui to 2.11.1 | Update @walmart/ims-print-services-ui to 2.11.1
|
757e52b5fa70399a7e4872f1380c07acda699f2b | --- package-lock.json
@@ -3184,9 +3184,9 @@
}
},
"@walmart/welcomeme-mini-app": {
- "version": "0.5.19",
- "resolved": "https://npme.walmart.com/@walmart/welcomeme-mini-app/-/welcomeme-mini-app-0.5.19.tgz",
- "integrity": "sha512-HE/TNh3HrevJh96fQWwSfN13xH3g+O94PKk2eFQFPIkb5wh/JT2D5br3gH... | Welcome Me Mini App - UAT (#267) | Welcome Me Mini App - UAT (#267)
* Welcome Me Mini App - UAT
* minor fix and version increased
* version bump (1 sonar bug fixed)
Co-authored-by: Hitesh Arora - h0a006n <Hitesh.Arora@walmart.com> |
11ba3e47323416cdf1483877baabde044ed3ec0c | --- packages/allspark-foundation-hub/package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/allspark-foundation-hub",
- "version": "1.0.1-beta.20",
+ "version": "1.1.0",
"description": "",
"main": "Core/index.js",
"types": "Core/index.d.ts",
| Update the hub version | Update the hub version
|
991bd32ba4b7528cd425fb519c4c7603802adb98 | --- packages/allspark-foundation/__mocks__/i18next.js
@@ -1,12 +0,0 @@
-module.exports = {
- ...jest.requireActual('i18next'),
- init: jest.fn(),
- changeLanguage: jest.fn(),
- addResources: jest.fn(),
- setDefaultNamespace: jest.fn(),
- cloneInstance: jest.fn(),
- on: jest.fn(),
- language: 'en... | reverted global mocking lib | reverted global mocking lib
|
2e128b15a1d9875bdafe6eab12351e25be10d6a1 | --- package-lock.json
@@ -3264,6 +3264,30 @@
"resolved": "https://npme.walmart.com/@walmart/welcomeme-mini-app/-/welcomeme-mini-app-0.5.27.tgz",
"integrity": "sha512-XkfZJYjio/KFzOrjIMNgTqn6N9Nhf5EEZBKXcPU5DIjNUmSMDJqnpbbBr6+6mz4wZqPRZvXmfRdwK8d5prHFeA=="
},
+ "@walmart/wfm-ui": {
+ "version"... | adding wfm-ui (#503) | adding wfm-ui (#503)
|
e9c1340c866d8da97dab00fe3b97b08a1624744f | --- .looper-pr.yml
@@ -31,3 +31,4 @@ envs:
+
| feat(ui): update concord #SMDV-9999 | feat(ui): update concord #SMDV-9999
|
3f59626dc53b2f394bb42f70b9813bd64d688a53 | --- package-lock.json
@@ -3193,9 +3193,9 @@
"integrity": "sha512-UfQvukDS75owqFhjEW+A8Ara/9zRAQNaesPJu1a6/zv8qauT9gUw/rq1VKcVeD2NiMaQCNNx+tNlOiluGRPTdQ=="
},
"@walmart/time-clock-mini-app": {
- "version": "0.1.35",
- "resolved": "https://npme.walmart.com/@walmart/time-clock-mini-app/-/time-cl... | Clock status fallback when time clock services fail (#370) | Clock status fallback when time clock services fail (#370)
* Clock status fallback when time clock services fail
* Fixed TC Mini app bug |
13d9fbd8d5c1bb4a7dc62a48b553f3c477f2fdcb | --- package-lock.json
@@ -53,7 +53,7 @@
"@walmart/exception-mini-app": "1.6.5",
"@walmart/facilities-management-miniapp": "0.6.83",
"@walmart/feedback-all-spark-miniapp": "0.9.50",
- "@walmart/financial-wellbeing-feature-app": "1.16.1",
+ "@walmart/financial-wellbeing-feature-ap... | bumped financial-wellbeing-feature-app to 1.16.3 | bumped financial-wellbeing-feature-app to 1.16.3
|
11fdf4dac9fcedb80eddfa72e10b24e36c59135e | --- package-lock.json
@@ -5312,9 +5312,9 @@
"integrity": "sha512-3xZ9hyHPrhGO7U3wcjRlXJMHhyMht/WTeR+f3yw8b1B4uWmtlunXw7cqCqDz+Y2gPNr08/+hL5sY5T472CfnMg=="
},
"@walmart/me-field-mini-app": {
- "version": "1.1.17",
- "resolved": "https://npme.walmart.com/@walmart/me-field-mini-app/-/me-field-mi... | feat: :sparkles: Bump learning app version to 1.1.18 | feat: :sparkles: Bump learning app version to 1.1.18
|
3edbd68e954a28ddb6e5c1542df37a75b5758f02 | --- package.json
@@ -420,7 +420,7 @@
"@walmart/me-at-walmart-container": "workspace:^",
"@walmart/moment-walmart": "1.0.4",
"axios": "~1.6.0",
- "@walmart/ui-components": "1.23.1",
+ "@walmart/ui-components": "patch:@walmart/ui-components@npm%3A1.23.1#~/.yarn/patches/@walmart-ui-components-npm-1.23... | chore(ui): ALLSPARK-6120 fix icon issue (#4228) | chore(ui): ALLSPARK-6120 fix icon issue (#4228)
|
e82827513052d2f07733f3efd304d16ac2a60c08 | --- packages/allspark-foundation/src/Work/redux.ts
@@ -40,6 +40,7 @@ export const workSlice = createSlice({
WORK_FLOW_START: (state, action: PayloadAction<WorkFlowStartPayload>) => {
state.workFlow = action.payload.workFlow;
state.actionId = action.payload.actionId;
+ state.context = action.payl... | fix(work): work context not set on start action | fix(work): work context not set on start action
|
d2e6343a1d3d3b83c3b77f7fa16d77b7d8b0d6c0 | --- packages/allspark-foundation/__tests__/Work/redux.test.tsx
@@ -0,0 +1,14 @@
+import {WorkActions, WorkActionTypes, WorkSelectors} from '../../src/Work'
+import { UseSelector } from 'react-redux/es/hooks/useSelector'
+
+// describe('WorkActions', () => {
+
+// })
+describe('WorkSelectors', () => {
+ test('get work ... | feat: add test file DWORK-6097 | feat: add test file DWORK-6097
|
793770e34b222fb9b865b253bfc61a6e9a37907b | --- src/auth/ErrorScreen.tsx
@@ -63,7 +63,8 @@ export const ErrorScreen: FC<any> = (props) => {
<ScrollView contentContainerStyle={styles.errorScrollView}>
<KeyboardAvoidingView
behavior={Platform.OS === 'ios' ? 'position' : undefined}
- enabled>
+ enabled
+ keyboar... | test-ios | test-ios
|
e6a1230c82d6c8287ab65f039e17199b770dbe6b | --- packages/expo-config-plugins/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.
+## [0.4.1](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/expo-config-plugins@0.... | chore(version): updating package version | chore(version): updating package version
- @walmart/expo-config-plugins@0.4.1
|
d42d707b594bf5e77e2b222ab475052ead0189cc | --- concord-multibranch.yml
@@ -60,7 +60,7 @@ triggers:
entryPoint: onPush
conditions:
type: push
- branch: "^feature-.*$" # Triggers when someone pushes to a feature branch with a name starting with feature-, ex: feature-my-feature
+ branch: "^(feature|feat|chore).*$" # Triggers ... | feat(ui): update concord yml #SMDV-9999 | feat(ui): update concord yml #SMDV-9999
|
ba0a657fb25d49e216f98fef9eb1cdc11bf492c4 | --- src/components/RosterWidget/useRosterWidget.ts
@@ -62,10 +62,12 @@ export const useRosterWidget = (
teams: SupplyChainTeam[],
shifts: ShiftMappingList,
) {
- let shiftSiteIds = shifts?.map((shift) => Number(shift.shiftId));
-
- let filteredTeams = teams
- .map((team) => {
+ if (!teams?.le... | feat(ui): null checks for empty teams | feat(ui): null checks for empty teams
|
7d71b90e63441d504f463918e88e5e518113951b | --- src/auth/LoginErrorScreen/index.tsx
@@ -117,11 +117,11 @@ export const ErrorScreen = (
const customErrorCode = params?.authError?.code;
const [isNetworkError, isTimeMismatchError, isBrowserNotFoundError] =
useMemo(() => {
- const networkError = networkErrors.some((term) =>
- customError?.toLo... | fix lint errors | fix lint errors
|
6658beb3cd0624e33674f2d24755b756802c4212 | --- docs/docs/components/allspark foundation/clients/foundation-http.md
@@ -37,27 +37,27 @@ As an extension of Axios all expected methods are available. See the [axios docu
Additional methods are:
-### `cancelRequests`
+### `cancelRequests()`
Cancels all requests for the client. In progress requests and any new... | Fixing minor issue, formatting. | Fixing minor issue, formatting.
|
aba4f379c458abc48b83695606fc0bc1920455ad | --- src/components/modals/hoc/EditTeamsModal.tsx
@@ -6,6 +6,7 @@ import {AssociateExpHubTranslationClient} from '../../../utils/translation';
import {ModalContent} from '../smartModal';
import {useGetTeamsAdapter} from '../../../services';
import {MODALS} from '../../../constants';
+import {useConfig} from '../../..... | feat(ui): implement ff for edit and update modals #SMDV-8174 | feat(ui): implement ff for edit and update modals #SMDV-8174
|
6496d46ea5e5853998d404c981f478f0a2cf43a6 | --- .yarnrc.yml
@@ -1,7 +1,7 @@
nodeLinker: node-modules
npmRegistryServer: '${REPOSOLNS_NPM_REPO}'
-enableImmutableInstalls: false
+enableImmutableInstalls: true
packageExtensions:
'@walmart/ui-components@*':
| chore(ui): update .yarnrc yml file | chore(ui): update .yarnrc yml file
|
4013d05f867b943f5adc482c131dc6feeb2db2d3 | --- docs/CHANGELOG.md
@@ -1,3 +1,10 @@
+# [1.22.0](https://gecgithub01.walmart.com/smdv/myteam-miniapp/compare/v1.21.0...v1.22.0) (2025-03-28)
+
+
+### Features
+
+* **ui:** update the my team configs readme ([6f0ccb3](https://gecgithub01.walmart.com/smdv/myteam-miniapp/commit/6f0ccb3b36f870f1542ebc2edeb51ff849fbfeae))... | chore(release): 1.22.0 [skip ci] | chore(release): 1.22.0 [skip ci]
# [1.22.0](https://gecgithub01.walmart.com/smdv/myteam-miniapp/compare/v1.21.0...v1.22.0) (2025-03-28)
### Features
* **ui:** update the my team configs readme ([6f0ccb3](https://gecgithub01.walmart.com/smdv/myteam-miniapp/commit/6f0ccb3b36f870f1542ebc2edeb51ff849fbfeae))
|
a54fd9af0e342a02b63554d73e878c484d824f8a | --- package-lock.json
@@ -61,8 +61,8 @@
"@walmart/mod-flex-mini-app": "1.2.7",
"@walmart/moment-walmart": "1.0.4",
"@walmart/OneWalmart-MiniApp": "1.0.12",
- "@walmart/pay-stub-miniapp": "0.9.5",
- "@walmart/payrollsolution_miniapp": "0.130.1",
+ "@walmart/pay-stub-miniap... | bump version | bump version
|
f5da9f73b1b3883c471124698c62566c1f3ab1b9 | --- package-lock.json
@@ -64,7 +64,7 @@
"@walmart/learning-mini-app": "17.0.4",
"@walmart/manager-approvals-miniapp": "0.2.4",
"@walmart/metrics-mini-app": "0.17.9",
- "@walmart/mod-flex-mini-app": "1.13.7",
+ "@walmart/mod-flex-mini-app": "1.14.5",
"@walmart/moment-wal... | Update to version v1.14.5 | Update to version v1.14.5
|
52c46740b9610a2ba10d111228e0ccadbb2c80f4 | --- ios/Podfile.lock
@@ -1454,7 +1454,7 @@ PODS:
- FirebaseMessaging (<= 10.1.0)
- StructuredLogAssistantIOS (= 0.0.7)
- TOCropViewController (2.6.1)
- - topstock-mini-app (1.2.0):
+ - topstock-mini-app (1.2.1):
- React
- VisionCamera (2.15.2):
- React
@@ -2035,7 +2035,7 @@ SPEC CHECKSUMS:
... | fix(version): merge develop branch on delta api fix | fix(version): merge develop branch on delta api fix
|
4df3dcb8106d425cd5371ce2024b904049941b22 | --- targets/US/package.json
@@ -110,7 +110,7 @@
"@walmart/ims-print-services-ui": "2.15.3",
"@walmart/inbox-mini-app": "0.96.8",
"@walmart/iteminfo-mini-app": "7.16.2",
- "@walmart/learning-mini-app": "20.0.40",
+ "@walmart/learning-mini-app": "20.0.41",
"@walmart/manager-approvals-miniapp": "... | feat: :sparkles: Bump learning mini app version to 20.0.41 | feat: :sparkles: Bump learning mini app version to 20.0.41
|
071ff5bd09fce7cea1753860f20d4dcd0ec7b7de | --- patches/@walmart+attendance-mini-app+0.190.2.patch
@@ -1,10 +0,0 @@
-diff --git a/node_modules/@walmart/attendance-mini-app/dist/util/localStorageService.js b/node_modules/@walmart/attendance-mini-app/dist/util/localStorageService.js
-index 9e360a1..bae3465 100644
---- a/node_modules/@walmart/attendance-mini-app/di... | removed attendance-mini-app patch file | removed attendance-mini-app patch file
|
2949a5a2c12e7c76b9c6e3eb112ee13fcbedda18 | --- __tests__/__mocks__/@react-native-firebase/firestore.js
@@ -28,12 +28,4 @@ jest.mock('../../../src/presence/constants', () => {
};
});
-// jest.mock('../../../src/channels', () => {
-// return {
-// useChannelDocument: jest.fn(),
-// createAssociateChannelId: jest.fn(),
-// createChannelPath: je... | working provider and render, though broken integration | working provider and render, though broken integration
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.