Skip to content

Commit

Permalink
Merge pull request #1369 from GoogleCloudPlatform/changes
Browse files Browse the repository at this point in the history
Updated CHANGES.md for v1.12.0 release
  • Loading branch information
tedsta authored May 17, 2017
2 parents f45ec40 + cd5d2c1 commit 6b8c75c
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 0 deletions.
54 changes: 54 additions & 0 deletions CHANGES.next.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
Breaking changes:
- Azure CLI updated to 2.0 (GH-1359)
- Update gflags to version 3.1.1 (GH-1322)

New features:
- Azure container service (GH-1361)
- Add Reboot() method to BaseOsMixin (GH-1356)
- Add container cluster classes (GH-1355)
- Optional `--completion_status_file` flag to write the completion status of every config to a json file (GH-1349)
- Add `--gcp_min_cpu_platform` flag (GH-1336)
- Add GCP sole tenancy support (GH-1333)
- Add SHOC package (GH-1332)
- Add Stencil2D benchmark (GH-1332)
- Managed memcache service abstraction and a backend for AWS ElastiCache (GH-1235)
- Add Apache Beam benchmark (GH-1324)
- Add `image_project` to GCP YAML config options (GH-1319)
- Add support for AWS i3 (GH-1308)
- Optionally create failed run samples with --create_failed_run_samples (GH-1363)
- Add --storage_size flag for mysql_service benchmark (GH-1360 from @sspano)

Enhancements:
- Add optional step parameter to IntegerList (GH-1330)
- Upgrade to NVIDIA's latest version of CUDA Toolkit 8 (GH-1304)
- Add ID attribute to GCE VMs (GH-1318)
- Add ability to install netperf from local tar file (GH-1364)

Bug fixes and maintenance updates:
- Fix up README.md - incorrect command line example and added note on Amazon ES publisher (GH-1350 from @Lirt)
- Fix up README.md - remove outdated comments about GCP requirements (GH-1354 from @sspano)
- Fix creating instance with local SSD using NVMe interface (GH-1287)
- Make flag values consistent with gcloud CLI "SCSI" and "NVME" (GH-1287)
- Store os types in list instead of tuple so that it can be extended by third parties (GH-1348)
- Don't create host during VM Create if `num_vms_per_host` is specified (GH-1352)
- Fix up kubernetes provider (GH-1351)
- Add `--region` to describe/cancel spot-instance-request commands (GH-1347)
- Install sysbench05plus package in a separate path from sysbench (GH-1338)
- Change `--openstack_additional_flags` to be a list flag (GH-1340)
- Move gflags installation from netperf benchmark to a package (GH-1341)
- Move package installation of netperf from benchmark to a package (GH-1341)
- Use snake_case gflags APIs (GH-1328)
- Check if apt-update has been called in InstallPackages, and call it if it has not been (GH-1334)
- Fix broken regular expression in blazemark benchmark (GH-1311)
- Fix CloudSuite license page link (GH-1323)
- Update hadoop version (GH-1327)
- Use regional storage class for GCS buckets instead of DRA (GH-1326)
- Fix gflags FLAGS object initialization in tests (GH-1313)
- Fix bug with exception name in `azure_network.py` (GH-1314)
- Always set GPU clock speed in cuda toolkit installation (GH-1321)
- Specify `image_project` in `gpu_pcie_bandwidth` benchmark config (GH-1321)
- Move gpu clock speed logic to `cuda_toolkit_8` module (GH-1279)
- Add timeout to netperf remote script (GH-1306)
- Don't assume that gcloud is in PATH in providers.gcp.util.GetDefaultProject (GH-1366)
- Make AWS S3 bucket deletion retryable (GH-1343)
- Empty bucket at the end of the Run stage of the object_storage_service benchmark (GH-1343)
14 changes: 14 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,20 @@ use GitHub pull requests for this purpose.
Contributions made by corporations are covered by a different agreement than
the one above, the Software Grant and Corporate Contributor License Agreement.

### Change log
After creating a pull request, update the appropriate sections in CHANGES.next.md with a summary of your changes, then commit and push to the branch you are trying to merge.

For example, under "Bug fixes and maintenance updates" you might put something like:
```
- Fix crazy bug X (GH-<insert PR number here> from @<insert your username here>)
```

Then:
```
git commit -m "Updated CHANGES.next.md"
git push origin fix_crazy_bug_x
```

### Configuring a local development environment
This can optionally done within a [`virtualenv`](https://virtualenv.pypa.io/en/latest/).

Expand Down

0 comments on commit 6b8c75c

Please sign in to comment.