Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: uber-go/zap
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.22.0
Choose a base ref
...
head repository: uber-go/zap
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.23.0
Choose a head ref
  • 7 commits
  • 31 files changed
  • 5 contributors

Commits on Aug 15, 2022

  1. Replace os.TempDir usage with t.TempDir (#1146)

    Current tests can leave files around if tests fail, and even though they
    use rand, it's not seeded, different runs can share the same output file
    which causes other failures (e.g., file exists when it's not expected
    to).  Avoid this by using  t.TempDir which automatically removed after
    tests have run.
    
    Co-authored-by: Abhinav Gupta <[email protected]>
    prashantv and abhinav authored Aug 15, 2022
    Configuration menu
    Copy the full SHA
    bdd673d View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2022

  1. Open: expose error cause, test for fs.ErrNotExist (#1149)

    This is a prefactor for Windows support (#621).
    TestOpen currently relies on a hardcoded error "no such file or
    directory" if a file is not found. However, this error message is
    OS-specific.  We can now rely on `errors.Is(err, fs.ErrNotExist)`
    if we wrap errors using %w instead of %v.
    
    Co-authored-by: Abhinav Gupta <[email protected]>
    prashantv and abhinav authored Aug 16, 2022
    Configuration menu
    Copy the full SHA
    19a5d8a View commit details
    Browse the repository at this point in the history
  2. zapcore: Add LevelOf(LevelEnabler), UnknownLevel (#1147)

    Add a new function LevelOf that reports the minimum enabled log level
    for a LevelEnabler.
    This works by looping through all known Zap levels in-order,
    returning the newly introduced UnknownLevel if none of the known levels
    are enabled.
    A LevelEnabler or Core implementation may implement the Level() Level
    method to override and optimize this behavior.
    AtomicLevel already implemented this method.
    This change adds the method to all Core implementations shipped with
    Zap.
    Note:
    UnknownLevel is set at FatalLevel+1 to account for the possibility that
    users of Zap are using DebugLevel-1 as their own custom log level--even
    though this isn't supported, it's preferable not to break these users.
    Users are less likely to use FatalLevel+1 since Fatal means "exit the
    application."
    Refs #1144
    Supersedes #1143, which was not backwards compatible
    Refs GO-1586
    abhinav authored Aug 16, 2022
    Configuration menu
    Copy the full SHA
    4a895a2 View commit details
    Browse the repository at this point in the history
  3. Add issue template for questions (#1151)

    We're seeing some issues get filed that are being converted to
    Discussions manually. Let's add a template on question so that
    we can redirect folks to Discussions page directly.
    sywhang authored Aug 16, 2022
    Configuration menu
    Copy the full SHA
    92dded6 View commit details
    Browse the repository at this point in the history
  4. Issue Templates: Show a "Discussions" link for questions (#1152)

    Instead of a fake issue template, show a Discussions link.
    abhinav authored Aug 16, 2022
    Configuration menu
    Copy the full SHA
    1e46f5e View commit details
    Browse the repository at this point in the history

Commits on Aug 23, 2022

  1. Add Stringers field constructor for slices of Stringer-compatible obj…

    …ects (#1155)
    
    Add a new Zap field constructor that encodes a slice of zero or more
    objects which implement fmt.Stringer interface into a Zap array.
    
    Usage:
    
    ```go
    //	type Request struct{ ... }
    //	func (a Request) String() string
    //
    //	var requests []Request = ...
    //	logger.Info("sending requests", zap.Stringers("requests", requests))
    ```
    
    This API uses a type parameter so that users don't have to
    build a `[]fmt.Stringer` out of a `[]Request`,
    and can pass the `[]Request` directly to the API.
    
    We may need a StringerValues constructor to mirror ObjectValues in the future.
    
    Credits: @zmanji, @abhinav for the suggestions
    saurabh95 authored Aug 23, 2022
    Configuration menu
    Copy the full SHA
    23d6cc7 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2022

  1. Release v1.23.0 (#1157)

    This release includes the following changes:
    v1.22.0...23d6cc7
    
    Refs GO-1609
    abhinav authored Aug 24, 2022
    Configuration menu
    Copy the full SHA
    1ae5819 View commit details
    Browse the repository at this point in the history
Loading