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: etcd-io/bbolt
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4.0
Choose a base ref
...
head repository: etcd-io/bbolt
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.4.1
Choose a head ref
  • 19 commits
  • 36 files changed
  • 6 contributors

Commits on Feb 7, 2025

  1. Update version to 1.4.0

    Signed-off-by: Benjamin Wang <[email protected]>
    ahrtr committed Feb 7, 2025
    Configuration menu
    Copy the full SHA
    0fb5f62 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #895 from ahrtr/version_20250207

    [1.4] Update version to 1.4.0
    ahrtr authored Feb 7, 2025
    Configuration menu
    Copy the full SHA
    f61dee2 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2025

  1. Fix debug sync log line

    Signed-off-by: Ivan Valdes <[email protected]>
    ivanvc authored and k8s-infra-cherrypick-robot committed Feb 11, 2025
    Configuration menu
    Copy the full SHA
    010ad49 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #905 from k8s-infra-cherrypick-robot/cherry-pick-9…

    …04-to-release-1.4
    
    [release-1.4] Fix debug sync log line
    ahrtr authored Feb 11, 2025
    Configuration menu
    Copy the full SHA
    8d40c44 View commit details
    Browse the repository at this point in the history

Commits on Mar 9, 2025

  1. Bump release 1.4 go toolchain to v1.23.7

    Signed-off-by: tcchawla <[email protected]>
    tcchawla committed Mar 9, 2025
    Configuration menu
    Copy the full SHA
    396ea5e View commit details
    Browse the repository at this point in the history
  2. Merge pull request #921 from tcchawla/release-1.4-bump-go-to-1.23.7

    [1.4] Bump go toolchain to v1.23.7
    ahrtr authored Mar 9, 2025
    Configuration menu
    Copy the full SHA
    4598e96 View commit details
    Browse the repository at this point in the history

Commits on Apr 8, 2025

  1. bump go 1.23.8

    Signed-off-by: joshjms <[email protected]>
    joshjms committed Apr 8, 2025
    Configuration menu
    Copy the full SHA
    f6c7aeb View commit details
    Browse the repository at this point in the history
  2. Merge pull request #938 from joshjms/release-1.4

    [release-1.4] Bump go to 1.23.8
    ahrtr authored Apr 8, 2025
    Configuration menu
    Copy the full SHA
    b49ff33 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2025

  1. Clarify the effect of InitialMmapSize on Windows platform

    Signed-off-by: Benjamin Wang <[email protected]>
    ahrtr committed Apr 9, 2025
    Configuration menu
    Copy the full SHA
    1d47668 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #943 from ahrtr/1.4_initial_mmap_size_20240409

    [release-1.4] Clarify the effect of InitialMmapSize on Windows platform
    ahrtr authored Apr 9, 2025
    Configuration menu
    Copy the full SHA
    9cc5602 View commit details
    Browse the repository at this point in the history

Commits on May 28, 2025

  1. [release-1.4] Bump Go to 1.23.9

    Signed-off-by: Mustafa Elbehery <[email protected]>
    Elbehery committed May 28, 2025
    Configuration menu
    Copy the full SHA
    219ce53 View commit details
    Browse the repository at this point in the history

Commits on May 29, 2025

  1. Merge pull request #957 from Elbehery/1.4_20250507-bump-go-1.23.9

    [release-1.4] Bump Go to 1.23.9
    ahrtr authored May 29, 2025
    Configuration menu
    Copy the full SHA
    cc41cbb View commit details
    Browse the repository at this point in the history

Commits on Jun 6, 2025

  1. db: drop unused txs list

    Seems like it was more useful before 263e75d,
    but now it's only used for statistics which can easily be managed in a
    different way. I see no other valid purposes for this list, a reference can
    have some value for GC, but if DB user loses a reference to transaction that
    is not closed there is not much DB can do. This improves ConcurrentView test
    from
    
    workers samples min             avg             50%             80%             90%             max
    1       10      49.323µs        974.287µs       1.068978ms      1.112882ms      1.131938ms      1.131938ms
    10      100     32.592µs        685.315µs       980.5µs         1.125385ms      1.137678ms      1.169789ms
    100     1000    31.49µs         219.084µs       77.427µs        353.651µs       656.916µs       1.785808ms
    1000    10000   30.668µs        1.639366ms      99.128µs        3.086665ms      5.031354ms      16.315849ms
    10000   100000  30.818µs        40.893475ms     36.963667ms     78.650583ms     111.553136ms    302.412177ms
    
    to
    
    workers samples min             avg             50%             80%             90%             max
    1       10      78.358µs        964.847µs       1.059159ms      1.073256ms      1.07551ms       1.07551ms
    10      100     32.802µs        304.922µs       80.924µs        674.54µs        1.069298ms      1.220625ms
    100     1000    30.758µs        304.541µs       64.192µs        397.094µs       1.101991ms      2.183302ms
    1000    10000   30.558µs        1.05711ms       92.426µs        2.111896ms      3.317894ms      11.790014ms
    10000   100000  30.548µs        10.98898ms      90.742µs        21.740659ms     33.020076ms     135.33094ms
    
    Signed-off-by: Roman Khimov <[email protected]>
    roman-khimov committed Jun 6, 2025
    Configuration menu
    Copy the full SHA
    7e20345 View commit details
    Browse the repository at this point in the history

Commits on Jun 9, 2025

  1. Merge pull request #969 from nspcc-dev/drop-unused-txs

    db: drop unused txs list
    ahrtr authored Jun 9, 2025
    Configuration menu
    Copy the full SHA
    f33bb13 View commit details
    Browse the repository at this point in the history
  2. Revert "Merge pull request #969 from nspcc-dev/drop-unused-txs"

    This reverts commit f33bb13, reversing
    changes made to cc41cbb.
    
    Signed-off-by: Mustafa Elbehery <[email protected]>
    Elbehery committed Jun 9, 2025
    Configuration menu
    Copy the full SHA
    2b74b9b View commit details
    Browse the repository at this point in the history

Commits on Jun 10, 2025

  1. Merge pull request #974 from Elbehery/20250609-revert-drop-unused-txs…

    …-list
    
    [release-1.4] Revert "Merge pull request #969 from nspcc-dev/drop-unused-txs"
    ahrtr authored Jun 10, 2025
    Configuration menu
    Copy the full SHA
    5fa0ab8 View commit details
    Browse the repository at this point in the history
  2. Move MaxMapSize and MaxAllocSize into internal common

    Signed-off-by: Benjamin Wang <[email protected]>
    ahrtr committed Jun 10, 2025
    Configuration menu
    Copy the full SHA
    11299e2 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #978 from ahrtr/20250610_panick_1.4

    [release-1.4] Move MaxMapSize and MaxAllocSize into internal common
    ahrtr authored Jun 10, 2025
    Configuration menu
    Copy the full SHA
    3b994bd View commit details
    Browse the repository at this point in the history
  4. Bump version to 1.4.1

    Signed-off-by: Benjamin Wang <[email protected]>
    ahrtr committed Jun 10, 2025
    Configuration menu
    Copy the full SHA
    b0a36d5 View commit details
    Browse the repository at this point in the history
Loading