8000 Comparing v1.62.0...v1.63.0 · valyala/fasthttp · GitHub
[go: up one dir, main page]

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: valyala/fasthttp
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.62.0
Choose a base ref
...
head repository: valyala/fasthttp
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.63.0
Choose a head ref
  • 11 commits
  • 22 files changed
  • 5 contributors

Commits on May 9, 2025

  1. chore(deps): bump securego/gosec from 2.22.3 to 2.22.4 (#2007)

    Bumps [securego/gosec](https://github.com/securego/gosec) from 2.22.3 to 2.22.4.
    - [Release notes](https://github.com/securego/gosec/releases)
    - [Changelog](https://github.com/securego/gosec/blob/master/.goreleaser.yml)
    - [Commits](securego/gosec@v2.22.3...v2.22.4)
    
    ---
    updated-dependencies:
    - dependency-name: securego/gosec
      dependency-version: 2.22.4
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored May 9, 2025
    Configuration menu
    Copy the full SHA
    8412015 View commit details
    Browse the repository at this point in the history
  2. fix: removed resolved issue link from readme file, issue no longer ex…

    …ists (#2008)
    
    Co-authored-by: Veeral Kansara <veeral.kansara@brightmountainmedia.com>
    viralkansarav and Veeral Kansara authored May 9, 2025
    Configuration menu
    Copy the full SHA
    d856840 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2025

  1. Remove unused file

    erikdubbelboer committed May 15, 2025
    Configuration menu
    Copy the full SHA
    2466344 View commit details
    Browse the repository at this point in the history

Commits on May 18, 2025

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

Commits on May 20, 2025

  1. Removed old information from main documentation as these functions do…

    …es not exist (#2012)
    
    * fix: removed resolved issue link from readme file, issue no longer exists
    
    * chore: removed wrong information from main documentation as these functions does not exist
    
    * chore: removed old information from main documentation as these functions does not exist
    
    ---------
    
    Co-authored-by: Veeral Kansara <veeral.kansara@brightmountainmedia.com>
    viralkansarav and Veeral Kansara authored May 20, 2025
    Configuration menu
    Copy the full SHA
    74f3d4c View commit details
    Browse the repository at this point in the history

Commits on May 24, 2025

  1. Proposal : To add Unsafe Zero-Allocation Conversions Sections in main…

    … documentation (#2013)
    
    * fix: removed resolved issue link from readme file, issue no longer exists
    
    * chore: removed wrong information from main documentation as these functions does not exist
    
    * chore: removed old information from main documentation as these functions does not exist
    
    * chore: added unsafe zero-allocation conversion section
    
    ---------
    
    Co-authored-by: Veeral Kansara <veeral.kansara@brightmountainmedia.com>
    viralkansarav and Veeral Kansara authored May 24, 2025
    Configuration menu
    Copy the full SHA
    46ae933 View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2025

  1. chore(deps): bump golang.org/x/net from 0.40.0 to 0.41.0 (#2018)

    Bumps [golang.org/x/net](https://github.com/golang/net) from 0.40.0 to 0.41.0.
    - [Commits](golang/net@v0.40.0...v0.41.0)
    
    ---
    updated-dependencies:
    - dependency-name: golang.org/x/net
      dependency-version: 0.41.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 6, 2025
    Configuration menu
    Copy the full SHA
    75d2192 View commit details
    Browse the repository at this point in the history

Commits on Jun 15, 2025

  1. Drop support before go1.20 (#2022)

    We still had old implementations of s2b and b2s that didn't require
    unsafe.StringData and unsafe.SliceData that were added in go1.20. Since
    we don't support go1.20 anymore we can drop these functions.
    erikdubbelboer authored Jun 15, 2025
    Configuration menu
    Copy the full SHA
    28ebbd9 View commit details
    Browse the repository at this point in the history

Commits on Jun 17, 2025

  1. chore(deps): bump securego/gosec from 2.22.4 to 2.22.5 (#2025)

    Bumps [securego/gosec](https://github.com/securego/gosec) from 2.22.4 to 2.22.5.
    - [Release notes](https://github.com/securego/gosec/releases)
    - [Changelog](https://github.com/securego/gosec/blob/master/.goreleaser.yml)
    - [Commits](securego/gosec@v2.22.4...v2.22.5)
    
    ---
    updated-dependencies:
    - dependency-name: securego/gosec
      dependency-version: 2.22.5
      dependency-type: direct:production
      update-type: version-update:semver-patch
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 17, 2025
    Configuration menu
    Copy the full SHA
    641dd96 View commit details
    Browse the repository at this point in the history

Commits on Jun 19, 2025

  1. Implement io.StringWriter on some more types (#2023)

    In theory this can optimize some code paths where a string first needs
    to be converted to a []byte to use the normal Write method. By
    implementing WriteString this extra copy isn't needed. Internall we
    don't do the copy and just use s2b instead.
    erikdubbelboer authored Jun 19, 2025
    Configuration menu
    Copy the full SHA
    d356cac View commit details
    Browse the repository at this point in the history

Commits on Jun 24, 2025

  1. chore(deps): bump github.com/andybalholm/brotli from 1.1.1 to 1.2.0 (#…

    …2029)
    
    Bumps [github.com/andybalholm/brotli](https://github.com/andybalholm/brotl
    63DB
    i) from 1.1.1 to 1.2.0.
    - [Commits](andybalholm/brotli@v1.1.1...v1.2.0)
    
    ---
    updated-dependencies:
    - dependency-name: github.com/andybalholm/brotli
      dependency-version: 1.2.0
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Jun 24, 2025
    Configuration menu
    Copy the full SHA
    8b512b7 View commit details
    Browse the repository at this point in the history
Loading
0