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: nhairs/python-json-logger
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.2.0
Choose a base ref
...
head repository: nhairs/python-json-logger
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.2.1
Choose a head ref
  • 3 commits
  • 9 files changed
  • 2 contributors

Commits on Dec 12, 2024

  1. Configuration menu
    Copy the full SHA
    f96de22 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2024

  1. Configuration menu
    Copy the full SHA
    36f160e View commit details
    Browse the repository at this point in the history

Commits on Dec 16, 2024

  1. Fix import pthonjsonlogger.jsonlogger (#33)

    Fixes: #29
    
    Although efforts were made for backwards compatibility using
    `__getattr__` in `pythonjsonlogger/__init__.py`, this only worked if you
    were doing `from pythonjsonlogger import jsonlogger`. When importing by
    the full name `import pythonjsonlogger.jsonlogger` it it would fail to
    locate the module file and thus not be able to produce a module spec
    which then of course causes the import to fail.
    
    We get around this by actually having a module that imports the names it
    needs from the new locations.
    
    ### Test Plan
    
    - Run unit tests
    nhairs authored Dec 16, 2024
    Configuration menu
    Copy the full SHA
    e7761e5 View commit details
    Browse the repository at this point in the history
Loading