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

Builder curl-unthreaded-solaris11-i386 Build #5184

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revision7de0a7e71aad984cb7f514fb2987662e2fe8115e
Got Revision7de0a7e71aad984cb7f514fb2987662e2fe8115e
Changes6 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 2 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 41 mins, 50 secs )
    1. stdio
    2. resultlog
  3. Mail result 'cat resultlog ...' ( 1 secs )
    1. stdio

Build Properties:

NameValueSource
branch master Build
builddir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave
buildername curl-unthreaded-solaris11-i386 Builder
buildnumber 5184 Build
codebase Build
got_revision 7de0a7e71aad984cb7f514fb2987662e2fe8115e Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision 7de0a7e71aad984cb7f514fb2987662e2fe8115e Build
scheduler schedule-curl-unthreaded-solaris11-i386 Scheduler
slavename unstable11x BuildSlave
workdir /export/home/buildbot/slave/curl-unthreaded-solaris11-i386 slave (deprecated)

Forced Build Properties:

NameLabelValue

Responsible Users:

  1. Daniel Stenberg
  2. Stefan Eissing
  3. alhudz
  4. renovate[bot]

Timing:

StartMon Jun 8 14:51:21 2026
EndMon Jun 8 16:20:22 2026
Elapsed1 hrs, 29 mins, 0 secs

All Changes:

:

  1. Change #269890

    Category curl
    Changed by renovate[bot] <29139614+renovate[bot]ohnoyoudont@users.noreply.github.com>
    Changed at Mon 08 Jun 2026 13:29:09
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision a89fd1ffd4982c283864c30538d400f704e87bc6

    Comments

    GHA: update dependency pizlonator/fil-c to v0.679
    Closes #21897

    Changed files

    • .github/workflows/linux.yml
  2. Change #269891

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 08 Jun 2026 13:29:47
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision ff7086874ed22b52baa7e73e66305ff045ac9bb6

    Comments

    _ENVIRONMENT.md. Windows does case insensitive env variables
    Closes #21907

    Changed files

    • docs/cmdline-opts/_ENVIRONMENT.md
    • docs/libcurl/libcurl-env.md
  3. Change #269892

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Mon 08 Jun 2026 13:30:39
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision e786a4e9159b11166b1c870f2c02df37c480cb73

    Comments

    CURLOPT_DOH_URL.md: does not inherit proxy options
    Closes #21904

    Changed files

    • docs/libcurl/opts/CURLOPT_DOH_URL.md
  4. Change #269897

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 08 Jun 2026 13:53:02
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 435fb96dcf787335626ada95dc02eb26afcf7bca

    Comments

    netrc: remember and check filename loaded
    Remember the filename of a loaded netrc file to detect changed
    configurations in a reused easy handle.
    
    Closes #21903

    Changed files

    • lib/netrc.c
  5. Change #269898

    Category curl
    Changed by Stefan Eissing <stefanohnoyoudont@eissing.org>
    Changed at Mon 08 Jun 2026 13:53:54
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision d69bfad3fa3daf5e72331f6870667607828d5891

    Comments

    ssl native_ca_store: always reinit
    Add bit `native_ca_store_opt` to keep the setting of
    CURLOPT_(PROXY_)SSL_OPTIONS and use that to calculate every easy
    transfer if a native CA store shall be used or not.
    
    This avoids `native_ca_store` getting stuck on TRUE after being set
    once.
    
    Closes #21902

    Changed files

    • lib/doh.c
    • lib/setopt.c
    • lib/vtls/vtls_config.c
  6. Change #269899

    Category curl
    Changed by alhudz <al.hudz.kohnoyoudont@gmail.com>
    Changed at Mon 08 Jun 2026 13:56:10
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 7de0a7e71aad984cb7f514fb2987662e2fe8115e

    Comments

    chunked: reject invalid bytes in trailer
    Trailers are delivered to the application as headers via
    CLIENTWRITE_TRAILER, but unlike regular response headers they skipped
    the verify_header() checks, so a server could smuggle a nul byte (or
    stray CR) into a header reaching CURLOPT_HEADERFUNCTION and
    curl_easy_header().
    
    Run each assembled trailer line through Curl_verify_header(), the same
    validation used for normal headers.
    
    Covered by the new test 2106.
    
    Closes #21896

    Changed files

    • lib/http.c
    • lib/http.h
    • lib/http_chunks.c
    • tests/data/Makefile.am
    • tests/data/test2106