-
Notifications
You must be signed in to change notification settings - Fork 63
Merge master into feature/guided-flow #604
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: feature/guided-flow
Are you sure you want to change the base?
Conversation
removed field check in test
…ment-error 533 fix required appointment error
Fix small typo
…ate/ctry picklist org enabled
…nts-App into person_account_matching2
…ndering-in-SummitEventsRegisterAppointments 588 fix bullet points rendering in SummitEventsRegisterAppointments
Appointments auto add failing
New version of SummitEventsShared.getDependentSelectOptions()
…ent, not capacity
…and lead conversion
Description to use: Adding ECCN information per Salesforce OSPO request
Added documentation outlining the security requirements for Connected Apps and External Client Apps in relation to the Summit Events App.
Update CODEOWNERS
NEW FEATURE: Person account matching
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This pull request merges the master branch into the feature/guided-flow branch. It's an automated merge that includes significant updates to the Summit Events application, including API version updates, new Experience Bundle configurations, person account matching capabilities, code refactoring, and deprecation of legacy functionality.
Key changes:
- API version upgrade from 61.0 to 64.0 across all Apex classes and pages
- Introduction of Experience Bundle (Salesforce Community) configuration for "Summit Events"
- New person account matching functionality with custom metadata and fields
- Code refactoring to consolidate query logic into a new
SummitEventsReadSharedclass - JavaScript modernization (var to let) and bug fixes
- Deprecation of parking pass and host assignment features
Reviewed changes
Copilot reviewed 194 out of 199 changed files in this pull request and generated 1 comment.
Show a summary per file
| File | Description |
|---|---|
| unpackaged/pre/roles/* | New role definition for Summit Events Community Owner |
| unpackaged/config/site/* | Site configuration changes, migration to ChatterNetwork type |
| unpackaged/config/experiences/Summit_Events1/* | New Experience Bundle with views, routes, themes, and configurations for community portal |
| sfdx-project.json | API version update to 64.0 |
| robot/SummitEventsApp/tests/* | New and updated Robot Framework test files |
| orgs/*.json | New and updated org configuration files with features and settings |
| force-app/test/default/classes/* | API version updates and test improvements across all test classes |
| force-app/main/default/classes/SummitEventsReadShared.cls | New shared class to consolidate SOQL queries |
| force-app/main/default/classes/SummitEventsRegisterController.cls | Refactored to use new read shared class, bug fixes |
| force-app/main/default/classes/SummitEventsShared.cls | Refactored logic, new person account helper, dependent picklist improvements |
| force-app/main/default/staticresources/SummitEventsAssets/js/*.js | JavaScript modernization (var to let), null check fixes |
| force-app/main/default/objects/Summit_Events__c/fields/* | New fields for person account and guest registration matching |
| force-app/main/default/objects/Summit_Events_Registration__c/fields/* | New fields for person accounts, QR codes, and date of birth text |
| force-app/main/default/permissionsets/* | Updated permissions for new fields and objects |
| force-app/main/default/pages/* | API version updates, UI improvements, deprecation markers |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| var error_count = 0; | ||
| var emailReg = /^([a-zA-Z0-9_.\-.'.+])+@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; | ||
| let error_count = 0; | ||
| let emailReg = /^([a-zA-Z0-9_.\-.'.+])+@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/; |
Copilot
AI
Dec 9, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Character '.' is repeated in the same character class.
Character '.' is repeated in the same character class.
Create security requirements documentation for SEA
This pull request was automatically generated because an automated merge hit a merge conflict