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

Builder curl-unthreaded-solaris11-i386 Build #4859

Results:

Build successful

SourceStamp:

Projectcurl
Repositoryhttps://github.com/curl/curl.git
Branchmaster
Revisionb27e828b938777b75cf627093e1c9c9d4af2cbd2
Got Revisionb27e828b938777b75cf627093e1c9c9d4af2cbd2
Changes2 changes

BuildSlave:

unstable11x

Reason:

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

Steps and Logfiles:

  1. git update ( 3 secs )
    1. stdio
  2. Runtest './tests/testcurl.pl --nogitpull ...' ( 55 mins, 13 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 4859 Build
codebase Build
got_revision b27e828b938777b75cf627093e1c9c9d4af2cbd2 Git
osplatform I386 SetPropertyFromCommand Step
osrelease 11 SetPropertyFromCommand Step
project curl Build
repository https://github.com/curl/curl.git Build
revision b27e828b938777b75cf627093e1c9c9d4af2cbd2 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

Timing:

StartThu Apr 2 12:05:34 2026
EndThu Apr 2 14:05:11 2026
Elapsed1 hrs, 59 mins, 36 secs

All Changes:

:

  1. Change #263264

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 02 Apr 2026 10:22:35
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision 93e80c75b419cc6ec5639404b11773ee58e63073

    Comments

    hsts: accept 10K entries in the list
    Up from 1K.
    
    Reduces the risk that someone could flush the list by tricking a user to
    do many transfers to new hostnames.
    
    Document the limit.
    
    Follow-up to 03a792b186da7fdfbe4b85b022d7
    
    Closes #21200

    Changed files

    • docs/HSTS.md
    • docs/cmdline-opts/hsts.md
    • docs/libcurl/opts/CURLOPT_HSTS.md
    • lib/hsts.h
    • tests/data/test1674
    • tests/unit/unit1674.c
  2. Change #263270

    Category curl
    Changed by Daniel Stenberg <danielohnoyoudont@haxx.se>
    Changed at Thu 02 Apr 2026 10:50:23
    Repository https://github.com/curl/curl.git
    Project curl
    Branch master
    Revision b27e828b938777b75cf627093e1c9c9d4af2cbd2

    Comments

    url: init req.no_body in DO so that it works for h2 push
    req.no_body was only initialized in Curl_connect, while HTTP/2 server
    push adds a duplicated handle via Curl_multi_add_perform and calls
    Curl_init_do with conn==NULL, never invoking Curl_connect.
    
    Verify it by amending test 1620
    
    Found by Codex Security
    
    Closes #21194

    Changed files

    • lib/url.c
    • tests/unit/unit1620.c