-
-
Notifications
You must be signed in to change notification settings - Fork 2
feat: ignition 8.3 #283
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
feat: ignition 8.3 #283
Conversation
BREAKING CHANGE: drop support for Ignition 8.1
Reviewer's GuideThis PR upgrades support to Ignition 8.3 by dropping 8.1 compatibility, bumping API dependencies, migrating system calls to the vision module, enhancing the IncendiumUser wrapper, refactoring dataset iteration, and updating supporting configurations and stubs. Sequence diagram for user retrieval with Ignition 8.3 vision modulesequenceDiagram
participant System
participant Vision
participant UserModule
System->>Vision: getUsername()
UserModule->>System: getUser(user_source, username)
System-->>UserModule: PyUser instance
Class diagram for updated IncendiumUser structureclassDiagram
class IncendiumUser {
- _contact_info: List[ContactInfo]
- _email: Optional[AnyStr]
- _first_name: AnyStr
- _last_name: AnyStr
- _locale: AnyStr
- _roles: List[AnyStr]
- _username: AnyStr
+ contact_info
+ email
+ first_name
+ last_name
+ locale
+ roles
+ username
}
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
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.
BREAKING CHANGE: drop support for Ignition 8.1
Summary by Sourcery
Upgrade the project to require Ignition 8.3 by updating dependencies, replacing legacy system.nav API calls with system.vision, adding user.username and locale-setting functionality, simplifying dataset iteration, and adjusting build, CI, and documentation accordingly
New Features:
Enhancements:
Build:
CI:
Documentation:
Chores: