File tree Expand file tree Collapse file tree 1 file changed +27
-13
lines changed
src/main/scala/io/sdkman/changelogs Expand file tree Collapse file tree 1 file changed +27
-13
lines changed Original file line number Diff line number Diff line change @@ -6,31 +6,45 @@ import com.mongodb.client.MongoDatabase
6
6
@ ChangeLog (order = " 007" )
7
7
class SparkMigrations {
8
8
@ ChangeSet (
9
- order = " 017 " ,
10
- id = " 016 -add_spark_3.2.0 " ,
11
- author = " ChethanUK "
9
+ order = " 020 " ,
10
+ id = " 020 -add_spark_3.2.2 " ,
11
+ author = " cphbrt "
12
12
)
13
- def migration017 (implicit db : MongoDatabase ): Unit = {
13
+ def migration020 (implicit db : MongoDatabase ) = {
14
14
Version (
15
15
" spark" ,
16
- " 3.2.0" ,
17
- " https://archive.apache.org/dist/spark/spark-3.2.0/spark-3.2.0-bin-hadoop3.2.tgz"
16
+ " 3.2.2" ,
17
+ " https://archive.apache.org/dist/spark/spark-3.2.2/spark-3.2.2-bin-hadoop3.2.tgz"
18
+ ).validate()
19
+ .insert()
20
+ }
21
+
22
+ @ ChangeSet (
23
+ order = " 021" ,
24
+ id = " 021-add_spark_3.3.0" ,
25
+ author = " cphbrt"
26
+ )
27
+ def migration021 (implicit db : MongoDatabase ) = {
28
+ Version (
29
+ " spark" ,
30
+ " 3.3.0" ,
31
+ " https://archive.apache.org/dist/spark/spark-3.3.0/spark-3.3.0-bin-hadoop3.tgz"
18
32
).validate()
19
33
.insert()
20
- .asCandidateDefault()
21
34
}
22
35
23
36
@ ChangeSet (
24
- order = " 019 " ,
25
- id = " 019 -add_spark_3.2 .1" ,
26
- author = " ChethanUK "
37
+ order = " 022 " ,
38
+ id = " 022 -add_spark_3.3 .1" ,
39
+ author = " cphbrt "
27
40
)
28
- def migration019 (implicit db : MongoDatabase ) = {
41
+ def migration022 (implicit db : MongoDatabase ) = {
29
42
Version (
30
43
" spark" ,
31
- " 3.2 .1" ,
32
- " https://archive.apache.org/dist/spark/spark-3.2 .1/spark-3.2 .1-bin-hadoop3.2 .tgz"
44
+ " 3.3 .1" ,
45
+ " https://archive.apache.org/dist/spark/spark-3.3 .1/spark-3.3 .1-bin-hadoop3.tgz"
33
46
).validate()
34
47
.insert()
48
+ .asCandidateDefault()
35
49
}
36
50
}
You can’t perform that action at this time.
0 commit comments