Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
7178da30
Unverified
Commit
7178da30
authored
9 months ago
by
george-wilson-rea
Committed by
GitHub
9 months ago
Browse files
Options
Downloads
Patches
Plain Diff
refactor: Tidy Scala version normalization code (#29642)
parent
7743c77d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/modules/manager/sbt/extract.ts
+1
-5
1 addition, 5 deletions
lib/modules/manager/sbt/extract.ts
lib/modules/manager/sbt/util.spec.ts
+38
-1
38 additions, 1 deletion
lib/modules/manager/sbt/util.spec.ts
lib/modules/manager/sbt/util.ts
+6
-1
6 additions, 1 deletion
lib/modules/manager/sbt/util.ts
with
45 additions
and
7 deletions
lib/modules/manager/sbt/extract.ts
+
1
−
5
View file @
7178da30
...
...
@@ -201,16 +201,12 @@ function depHandler(ctx: Ctx): Ctx {
delete
ctx
.
variableName
;
const
depName
=
`
${
groupId
!
}
:
${
artifactId
!
}
`
;
const
isScala3
=
scalaVersion
?.[
0
]
===
'
3
'
;
const
scalaVersionForPackageName
=
isScala3
?
'
3
'
:
scalaVersion
;
const
dep
:
PackageDependency
=
{
datasource
:
SbtPackageDatasource
.
id
,
depName
,
packageName
:
scalaVersionForPackageName
&&
useScalaVersion
?
`
${
depName
}
_
${
scalaVersionForPackageName
}
`
:
depName
,
scalaVersion
&&
useScalaVersion
?
`
${
depName
}
_
${
scalaVersion
}
`
:
depName
,
currentValue
,
};
...
...
This diff is collapsed.
Click to expand it.
lib/modules/manager/sbt/util.spec.ts
+
38
−
1
View file @
7178da30
import
{
sortPackageFiles
}
from
'
./util
'
;
import
{
normalizeScalaVersion
,
sortPackageFiles
}
from
'
./util
'
;
describe
(
'
modules/manager/sbt/util
'
,
()
=>
{
describe
(
'
sortPackageFiles()
'
,
()
=>
{
...
...
@@ -15,4 +15,41 @@ describe('modules/manager/sbt/util', () => {
]);
});
});
describe
(
'
normalizeScalaVersion()
'
,
()
=>
{
it
(
'
does not normalize prior to 2.10
'
,
()
=>
{
const
version
=
'
2.9.3
'
;
expect
(
normalizeScalaVersion
(
version
)).
toBe
(
'
2.9.3
'
);
});
it
(
'
normalizes a Scala 2.10 version number
'
,
()
=>
{
const
version
=
'
2.10.7
'
;
expect
(
normalizeScalaVersion
(
version
)).
toBe
(
'
2.10
'
);
});
it
(
'
normalizes a Scala 2.11 version number
'
,
()
=>
{
const
version
=
'
2.11.12
'
;
expect
(
normalizeScalaVersion
(
version
)).
toBe
(
'
2.11
'
);
});
it
(
'
normalizes a Scala 2.12 version number
'
,
()
=>
{
const
version
=
'
2.12.19
'
;
expect
(
normalizeScalaVersion
(
version
)).
toBe
(
'
2.12
'
);
});
it
(
'
normalizes a Scala 2.13 version number
'
,
()
=>
{
const
version
=
'
2.13.14
'
;
expect
(
normalizeScalaVersion
(
version
)).
toBe
(
'
2.13
'
);
});
it
(
'
normalizes a Scala 3 LTS version number
'
,
()
=>
{
const
version
=
'
3.3.3
'
;
expect
(
normalizeScalaVersion
(
version
)).
toBe
(
'
3
'
);
});
it
(
'
normalizes a Scala 3 current version number
'
,
()
=>
{
const
version
=
'
3.4.2
'
;
expect
(
normalizeScalaVersion
(
version
)).
toBe
(
'
3
'
);
});
});
});
This diff is collapsed.
Click to expand it.
lib/modules/manager/sbt/util.ts
+
6
−
1
View file @
7178da30
...
...
@@ -21,8 +21,13 @@ export function normalizeScalaVersion(str: string): string {
return
str
;
}
}
const
isScala3
=
versioning
.
isGreaterThan
(
str
,
'
3.0.0
'
);
if
(
regEx
(
/^
\d
+
\.\d
+
\.\d
+$/
).
test
(
str
))
{
return
str
.
replace
(
regEx
(
/^
(\d
+
)\.(\d
+
)\.\d
+$/
),
'
$1.$2
'
);
if
(
isScala3
)
{
return
str
.
replace
(
regEx
(
/^
(\d
+
)\.(\d
+
)\.\d
+$/
),
'
$1
'
);
}
else
{
return
str
.
replace
(
regEx
(
/^
(\d
+
)\.(\d
+
)\.\d
+$/
),
'
$1.$2
'
);
}
}
// istanbul ignore next
return
str
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment