8000 Comparing v1.7.0...v1.7.1 · libgit2/libgit2 · GitHub
[go: up one dir, main page]

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: libgit2/libgit2
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.7.0
Choose a base ref
...
head repository: libgit2/libgit2
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.7.1
Choose a head ref
  • 19 commits
  • 17 files changed
  • 6 contributors

Commits on Aug 2, 2023

  1. stransport: macos: replace errSSLNetworkTimeout, with hard-coded value

    - Constant only available in 10.13+, causing build failures for older macOS releases
    Fixes: #6606
    mascguy authored and ethomson committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    03b0642 View commit details
    Browse the repository at this point in the history
  2. fix: Add missing include for oidarray.

    Add a missing include for `git2/oidarray.h` so build doesn't fail on
    using `git_oidarray` when using custom transports.
    
    Fixes #6607
    dvzrv authored and ethomson committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    085a169 View commit details
    Browse the repository at this point in the history
  3. repository: make cleanup safe for re-use with grafts

    We are allowed to call `git_repository__cleanup` multiple times, and this
    happens e.g. in rugged if we want to free up resources before GC gets around to
    them.
    
    This means that we cannot leave dangling pointers in it, which we were doing
    with the grafts. Fix this by setting the pointers to NULL after freeing the resources.
    carlosmn authored and ethomson committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    86a4a26 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    ec2439b View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    0ddc077 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    402f63a View commit details
    Browse the repository at this point in the history
  7. Validate proxy URL on Windows.

    lrm29 authored and ethomson committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    5a13d4c View commit details
    Browse the repository at this point in the history
  8. httpclient: safety

    ethomson committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    a3d2922 View commit details
    Browse the repository at this point in the history
  9. net: refactor url parsing

    Refactor url parsing to simplify the state-passing (introducing a
    struct) and add a path parser for future reusability.
    ethomson committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    95d4cb6 View commit details
    Browse the repository at this point in the history
  10. net: introduce http-biased url parsing

    Introduce a url parser that defaults to treating poorly specified URLs
    as http URLs. For example: `localhost:8080` is treated as
    `http://localhost:8080/` by the http-biased url parsing, instead of a
    URL with a scheme `localhost` and a path of `8080`..
    ethomson committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    1d7d6ff View commit details
    Browse the repository at this point in the history
  11. http: allow proxies to be specified in common format

    The common format for specifying proxy URLs is just 'host:port'. Handle
    the common case.
    ethomson committed Aug 2, 2023
    Configuration menu
    Copy the full SHA
    7a901fb View commit details
    Browse the repository at this point in the history
  12. http: test proxies in url and host:port format

    Test proxies specified by both host:port format in configuration
    options, environment variables, and `http.proxy` configuration.
    ethomson committed Aug 2, 2023
    Configuration menu
    Copy the 10000 full SHA
    00c62ab View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    38a3a37 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    393dd49 View commit details
    Browse the repository at this point in the history

Commits on Aug 8, 2023

  1. Merge pull request #6614 from libgit2/ethomson/v1.7

    Backports for v1.7
    ethomson authored Aug 8, 2023
    Configuration menu
    Copy the full SHA
    edf559f View commit details
    Browse the repository at this point in the history

Commits on Aug 10, 2023

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

Commits on Aug 14, 2023

  1. v1.7.1: add changelog

    ethomson committed Aug 14, 2023
    Configuration menu
    Copy the full SHA
    8b59fc5 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    81a9edd View commit details
    Browse the repository at this point in the history
  3. Merge pull request #6622 from libgit2/ethomson/v1.7.1

    libgit2 v1.7.1
    ethomson authored Aug 14, 2023
    2 Configuration menu
    Copy the full SHA
    a2bde63 View commit details
    Browse the repository at this point in the history
Loading
0