Skip to content
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: Add rez versioning #10930

Merged
merged 36 commits into from Sep 17, 2021
Merged
Show file tree
Hide file tree
Changes from 11 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
cd6bb19
Add rez versioning with tests and docs
skral Jul 22, 2021
6b0dd16
Update note to mention we don't support pipes yet
skral Jul 22, 2021
3936123
Merge branch 'main' into feat/add-rez-versioning
viceice Jul 23, 2021
4729622
Improve clarity around rez based on semver
skral Jul 28, 2021
d0e01e1
Improve clarity around dot ranges
skral Jul 28, 2021
8d4b3a4
Improve clarity around exact versions
skral Jul 28, 2021
d3de6bb
Improve clarity around not supporting pipes yet
skral Jul 28, 2021
14b5473
Follow style guide and add spaces before it
skral Jul 28, 2021
9101eb7
Fix lint by running prettier
skral Jul 28, 2021
ca94324
Fix coverage
skral Jul 28, 2021
770dfa4
Fix import position to amtch style guide
skral Jul 29, 2021
25393cd
Merge branch 'main' into feat/add-rez-versioning
viceice Jul 29, 2021
c855885
Merge branch 'main' into feat/add-rez-versioning
viceice Jul 29, 2021
f7de465
Use proper casing
skral Jul 29, 2021
3f8935e
Add more clarity about pipes in rez
skral Jul 29, 2021
0078dff
Use backticks to keep with style
skral Jul 29, 2021
90d48e8
Merge branch 'main' into feat/add-rez-versioning
skral Sep 9, 2021
aba2544
Fix style
skral Sep 9, 2021
6ad7867
Merge branch 'main' into feat/add-rez-versioning
rarkins Sep 9, 2021
4ed36c3
Fix test name for linter
skral Sep 12, 2021
e6b4395
Revert hiding rez from versioning api
skral Sep 12, 2021
9d40035
Merge branch 'main' into feat/add-rez-versioning
skral Sep 12, 2021
a577f6b
Refactor to even out module size
skral Sep 13, 2021
143c558
Refactor tests to latest style
skral Sep 13, 2021
c07977f
Fix style
skral Sep 13, 2021
ef824c9
Merge branch 'main' into feat/add-rez-versioning
skral Sep 13, 2021
5e7a4ae
Fix security concerns
skral Sep 13, 2021
630afd9
Merge branch 'main' into feat/add-rez-versioning
skral Sep 13, 2021
82f713f
Merge branch 'main' into feat/add-rez-versioning
skral Sep 13, 2021
1917f2f
Fix style
skral Sep 13, 2021
839c72a
Merge branch 'feat/add-rez-versioning' of github.com:skral/renovate i…
skral Sep 13, 2021
3284ad3
Merge branch 'main' into feat/add-rez-versioning
skral Sep 13, 2021
02b0e10
Merge branch 'main' into feat/add-rez-versioning
skral Sep 15, 2021
8f2c765
Merge branch 'main' into feat/add-rez-versioning
rarkins Sep 15, 2021
f58a54c
Merge branch 'main' into feat/add-rez-versioning
rarkins Sep 17, 2021
4a513f2
Merge branch 'main' into feat/add-rez-versioning
viceice Sep 17, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions lib/versioning/api.ts
Expand Up @@ -14,6 +14,7 @@ import * as nuget from './nuget';
import * as pep440 from './pep440';
import * as poetry from './poetry';
import * as regex from './regex';
import * as rez from './rez';
import * as ruby from './ruby';
import * as semver from './semver';
import * as swift from './swift';
Expand All @@ -39,6 +40,7 @@ api.set('nuget', nuget.api);
api.set('pep440', pep440.api);
api.set('poetry', poetry.api);
api.set('regex', regex.api);
api.set('rez', rez.api);
api.set('ruby', ruby.api);
api.set('semver', semver.api);
api.set('swift', swift.api);
Expand Down