Skip to content

Commit 3bdc8bf

Browse files
Update Scala 3.8 to 3.8.3 (#1821)
1 parent 4c163dd commit 3bdc8bf

12 files changed

Lines changed: 28 additions & 24 deletions

File tree

MODULE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ SCALA_3_VERSIONS = [
3232
"3.5.2",
3333
"3.6.4",
3434
"3.7.4",
35-
"3.8.2",
35+
"3.8.3",
3636
]
3737

3838
SCALA_VERSIONS = SCALA_2_VERSIONS + SCALA_3_VERSIONS

dt_patches/dt_patch_test.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ $runner test_compiler_patch 3.4.3
120120
$runner test_compiler_patch 3.5.2
121121
$runner test_compiler_patch 3.6.4
122122
$runner test_compiler_patch 3.7.4
123-
$runner test_compiler_patch 3.8.2
123+
$runner test_compiler_patch 3.8.3
124124

125125
run_in_test_repo 'test_dt_patches' bazel shutdown
126126

@@ -158,6 +158,6 @@ $runner test_compiler_srcjar 3.4.3
158158
$runner test_compiler_srcjar_nonhermetic 3.5.2
159159
$runner test_compiler_srcjar_nonhermetic 3.6.4
160160
$runner test_compiler_srcjar_nonhermetic 3.7.4
161-
$runner test_compiler_srcjar_nonhermetic 3.8.2
161+
$runner test_compiler_srcjar_nonhermetic 3.8.3
162162

163163
run_in_test_repo 'test_dt_patches_user_srcjar' bazel shutdown

dt_patches/test_dt_patches_user_srcjar/MODULE.bazel

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,8 +185,8 @@ scala_deps.compiler_srcjar(
185185
version = "3.7.4",
186186
)
187187
scala_deps.compiler_srcjar(
188-
url = "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.8.2/scala3-compiler_3-3.8.2-sources.jar",
189-
version = "3.8.2",
188+
url = "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.8.3/scala3-compiler_3-3.8.3-sources.jar",
189+
version = "3.8.3",
190190
)
191191

192192
register_toolchains(

dt_patches/test_dt_patches_user_srcjar/WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ srcjars_by_version = {
154154
"3.7.4": {
155155
"url": "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.7.4/scala3-compiler_3-3.7.4-sources.jar",
156156
},
157-
"3.8.2": {
158-
"url": "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.8.2/scala3-compiler_3-3.8.2-sources.jar",
157+
"3.8.3": {
158+
"url": "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.8.3/scala3-compiler_3-3.8.3-sources.jar",
159159
},
160160
}
161161

examples/scala3/WORKSPACE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ scala_protoc_toolchains(name = "rules_scala_protoc_toolchains")
5757

5858
load("@rules_scala//:scala_config.bzl", "scala_config")
5959

60-
scala_config(scala_version = "3.8.2")
60+
scala_config(scala_version = "3.8.3")
6161

6262
load(
6363
"@rules_scala//scala:toolchains.bzl",

scala/private/macros/compiler_sources_integrity.bzl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -313,4 +313,8 @@ COMPILER_SOURCES = {
313313
"url": "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.8.2/scala3-compiler_3-3.8.2-sources.jar",
314314
"integrity": "sha256-+bCBwxlDOBJBdtNg7sUwsgcbRsMaFiG8LKq4a5+LsAY=",
315315
},
316+
"3.8.3": {
317+
"url": "https://repo1.maven.org/maven2/org/scala-lang/scala3-compiler_3/3.8.3/scala3-compiler_3-3.8.3-sources.jar",
318+
"integrity": "sha256-ChY8TicRAnjSTN4e1VMpdQbAx7R1nIsz5v+mSqlOPjM=",
319+
},
316320
}

scripts/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ options:
5151
Scala version for which to update repository
5252
information; if not provided, updates all supported
5353
versions: 2.11.12, 2.12.21, 2.13.18, 3.1.3, 3.2.2,
54-
3.3.7, 3.4.3, 3.5.2, 3.6.4, 3.7.4, 3.8.2
54+
3.3.7, 3.4.3, 3.5.2, 3.6.4, 3.7.4, 3.8.3
5555
--output_dir OUTPUT_DIR
5656
Directory in which to generate or update repository
5757
files (default: .../third_party/repositories)

scripts/create_repository.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"3.5.2",
2626
"3.6.4",
2727
"3.7.4",
28-
"3.8.2",
28+
"3.8.3",
2929
]
3030
PARSER_COMBINATORS_VERSION = '2.4.0'
3131
SBT_COMPILER_INTERFACE_VERSION = '1.12.0'

scripts/update_compiler_sources_integrity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
] + [
4040
f'3.7.{patch}' for patch in range(0, 5) # 3.7.0 to 3.7.4
4141
] + [
42-
f'3.8.{patch}' for patch in range(0, 3) # 3.8.0 to 3.8.2
42+
f'3.8.{patch}' for patch in range(0, 4) # 3.8.0 to 3.8.3
4343
]
4444

4545
DATA_MARKER = "COMPILER_SOURCES = "

test/shell/test_examples.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ test_scala3_7_example() {
6666
}
6767

6868
test_scala3_8_example() {
69-
run_in_example_dir scala3 bazel build --repo_env=SCALA_VERSION=3.8.2 //...
69+
run_in_example_dir scala3 bazel build --repo_env=SCALA_VERSION=3.8.3 //...
7070
}
7171

7272

0 commit comments

Comments
 (0)