Jordi Boggiano
9738e495f2
Update changelog for 2.3.1
2021-07-14 13:56:39 +02:00
Jordi Boggiano
df991fd886
Update changelog
2021-07-05 13:34:13 +02:00
Jordi Boggiano
5c9d9bf43e
Merge branch '1.x' into main
2021-05-28 10:33:21 +02:00
Jordi Boggiano
c6b00f0515
Update changelog
2021-05-28 10:32:12 +02:00
Jordi Boggiano
1cb1cde8e8
Update changelog
2020-12-14 14:15:25 +01:00
Jordi Boggiano
d9cdb686e0
Merge branch '1.x' into main
2020-12-14 13:57:05 +01:00
Jordi Boggiano
2209ddd84e
Update changelog
2020-12-14 13:56:38 +01:00
Jordi Boggiano
f9eee5cec9
Update changelog
2020-07-23 10:41:23 +02:00
Jordi Boggiano
6541075a8e
Merge branch '1.x'
2020-07-23 10:38:28 +02:00
Jordi Boggiano
1817faadd1
Update changelog
2020-07-23 10:35:51 +02:00
Jordi Boggiano
38914429aa
Remove allow_failures flag from php 8
2020-05-22 10:12:19 +02:00
Jordi Boggiano
dc1e854c63
Update changelog
2020-05-22 09:48:22 +02:00
Jordi Boggiano
a5327ca844
Merge branch '1.x'
2020-05-22 09:34:33 +02:00
Jordi Boggiano
3022efff20
Update changelog
2020-05-22 09:31:27 +02:00
Jordi Boggiano
45b183d548
Merge branch '1.x'
2019-12-20 15:22:48 +01:00
Jordi Boggiano
fa82921994
Update changelog
2019-12-20 15:15:16 +01:00
Jordi Boggiano
f9d56fd2f5
Prepare changelog
2019-11-13 11:27:43 +01:00
Jordi Boggiano
4e19f3c585
Merge branch '1.x'
2019-11-13 10:58:42 +01:00
Jordi Boggiano
ac44cccd84
Update changelog
2019-11-13 10:54:16 +01:00
Jordi Boggiano
ae84612017
Merge branch '1.x'
2019-11-11 18:34:16 +01:00
Jordi Boggiano
70e65a5470
Update changelog
2019-09-06 15:49:17 +02:00
Jordi Boggiano
a053af62ad
Merge branch '1.x'
2019-09-06 14:25:18 +02:00
Jordi Boggiano
c5dcc05def
Update changelog
2019-09-06 14:21:24 +02:00
Jordi Boggiano
68545165e1
Update changelog
2019-08-30 11:56:44 +02:00
Jordi Boggiano
f954b4ea84
Update changelog
2019-08-30 11:46:18 +02:00
Jordi Boggiano
acf8e9e9a3
Merge branch '1.x'
2019-08-30 10:39:21 +02:00
Jordi Boggiano
ab4757ddf8
Merge branch '1.x' into normalize_normalizers
2019-08-30 10:27:19 +02:00
Jordi Boggiano
6688b45ebe
Normalize the way backtraces are normalized and remove args for special cases, fixes #1346
2019-08-16 13:09:47 +02:00
Jordi Boggiano
4976375873
Update changelog
2019-08-16 13:00:02 +02:00
Jordi Boggiano
66ee473ab4
Merge branch '1.x'
2019-08-16 12:54:52 +02:00
Jordi Boggiano
1b5341b08b
Update changelog
2019-08-16 12:54:42 +02:00
Jordi Boggiano
bf486002a0
Merge branch '1.x'
...
Update changelog for 2.0.0-beta2
2019-07-06 15:17:41 +02:00
Jordi Boggiano
17cbfb8b9c
Update changelog for 1.x
2019-07-06 15:03:00 +02:00
Jordi Boggiano
4215c238c8
Fix upgrade link
2018-12-08 18:23:31 +01:00
Jordi Boggiano
b978700c05
Merge remote-tracking branch 'akalongman/feature/elasticsearch'
2018-12-08 18:11:25 +01:00
Jordi Boggiano
1d821e6e40
Update changelog/upgrade files, fixes #1232
2018-12-08 17:58:29 +01:00
Jordi Boggiano
204744df2e
Merge branch '1.x'
2018-11-30 08:44:17 +01:00
Jordi Boggiano
25580ef961
Add BC notice to changelog
2018-11-05 13:13:11 +01:00
Jordi Boggiano
69fb39d83c
Merge branch '1.x'
2018-11-05 10:02:14 +01:00
Jordi Boggiano
bfc9ebb28f
Update changelog date
2018-11-05 10:00:11 +01:00
Jordi Boggiano
6b5a392d87
Update changelog
2018-11-04 23:49:26 +01:00
Jordi Boggiano
073c5d763a
Merge branch '1.x'
2018-11-04 18:40:32 +01:00
Jordi Boggiano
334b8d8783
More type hints on some handler classes
2018-07-18 09:55:49 +02:00
Grégoire Pineau
0625068bf0
Added a new ResettableInterface and implemented it where possible.
...
When one use Monolog in a long process like an AMQP worker with a
`FingersCrossedHandler` or `BufferHandler` there is a drawback: as soon as there
is an AMQP message that generate a log >= error (for example), all next AMQP
messages will output logs, even if theses messages don't generate log where
level >= error.
In the same context there is a drawback for processor that add an UUID to the
logs. The UUID should change for each AMQP messages.
---
This patch address this issue with a new interface: `ResettableInterface` interface.
Side note: `reset()`, `flush()`, `clear()`, are already used in Monolog. So
basically, one can use the `reset()` on the `Logger` and on some
`Handler`s / `Processor`s.
It's especially useful for
* the `FingersCrossedHandler`: it `close()` the buffer, then it `clear()` the buffer.
* the `BufferHandler`: it `flush()` the buffer, then it `clear()` the buffer.
* the `UidProcessor`: it renew the `uid`.
2018-07-06 16:07:13 +02:00
Jordi Boggiano
0193a07dd7
Merge branch '1.x'
2018-06-18 17:58:26 +02:00
Jordi Boggiano
ee10777821
Fix hipchat dropping messages, fixes #1116
2018-06-18 17:58:11 +02:00
Jordi Boggiano
7c549e383c
Update changelog
2018-06-18 17:31:08 +02:00
Jordi Boggiano
873ac681a6
Merge branch '1.x'
2018-06-18 17:27:30 +02:00
Jordi Boggiano
57a8a172e5
Update changelog
2018-06-18 16:38:33 +02:00
Jordi Boggiano
7b99283627
Merge branch '1.x'
2017-06-19 12:29:40 +02:00