8000 Comparing 1.7.2...1.8.0 · kurtosis-tech/kurtosis · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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: kurtosis-tech/kurtosis
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.7.2
Choose a base ref
...
head repository: kurtosis-tech/kurtosis
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.8.0
Choose a head ref
  • 6 commits
  • 73 files changed
  • 2 contributors

Commits on Apr 24, 2025

  1. fix: init remove funcs (#2734)

    ## Description
    `var removeLogsAggregator/CollectorFuns func()` was initializing the
    remove function as `nil`.
    
    In the case where `logsAggregator/Collector.CreateAndStart` fails or if
    the `get...ResourcesForCluster` call fails, the remove function never
    gets initialized. When the error returns, the defer will attempt to
    execute a nil function which causes a segfault.
    
    Initializing the function to a no op solves this issue.
    
    ## Is this change user facing?
    YES
    
    ## References
    #2704
    
    https://discord.com/channels/783719264308953108/1364854129310044243/1364978226757107712
    tedim52 authored Apr 24, 2025
    Configuration menu
    Copy the full SHA
    54de9c2 View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2025

  1. Configuration menu
    Copy the full SHA
    9b7367e View commit details
    Browse the repository at this point in the history
  2. feat: configurable fluent bit filters and parsers (#2727)

    ## Description
    Adds a `LogsCollectorConfig` to Kurtosis Config v6 for configuring
    fluent bit filters and parsers using `logs-collector` and `filters` and
    `parsers`:
    
    https://docs.fluentbit.io/manual/pipeline/filters
    https://docs.fluentbit.io/manual/pipeline/parsers/configuring-parser
    
    eg.
    ```
    config-version: 6
    should-send-metrics: true
    kurtosis-clusters:
      docker:
        type: "docker"
        logs-collector:
          parsers:
            - name: "dummy_test"
              format: "json"
              time_format: "^(?<INT>[^ ]+) (?<FLOAT>[^ ]+) (?<BOOL>[^ ]+) (?<STRING>.+)$"
          filters:
            - name: "parser"
              match: "dummy.*"
              params:
                - key: "key_name"
                  value: "data"
                - key: "parser"
                  value: "dummy_test"
    ```
    tedim52 authored Apr 25, 2025
    Configuration menu
    Copy the full SHA
    9f52d04 View commit details
    Browse the repository at this point in the history

Commits on May 1, 2025

  1. fix: don't get historical enclaves for service logs completion (#2636)

    ## Description
    Makes it so that autocomplete no longer shows old enclaves.
    
    ## Is this change user facing?
    YES
    tedim52 authored May 1, 2025
    Configuration menu
    Copy the full SHA
    63f5b8a View commit details
    Browse the repository at this point in the history

Commits on May 6, 2025

  1. docs: roadmap, whats new, readme, kurtosis config (#2737)

    ## Description
    General updates to several docs across the repo:
    
    - Kurtosis Config documentation
    - Updates to roadmap and whats new doc
    - Added section on how to sponsor to README.md
    - Update Maintainers section
    - Pointing to style guide in readme
    tedim52 authored May 6, 2025
    Configuration menu
    Copy the full SHA
    157a79d View commit details
    Browse the repository at this point in the history
  2. chore(main): release 1.8.0 (#2735)

    🤖 I have created a release *beep* *boop*
    ---
    
    
    ##
    [1.8.0](1.7.2...1.8.0)
    (2025-05-06)
    
    
    ### Features
    
    * configurable fluent bit filters and parsers
    ([#2727](#2727))
    ([9f52d04](9f52d04))
    
    
    ### Bug Fixes
    
    * don't get historical enclaves for service logs completion
    ([#2636](#2636))
    ([63f5b8a](63f5b8a))
    * init remove funcs
    ([#2734](#2734))
    ([54de9c2](54de9c2))
    
    ---
    This PR was generated with [Release
    Please](https://github.com/googleapis/release-please). See
    [documentation](https://github.com/googleapis/release-please#release-please).
    kurtosisbot authored May 6, 2025
    Configuration menu
    Copy the full SHA
    4ff3dfa View commit details
    Browse the repository at this point in the history
Loading
0