Skip to content

Commit

Permalink
Updates CHANGELOG.
Browse files Browse the repository at this point in the history
  • Loading branch information
archolewa committed Feb 1, 2017
1 parent 94d189b commit c207831
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,17 @@ Current

### Changed:


- [`RequestLog` timings support the try-with-resources block](https://github.com/yahoo/fili/pull/143)
* A block of code can now be timed by wrapping the timed block in a try-with-resources block that
starts the timer. Note: This won't work when performing timings across threads, or across
contexts. Those need to be started and stopped manually.

### Deprecated:

- [`RequestLog::stopMostRecentTimer` has been deprecated](https://github.com/yahoo/fili/pull/143)
- This method is a part of the infrastructure to support the recently
deprecated `RequestLog::switchTiming`.

- [`RequestLog::switchTiming` has been deprecated](https://github.com/yahoo/fili/pull/141)
- `RequestLog::switchTiming` is very context-dependent, and therefore brittle. In particular, adding any
additional timers inside code called by a timed block may result in the original timer not stopping
properly. All usages of `switchTiming` should be replaced with explicit calls to `RequestLog::startTiming`
and `RequestLog::stopTiming`.



### Fixed:

Expand Down Expand Up @@ -242,6 +238,11 @@ Changes:

### Deprecated:

- [`RequestLog::switchTiming` has been deprecated](https://github.com/yahoo/fili/pull/141)
- `RequestLog::switchTiming` is very context-dependent, and therefore brittle. In particular, adding any additional
timers inside code called by a timed block may result in the original timer not stopping properly. All usages of
`switchTiming` should be replaced with explicit calls to `RequestLog::startTiming` and `RequestLog::stopTiming`.

- [Dimension Field Tagging and Dynamic Dimension Field Serilization](https://github.com/yahoo/fili/pull/137)
* Deprecated `DimensionsServlet::getDimensionFieldListSummaryView` and `DimensionsServlet::getDimensionFieldSummaryView`
since there is no need for it anymore due to the change in serialization of `DimensionField`
Expand Down Expand Up @@ -351,11 +352,6 @@ New Capabilities & Enhancements:

### Changed:

- [`RequestLog` timings support the try-with-resources block](https://github.com/yahoo/fili/pull/143)
* A block of code can now be timed by wrapping the timed block in a try-with-resources block that
starts the timer. Note: This won't work when performing timings across threads, or across
contexts. Those need to be started and stopped manually.

- [Error messages generated during response processing include the request id.](https://github.com/yahoo/fili/pull/78)

- [`DimensionStoreKeyUtils` now supports case sensitive row and column keys](https://github.com/yahoo/fili/pull/90)
Expand Down

0 comments on commit c207831

Please sign in to comment.