@@ -941,6 +941,7 @@ mod tests {
941941 sha: FileSha ( String :: new( ) ) ,
942942 commit: CommitSha ( String :: new( ) ) ,
943943 committed_at: Utc :: now( ) ,
944+ major_change: false ,
944945 created_at: Utc :: now( ) ,
945946 updated_at: Utc :: now( ) ,
946947 deleted_at: None ,
@@ -949,6 +950,7 @@ mod tests {
949950 updated_at: Utc :: now( ) ,
950951 deleted_at: None ,
951952 visibility: rfd_model:: schema_ext:: Visibility :: Private ,
953+ latest_major_change_at: Some ( Utc :: now( ) ) ,
952954 } ,
953955 Rfd {
954956 id: TypedUuid :: from_untyped_uuid( public_rfd_id) ,
@@ -967,6 +969,7 @@ mod tests {
967969 sha: FileSha ( String :: new( ) ) ,
968970 commit: CommitSha ( String :: new( ) ) ,
969971 committed_at: Utc :: now( ) ,
972+ major_change: false ,
970973 created_at: Utc :: now( ) ,
971974 updated_at: Utc :: now( ) ,
972975 deleted_at: None ,
@@ -975,6 +978,7 @@ mod tests {
975978 updated_at: Utc :: now( ) ,
976979 deleted_at: None ,
977980 visibility: rfd_model:: schema_ext:: Visibility :: Public ,
981+ latest_major_change_at: Some ( Utc :: now( ) ) ,
978982 } ,
979983 Rfd {
980984 id: TypedUuid :: from_untyped_uuid( private_rfd_id_2) ,
@@ -993,6 +997,7 @@ mod tests {
993997 sha: FileSha ( String :: new( ) ) ,
994998 commit: CommitSha ( String :: new( ) ) ,
995999 committed_at: Utc :: now( ) ,
1000+ major_change: false ,
9961001 created_at: Utc :: now( ) ,
9971002 updated_at: Utc :: now( ) ,
9981003 deleted_at: None ,
@@ -1001,6 +1006,7 @@ mod tests {
10011006 updated_at: Utc :: now( ) ,
10021007 deleted_at: None ,
10031008 visibility: rfd_model:: schema_ext:: Visibility :: Private ,
1009+ latest_major_change_at: Some ( Utc :: now( ) ) ,
10041010 } ,
10051011 ] ;
10061012
@@ -1036,6 +1042,7 @@ mod tests {
10361042 sha: FileSha ( String :: new( ) ) ,
10371043 commit: CommitSha ( String :: new( ) ) ,
10381044 committed_at: Utc :: now( ) ,
1045+ major_change: false ,
10391046 created_at: Utc :: now( ) ,
10401047 updated_at: Utc :: now( ) ,
10411048 deleted_at: None ,
@@ -1044,6 +1051,7 @@ mod tests {
10441051 updated_at: Utc :: now( ) ,
10451052 deleted_at: None ,
10461053 visibility: rfd_model:: schema_ext:: Visibility :: Private ,
1054+ latest_major_change_at: Some ( Utc :: now( ) ) ,
10471055 } ,
10481056 RfdMeta {
10491057 id: TypedUuid :: from_untyped_uuid( public_rfd_id) ,
@@ -1061,6 +1069,7 @@ mod tests {
10611069 sha: FileSha ( String :: new( ) ) ,
10621070 commit: CommitSha ( String :: new( ) ) ,
10631071 committed_at: Utc :: now( ) ,
1072+ major_change: false ,
10641073 created_at: Utc :: now( ) ,
10651074 updated_at: Utc :: now( ) ,
10661075 deleted_at: None ,
@@ -1069,6 +1078,7 @@ mod tests {
10691078 updated_at: Utc :: now( ) ,
10701079 deleted_at: None ,
10711080 visibility: rfd_model:: schema_ext:: Visibility :: Public ,
1081+ latest_major_change_at: Some ( Utc :: now( ) ) ,
10721082 } ,
10731083 RfdMeta {
10741084 id: TypedUuid :: from_untyped_uuid( private_rfd_id_2) ,
@@ -1086,6 +1096,7 @@ mod tests {
10861096 sha: FileSha ( String :: new( ) ) ,
10871097 commit: CommitSha ( String :: new( ) ) ,
10881098 committed_at: Utc :: now( ) ,
1099+ major_change: false ,
10891100 created_at: Utc :: now( ) ,
10901101 updated_at: Utc :: now( ) ,
10911102 deleted_at: None ,
@@ -1094,6 +1105,7 @@ mod tests {
10941105 updated_at: Utc :: now( ) ,
10951106 deleted_at: None ,
10961107 visibility: rfd_model:: schema_ext:: Visibility :: Private ,
1108+ latest_major_change_at: Some ( Utc :: now( ) ) ,
10971109 } ,
10981110 ] ;
10991111
@@ -1131,6 +1143,7 @@ mod tests {
11311143 sha: String :: new( ) . into( ) ,
11321144 commit: String :: new( ) . into( ) ,
11331145 committed_at: Utc :: now( ) ,
1146+ major_change: false ,
11341147 created_at: Utc :: now( ) ,
11351148 updated_at: Utc :: now( ) ,
11361149 deleted_at: None ,
@@ -1148,6 +1161,7 @@ mod tests {
11481161 sha: String :: new( ) . into( ) ,
11491162 commit: String :: new( ) . into( ) ,
11501163 committed_at: Utc :: now( ) ,
1164+ major_change: false ,
11511165 created_at: Utc :: now( ) ,
11521166 updated_at: Utc :: now( ) ,
11531167 deleted_at: None ,
@@ -1165,6 +1179,7 @@ mod tests {
11651179 sha: String :: new( ) . into( ) ,
11661180 commit: String :: new( ) . into( ) ,
11671181 committed_at: Utc :: now( ) ,
1182+ major_change: false ,
11681183 created_at: Utc :: now( ) ,
11691184 updated_at: Utc :: now( ) ,
11701185 deleted_at: None ,
@@ -1196,6 +1211,7 @@ mod tests {
11961211 sha: String :: new( ) . into( ) ,
11971212 commit: String :: new( ) . into( ) ,
11981213 committed_at: Utc :: now( ) ,
1214+ major_change: false ,
11991215 created_at: Utc :: now( ) ,
12001216 updated_at: Utc :: now( ) ,
12011217 deleted_at: None ,
@@ -1212,6 +1228,7 @@ mod tests {
12121228 sha: String :: new( ) . into( ) ,
12131229 commit: String :: new( ) . into( ) ,
12141230 committed_at: Utc :: now( ) ,
1231+ major_change: false ,
12151232 created_at: Utc :: now( ) ,
12161233 updated_at: Utc :: now( ) ,
12171234 deleted_at: None ,
@@ -1228,6 +1245,7 @@ mod tests {
12281245 sha: String :: new( ) . into( ) ,
12291246 commit: String :: new( ) . into( ) ,
12301247 committed_at: Utc :: now( ) ,
1248+ major_change: false ,
12311249 created_at: Utc :: now( ) ,
12321250 updated_at: Utc :: now( ) ,
12331251 deleted_at: None ,
0 commit comments