@@ -89,21 +89,16 @@ def generate_conformance_tables(reports, currVersion, mkdocsConfig):
89
89
gateway_tls_table = pandas .DataFrame ()
90
90
gateway_grpc_table = pandas .DataFrame ()
91
91
92
- if currVersion != 'v1.0.0' :
93
- gateway_http_table = generate_profiles_report (reports , 'GATEWAY-HTTP' ,currVersion )
94
-
95
- gateway_grpc_table = generate_profiles_report (reports , 'GATEWAY-GRPC' ,currVersion )
96
- gateway_grpc_table = gateway_grpc_table .rename_axis ('Organization' )
92
+ gateway_http_table = generate_profiles_report (reports , 'GATEWAY-HTTP' ,currVersion )
93
+ gateway_http_table = gateway_http_table .rename_axis ('Organization' )
97
94
98
- gateway_tls_table = generate_profiles_report (reports , 'GATEWAY-TLS ' ,currVersion )
99
- gateway_tls_table = gateway_tls_table .rename_axis ('Organization' )
95
+ gateway_grpc_table = generate_profiles_report (reports , 'GATEWAY-GRPC ' ,currVersion )
96
+ gateway_grpc_table = gateway_grpc_table .rename_axis ('Organization' )
100
97
101
- mesh_http_table = generate_profiles_report (reports , 'MESH-HTTP' ,currVersion )
102
- else :
103
- gateway_http_table = generate_profiles_report (reports , "HTTP" ,currVersion )
104
- mesh_http_table = generate_profiles_report (reports , "MESH" ,currVersion )
98
+ gateway_tls_table = generate_profiles_report (reports , 'GATEWAY-TLS' ,currVersion )
99
+ gateway_tls_table = gateway_tls_table .rename_axis ('Organization' )
105
100
106
- gateway_http_table = gateway_http_table . rename_axis ( 'Organization' )
101
+ mesh_http_table = generate_profiles_report ( reports , 'MESH-HTTP' , currVersion )
107
102
mesh_http_table = mesh_http_table .rename_axis ('Organization' )
108
103
109
104
versionFile = "." .join (currVersion .split ("." )[:2 ])
0 commit comments