Skip to content

Commit

Permalink
release Hydra 1.1.1 (#1779)
Browse files Browse the repository at this point in the history
  • Loading branch information
jieru-hu authored Aug 19, 2021
1 parent 5ee2e0e commit d5cbf6f
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 13 deletions.
25 changes: 25 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
1.1.1 (2021-08-19)
==================

### Features

- Allow range() in override grammar to have only one argument (the stop value), e.g. range(3) ([#1664](https://github.com/facebookresearch/hydra/issues/1664))
- Add support for a HYDRA_DEPRECATION_WARNINGS_AS_ERRORS envorinment variable. When it is set, using deprecated features causes an exception instead of a warning. ([#1689](https://github.com/facebookresearch/hydra/issues/1689))
- To make migration from Hydra 1.0 to 1.1 easier, Hydra will now issue a warning if the primary config defines config values and Defaults List if the Defaults List does not specify `_self_` ([#1755](https://github.com/facebookresearch/hydra/issues/1755))

### API Change (Renames, deprecations and removals)

- Re-introduced a deprecated strict flag in the Compose API ([#1694](https://github.com/facebookresearch/hydra/issues/1694))
- Relax handling of legacy hydra overrides in the defaults list to make migration from Hydra 1.0 to 1.1 easier ([#1748](https://github.com/facebookresearch/hydra/issues/1748))

### Bug Fixes

- Allow Defaults List interpolation in nested configs and document that the interpolation keys must be absolute ([#1668](https://github.com/facebookresearch/hydra/issues/1668))
- instantiate API now supports `target` as a parameter name ([#1669](https://github.com/facebookresearch/hydra/issues/1669))
- Fix `--cfg=job --resolve` and `--help --resolve` so that the ${hydra:...} resolver now prints properly ([#1681](https://github.com/facebookresearch/hydra/issues/1681))
- Fix unexpected changes to defaults list in some cases when appending an experiment (+experiment=test) ([#1706](https://github.com/facebookresearch/hydra/issues/1706))
- Fixed composition where top level of a config composed from a config group is a list ([#1724](https://github.com/facebookresearch/hydra/issues/1724))
- Fix bug where overriding hydra config groups more than once without using the override keyword resulted in an error instead of deprecation warnings ([#1730](https://github.com/facebookresearch/hydra/issues/1730))
- Fix failure when sanitizing stack traces resulting from job exceptions ([#1739](https://github.com/facebookresearch/hydra/issues/1739))


1.1.0 (2021-06-09)
==================
This is the biggest Hydra release yet.
Expand Down
2 changes: 1 addition & 1 deletion hydra/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved

# Source of truth for Hydra's version
__version__ = "1.1.0"
__version__ = "1.1.1"
from hydra import utils
from hydra.errors import MissingConfigException
from hydra.main import main
Expand Down
1 change: 0 additions & 1 deletion news/1664.feature

This file was deleted.

1 change: 0 additions & 1 deletion news/1668.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/1669.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/1681.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/1689.feature

This file was deleted.

1 change: 0 additions & 1 deletion news/1694.api_change

This file was deleted.

1 change: 0 additions & 1 deletion news/1706.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/1724.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/1730.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/1739.bugfix

This file was deleted.

1 change: 0 additions & 1 deletion news/1748.api_change

This file was deleted.

1 change: 0 additions & 1 deletion news/1755.feature

This file was deleted.

0 comments on commit d5cbf6f

Please sign in to comment.