* [8120](https://github.com/grafana/loki/pull/8232) **TaehyunHwang** Fix version info issue that shows wrong version.
* [8151](https://github.com/grafana/loki/pull/8151) **sandeepsukhani** fix log deletion with line filters.
##### Changes
@ -85,6 +84,18 @@
### Dependencies
## 2.7.3 (2023-02-01)
#### Loki
##### Fixes
* [8340](https://github.com/grafana/loki/pull/8340) **MasslessParticle** Fix bug in compactor that caused panics when `startTime` and `endTime` of a delete request are equal.
#### Build
* [8232](https://github.com/grafana/loki/pull/8232) **TaehyunHwang** Fix build issue that caused `--version` to show wrong version for Loki and Promtail binaries.
@ -34,7 +34,12 @@ As always, please read the [upgrade guide]({{<relref "../upgrading/#270">}}) bef
## Bug fixes
### 2.7.2
### 2.7.3 (2023-02-01)
* Fixed a bug in compactor that caused divide-by-zero panics when `startTime` and `endTime` of a delete request were equal.
* Fixed the output of the `--version` command that showed an incorrect version information.
### 2.7.2 (2023-01-25)
* Fixed bug in validation of `pattern` and `regexp` parsers where missing or empty parameters for these parsers caused panics.
* Fixed bugs in processing delete requests with line filters:
@ -44,7 +49,7 @@ As always, please read the [upgrade guide]({{<relref "../upgrading/#270">}}) bef
* Fixed bug in multi-tenant querying that caused HTTP 400 responses when multiple tenants where used in `X-Scope-OrgID` header like so `tenant-a|tenant-b`.
* Upgraded Go build version and Docker container base images to 1.19.5 to mitigate [GO-2022-1144](https://pkg.go.dev/vuln/GO-2022-1144) vulnerability.
### 2.7.1
### 2.7.1 (2022-12-09)
* Add single compactor http client for delete and gennumber clients. This fixes a bug caused by the accidental introduction of different HTTP clients for compactor and gennumber operations that resulted in 404s when only the gennumber middlewares were enabled: