Skip to content

Commit 3ef6b2b

Browse files
authored
Release candidate: v1.75.0 (GoogleCloudPlatform#4965)
2 parents ccdb845 + da4c024 commit 3ef6b2b

99 files changed

Lines changed: 1202 additions & 171 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CONTRIBUTING.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
We'd love to accept your patches and contributions to this project. There are
44
just a few small guidelines you need to follow.
55

6+
## Branching Strategy
7+
To maintain a stable release history, this repository follows a specific branching workflow:
8+
9+
`main`: Contains the latest stable release. This branch is only updated during a new release cycle.
10+
11+
`develop`: The active development branch. All new features, bug fixes, and community contributions are merged here first.
12+
13+
**Important**: All Pull Requests must be targeted at the `develop` branch. PRs targeting `main` will be closed or redirected.
14+
615
## Contributor License Agreement
716

817
Contributions to this project must be accompanied by a Contributor License

cmd/root.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ HPC deployments on the Google Cloud Platform.`,
5353
logging.Fatal("cmd.Help function failed: %s", err)
5454
}
5555
},
56-
Version: "v1.74.0",
56+
Version: "v1.75.0",
5757
Annotations: annotation,
5858
}
5959
)

community/examples/client-google-cloud-storage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ deployment_groups:
3131
source: modules/network/vpc
3232

3333
- id: new-bucket
34-
source: community/modules/file-system/cloud-storage-bucket
34+
source: modules/file-system/cloud-storage-bucket
3535
settings:
3636
name_prefix: new-bucket
3737
random_suffix: true

community/examples/fsi-montecarlo-on-batch.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ deployment_groups:
4545
modules:
4646

4747
- id: fsi_bucket
48-
source: community/modules/file-system/cloud-storage-bucket
48+
source: modules/file-system/cloud-storage-bucket
4949
settings:
5050
name_prefix: fsi_bucket
5151
random_suffix: true

community/front-end/ofe/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ dill==0.4.0
2020
distlib==0.4.0
2121
# django-revproxy==0.11.0 released but not yet in pypi
2222
git+https://github.com/jazzband/django-revproxy.git@d2234005135dc0771b7c4e0bb0465664ccfa5787
23-
Django==5.2.8
23+
Django==5.2.9
2424
django-allauth==65.13.0
2525
django-crispy-forms==2.4
2626
django-extensions==3.2.3
@@ -98,7 +98,7 @@ tomlkit==0.13.3
9898
typing-inspect==0.9.0
9999
typing_extensions==4.15.0
100100
uritemplate==4.2.0
101-
urllib3==2.5.0
101+
urllib3==2.6.0
102102
uvicorn==0.38.0
103103
virtualenv==20.35.4
104104
wrapt==2.0.0

community/modules/compute/gke-nodeset/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ terraform {
2222
}
2323
}
2424
provider_meta "google" {
25-
module_name = "blueprints/terraform/hpc-toolkit:gke-nodeset/v1.51.0"
25+
module_name = "blueprints/terraform/hpc-toolkit:gke-nodeset/v1.75.0"
2626
}
2727
}

community/modules/compute/gke-partition/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ terraform {
2222
}
2323
}
2424
provider_meta "google" {
25-
module_name = "blueprints/terraform/hpc-toolkit:gke-partition/v1.51.0"
25+
module_name = "blueprints/terraform/hpc-toolkit:gke-partition/v1.75.0"
2626
}
2727
}

community/modules/compute/htcondor-execute-point/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ terraform {
2929
}
3030

3131
provider_meta "google" {
32-
module_name = "blueprints/terraform/hpc-toolkit:htcondor-execute-point/v1.74.0"
32+
module_name = "blueprints/terraform/hpc-toolkit:htcondor-execute-point/v1.75.0"
3333
}
3434
}

community/modules/compute/mig/versions.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ terraform {
2222
}
2323
}
2424
provider_meta "google" {
25-
module_name = "blueprints/terraform/hpc-toolkit:mig/v1.74.0"
25+
module_name = "blueprints/terraform/hpc-toolkit:mig/v1.75.0"
2626
}
2727
}

community/modules/compute/notebook/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This is a simple usage, using the default network:
1212

1313
```yaml
1414
- id: bucket
15-
source: community/modules/file-system/cloud-storage-bucket
15+
source: modules/file-system/cloud-storage-bucket
1616
settings:
1717
name_prefix: my-bucket
1818
local_mount: /home/jupyter/my-bucket
@@ -30,7 +30,7 @@ If the user wants do specify a custom subnetwork, or specific external IP restri
3030

3131
```yaml
3232
- id: bucket
33-
source: community/modules/file-system/cloud-storage-bucket
33+
source: modules/file-system/cloud-storage-bucket
3434
settings:
3535
name_prefix: my-bucket
3636
local_mount: /home/jupyter/my-bucket

0 commit comments

Comments
 (0)