Home - Waterfall Grid T-Grid Console Builders Recent Builds Buildslaves Changesources - JSON API - About

Builder curl-ares-solaris11-i386 Build #5354

Results:

Exception git

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision323c184b6bdf5b1988a10c0a61560666e1588149
Changes4 changes

BuildSlave:

unstable11x

Reason:

The SingleBranchScheduler scheduler named 'schedule-curl-ares-solaris11-i386' triggered this build

Steps and Logfiles:

  1. git git exception ( 0 secs )
    1. - no logs -
    1. - no logs -
    1. - no logs -
  2. Runtest  
    1. - no logs -
    1. - no logs -

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-ares-solaris11-i386 slave
buildername curl-ares-solaris11-i386 Builder
buildnumber 5354 Build
codebase Build
project curl Build
repository https://github.com/curl/curl.git Build
revision 323c184b6bdf5b1988a10c0a61560666e1588149 Build
scheduler schedule-curl-ares-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-ares-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Bobbeh Rhino
  2. Daniel Stenberg
  3. Stefan Eissing

Timing:

StartTue Sep 8 22:43:59 2026
EndWed Sep 9 00:49:48 2026
Elapsed2 hrs, 5 mins, 49 secs

All Changes:

:

  1. Change #281183

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Tue 08 Sep 2026 23:21:53
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 08d50a791b3197a3d0a4fc2f778e243f5501c67e

    Comments

    hsts: cap max-age to two years
    And ignore problems saving individual HSTS entries - a single entry
    problem should not affect storing other entries.
    
    Added test 1862 to verify.
    
    Closes #22878

    Changed files

    • lib/hsts.c
    • tests/data/Makefile.am
    • tests/data/test1862
  2. Change #281184

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 08 Sep 2026 23:23:42
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 8903f4ce8e3334368eeb7a79a7f1d493f4d0806b

    Comments

    urldata: remove conn->given
    The `connectdata` member `given` is always the same as
    `conn->origin->scheme`. It never changes. Remove that member and always
    use the origin scheme instead.
    
    Closes #22875

    Changed files

    • lib/http2.c
    • lib/http_httpsig.c
    • lib/url.c
    • lib/urldata.h
  3. Change #281185

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Tue 08 Sep 2026 23:25:41
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 19eec5f639d7d3f1c12883527a33e45e6d96cd53

    Comments

    ssl: dedup ssl_fsslctx
    The members fsslctx(p) in `struct ssl_config_data` were only set on
    `data->set.ssl` and never on `data->set.proxy_ssl`, yet were used from
    the first one in all TLS filters that support it.
    
    Move the callback and its userdata outside the config struct, since we
    need it only once.
    
    Closes #22876

    Changed files

    • lib/setopt.c
    • lib/urldata.h
    • lib/vdns/doh.c
    • lib/vtls/mbedtls.c
    • lib/vtls/openssl.c
    • lib/vtls/vtls_config.h
    • lib/vtls/wolfssl.c
  4. Change #281191

    Category curl
    Changed by Bobbeh Rhino <bobbehohnoyoudont@rhino.Rhino>
    Changed at Wed 09 Sep 2026 00:01:05
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 323c184b6bdf5b1988a10c0a61560666e1588149

    Comments

    libssh2: match hashed known_hosts entries by host
    libssh2 does not expose the plaintext name for hashed entries. Check
    each entry key against the requested hostname before using its key type.
    Otherwise an unrelated hashed entry can select the wrong algorithm.
    
    Add an SFTP regression test 3500 with an unrelated hashed entry before
    the requested host.
    
    Closes #22874

    Changed files

    • lib/vssh/libssh2.c
    • tests/data/Makefile.am
    • tests/data/test3500
    • tests/libtest/Makefile.am
    • tests/libtest/test3500.pl