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: ziijam/logstash-output-http
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: main
Choose a base ref
...
head repository: logstash-plugins/logstash-output-http
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 8 commits
  • 5 files changed
  • 4 contributors

Commits on Sep 1, 2023

  1. Standardize SSL settings (logstash-plugins#140)

    This commit standardizes the SSL settings by bumping the logstash-mixin-http_client version to >= 7.3.0, which:
    
    - Adds standardized SSL settings and deprecates their non-standard counterparts. Deprecated settings will continue to work, and will provide pipeline maintainers with guidance toward using their standardized counterparts
    - Adds new ssl_truststore_path, ssl_truststore_password, and ssl_truststore_type settings for configuring SSL-trust using a PKCS-12 or JKS trust store, deprecating their truststore, truststore_password, and truststore_type counterparts.
    - Adds new ssl_certificate_authorities setting for configuring SSL-trust using a PEM-formatted list of certificate authorities, deprecating its cacert counterpart.
    Adds new ssl_keystore_path, ssl_keystore_password, and ssl_keystore_type settings for configuring SSL-identity using a PKCS-12 or JKS key store, deprecating their keystore, keystore_password, and keystore_type counterparts.
    - Adds new ssl_certificate and ssl_key settings for configuring SSL-identity using a PEM-formatted certificate/key pair, deprecating their client_cert and client_key counterparts.
    - Adds the ssl_cipher_suites option
    edmocosta authored Sep 1, 2023
    Configuration menu
    Copy the full SHA
    e046333 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

  1. Configuration menu
    Copy the full SHA
    0fa6e39 View commit details
    Browse the repository at this point in the history

Commits on Jun 4, 2024

  1. Configuration menu
    Copy the full SHA
    e746509 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2024

  1. Add ssl_enabled option (logstash-plugins#144)

    This commit added the `ssl_enabled` option by bumping the `logstash-mixin-http_client` to >= 7.4.0
    edmocosta authored Jun 19, 2024
    Configuration menu
    Copy the full SHA
    5cab162 View commit details
    Browse the repository at this point in the history

Commits on Nov 14, 2024

  1. Fixed unit tests on Logstash 8.x (logstash-plugins#146)

    Unit tests were failing due to a new requirement to include the `rackup`
    gem. This commit includes the version of `rackup` prior to the Fiber based rework,
    as that was causing test failures.
    
    This commit also ensures that the request body is rewound before being read in tests.
    robbavey authored Nov 14, 2024
    Configuration menu
    Copy the full SHA
    7f4d9dd View commit details
    Browse the repository at this point in the history

Commits on Nov 21, 2024

  1. Mark deprecated SSL settings as obsolete (logstash-plugins#147)

    * Mark deprecated SSL settings as obsolete
    
    This commit marks the following SSL settings as obsolete:
    
    'cacert', 'client_cert', 'client_key', 'keystore', 'truststore',
    'keystore_password', 'truststore_password', 'keystore_type' and
    'truststore_type'.
    robbavey authored Nov 21, 2024
    Configuration menu
    Copy the full SHA
    2fae93e View commit details
    Browse the repository at this point in the history

Commits on Jan 15, 2025

  1. Update index.asciidoc

    yaauie authored Jan 15, 2025
    Configuration menu
    Copy the full SHA
    b9e7173 View commit details
    Browse the repository at this point in the history
  2. Merge pull request logstash-plugins#150 from logstash-plugins/yaauie-…

    …patch-1
    
    Docs: clarify that `ssl_certificate_authorities` takes at-most-one value
    yaauie authored Jan 15, 2025
    Configuration menu
    Copy the full SHA
    a59fad7 View commit details
    Browse the repository at this point in the history
Loading