What are your best practices for package versioning semantics? I found here the “proper” way to do it for all NuGet packages.
The article specifies as follows:
Major: Breaking changes
Minor: New features, but backwards compatible
Patch: Backwards compatible bug fixes only
What exactly is your interpretation of this in terms of RPA? Many times, an application or website will slightly change where a single selector will no longer work. This is a very small and simple fix, yet it would be considered a “breaking” change because it would be impossible to roll back to a previous version of the automation.
Do you guys just have very large major version numbers, updating them any time an application changes in a slight way that makes it no longer backwards compatible?
Or do you still consider a change like that a bug fix? A minor change?
Hi @aquesada ,
When creating robots, we can prevent all possible changes of the website.
eg show ads,…
Adjusting its Properties also helps them to limit errors as much as possible
However, the change is too big from the website, it is natural for the robot to have to repair
RPA mimics human actions
can’t do a job that hasn’t been assigned in advance
Regards,
LNV
I was asking specifically how you handle these things as far as what to number your package releases when publishing the package to orchestrator.
For example, package version 1.0.0 is the first release of a process. If you had to just update a single selector that has changed on a website, would you call it 2.0.0 or 1.0.1 ?
The first number is supposed to be updated on “major” changes that prevent rollback. The middle number on “minor” changes that add new features that are backwards compatible, and the last number is supposed to be a “patch” that fixes bugs. These are the rules for packages generally. But I wonder how others are adhering to this in the world of RPA or if anyone has any good interpretations they enforce in their COE.