Alfred Mazimbe
Alfred Mazimbe
### What are you trying to accomplish? Improve the level of testing in our maven version implementation by adding extra test cases for version qualifiers and separators. This will help...
Gradle has version spec similar to maven. Details on this link: https://docs.gradle.org/current/userguide/single_versions.html#version_ordering This seems to have been introduced relatively recently though and as far as I can see it's only...
Maven version spec to be implemented: https://maven.apache.org/pom.html#version-order-specification https://github.com/apache/maven/blob/master/maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java Example ordering new ComparableVersion("NotAVersionSting"), new ComparableVersion("1.0a1-SNAPSHOT"), new ComparableVersion("1.0-alpha1"), new ComparableVersion("1.0beta1-SNAPSHOT"), new ComparableVersion("1.0-b2"), new ComparableVersion("1.0-beta3.SNAPSHOT"), new ComparableVersion("1.0-beta3"), new ComparableVersion("1.0-milestone1-SNAPSHOT"), new ComparableVersion("1.0-m2"), new ComparableVersion("1.0-rc1-SNAPSHOT"),...
### Is there an existing issue for this? Sentry link: https://github.sentry.io/issues/5450311195/events/c10de4ced9be414f9cc2876e5008a539/ https://github.sentry.io/issues/5450311195/events/99e103d789dd44cdb76122d9a2e2869c/?project=1451818 - [X] I have searched the existing issues ### Package ecosystem npm ### Package manager version _No response_...
### What are you trying to accomplish? Remove a feature flag and code that is no longer needed. The feature flag was added in this [PR](https://github.com/dependabot/dependabot-core/pull/10613) to ensure the new...
### What are you trying to accomplish? Add extra tests to test if the current nuget version implementation, in ruby, is correct. Nuget have a [version identifier spec](https://learn.microsoft.com/en-us/nuget/concepts/package-versioning?tabs=semver20sort#semantic-versioning-200) and I'm...