Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,28 @@
Ax uses GitHub tags for managing releases. See changelog [here](https://github.com/facebook/Ax/releases).
# Changelog

The release log for Ax.

## [1.1.0] -- Aug 11, 2025
#### New Features
* New option for the `method` parameter in `client.configure_generation_strategy`:
`quality` -- allows uers to indicate they would like Ax to generate the highest
quality candidates it is able to at the expense of slower runtime (#4042)
* New logic for deciding which analyses to produce by default in
`client.compute_analyses` (#4013)
* New parameters in `client.summarize` allow users to filter their summary by trial
index and/or trial status (#4012, #4118)

#### Bug Fixes
* Allow `client.summarize` to be called without a `GenerationStrategy` being set
(i.e. before `client.configure_generation_strategy` or `client.get_next_trails`
has been called.) (#3801)
* Fixed incorrect grouping in `TopSurfacesAnalysis` (#4095)
* Fixed `ContourPlot` failing to compute in certain search spaces with parameter
constraints (#4124)
* Misc. plotting fixes and improvements

#### Other changes
* Bumped pinned [botorch](https://github.com/pytorch/botorch) version to 0.15.0
* Performance improvements in `SensitivityAnalysis` (#3891)
* Improved optimization performance in constrained optimization settings (#3585)
* Augmented logging in `Client`, early stopping module (#4044, #4108)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from setuptools import find_packages, setup

PINNED_BOTORCH_VERSION = "0.14.0"
PINNED_BOTORCH_VERSION = "0.15.0"

if os.environ.get("ALLOW_BOTORCH_LATEST"):
# allows a more recent previously installed version of botorch to remain
Expand Down