commit_hash stringlengths 40 40 | input stringlengths 13 7.99k | output stringlengths 5 155 | full_message stringlengths 6 8.96k |
|---|---|---|---|
2f1699d94da3df4e096f73b1d27a9af14f01e722 | --- __tests__/sumo/SumoSagasTest.ts
@@ -38,7 +38,6 @@ import {
import {
getSumoCharged,
getSumoChargeError,
- getSumoCharging,
getSumoOptIn,
getSumoProfile,
SumoActionCreators,
@@ -48,6 +47,7 @@ import {
handleNotificationPermission,
chargeSumo,
waitForSumoCharge,
+ waitForSumoSuccess,
get... | Updating sagas | Updating sagas
|
84bf283d20ea1303b4d39faed8cae4ca6d62d223 | --- package-lock.json
@@ -3059,9 +3059,9 @@
"integrity": "sha512-xScS3+/bnwlSFENS31yokqgl9pN0G1DcY8/amLstP2BeBk/kx6DxNq5BmMWg1o1J+K3rWZubcv8LZA2arqIVpQ=="
},
"@walmart/feedback-all-spark-miniapp": {
- "version": "0.0.49",
- "resolved": "https://npme.walmart.com/@walmart/feedback-all-spark-min... | Update package-lock.json | Update package-lock.json |
574d2ed88807e659ca31b67fe19fbcb08afef032 | --- package-lock.json
@@ -66,7 +66,7 @@
"@walmart/metrics-mini-app": "0.15.14",
"@walmart/mod-flex-mini-app": "1.11.6",
"@walmart/moment-walmart": "1.0.4",
- "@walmart/money-auth-shared-components": "0.0.5",
+ "@walmart/money-auth-shared-components": "0.0.6",
"@walmart/... | bump version | bump version
|
2d90f5509f7932f6295ab7d5028f3c37aa39c54f | --- 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.23.0](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-foundatio... | chore(version): updating package version | chore(version): updating package version
- @walmart/allspark-foundation-hub@1.23.0
- @walmart/me-at-walmart-athena-queries@6.37.0
- @walmart/my-walmart-hub@1.4.0
|
f1e274389a934a77fe8c740f48475ba1b60b5878 | --- targets/US/android/app/src/main/java/com/walmart/stores/allspark/beta/MainActivity.kt
@@ -18,7 +18,6 @@ import org.devio.rn.splashscreen.SplashScreen
// @customization - Expo modules
import expo.modules.ReactActivityDelegateWrapper
-import com.walmart.stores.allspark.beta.BuildConfig
class MainActivity: Reac... | fix: build config imported twice in main activity | fix: build config imported twice in main activity
|
99932bd9f0da3e20740628215af7bdde728022b0 | --- packages/core-services-allspark/src/graphql/provider.tsx
@@ -27,12 +27,11 @@ export const AllsparkGraphqlProvider = (props: PropsWithChildren<{}>) => {
const logger = useLoggerClone<IAllsparkLogger>({}, { id: 'graphql' });
// const localStorage = useLocalStorage<IAllsparkLocalStorage>();
const athenaConfig... | fix: add check for prod evn before using shadow gateway | fix: add check for prod evn before using shadow gateway
|
67b5b317465c8121b87ba775dff2da2df47474b4 | --- src/screens/ViewTeamScreen.tsx
@@ -27,9 +27,7 @@ export type ViewTeamScreenProps = {
export const ViewTeamScreen: React.FC<ViewTeamScreenProps> = (props) => {
const {route, navigation} = props;
- const {teamRoster, teamData} = route.params;
- const clockedInCount = teamData?.getTeamById?.mewClockedInCount;
... | Updating view team screen clockedInCount and absentCount values | Updating view team screen clockedInCount and absentCount values
|
cff76980142a5071e7f3321e6b66fbcf6fe15fa9 | --- packages/me-at-walmart-container/src/redux/config.ts
@@ -188,7 +188,7 @@ export function* initAppConfig() {
// On user update, if any of the following fields change, we need to re-fetch app config
export function* onUserUpdate(action: IUserActions['UPDATE']) {
if (action.payload.userId || action.payload.workin... | chore: update sagas to use call effect | chore: update sagas to use call effect
|
712276ac43a966037c49fcf31bc563288694439c | --- package-lock.json
@@ -55,7 +55,7 @@
"@walmart/inbox-mini-app": "0.62.0",
"@walmart/iteminfo-mini-app": "6.0.1",
"@walmart/manager-approvals-miniapp": "0.1.1",
- "@walmart/me-field-mini-app": "1.1.31",
+ "@walmart/me-field-mini-app": "1.1.32",
"@walmart/metrics-mini-... | feat: :package: Bump learning mini app version to 1.1.32 | feat: :package: Bump learning mini app version to 1.1.32
|
4d5e80225a75ea8e3010c26c929fdc38dcf01fd9 | --- src/core/appConfigInit.ts
@@ -101,7 +101,7 @@ export function* getAppConfigScope(): any {
model,
siteId: `${siteId}`,
deviceType,
- teamIds: `[${teamIds.join(',')}]`,
+ teamIds: `${teamIds.join(',')}`,
},
} as AppConfigFetchParams;
}
--- src/navConfig/NavConfigSagas.ts
@@ -... | teams id | teams id
(cherry picked from commit 0f7e70d6ac654466399a23802ae69238003f65db)
|
044e74ac4e84fa554711bf9d99cb46a80c9dfca3 | --- src/startup/AuthFlow.ts
@@ -37,16 +37,12 @@ export const isSilentSignInError = (error?: Error | AuthError) => {
return false;
}
- // If AuthError, stringify object to do easy string comparison on whole object
- if ("code" in error) {
- return SILENT_SSO_ERRORS.some((silentError) =>
- JSON.string... | fix: sign in error evalutation logic was breaking auth flow | fix: sign in error evalutation logic was breaking auth flow
|
f492f325b9e8b2cb1a18b4dfd26153c4270e3375 | --- packages/allspark-http-client/src/retryInterceptor.ts
@@ -3,13 +3,13 @@ import { RETRY_COUNT, RETRY_DELAY, RETRY_ERROR_CODES } from './constants';
import { isForceRetryRequired, isRetryRequired } from './utils';
import {
IHttpClient,
- HttpClientRequestConfig,
+ InternalHttpClientRequestConfig,
Intercepto... | chore: ts fix | chore: ts fix
|
fecbf02334aa0c2ee4fa38db8c852c0d6ed5f4a3 | --- __tests__/components/FilterChipGroup.test.tsx
@@ -110,20 +110,37 @@ describe('FilterChipGroup', () => {
});
it('deselects active filter chip when active filter chip is pressed again', () => {
- // The issue is here - we're creating a special mock function but checking the wrong mock in the tests
con... | fix(bug): fix tests | fix(bug): fix tests
|
aedd664c9a89528003255d34f154d12220121444 | --- package.json
@@ -81,7 +81,7 @@
"@terrylinla/react-native-sketch-canvas": "patch:@terrylinla/react-native-sketch-canvas@npm%3A0.8.0#~/.yarn/patches/@terrylinla-react-native-sketch-canvas-npm-0.8.0-c7b2afd4cd.patch",
"@walmart/allspark-authentication": "6.4.10",
"@walmart/allspark-cope-key-listener": "... | chore(bump): bumped foundation and clock plugin | chore(bump): bumped foundation and clock plugin
|
cd67f18e2ad0d530ccb0a25c83ac9e1e4686bf8d | --- package.json
@@ -132,8 +132,8 @@
"@walmart/native-rfid-scanner": "4.1.4",
"@walmart/onewalmart-miniapp": "1.0.27",
"@walmart/online-w4-mini-app": "0.8.1",
- "@walmart/pay-stub-miniapp": "0.24.11",
- "@walmart/payrollsolution_miniapp": "0.151.9",
+ "@walmart/pay-stub-miniapp": "0.24.15",
+ ... | feat(payroll): PAYROLL-30426 (#4707) | feat(payroll): PAYROLL-30426 (#4707)
* bump version
* feat: bump version |
a930308d2657fbe9ba23b60700907c32d1b6805d | --- __tests__/hooks/user.test.ts
@@ -116,7 +116,7 @@ describe('useIsImpersonatedOnDev', () => {
});
describe('useTextingFeatureEnabled', () => {
- it.skip('should return true for the default mocked user', () => {
+ it('should return true for the default mocked user', () => {
(UserSelectors.getWorkingSite as ... | chore(release): version 3.7.0-alpha.0 | chore(release): version 3.7.0-alpha.0
|
04ac8b0fdeb7a54b8fbd009c2b1b966f84f4e1c8 | --- example/ios/Podfile.lock
@@ -1290,7 +1290,7 @@ PODS:
- RNFBApp (17.4.3):
- Firebase/CoreOnly (= 10.7.0)
- React-Core
- - RNGestureHandler (2.17.1):
+ - RNGestureHandler (2.16.2):
- glog
- RCT-Folly (= 2022.05.16.00)
- React-Core
@@ -1682,7 +1682,7 @@ SPEC CHECKSUMS:
RNDeviceInfo: 42... | feat: revert podlock | feat: revert podlock
|
866fabd70602cd8a6a50c341645c357706ce10cb | --- package-lock.json
@@ -96,7 +96,7 @@
"@walmart/react-native-webex-sdk": "0.1.5",
"@walmart/receipt-check-miniapp": "1.19.3",
"@walmart/redux-store": "6.0.7",
- "@walmart/returns-mini-app": "3.13.0",
+ "@walmart/returns-mini-app": "4.6.0",
"@walmart/roster-mini-app": ... | added zustand and stomp in ovverrides for allspark-core | added zustand and stomp in ovverrides for allspark-core
|
5ea2a95169c965590f5f1f97721d26d8b6a9a5ce | --- 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.3",
+ "@walmart/wmconnect-mini-app": "2.5.4",
"babel-jest": "^29.2.1",
"chance": "^1.1.11",
"esli... | chore(ui): bumped wmconnect version | chore(ui): bumped wmconnect version
|
08d572a8410998f19f2b74e6fc98507a0fc59489 | --- src/components/MyWalmartv2/Widgets/Hourly/HourlyRosterWidget.tsx
@@ -546,12 +546,12 @@ export const HourlyRosterWidget = ({
// Trigger data refetch
refetch();
- // Show skeleton for minimum time for better UX
- setTimeout(() => setIsRefreshLoading(false), 1000);
+ // OPTIMIZED: Reduce... | feat(ui): update roster mini app for performance | feat(ui): update roster mini app for performance
|
02bb5c3b5d28ed3d1121e71487e0f6d136fb93f5 | --- packages/allspark-foundation/__tests__/GraphQL/utils/generateSortedQuery.test.ts
@@ -1,6 +1,6 @@
import { parse } from 'graphql';
import { generateSortedQuery } from '../../../src/GraphQL/utils/generateSortedQuery';
-import { sortDocumentNode } from '../../../src/GraphQL/utils//sortDocumentNode';
+import { sortDo... | code cleanup | code cleanup
|
eb379053aece901e22153c5f8f5a4dc713769a2f | --- packages/celebration-mini-app-graphql/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.
+## [1.9.2](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celeb... | chore(version): updating package version | chore(version): updating package version
- @walmart/celebration-mini-app@1.16.0
- @walmart/celebration-mini-app-graphql@1.9.2
|
39a5385425d6eac0d3e2d8424677bface211a8b2 | --- src/images/assets/index.ts
@@ -24,6 +24,7 @@ const Images: {[key: string]: ImageURISource} = {
NotificationsIllustration: require('./notifications-illustration.png'),
OneIllustration: require('./one-illustration.png'),
PinIllustration: require('./pin-illustration.png'),
+ PriceChangeIllustration: require(... | update image for whats new | update image for whats new
|
349c9dbc2d3daf22b467a499a581f165868d845b | --- .yarn/patches/@walmart-allspark-foundation-npm-6.22.0-dfc90837c7.patch
@@ -1,53 +0,0 @@
-diff --git a/Site/types.d.ts b/Site/types.d.ts
-index 38f943aa44fb144370902cdf62f6d521112c6b5b..09b7bdf312f808b545378dac5a092982fdeec6af 100644
---- a/Site/types.d.ts
-+++ b/Site/types.d.ts
-@@ -35,26 +35,26 @@ export type Loca... | removing patch | removing patch
|
2f0448d032d5dd14c40aa392bac08879583b9dad | --- targets/US/package.json
@@ -99,7 +99,7 @@
"@walmart/core-utils": "6.3.9",
"@walmart/core-widget-registry": "workspace:^",
"@walmart/counts-component-miniapp": "0.1.14",
- "@walmart/digital-locks-mini-app": "1.1.9",
+ "@walmart/digital-locks-mini-app": "1.1.9-rc.2",
"@walmart/emergency-mini... | bump to 1.1.9-rc.2 | bump to 1.1.9-rc.2
|
890f159a852e0da8eb87bbb28624848409dcb645 | --- package.json
@@ -119,7 +119,7 @@
"@walmart/me-at-walmart-common": "workspace:^",
"@walmart/me-at-walmart-container": "workspace:^",
"@walmart/metrics-mini-app": "1.29.6",
- "@walmart/mod-flex-mini-app": "1.25.4",
+ "@walmart/mod-flex-mini-app": "1.26.3",
"@walmart/moment-walmart": "1.0.4",... | feat(modflex): OPIF-217716 View all tags on rail and disable printing image mod (#4185) | feat(modflex): OPIF-217716 View all tags on rail and disable printing image mod (#4185)
Co-authored-by: Savankumar Akbari - sakbari <sakbari@m-c02rv0v4g8wl.homeoffice.wal-mart.com> |
a23c36f3d29e813fadbe1e8fe16596cd5a76069b | --- .yarn/patches/@walmart-react-native-webex-sdk-npm-0.8.51-3638e0f32a.patch
@@ -0,0 +1,15 @@
+diff --git a/android_dynamic_modules/webex_dynamic_module/build.gradle b/android_dynamic_modules/webex_dynamic_module/build.gradle
+index 6969093fecbf1a70f4f94fcf32dddf156ddbcebe..ead8ac4da9795e3c59ec8c212dd7c2f5311b47ea 100... | feat(fix): ALLSPARK-0000 fix android bundle issue (#4581) | feat(fix): ALLSPARK-0000 fix android bundle issue (#4581)
Co-authored-by: Maksym Novakh <maksym.novakh@walmart.com> |
14ae002cd5470a949000e3f247b05eb2d1b322da | --- packages/allspark-foundation/src/HubFeature/Hooks/useGetAllTeamsOfStore.ts
@@ -0,0 +1,53 @@
+import { useSelector } from 'react-redux';
+import { useGetTeamsByStoreQuery } from '@walmart/me-at-walmart-athena-queries';
+import { useState } from 'react';
+import { teamImageIcon } from '../Hub/Container/mockData';
+im... | feat(ui): teamswitcher default state on change store | feat(ui): teamswitcher default state on change store
|
53383bfd1c22ad6986f84f195d70c5d62e83a33f | --- core/src/navigation/USHallway/AssociateHallwayNav/SideMenuContent.tsx
@@ -120,7 +120,6 @@ export const SideMenuContent: React.FC<DrawerContentComponentProps> = (
return;
}
}
- console.log('$$$$$$ Route Name ', route, params);
setImmediate(() =>
// Look to rename mapping for new r... | removed console log | removed console log
|
726d948cc6a3566af12b1419aa56a844719385a4 | --- src/index.tsx
@@ -21,7 +21,7 @@ import {PresenceProvider} from './presence/provider';
import {ChannelsProvider} from './channels/provider';
import {RNFBConfigAndroid, RNFBConfigiOS} from './constants';
import {initNotificationListeners} from './notification';
-import {MeganavScreen} from "./screens/MeganavScreen... | fixing lint errors | fixing lint errors
|
77df289503af319e0228cf4aafa1048b88c39936 | --- ios/Podfile.lock
@@ -16,7 +16,7 @@ PODS:
- BVLinearGradient (2.6.2):
- React-Core
- CocoaAsyncSocket (7.6.5)
- - compass-sdk-rn (4.0.0):
+ - compass-sdk-rn (4.2.0):
- React-Core
- DoubleConversion (1.1.6)
- FBLazyVector (0.70.9)
@@ -1164,7 +1164,7 @@ SPEC CHECKSUMS:
boost: a7c83b314368434... | Updating the podfile.lock | Updating the podfile.lock
|
090ab9acb0f8aad61f5b0b7e9c775cb9445d8f3f | --- package-lock.json
@@ -80,7 +80,7 @@
"@walmart/schedule-mini-app": "0.37.0",
"@walmart/settings-mini-app": "1.18.1",
"@walmart/shelfavailability-mini-app": "1.5.16",
- "@walmart/taskit-mini-app": "2.40.1",
+ "@walmart/taskit-mini-app": "2.40.2",
"@walmart/time-clock-... | Updated taskit version | Updated taskit version
|
8c34a20e4c301a53fdbca559742d46d8605d9912 | --- package.json
@@ -53,6 +53,8 @@
"eslint-plugin-jest": "27.6.0",
"eslint-plugin-prettier": "5.1.3",
"eslint-plugin-react-native": "4.1.0",
+ "expo": "~52.0.46",
+ "expo-image": "~2.3.2",
"graphql": "^16.8.1",
"graphql-tag": "*",
"husky": "^9.0.11",
--- packages/allspark-foundatio... | chore(refactor): allspark-6216 addressed review comments by including provision for full urls | chore(refactor): allspark-6216 addressed review comments by including provision for full urls
|
a14abbbacc181199ecdbea05f2a56141c86a09a5 | --- android/app/build.gradle
@@ -140,7 +140,7 @@ android {
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 361
- versionName "1.3.0"
+ versionName "1.0.102"
}
splits {
abi {
--- ios/AllSpark/Info.plis... | Updating the version to 1.0.102. | Updating the version to 1.0.102.
|
0cd149bf74bdc9ea668147d5dbc8bb87de97fb0f | --- packages/allspark-foundation-hub/CHANGELOG.md
@@ -3,6 +3,20 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+# [1.10.0](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-foundatio... | chore(version): updating package version | chore(version): updating package version
- @walmart/allspark-foundation-hub@1.10.0
|
a307e8cb6d29555ab844078ea46482fee060ae5a | --- package-lock.json
@@ -5340,9 +5340,9 @@
"integrity": "sha512-/2CjaIpac1s3kOUHVYvfzDOXW0AJp96tuKT1TNj3GDYX68HUOztjrYsOlZz1/WEG55iNMAJrfENcnTNguf5s9w=="
},
"@walmart/push-to-talk-mini-app": {
- "version": "1.8.1",
- "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push... | updating package version | updating package version
|
359a136e1bc0d2acd1860f7e9d2f86bb6a37cc59 | --- package-lock.json
@@ -4333,9 +4333,9 @@
}
},
"@walmart/payrollsolution_miniapp": {
- "version": "0.89.0",
- "resolved": "https://npme.walmart.com/@walmart/payrollsolution_miniapp/-/payrollsolution_miniapp-0.89.0.tgz",
- "integrity": "sha512-tQB6kj6sk3hfzaEeOmM5FYhl0WTtDNkL8cF+5lHAez8... | chore(WelcomeMe): WelcomeMeMiniApp v0.43.0 | PayrollMiniApp v0.90.0 | chore(WelcomeMe): WelcomeMeMiniApp v0.43.0 | PayrollMiniApp v0.90.0
|
9edd0a429c285ad986cb529678cde18f023bb619 | --- packages/me-at-walmart-container/src/graphql/policies.ts
@@ -106,6 +106,7 @@ export const TypePolicies: StrictTypedTypePolicies = {
keyFields: ['teamId', 'site'],
merge: true,
},
+ // @ts-ignore TODO: Regenerate apollo-helpers to fix this
TeamAssociateMembership: {
merge: true,
},
| chore: ignore type policy type error | chore: ignore type policy type error
|
c4dd42aeb5801b10da0919cec712aeddce937f50 | --- package-lock.json
@@ -61,7 +61,7 @@
"@walmart/ims-print-services-ui": "2.7.3",
"@walmart/inbox-mini-app": "0.89.2",
"@walmart/iteminfo-mini-app": "7.7.4",
- "@walmart/learning-mini-app": "17.0.4",
+ "@walmart/learning-mini-app": "18.0.2",
"@walmart/manager-approvals... | feat: :sparkles: Bump learning mini app version to 18.0.2 | feat: :sparkles: Bump learning mini app version to 18.0.2
|
e6aedf66e173067fe44d394642febc8ce00aa89c | --- package-lock.json
@@ -3315,9 +3315,9 @@
"integrity": "sha512-B31BaP6kN0RtiKzp7xK9qvo7XwPiqC0z/8J1se0K3pIqHeNx2mvbSRDGLoCzh+szhWGkPlyTDRAbJrZI+B8IRA=="
},
"@walmart/feedback-all-spark-miniapp": {
- "version": "0.0.55",
- "resolved": "https://npme.walmart.com/@walmart/feedback-all-spark-min... | Bumping feedback mini app version | Bumping feedback mini app version
|
e663351075f872e5e3089c3e58f7f44e3f6acc54 | --- __tests__/components/RosterFiltersAndInfo.test.tsx
@@ -23,7 +23,6 @@ jest.mock('@walmart/allspark-foundation/Navigation', () => ({
// Mock the Link component from @walmart/gtp-shared-components
jest.mock('@walmart/gtp-shared-components', () => ({
Link: ({onPress, testID, children}) => {
- const React = requ... | fix(bug): fix linting warnings | fix(bug): fix linting warnings
|
f8f53282843782c4e32663b293c9b14b52a257a2 | --- src/whatsNew/WhatsNewScreen.tsx
@@ -27,7 +27,6 @@ import {BackgroundImage, WhatsNewScreenStyles as styles} from './styles';
import {renderWhatsNewItem, renderWhatsNewSection} from './utils';
import {GlobalState, SiteSelectors} from '@walmart/redux-store';
import {createSelector} from 'reselect';
-
const keyExtr... | test update | test update
|
62e4b3ec4dc6931d65ecd93e9d4ba85d167c2a8a | --- android/app/build.gradle
@@ -328,8 +328,8 @@ dependencies {
implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.0.0"
// implementation 'com.google.firebase:firebase-messaging:21.0.1'
- implementation "com.google.dagger:hilt-android:2.38.1"
- kapt "com.google.dagger:hilt-compiler:2.38.... | Update sumo to 2.5.0 for drop 8.3 | Update sumo to 2.5.0 for drop 8.3
|
3d62b6e6b3fdcfa06aa17d7beec529e28a334fb2 | --- .looper-pr.yml
@@ -36,4 +36,4 @@ envs:
AUTHOR: temp
SLACK_CHANNEL: "smdv-miniapp"
-
+
\ No newline at end of file
| fix: SMDV-9999 update looper | fix: SMDV-9999 update looper
|
1fc2213a1f5221f2a6982cd8b907d693b48fce0b | --- package-lock.json
@@ -5314,9 +5314,9 @@
"integrity": "sha512-kgl3PpMJiM1hqhpEfLMIEHBdq+e6mKLPZNT3fmJIgO3RZYV3xcCrO2gIacJL3j+nr8DuDdw/FzeCGzKdKurniw=="
},
"@walmart/inbox-mini-app": {
- "version": "0.60.0",
- "resolved": "https://npme.walmart.com/@walmart/inbox-mini-app/-/inbox-mini-app-0.... | update version for badge issue | update version for badge issue
|
f55de5c803cffe963b4d52684499bdc5d4476d61 | --- package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@walmart/roster-mini-app",
- "version": "1.0.8",
+ "version": "1.0.9",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@walmart/roster-mini-app",
- "version": "1.0.8",
+ "version": "1.0.9",
"hasInstallScr... | Update version | Update version
|
669838068a779364dca8ebda27caa214a87c6786 | --- __tests__/navigation/AssociateHallwayNav/__snapshots__/MainStackNavTest.tsx.snap
@@ -112,9 +112,6 @@ Array [
<Screen
name="paystub"
/>
- <Screen
- name="myMoneyScreen"
- />
<Screen />
</Group>
<Screen
--- package.json
@@ -89,7 +89,7 @@
"@walmart/except... | financial-wellbeing-feature-app v1.0.25 and appversion updated | financial-wellbeing-feature-app v1.0.25 and appversion updated
|
3df118ead33022e4f9d50b39d20dee4397bc49e3 | --- android/app/build.gradle
@@ -158,8 +158,8 @@ android {
applicationId "com.walmart.stores.allspark.beta"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 903
- versionName "1.8.17"
+ versionCode 904
+ ve... | updating metrics with patch for drop 8.3 SMBLV - 3019 | updating metrics with patch for drop 8.3 SMBLV - 3019
|
ca874547873193dbb007c840ac991c5ff1682d52 | --- src/components/TeamList.tsx
@@ -90,6 +90,8 @@ const styles = StyleSheet.create({
fontFamily: 'Bogle-Regular',
fontSize: 12,
color: colors.gray['140'],
+ marginVertical: 0,
+ paddingVertical: 0,
},
workgroupHeader: {
fontFamily: 'Bogle-Regular',
@@ -410,8 +412,12 @@ export const TeamC... | more view layer tweaks | more view layer tweaks
|
1a40be855042d49e6e17451ba1d0f57661d573d5 | --- package-lock.json
@@ -5254,9 +5254,9 @@
"integrity": "sha512-Cy+ATP7WlTkMvysFS1kk9T6YcxPh//OxCfL215wnP/4XI7EarFSbahTwlm7hw/3cuGPCMSsRmdiwZPyhDWUbVw=="
},
"@walmart/facilities-management-miniapp": {
- "version": "0.3.22",
- "resolved": "https://npme.walmart.com/@walmart/facilities-manageme... | Bumping the version | Bumping the version
|
7065f6c9139b620bdf15e9c0bb51cacd39de4133 | --- .looper-native-common-saucelabs.yml
@@ -105,6 +105,6 @@ flows:
- try:
- echo "uploading artifact to saucelabs"
- curl --retry 3 -F payload=@${buildOutput} -F name=${artifact_name} -u ${saucelabs.user}:${saucelabs.pass} ${saucelabs.endpoint} --output output.txt
- - python3 saucelabs/call-ele... | ios automation changes (#276) | ios automation changes (#276)
Co-authored-by: Savankumar Akbari - sakbari <sakbari@m-c02rv0v4g8wl.homeoffice.wal-mart.com> |
bbf733d50be3229ba8751cea35c917f9a7e27acc | --- src/components/ClockedOutScreenGuard.tsx
@@ -35,7 +35,6 @@ export const ClockedOutScreen = () => {
const userIsInRoster = useUserIsInRoster();
const shouldShowViewTimeLink =
shouldShowViewTimeClock && isHourly && userIsInRoster;
- analytics('roster', {message: 'clocked out roster access'}, 10);
retur... | adding filter event | adding filter event
|
edc3aadf3fa3a895f47aa537e660a6cacbeaffe5 | --- package.json
@@ -155,7 +155,7 @@
"@walmart/time-clock-mini-app-next": "2.812.1",
"@walmart/topstock-mini-app": "1.22.3",
"@walmart/translator-mini-app": "1.4.2",
- "@walmart/ui-components": "patch:@walmart/ui-components@npm%3A1.23.1%3A%3A__archiveUrl=https%253A%252F%252Fnpm.ci.artifacts.walmart.co... | chore(update package): ALLSPARK-6091 remove archiveURL | chore(update package): ALLSPARK-6091 remove archiveURL
|
d2de0773419c403825a263656874b0616df59df5 | --- package.json
@@ -1,6 +1,6 @@
{
"name": "@walmart/myteam-mini-app",
- "version": "1.15.14",
+ "version": "1.15.15",
"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",
"@walmart/red... | Update the version for roster | Update the version for roster
|
04e9397816c210ea25eadf151195a11689166328 | --- package-lock.json
@@ -34,7 +34,7 @@
"@terrylinla/react-native-sketch-canvas": "0.8.0",
"@walmart/allspark-graphql-client": "^1.4.5",
"@walmart/allspark-neon-core": "0.1.31",
- "@walmart/amp-mini-app": "1.1.45",
+ "@walmart/amp-mini-app": "1.1.46",
"@walmart/ask-sam-... | AMP version update | AMP version update
|
507e5103267a03c4a1631e2a65e9bea4cd7dc2bc | --- package.json
@@ -101,7 +101,7 @@
"@walmart/react-native-sumo-sdk": "2.2.2-beta.2",
"@walmart/redux-store": "2.0.4",
"@walmart/refrigeration-alarms-mini-app": "1.35.0",
- "@walmart/schedule-mini-app": "0.17.0",
+ "@walmart/schedule-mini-app": "0.18.0",
"@walmart/settings-mini-app": "1.6.0",... | Bump schedule-mini-app version to 0.18 | Bump schedule-mini-app version to 0.18
|
97112fd2a51eab2104743eccbc9be089ad9ed427 | --- package-lock.json
@@ -4483,9 +4483,9 @@
}
},
"@walmart/taskit-mini-app": {
- "version": "0.18.0",
- "resolved": "https://npme.walmart.com/@walmart/taskit-mini-app/-/taskit-mini-app-0.18.0.tgz",
- "integrity": "sha512-DuO5koDaR5A8UHY070Dd/ldZYEHFiTPOq57Sg5izPv/ytRWaF8EdPkJtaEcOCgriQkH... | Updating tastIt version | Updating tastIt version
|
64ef7ff25896faa33544e98780d04bbba207f5fe | --- src/PinAccess/PinAccess.tsx
@@ -1,6 +1,6 @@
import React, {useState, FC, useEffect} from 'react';
import {useDispatch, useSelector} from 'react-redux';
-import {View, Modal} from 'react-native';
+import {View} from 'react-native';
import {StackScreenProps} from '@react-navigation/stack';
import {useTranslation}... | Removing modal from pin access screen | Removing modal from pin access screen
|
f7c8ee4ef4754cbbaf32170e78dba0e9d84a51a6 | --- src/components/MessageList.tsx
@@ -61,6 +61,7 @@ export const MessageList = ({
return (
<FlatList
+ inverted={true}
ref={flatListRef}
data={messages}
renderItem={renderItem}
| feat(ui): update messages screen inversion | feat(ui): update messages screen inversion
|
89c004cb2c78db55621f6ae111eb64e2f134ff86 | --- package-lock.json
@@ -3600,9 +3600,9 @@
}
},
"@walmart/time-clock-mini-app": {
- "version": "0.4.23",
- "resolved": "https://npme.walmart.com/@walmart/time-clock-mini-app/-/time-clock-mini-app-0.4.23.tgz",
- "integrity": "sha512-zgNoI93X7Tz4Ct6bCIdTyIVRFKvZKiQBBDXlKk7VJqLkhrSZAxGuAHf... | GTA-99150: Add WiFi locator to punch | GTA-99150: Add WiFi locator to punch |
8297e767ead2f54ae8b805abe44cce3c0ef63f76 | --- src/managerExperience/components/RosterDetailPageHeader/RosterDetailPageHeader.tsx
@@ -5,6 +5,8 @@ import {Heading, Link} from '@walmart/gtp-shared-components';
import {getRosterDetailPageHeaderStyles} from './style';
import {useAllsparkImage} from '@walmart/allspark-foundation/Components/context';
import {Image... | feat: extract label link as prop of component - [SMDV-6508] | feat: extract label link as prop of component - [SMDV-6508]
|
9c11aea60e81f8220ab79450794978230dce5edf | --- __tests__/redux/selectors.test.ts
@@ -201,7 +201,7 @@ describe('Selectors', () => {
const searchText = selectors.getSearchText(
setNestedValue(
mockState,
- 'texting.searchText',
+ 'roster.searchText',
'testText',
) as SharedReduxState,
);
| Update roster tests | Update roster tests
|
459a1319fc7bf5796b23cbc3f90525f0df9f0e83 | --- packages/allspark-foundation/allspark.config.js
@@ -2,6 +2,7 @@ module.exports = {
link: {
react: {
dependencies: {
+ '@react-native-community/netinfo': {},
// @todo - Required by Scanner, can we remove?
'@react-native-firebase/analytics': {},
'@react-native-firebase... | fix: move netinfo to foundation package and allspark config | fix: move netinfo to foundation package and allspark config
|
7b868144054533b953c4fb8fc99d7e1ac10dc396 | --- src/components/TeamList.tsx
@@ -29,7 +29,6 @@ import {
useUserIsInRoster,
useSiteTranslationContext,
useGetViewersPrimaryTeamId,
- useTotalSiteOrTotalStore,
useGetTeamById,
} from '../hooks';
import {NavigationProp, useNavigation} from '@react-navigation/native';
--- src/hooks/useFilterCounts.ts
@@... | fixing lint | fixing lint
|
251bd9e4de453b704b3bd3155daabbe9bd7319e0 | --- .github/pull_request_template.md
@@ -0,0 +1,12 @@
+## Links to JIRA tickets:
+
+## Acceptance Criteria
+
+## Screenshots (if any):
+
+# Checklist
+- [ ] Have you written unit tests for this? If so, add the screenshots for the test coverage
+- [ ] Has this been tested in the core app?
+- [ ] Telemetry Covered? If so... | Update version | Update version
|
d8741cc90bd169ecfb0e0e3f2a27a6e93ba66b2d | --- packages/allspark-foundation/__tests__/Network/sagas.test.ts
@@ -0,0 +1,26 @@
+import { select, take } from 'redux-saga/effects';
+import { waitForNetworkFetch } from '../../src/Network/sagas';
+import { NetworkSelectors } from '../../src/Network/selectors';
+import { NetworkActionTypes } from '../../src/Network/re... | network sagas test | network sagas test
|
a0fe8cf156618ff503f89ae8edf5a775a4499ca8 | --- targets/US/package.json
@@ -113,7 +113,7 @@
"@walmart/ims-print-services-ui": "2.16.4",
"@walmart/inbox-mini-app": "0.97.13",
"@walmart/invue-react-native-sdk": "0.1.26-beta.3-w2",
- "@walmart/iteminfo-mini-app": "8.1.1",
+ "@walmart/iteminfo-mini-app": "8.1.2",
"@walmart/learning-mini-app... | Fixed the compensable feature | Fixed the compensable feature
|
f136ea1f7ad67aa85582880b2c19ff3b2a081769 | --- packages/allspark-foundation-hub/src/HubFeature/SupplyChain/Components/ShiftFilter/ShiftFilterList.tsx
@@ -30,7 +30,7 @@ export const ShiftFilterList: React.FC<ShiftFilterListProps> = ({
: t('shiftFilter.title')
}
subText={
- !isMandatoryShiftError && !filterListData
+ ... | Updating mandatory alert logic | Updating mandatory alert logic
|
ab46064cb8af49f373c61cf324b680f4fa1dd786 | --- packages/components-library/components/GoalListItem/GoalListItem.tsx
@@ -208,8 +208,8 @@ const styles = StyleSheet.create({
},
icon: {
marginRight: -8,
- marginLeft: 4
- }
+ marginLeft: 4,
+ },
});
GoalListItem.displayName = 'GoalListItem';
| fix(ci): lint fix | fix(ci): lint fix
|
1896b3382e09df56dc03762c9b38f29fa5258509 | --- package-lock.json
@@ -1937,9 +1937,9 @@
"integrity": "sha512-jrHd8momPaFtq2uMCEuqbJTTsRBjwyRplTcNEWjS6gvrc+WVFI5vVD1zcsSNpLevc4UFRdUYkvw0AYvF9yhdPw=="
},
"@walmart/feedback-all-spark-miniapp": {
- "version": "0.0.28",
- "resolved": "https://npme.walmart.com/@walmart/feedback-all-spark-min... | Bumping mini app version (#169) | Bumping mini app version (#169)
Co-authored-by: Anthony Helms - awhelms <awhelms@wal-mart.com> |
75c402b79574ed2f86274455613389984ac44f52 | --- __tests__/changeStore/ChangeStoreModalTest.tsx
@@ -2,7 +2,7 @@ import React, {useState} from 'react';
import {Platform} from 'react-native';
import {useSelector} from 'react-redux';
import {create} from 'react-test-renderer';
-import {Animated, InteractionManager, Keyboard} from 'react-native';
+import {Animated... | Replacing interaction manager delay with timeout for consistency | Replacing interaction manager delay with timeout for consistency
|
932b3a2778d5b89ea50acd86b174351feec09885 | --- package.json
@@ -108,7 +108,7 @@
"@walmart/functional-components": "~6.3.28",
"@walmart/global-vpi-mini-app": "1.1.20",
"@walmart/gta-react-native-calendars": "0.7.0",
- "@walmart/gtp-shared-components": "2.2.7-rc.2",
+ "@walmart/gtp-shared-components": "2.2.7",
"@walmart/ims-print-service... | chore(gtp-version): Updated GTP version (#4359) | chore(gtp-version): Updated GTP version (#4359)
Co-authored-by: Hariharan Sundaram <hariharan.sundaram0@walmart.com> |
3eff7998f640dac1191e87b9c35797b0883ee2ab | --- package.json
@@ -94,7 +94,7 @@
"@walmart/core-utils": "6.1.4",
"@walmart/functional-components": "6.1.4",
"@walmart/gtp-shared-components": "2.2.4",
- "@walmart/me-at-walmart-athena-queries": "6.30.3",
+ "@walmart/me-at-walmart-athena-queries": "6.30.4",
"@walmart/me-at-walmart-common": "6... | Update roster mini app version | Update roster mini app version
|
d9a3f9db64d8efc62e3909d2cf1b818ac20df7d9 | --- 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
|
4be78f2a4c9a075dc271a7a83c8bf76b0223574e | --- package.json
@@ -104,7 +104,7 @@
"@walmart/iteminfo-mini-app": "7.4.0",
"@walmart/manager-approvals-miniapp": "0.2.4",
"@walmart/me-field-mini-app": "13.0.3",
- "@walmart/metrics-mini-app": "0.15.1",
+ "@walmart/metrics-mini-app": "0.15.0",
"@walmart/mod-flex-mini-app": "1.10.4",
"@wa... | metrics version change | metrics version change
|
d1beb6172ece48b345d7a8083bac8f8ce6a009ce | --- src/constants.ts
@@ -4,6 +4,7 @@ export const RNFBConfigiOS = '75AC25EB-432A-47D1-855A-84728D2AB60C';
export const ROOT_CONTAINER_SCREEN_NAME = 'myTeam';
export const APP_CONTAINER_SCREEN_NAME = 'myTeam.root';
export const MESSAGES_SCREEN_NAME = 'myTeam.messages';
+export const NEW_MESSAGES_SCREEN_NAME = 'myTeam... | update nested navigation | update nested navigation
|
df6016d1489943601b4e3aa751be05c42c606d05 | --- __tests__/core/appConfigInitTest.ts
@@ -10,7 +10,7 @@ import type {AppConfigFetchParams} from '@walmart/config-components';
import DeviceInfo from 'react-native-device-info';
import env from '../../env';
-import {createRestartableSagas} from '../../src/redux';
+import {createRestartableSagas, getOriginalSite} f... | use working site for dc domain (#424) | use working site for dc domain (#424)
* use working site for dc domain
* site config check for DC and disable ipad support
* Added back iPad support.
* Adding iPad support (#429)
Co-authored-by: Hitesh Arora <>
Co-authored-by: Andrew Fulton - a0f00ev <Andrew.Fulton@walmart.com>
Co-authored-by: Hitesh A... |
b130615d0547f623b3fc029ee054ac5b13b7d79e | --- packages/allspark-foundation-hub/src/HubFeature/SupplyChain/Hub/SiteHubDashboard.tsx
@@ -85,6 +85,7 @@ export const SiteHubDashboard = ({ name, widgets }: HubDashboardProps) => {
const showHubTeamSwitcher = useSelector(teamSwitcherEnabled); // TODO: Create separate selector for supply chain team switcher
co... | feat: added feature flag for bottom sheet team swticher and team item | feat: added feature flag for bottom sheet team swticher and team item
|
b0a9044808eb531751f77951a12fce3d5b8db8f5 | --- packages/allspark-foundation-hub/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.
+## [1.25.10](https://gecgithub01.walmart.com/allspark/allspark/compare/@walmart/allspark-foundat... | chore(version): updating package version | chore(version): updating package version
- @walmart/allspark-foundation@7.16.8
- @walmart/allspark-foundation-hub@1.25.10
- @walmart/my-walmart-hub@1.6.8
|
ea5a23aadc087a91f71ee851e3f77b5a525af928 | --- packages/celebration-mini-app-graphql/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.15.0](https://gecgithub01.walmart.com/smdv/celebration-mini-app/compare/@walmart/celeb... | chore(version): updating package version | chore(version): updating package version
- @walmart/celebration-mini-app@1.24.0
- @walmart/celebration-mini-app-graphql@1.15.0
|
b983d4eb32090f54648d6272396b290560ac424b | --- android/app/build.gradle
@@ -158,8 +158,8 @@ android {
applicationId "com.walmart.stores.allspark.beta"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
- versionCode 905
- versionName "1.8.19"
+ versionCode 906
+ ve... | Version bump to 1.8.20 and sumo sdk update. | Version bump to 1.8.20 and sumo sdk update.
|
9c1d7b0caf7eba5c9b5289266ee2debcd51c53fd | --- package.json
@@ -109,7 +109,7 @@
"@walmart/global-vpi-mini-app": "1.1.14",
"@walmart/gta-react-native-calendars": "0.7.0",
"@walmart/gtp-shared-components": "2.2.7-rc.0",
- "@walmart/ims-print-services-ui": "2.18.1",
+ "@walmart/ims-print-services-ui": "2.19.0",
"@walmart/inbox-mini-app": ... | feat: SSLS-10490 Drop 30 Print UI (#4120) | feat: SSLS-10490 Drop 30 Print UI (#4120)
Co-authored-by: Savankumar Akbari - sakbari <sakbari@m-c02rv0v4g8wl.homeoffice.wal-mart.com> |
d86ef61b4d61546c143e0518d8de2330c797889c | --- .looper.multibranch.yml
@@ -140,8 +140,6 @@ envs:
beta:
variables:
env: "beta"
- slackIcon: ':alpha-check:'
- slackChannel: 'allspark-build-test'
dev:
variables:
env: "dev"
@@ -367,29 +365,21 @@ flows:
cocoapods-install:
- dir(ios):
- - var (podsInstalled):
- ... | Chore/looper multibranch (#534) | Chore/looper multibranch (#534)
* updating looper multibranch file
* removing builds-test slack channel and checking if pods exist logic
Co-authored-by: Hitesh Arora <> |
647daa693c2288fcaca723e37cd67e48bc581975 | --- package-lock.json
@@ -4253,9 +4253,9 @@
"integrity": "sha512-0M7ySb3F2lKlIfwBosm+Slx3kJvdoEHm5haaZ05WKCJ1hctu0F0CzTGDSbZciXWX92HJBmxvsvr8yi2H435R8g=="
},
"@walmart/ims-print-services-ui": {
- "version": "0.1.19",
- "resolved": "https://npme.walmart.com/@walmart/ims-print-services-ui/-/ims... | Item info drop 6.5 changes part 2 | Item info drop 6.5 changes part 2
|
dc0d9fe5c0a9de8e7e2831e208a342e729cfdeea | --- src/components/FilterChipGroup/FilterChipGroup.tsx
@@ -1,4 +1,4 @@
-import React, {useEffect, useState} from 'react';
+import React, {useState, useCallback, useMemo} from 'react';
import {FilterChipGroupProps, ShiftType} from './types';
import {filterChipGroupStyles as styles} from './styles';
import {FilterChip... | fix(bug): fix issue where chip was only updating after second click | fix(bug): fix issue where chip was only updating after second click
|
1446e689e8aeaab60f25070323c1d6afa9495dd5 | --- package-lock.json
@@ -3471,9 +3471,9 @@
}
},
"@walmart/push-to-talk-mini-app": {
- "version": "0.5.37",
- "resolved": "https://npme.walmart.com/@walmart/push-to-talk-mini-app/-/push-to-talk-mini-app-0.5.37.tgz",
- "integrity": "sha512-A67/TLeREAlUGETQzPBib7lc6zp4GSiHvFFI+vymAmDfWe+eg... | myTeam search populate | myTeam search populate
|
528772ee6d9d423bc3c92f19efce2edb2b618def | --- package.json
@@ -136,7 +136,7 @@
"@walmart/react-native-shared-navigation": "6.1.4",
"@walmart/react-native-store-map": "0.3.7",
"@walmart/react-native-sumo-sdk": "2.7.0",
- "@walmart/react-native-webex-sdk": "0.3.3",
+ "@walmart/react-native-webex-sdk": "0.3.4",
"@walmart/receipt-check-mi... | Fixing calling Android 11 crash issue on incoming and outbound calls | Fixing calling Android 11 crash issue on incoming and outbound calls
|
c7779adb6ee7d8b69f4c8cdecb38d887427f2bcc | --- src/components/RosterHeader.tsx
@@ -58,7 +58,7 @@ export const RosterHeader = (props: RosterHeaderProps) => {
onPress={viewWeeklySchedule}
disabled={!associateWINs.length}
UNSAFE_style={styles.weeklyScheduleButton}
- testID='viewWeeklySchedule'>
+ testID='viewWeekl... | Updated test IDs as per reviewers comments | Updated test IDs as per reviewers comments
|
c7f27afe942dff961baccf31e92edc619c7f092d | --- package-lock.json
@@ -3601,9 +3601,9 @@
}
},
"@walmart/time-clock-mini-app": {
- "version": "0.4.21",
- "resolved": "https://npme.walmart.com/@walmart/time-clock-mini-app/-/time-clock-mini-app-0.4.21.tgz",
- "integrity": "sha512-nxchtjmd0QDeCp+XE2GP1319/wwi53Cd2NhcCkL9WvDIcmyqkZTUb5d... | Updated Time-Clock-Mini-App version | Updated Time-Clock-Mini-App version
|
ee4ced4e482de8a21dc9c3766538a203dde988c8 | --- ios/BuildSupport/MeAtWMBeta_InHouse_Provision.mobileprovision
Binary files a/ios/BuildSupport/MeAtWMBeta_InHouse_Provision.mobileprovision and b/ios/BuildSupport/MeAtWMBeta_InHouse_Provision.mobileprovision differ
| update provision profile | update provision profile
|
b2a944fce15942de27f2099a6f9254ef84f7a676 | --- src/navigation/AssociateHallwayNav/SideMenuContent.tsx
@@ -101,7 +101,7 @@ export const SideMenuContent: React.FC<DrawerContentComponentProps> = (
setImmediate(() =>
// Look to rename mapping for new route name, if none found, use route name
- navigation.navigate(SCREEN_RENAME_MAP[route] || route... | Update src/navigation/AssociateHallwayNav/SideMenuContent.tsx | Update src/navigation/AssociateHallwayNav/SideMenuContent.tsx
Co-authored-by: Dylan Lane - rlane1 <Russell.Lane@walmart.com> |
866841045b78a5cc0a9ab9367030824f7bf6a37b | --- app.config.US.ts
@@ -97,6 +97,7 @@ const CONFIG: ExpoConfig = {
},
entitlements: {
'com.apple.security.application-groups': AppVariant.select({
+ // Should match infoPlist.GroupIdentifier for prod & default
prod: ['group.com.walmart.sumo.appstore'],
default: ['group.com.wal... | docs(appconfig): add comment as a part of review meeting | docs(appconfig): add comment as a part of review meeting |
ab13c891b6688b8b620ba34dfe27006a91ae5296 | --- app.config.US.ts
@@ -229,7 +229,7 @@ const CONFIG: ExpoConfig = {
},
],
"./plugins/withAbiFilters",
- // "./plugins/withActiveArchFix",
+ "./plugins/withActiveArchFix",
"./plugins/withAppAuth",
"./plugins/withBoringSSLFix",
"./plugins/withBuildSupport",
@@ -256,11 +256,6 @@ con... | fix: enabling active architecture fix plugin | fix: enabling active architecture fix plugin
|
ac6a431469f373e1d84f197e2d91afa5f382afb6 | --- package.json
@@ -143,7 +143,7 @@
"react-native-snap-carousel": "^3.9.1",
"react-native-sound-player": "0.10.9",
"react-native-splash-screen": "^3.2.0",
- "react-native-ssmp-sso-allspark": "^1.2.3",
+ "react-native-ssmp-sso-allspark": "1.2.3",
"react-native-svg": "^12.1.0",
"react-nati... | Correcting version | Correcting version
|
7b10c8745b06574a6e64de99e6b2f94f3a0fe488 | --- ios/Podfile
@@ -28,3 +28,10 @@ target 'AllSpark' do
# flipper_post_install(installer)
# end
end
+
+#This will suppress the double quotes header error for cocoapods version less than 1.10.0.. This can be removed once we upgrade cocoapods
+post_install do |installer|
+ installer.pods_project.build_configura... | Fix/ios build (#109) | Fix/ios build (#109)
* updated podfile.lock
* updated Podfile to suppress double quote error |
ccb3c2f649f35bfc27fb909aab43f30b3acdf532 | --- __tests__/navigation/AssociateHallwayNav/Tabs/__snapshots__/HomeStackNavTest.tsx.snap
@@ -39,23 +39,6 @@ exports[`HomeStackNav matches snapshot 1`] = `
}
}
/>
- <Screen
- component={
- Object {
- "AttendanceModalScreen": "AttendanceModalScreen",
- "NewTorScreen": "NewTorScreen"... | Update snapshots | Update snapshots
|
ace6ca1e078a5631451e4445a3428ba0efbae15c | --- __tests__/hooks/teams.test.ts
@@ -253,7 +253,7 @@ describe('hooks/teams', () => {
}));
renderHook(() => useGetTeamById('team1'));
expect(useGetTeamByIdQuery).toHaveBeenCalled();
- expect(logger.error).toHaveBeenCalledWith('useGetTeamByIdQuery error',
+ expect(logger.error).toHaveBeenCalledWith... | feat(ui): update failing lints | feat(ui): update failing lints
|
a37412899255dd80c27bc4da200ef4a3a613f727 | --- package-lock.json
@@ -5420,9 +5420,9 @@
}
},
"@walmart/price-changes-mini-app": {
- "version": "1.4.11",
- "resolved": "https://npme.walmart.com/@walmart/price-changes-mini-app/-/price-changes-mini-app-1.4.11.tgz",
- "integrity": "sha512-uCC2Hk4fRcAC49c4uuIpLpD3geWjG7uAQByH8ygekhQKPr... | Bump Price changes to 1.5.3 | Bump Price changes to 1.5.3
|
a4e2e7418641bf383193ca683bb018a03be70b54 | --- package-lock.json
@@ -46,7 +46,7 @@
"@walmart/counts-component-miniapp": "0.1.4",
"@walmart/emergency-mini-app": "1.24.1",
"@walmart/exception-mini-app": "1.2.30",
- "@walmart/facilities-management-miniapp": "0.6.28",
+ "@walmart/facilities-management-miniapp": "0.6.30",
... | FixIT: Drop 11 changes with version 0.6.30 | FixIT: Drop 11 changes with version 0.6.30
|
282b74cd231a9bda7b46794b5cff5555516c46ef | --- package-lock.json
@@ -1,12 +1,12 @@
{
"name": "@walmart/roster-mini-app",
- "version": "1.0.17-alpha-6",
+ "version": "1.0.17-alpha-7",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@walmart/roster-mini-app",
- "version": "1.0.17-alpha-6",
+ "version": "1.... | Update version | Update version
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.