-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Comparing changes
Open a pull request
base repository: sirupsen/logrus
base: v1.9.0
head repository: sirupsen/logrus
compare: v1.9.3
- 13 commits
- 6 files changed
- 6 contributors
Commits on Jun 16, 2022
-
Configuration menu - View commit details
-
Copy full SHA for d8787af - Browse repository at this point
Copy the full SHA d8787afView commit details
Commits on Dec 22, 2022
-
Fix data race in hooks.test package
Francois committedDec 22, 2022 Configuration menu - View commit details
-
Copy full SHA for ff07b25 - Browse repository at this point
Copy the full SHA ff07b25View commit details
Commits on Jan 7, 2023
-
Merge pull request #1362 from FrancoisWagner/fix-data-race-in-hooks-t…
…est-pkg Fix data race in hooks.test package
Configuration menu - View commit details
-
Copy full SHA for a448f82 - Browse repository at this point
Copy the full SHA a448f82View commit details
Commits on Feb 17, 2023
-
Add instructions to use different log levels for local and syslog
This commit adds instructions to the syslog readme about how to send different log levels to local logging (`log.SetLevel`) and syslog hook. fixes #1369
Configuration menu - View commit details
-
Copy full SHA for 70234da - Browse repository at this point
Copy the full SHA 70234daView commit details
Commits on Mar 10, 2023
-
This commit fixes a potential denial of service vulnerability in logr…
…us.Writer() that could be triggered by logging text longer than 64kb without newlines. Previously, the bufio.Scanner used by Writer() would hang indefinitely when reading such text without newlines, causing the application to become unresponsive.
Configuration menu - View commit details
-
Copy full SHA for 766cfec - Browse repository at this point
Copy the full SHA 766cfecView commit details
Commits on Mar 12, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e59b167 - Browse repository at this point
Copy the full SHA e59b167View commit details
Commits on May 4, 2023
-
This commit fixes a potential denial of service vulnerability in logrus.Writer() that could be triggered by logging text longer than 64KB without newlines. Previously, the bufio.Scanner used by Writer() would hang indefinitely when reading such text without newlines, causing the application to become unresponsive.
Configuration menu - View commit details
-
Copy full SHA for c052ba6 - Browse repository at this point
Copy the full SHA c052ba6View commit details -
Merge pull request #1 from ashmckenzie/ashmckenzie/fix-writer-scanner
Scan text in 64KB chunks
Configuration menu - View commit details
-
Copy full SHA for 105e63f - Browse repository at this point
Copy the full SHA 105e63fView commit details
Commits on May 15, 2023
-
Merge pull request #1376 from ozfive/master
This commit fixes a potential denial of service vulnerability in logrus.Writer() that could be triggered by logging text longer than 64kb without newlines.
Configuration menu - View commit details
-
Copy full SHA for 6acd903 - Browse repository at this point
Copy the full SHA 6acd903View commit details -
Merge pull request #1339 from xieyuschen/patch-1
Use text when shows the logrus output
Configuration menu - View commit details
-
Copy full SHA for b30aa27 - Browse repository at this point
Copy the full SHA b30aa27View commit details
Commits on May 17, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 352781d - Browse repository at this point
Copy the full SHA 352781dView commit details
Commits on May 21, 2023
-
Revert "Revert "Merge pull request #1376 from ozfive/master""
This reverts commit 352781d.
Configuration menu - View commit details
-
Copy full SHA for f9291a5 - Browse repository at this point
Copy the full SHA f9291a5View commit details -
Commit 766cfec introduced this bug by defining an incorrect split function. First it breaks the old behavior because it never splits at newlines now. Second, it causes a panic because it never tells the scanner to stop. See the bufio.ScanLines function, something like: ``` if atEOF && len(data) == 0 { return 0, nil, nil } ``` is needed to do that. This commit fixes it by restoring the old behavior and calling bufio.ScanLines but also keep the 64KB check in place to avoid buffering for to long. Two tests are added to ensure it is working as expected. Fixes #1383 Signed-off-by: Paul Holzinger <pholzing@redhat.com>
Configuration menu - View commit details
-
Copy full SHA for d40e25c - Browse repository at this point
Copy the full SHA d40e25cView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v1.9.0...v1.9.3