You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Being able to override all versions of a particular package is useful, especially ones with many, many version (think firebase)
The current format (to my understanding) requires that versions be explicitly declared to provide an override, like the following example:
coordinates:
name: communication-calling
namespace: '@azure'
provider: npmjs
type: npm
revisions:
1.0.0:
licensed:
declared: OTHER
1.0.0-beta.1:
licensed:
declared: OTHER
1.0.1-beta.1:
licensed:
declared: OTHER
1.1.0:
licensed:
declared: OTHER
1.1.0-beta.1:
licensed:
declared: OTHER
1.1.0-beta.2:
licensed:
declared: OTHER
1.2.0-beta.1:
licensed:
declared: OTHER
1.2.1-beta.1:
licensed:
declared: OTHER
1.2.2-beta.1:
licensed:
declared: OTHER
1.2.3-beta.1:
licensed:
declared: OTHER
1.3.2:
licensed:
declared: OTHER
1.3.2-beta.1:
licensed:
declared: OTHER
1.4.1-beta.1:
licensed:
declared: OTHER
1.4.3-beta.1:
licensed:
declared: OTHER
1.4.4:
licensed:
declared: OTHER
1.5.4:
licensed:
declared: OTHER
1.5.4-beta.1:
licensed:
declared: OTHER
1.6.1-beta.1:
licensed:
declared: OTHER
1.6.3:
licensed:
declared: OTHER
If we introduce version wildcards we can simply this list down to 1 entry
coordinates:
name: communication-callingnamespace: '@azure'provider: npmjstype: npmrevisions:
1.*:
licensed:
declared: OTHER
Additionally, if the license does change in 2.0.0 this override list won't affect it
The text was updated successfully, but these errors were encountered:
I think this would be a very valuable addition. I also like the idea of using a regexp approach for specifying the versions, instead of type-specific version ranges (e.g. >=1.0.0, <2.0.0 for pip, or ~1.0.0 for npm, etc.), for the sake of uniformity.
Being able to override all versions of a particular package is useful, especially ones with many, many version (think firebase)
The current format (to my understanding) requires that versions be explicitly declared to provide an override, like the following example:
If we introduce version wildcards we can simply this list down to 1 entry
Additionally, if the license does change in
2.0.0
this override list won't affect itThe text was updated successfully, but these errors were encountered: