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: influxdata/influxdb
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v3.0.1
Choose a base ref
...
head repository: influxdata/influxdb
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v3.0.2
Choose a head ref
  • 20 commits
  • 44 files changed
  • 5 contributors

Commits on May 2, 2025

  1. Configuration menu
    Copy the full SHA
    9f844c7 View commit details
    Browse the repository at this point in the history
  2. feat: expose --format json for token creation cmd (#26286)

    * feat: expose `--format json` for token creation cmd
    
    closes: #25913
    
    * refactor: address feedback
    praveen-influx authored and hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    c475a18 View commit details
    Browse the repository at this point in the history
  3. fix: update install script to use latest version and DockerHub (#26300)

    * chore: update install script to use DockerHub
    
    * fix: ensure script pulls latest images and uses DockerHub
    peterbarnett03 authored and hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    5a4d68e View commit details
    Browse the repository at this point in the history
  4. feat: Generate testing TLS certs on the fly (#26288)

    This commit is a follow up to #26246 and generates test certs on the fly
    for our test suite. In practice this will only need to be done once with
    a fresh repo check out as the certs will expire long after anyone would
    reasonably be working on this code in the year 4096! This could be
    extended in the future to generate negative tls tests where the file
    should be expired.
    
    Closes #26254
    mgattozzi authored and hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    8f3339f View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    c158c41 View commit details
    Browse the repository at this point in the history
  6. feat: Allow setting a minimum TLS version (#26307)

    This commit allows users to set a minimum TLS version. The default is
    1.2. The choices are TLS 1.2 or TLS 1.3 which can be set via env var:
    
    INFLUXDB3_TLS_MINIMUM_VERSION="tls-1.2"
    or
    INFLUXDB3_TLS_MINIMUM_VERSION="tls-1.3"
    
    and for the command line flag for the serve command:
    
    --tls-minimum-version tls-1.2
    
    or
    
    --tls-minimum-version tls-1.3
    
    With this users have more fine grained control over what tls version
    they require.
    
    Closes #26255
    mgattozzi authored and hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    446e27b View commit details
    Browse the repository at this point in the history
  7. fix: Consistent thread arguments with influxdb3_pro (#26304)

    If the old environment variables are used, a warning will be displayed
    on the console with the recommended replacement.
    stuartcarnie authored and hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    073361d View commit details
    Browse the repository at this point in the history
  8. fix: Ensure iox table schema is sorted for SHOW TABLES (#26302)

    * fix: Ensure `iox` table schema is sorted for SHOW TABLES
    
    Closes #25860
    
    * chore: Add insta snapshot
    
    * chore: placate clippy
    stuartcarnie authored and hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    29c34b9 View commit details
    Browse the repository at this point in the history
  9. feat: Add support for CORS requests from a browser (#26314)

    This commit adds support for CORS by modifying our requests to make
    preflight checks valid and to handle responses containing the necessary
    headers for browsers to access the data they need. We keep what we
    accept as open as this is essentially what requests to the server are
    normally like and we gate the requests with an auth token.
    
    Closes #26313
    mgattozzi authored and hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    3239032 View commit details
    Browse the repository at this point in the history
  10. feat: Add more TLS tests to the test suite (#26324)

    * feat: Add a negative cert test
    
    This adds a test that will panic on server startup because connections
    to said server are invalid. We add a bad expired cert to our cert
    generation for usage in our tests.
    
    Note that this test is only really valid if other tests pass as it
    depends on waiting for the server start checks to fail. If other
    tests run then their server started fine and so did this one, the
    only difference being that connections will error due to a bad tls cert.
    
    Closes #26256
    
    * feat: Add minimum TLS version test
    
    This is a follow on to #26307. In this commit we add a test where we
    check that connections only pass if TLS is set to v1.3. The default is
    1.2 and other tests connect with that just fine. In this test we spin
    up a server using only v1.3 as the minimum and try to connect with v1.2
    which we expect to fail and then v1.3 which should pass.
    
    Closes #26308
    mgattozzi authored and hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    a0781bb View commit details
    Browse the repository at this point in the history
  11. fix: group by tag columns with escape quotes (#26326)

    * test: reproducer for #26216
    * fix: group by tag columns with escape quotes
    hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    a67b375 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    06dd7d8 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    dc34403 View commit details
    Browse the repository at this point in the history
  14. Configuration menu
    Copy the full SHA
    424bf7d View commit details
    Browse the repository at this point in the history
  15. fix: distinct cache counting bug (#26332)

    * test: reproducer for #26318
    
    * fix: distinct cache counting bug
    
    Fixed an issue where the distinct cache was not counting rows correctly
    for scenarios where a projection and predicate were used in conjunction
    hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    ca12361 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    22c196b View commit details
    Browse the repository at this point in the history
  17. feat: Remove Last Cache Size Limitation (#26333)

    * feat: remove limit on LVC size
    
    * fix: bad test case and incorrect info
    
    * fix: more clarity and default value
    
    * fix: light CLI polishes
    
    * fix: bad snapshot
    peterbarnett03 authored and hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    cd0882b View commit details
    Browse the repository at this point in the history
  18. feat: additional info when started --without-auth (#26338)

    - return 405 message body to indicate the endpoints are disabled
    - extra log to say server has been started without auth
    praveen-influx authored and hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    d5aab09 View commit details
    Browse the repository at this point in the history
  19. fix: update token creation output (#26336)

    * fix: clarify token generation output for easier readibility
    
    * fix: linter error
    
    * fix: additional linter error
    
    * fix: linter error on output
    
    * fix: switch to owo_colorize
    peterbarnett03 authored and hiltontj committed May 2, 2025
    Configuration menu
    Copy the full SHA
    89a9a50 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    d80d6cd View commit details
    Browse the repository at this point in the history
Loading