Skip to content

Commit

Permalink
Release 2.8.0 (#453)
Browse files Browse the repository at this point in the history
  • Loading branch information
d-a-bunin committed Aug 13, 2024
1 parent f2c2fde commit 1f74446
Show file tree
Hide file tree
Showing 3 changed files with 75 additions and 15 deletions.
79 changes: 67 additions & 12 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,73 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased
### Added
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

### Changed
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

### Fixed
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-

## [2.8.0] - 2024-08-13
### Added
- Add `get_anomalies_iqr` function for anomaly detection ([#374](https://github.com/etna-team/etna/pull/374))
- Add `get_anomalies_isolation_forest` method for anomaly detection ([#375](https://github.com/etna-team/etna/pull/375))
- Add `IForestOutlierTransform` ([#381](https://github.com/etna-team/etna/pull/381))
Expand All @@ -18,35 +85,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add `MeanEncoderTransform` ([#413](https://github.com/etna-team/etna/pull/413))
- Add `FourierDecomposeTransform` transform for series decomposition using DFT ([#430](https://github.com/etna-team/etna/pull/430))
- Add `ModelDecomposeTransform` transform for series decomposition using ETNA models ([#427](https://github.com/etna-team/etna/pull/427))
-

### Changed
- Allow to change `device`, `batch_size` and `num_workers` of embedding models ([#396](https://github.com/etna-team/etna/pull/396))
-
-
-
-
- Update pipelines documentation ([#408](https://github.com/etna-team/etna/pull/408))
- Update formulas for metrics in documentation ([#406](https://github.com/etna-team/etna/pull/406))
-
- Update documentation to explain how to contribute and work with discussions, update templates for issues ([#395](https://github.com/etna-team/etna/pull/395))
- Remove "Other issue" template, update links to discussions in issue creation menu ([#401](https://github.com/etna-team/etna/pull/401))
-

### Fixed
- Fix rendering in 210 tutorial ([#386](https://github.com/etna-team/etna/pull/386))
- Fix typo in 103 tutorial ([#408](https://github.com/etna-team/etna/pull/408))
- Remove sorting of `ts.df` by timestamps in `plot_forecast` and `plot_forecast_decomposition` ([#410](https://github.com/etna-team/etna/pull/410))
- Fix forecast visualization with `horizon=1` ([#426](https://github.com/etna-team/etna/pull/426))
- Set upper bound `<2` on numpy version ([#431](https://github.com/etna-team/etna/pull/431))
-
- Fix `VotingEnsemble`, `StackingEnsemble`, `DirectEnsemble` have a valid `params_to_tune` that returns empty dict ([#432](https://github.com/etna-team/etna/pull/432))
- Fix passing custom model to `STLTransform` ([#412](https://github.com/etna-team/etna/pull/412))
-
- Update `TSDataset.describe`, `TSDataset.info` to exclude target intervals and target components in `num_exogs` ([#405](https://github.com/etna-team/etna/pull/405))
-
-
-

## [2.7.1] - 2024-06-05
### Fixed
Expand Down
9 changes: 7 additions & 2 deletions docs/source/_static/switcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,15 @@
"url": "https://docs.etna.ai/latest/"
},
{
"name": "2.7.1 (stable)",
"version": "2.7.1",
"name": "2.8.0 (stable)",
"version": "2.8.0",
"url": "https://docs.etna.ai/stable/"
},
{
"name": "2.7.1",
"version": "2.7.1",
"url": "https://docs.etna.ai/2.7.1/"
},
{
"name": "2.7.0",
"version": "2.7.0",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "etna"
version = "2.7.1"
version = "2.8.0"
repository = "https://github.com/etna-team/etna"
readme = "README.md"
description = "ETNA is the first python open source framework of T-Bank AI Center. It is designed to make working with time series simple, productive, and fun."
Expand Down

0 comments on commit 1f74446

Please sign in to comment.