Skip to content

Commit e73183d

Browse files
committed
Prevent key sort on yaml_merge in fence
Bumping versions
1 parent 64d6b02 commit e73183d

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

helm/fence/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.72
18+
version: 0.1.73
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

helm/fence/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# fence
22

3-
![Version: 0.1.72](https://img.shields.io/badge/Version-0.1.71-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: master](https://img.shields.io/badge/AppVersion-master-informational?style=flat-square)
3+
![Version: 0.1.73](https://img.shields.io/badge/Version-0.1.73-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: master](https://img.shields.io/badge/AppVersion-master-informational?style=flat-square)
44

55
A Helm chart for gen3 Fence
66

helm/fence/scripts/yaml_merge.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def merge_dicts(dict1, dict2):
3535

3636
def save_merged_file(merged_data, output_file_path):
3737
with open(output_file_path, 'w') as output_file:
38-
yaml.dump(merged_data, output_file, default_flow_style=False)
38+
yaml.dump(merged_data, output_file, default_flow_style=False, sort_keys=False)
3939

4040
if __name__ == "__main__":
4141
# Check if at least two arguments are provided (including the script name)

helm/frontend-framework/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A Helm chart for the gen3 frontend framework
88

99
| Repository | Name | Version |
1010
|------------|------|---------|
11-
| file://../common | common | 0.1.31 |
11+
| file://../common | common | 0.1.34 |
1212

1313
## Values
1414

helm/gen3/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ dependencies:
6464
repository: "file://../frontend-framework"
6565
condition: frontend-framework.enabled
6666
- name: fence
67-
version: 0.1.72
67+
version: 0.1.73
6868
repository: "file://../fence"
6969
condition: fence.enabled
7070
- name: funnel
@@ -193,7 +193,7 @@ type: application
193193
# to the chart and its templates, including the app version.
194194
# Versions are expected to follow Semantic Versioning (https://semver.org/)
195195

196-
version: 0.3.20
196+
version: 0.3.21
197197

198198
# This is the version number of the application being deployed. This version number should be
199199
# incremented each time you make changes to the application. Versions are not expected to

helm/gen3/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# gen3
22

3-
![Version: 0.3.20](https://img.shields.io/badge/Version-0.3.18-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: master](https://img.shields.io/badge/AppVersion-master-informational?style=flat-square)
3+
![Version: 0.3.21](https://img.shields.io/badge/Version-0.3.21-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: master](https://img.shields.io/badge/AppVersion-master-informational?style=flat-square)
44

55
Helm chart to deploy Gen3 Data Commons
66

@@ -33,8 +33,8 @@ Helm chart to deploy Gen3 Data Commons
3333
| file://../dicom-server | dicom-server | 0.1.27 |
3434
| file://../embedding-management-service | embedding-management-service | 0.1.4 |
3535
| file://../etl | etl | 0.1.22 |
36-
| file://../fence | fence | 0.1.72 |
37-
| file://../frontend-framework | frontend-framework | 0.1.22 |
36+
| file://../fence | fence | 0.1.73 |
37+
| file://../frontend-framework | frontend-framework | 0.1.23 |
3838
| file://../funnel | funnel | 0.1.13 |
3939
| file://../gen3-analysis | gen3-analysis | 0.1.9 |
4040
| file://../gen3-network-policies | gen3-network-policies | 0.1.3 |

0 commit comments

Comments
 (0)