From 92a1c9dbd25d399b7a70b21b1d7479fadf65e1d1 Mon Sep 17 00:00:00 2001 From: Sam Daulton Date: Thu, 10 Aug 2023 14:38:25 -0700 Subject: [PATCH] update changelog for 0.9.2 Summary: see title Reviewed By: saitcakmak Differential Revision: D48230494 fbshipit-source-id: 9a6404d5a33300e8cb0cb61fb59b0ee0145f596b --- CHANGELOG.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85c5b0e7e6..2bab129a92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,21 @@ The release log for BoTorch. +## [0.9.2] - Aug 10, 2023 + +#### Bug fixes +* Hot fix (#1973) for a few issues: + * A naming mismatch between Ax's modular `BotorchModel` and the BoTorch's acquisition input constructors, leading to outcome constraints in Ax not being used with single-objective acquisition functions in Ax's modular `BotorchModel`. The naming has been updated in Ax and consistent naming is now used in input constructors for single and multi-objective acquisition functions in BoTorch. + * A naming mismatch in the acquisition input constructor `constraints` in `qNoisyLogExpectedImprovement`, which kept constraints from being used. + * A bug in `compute_best_feasible_objective` that could lead to `-inf` incumbent values. +* Fix setting seed in `get_polytope_samples` (#1968) + +#### Other changes +* Merge `SupervisedDataset` and `FixedNoiseDataset` (#1945). +* Constrained tutorial updates (#1967, #1970) +* Resolve issues with missing pytorch binaries with py3.11 on Mac (#1966) + + ## [0.9.1] - Aug 1, 2023 * Require linear_operator == 0.5.1 (#1963).