File: ChangeLog.md

package info (click to toggle)
haskell-monad-logger 0.3.42-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 108 kB
  • sloc: haskell: 720; makefile: 2
file content (189 lines) | stat: -rw-r--r-- 4,317 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
# ChangeLog for monad-logger

## 0.3.42

* Forward compatibility with `-Wnoncanonical-monad-instances` becoming an error

## 0.3.41

* Add `MonadAccum` instances for `LoggingT` and `NoLoggingT`

## 0.3.40

* Relax `fast-logger` upper bound from 3.2 to 3.3
* Add `Alternative` instances for `LoggingT` and `NoLoggingT`

## 0.3.39

* Make the previous change backwards compatible with CPP

## 0.3.38

* Drop old deprecated instances to support transformers 0.6 [#39](https://github.com/snoyberg/monad-logger/pull/39)

## 0.3.37

* Add `Semigroup`/`Monoid` instances to `LoggingT`, `NoLoggingT`, and `WriterLoggingT`

## 0.3.36

* Export the `defaultOutput` function, useful for defining custom instances of `MonadLogger`. [#29](https://github.com/snoyberg/monad-logger/pull/29)

## 0.3.35

* Add Hackage status badge
* Document `Loc` [#26](https://github.com/snoyberg/monad-logger/pull/26)

## 0.3.34

* Fix build for lts-9 resolver

## 0.3.33

* Export `LogLine` type synonym.

## 0.3.32

* Compat with `unliftio-core` 0.2

## 0.3.31

* Re-export `fromLogStr` to make implementing custom instances more convenient.
  [#14](https://github.com/snoyberg/monad-logger/pull/14)

## 0.3.30

* Added `MonadFail` instances for `LoggingT` and `NoLoggingT`.

## 0.3.29

* Export mapLoggingT and mapNoLoggingT

## 0.3.28.5

* Fix missing module [#1](https://github.com/snoyberg/monad-logger/issues/1)

## 0.3.28.4

* Move to a new repo

## 0.3.28.3

* Compat for older GHCs [#161](https://github.com/kazu-yamamoto/logger/pull/161)

## 0.3.28.2

* Support for exceptions 0.9 and 0.10 [#158](https://github.com/kazu-yamamoto/logger/issues/158)
* Drop blaze-builder dependency

## 0.3.28.1

* Fix support for GHC 7.8 [#154](https://github.com/kazu-yamamoto/logger/pull/154)

## 0.3.28

* Added `WriterLoggingT` for collecting log lines and help with testing

## 0.3.27

* Drop backwards compat with older library versions

## 0.3.26

* Add `MonadUnliftIO` instances

## 0.3.25.1

* Fix some incorrect `@since` comments

## 0.3.25

* Export all CallStack log functions [#143](https://github.com/kazu-yamamoto/logger/pull/143)

## 0.3.24
* Added `MonadReader` instance for `NoLoggingT`.

## 0.3.23
* Changed `runFileLoggingT` buffering to line buffering.
* Added `defaultLog` and `logWithoutLoc` to list of exported functions.

## 0.3.22
* Added `runFileLoggingT`.

## 0.3.21

* Reimplemented Functor & Applicative for LoggingT & NoLoggingT [#125](https://github.com/kazu-yamamoto/logger/issues/125) [#126](https://github.com/kazu-yamamoto/logger/pull/126)

## 0.3.20.2

* Support for GHC 8.2

## 0.3.20.1

* Fix #106 by correcting the default signature for MonadLoggerIO [#108](https://github.com/kazu-yamamoto/logger/pull/108)

## 0.3.20

* Generalize the type of `unChanLoggingT`
  [#104](https://github.com/kazu-yamamoto/logger/pull/104)

## 0.3.19

* Add CallStack-based functions and `Control.Monad.Logger.CallStack` module

## 0.3.18

* Added logTHShow and logDebugSH, logInfoSH, etc. Accepts an argument of `Show a => a` instead of just `Text`.

## 0.3.17

* log to a chan [#74](https://github.com/kazu-yamamoto/logger/pull/74)

## 0.3.16

* Provide default monadLoggerLog implementation [#72](https://github.com/kazu-yamamoto/logger/pull/72)

## 0.3.15

* Expose Loc constructor [#70](https://github.com/kazu-yamamoto/logger/pull/70)

## 0.3.14

* Don't include source location for defaultLoc [#69](https://github.com/kazu-yamamoto/logger/issues/69)

## 0.3.13.1

* Allow fast-logger 2.3

## 0.3.13

* Re-export LogStr from fast-logger [#56](https://github.com/kazu-yamamoto/logger/pull/56)
* Added `filterLogger`

## 0.3.12

* Use transformers-compat to provide universal ExceptT support [#53](https://github.com/kazu-yamamoto/logger/pull/53)

## 0.3.11.1

Add support for monad-control 1.0 [#52](https://github.com/kazu-yamamoto/logger/pull/52)

## 0.3.11

Add missing `MonadState` and `MonadWriter` instances for `NoLoggingT` [#51](https://github.com/kazu-yamamoto/logger/pull/51)

## 0.3.10.1

Remove unnecessary extra newline in log messages.

## 0.3.10

Introduce the `MonadLoggerIO` typeclass.

## 0.3.9

Add missing `MonadError NoLoggingT` instance #49

## 0.3.8

Simplify constraint on `MonadLogger (NoLoggingT m)` from `MonadIO m` to `Monad m` [Github issue #48](https://github.com/kazu-yamamoto/logger/issues/48).