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: tinylib/msgp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.2.0
Choose a base ref
...
head repository: tinylib/msgp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.2.1
Choose a head ref
  • 4 commits
  • 21 files changed
  • 2 contributors

Commits on Aug 21, 2024

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

Commits on Aug 23, 2024

  1. Add pointer receiver directive (#357)

    Adds `//msgp:pointer` file directive. This will generate all functions with pointer receivers.
    
    Tested with base types. Not tested with various other directives, so there may be quirks.
    
    Fixes #332
    klauspost authored Aug 23, 2024
    Configuration menu
    Copy the full SHA
    4ff26d9 View commit details
    Browse the repository at this point in the history

Commits on Sep 6, 2024

  1. ci: Add Go 1.23.x - remove Go 1.20.x (#359)

    * ci: Add Go 1.23.x - remove Go 1.20.x
    * Ignore ast package deprecation
    * Upgrade tinygo
    klauspost authored Sep 6, 2024
    Configuration menu
    Copy the full SHA
    bdea0d5 View commit details
    Browse the repository at this point in the history
  2. Add recursion limit for dynamic code (#358)

    Prevent stack exhaustion on:
    
    Decoder:
    
    * CopyNext
    * Skip
    * ReadIntf
    * ReadMapStrIntf
    * WriteToJSON
    
    Standalone:
    
    * Skip
    * ReadMapStrIntfBytes
    * ReadIntfBytes
    * CopyToJSON
    * UnmarshalAsJSON
    
    Limit is set to 100K recursive map/slice operations.
    klauspost authored Sep 6, 2024
    Configuration menu
    Copy the full SHA
    b78c5cd View commit details
    Browse the repository at this point in the history
Loading