Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release/3.2.1 #430

Draft
wants to merge 9 commits into
base: master
Choose a base branch
from
Draft

Release/3.2.1 #430

wants to merge 9 commits into from

Commits on Apr 10, 2024

  1. Return Content-Type for POST requests

    Previously `Content-Type` was not explicitly returned for POST requests.
    This would result in errors being logged for javascript tracker in Firefox[1].
    Now, the behavior is rolled back to previous where collector would return
    `Content-Type` header for these requests.
    
    Addresses [BCPF-1102] and [PDP-1110]
    
    ---
    
    1 - https://bugzilla.mozilla.org/show_bug.cgi?id=884693
    peel committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    59438a4 View commit details
    Browse the repository at this point in the history

Commits on May 12, 2024

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

Commits on Aug 26, 2024

  1. Bump azure-identity to 1.13.2

    adatzer committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    fdd19b0 View commit details
    Browse the repository at this point in the history
  2. Bump aws sdk to 1.12.769

    adatzer committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    ffff1e0 View commit details
    Browse the repository at this point in the history

Commits on Sep 4, 2024

  1. Remove body read timeout feature

    The goal of the feature was to prevent long body reads in GCP, this however does
    not prevent the slow incoming connection handling at the framework level.
    Therefore, as this adds unnecessary complexity with possible negative
    performance impact, the feature is removed.
    
    The configuration parameter is no longer used, but can remain as is.
    peel committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    548aaf6 View commit details
    Browse the repository at this point in the history
  2. Disable timeouts on healthcheck calls

    Currently, healthchecks reside behind the same timeout settings as any other
    endpoint. We observed that when autoscaling under massive load, it is possible
    for collector to be taken down because of long health check responses.
    Which previously did not happen. We therefore move healthchecks above the
    timeout middleware to return to previous behavior.
    Additionally, this allows us to set arbitrarily short (or long) response times
    for the regular endpoints when necessary.
    
    ---
    
    Part of [PDP-1408].
    peel committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    314e128 View commit details
    Browse the repository at this point in the history
  3. Extend default timeouts to match upstream defaults

    The reference defaults should be less strict and match the settings we define
    upstream.
    peel committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    3be22e4 View commit details
    Browse the repository at this point in the history
  4. Explicitly return 408 when timeout is hit

    Previously, we would return 503 Service Unavailable, suggesting that failures
    should not be retried and leading to confusion with early timeout being hit.
    Now, we return 408 Request Timeout which is more explicit and easier to monitor.
    peel committed Sep 4, 2024
    Configuration menu
    Copy the full SHA
    202a937 View commit details
    Browse the repository at this point in the history

Commits on Sep 13, 2024

  1. Prepare for 3.2.1 release #FIXME

    peel committed Sep 13, 2024
    Configuration menu
    Copy the full SHA
    2375edf View commit details
    Browse the repository at this point in the history