-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
perf: upgrade compress package test and benchmark. #2009
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
siddhant2001
requested review from
billprovince and
joshua-goldstein
as code owners
September 25, 2023 14:33
✅ Deploy Preview for badger-docs canceled.
|
harshil-goel
approved these changes
Sep 27, 2023
Upgrade for faster/better compression: klauspost/compress@v1.12.3...v1.15.15 Use 's2' in Snappy compatible mode for faster/better Snappy (de)compression: https://github.com/klauspost/compress/tree/master/s2#blocks Should improve compression speed, and `MaxEncodedLen` is considerably less. From `n = 32 + n + n/6` to `n + ((log2(n)+7)/7)` (max 10 bytes) This change is both forward and backwards compatible, meaning output will be decompressable by older versions as well. Benchmarks. Most are very noisy and dominated by allocs. ``` benchmark old ns/op new ns/op delta BenchmarkDbGrowth-32 2387593900 2366353800 -0.89% BenchmarkIteratePrefixSingleKey/Key_lookups-32 89209 87230 -2.22% BenchmarkReadWrite/0.1,0064-32 1827 1821 -0.33% BenchmarkReadWrite/0.2,0064-32 1830 1819 -0.60% BenchmarkReadWrite/0.5,0064-32 1873 1820 -2.83% BenchmarkReadWrite/1.0,0064-32 1881 1879 -0.11% BenchmarkReadWrite/0.1,0128-32 1892 1891 -0.05% BenchmarkReadWrite/0.2,0128-32 1920 1895 -1.30% BenchmarkReadWrite/0.5,0128-32 1942 1917 -1.29% BenchmarkReadWrite/1.0,0128-32 2001 1997 -0.20% BenchmarkReadWrite/0.1,0256-32 2039 2067 +1.37% BenchmarkReadWrite/0.2,0256-32 2065 2063 -0.10% BenchmarkReadWrite/0.5,0256-32 2106 2120 +0.66% BenchmarkReadWrite/1.0,0256-32 2211 2270 +2.67% BenchmarkReadWrite/0.1,0512-32 2292 2320 +1.22% BenchmarkReadWrite/0.2,0512-32 2329 2368 +1.67% BenchmarkReadWrite/0.5,0512-32 2450 2449 -0.04% BenchmarkReadWrite/1.0,0512-32 2589 2625 +1.39% BenchmarkReadWrite/0.1,1024-32 2837 2886 +1.73% BenchmarkReadWrite/0.2,1024-32 2960 3001 +1.39% BenchmarkReadWrite/0.5,1024-32 3162 3186 +0.76% BenchmarkReadWrite/1.0,1024-32 3513 3572 +1.68% BenchmarkReadWrite/0.1,2048-32 3857 3911 +1.40% BenchmarkReadWrite/0.2,2048-32 4036 4077 +1.02% BenchmarkReadWrite/0.5,2048-32 4484 4561 +1.72% BenchmarkReadWrite/1.0,2048-32 5193 5203 +0.19% BenchmarkReadWrite/0.1,4096-32 5814 5862 +0.83% BenchmarkReadWrite/0.2,4096-32 6139 6109 -0.49% BenchmarkReadWrite/0.5,4096-32 7136 6972 -2.30% BenchmarkReadWrite/1.0,4096-32 8391 8434 +0.51% BenchmarkReadWrite/0.1,8192-32 9412 9479 +0.71% BenchmarkReadWrite/0.2,8192-32 10088 10118 +0.30% BenchmarkReadWrite/0.5,8192-32 11580 11715 +1.17% BenchmarkReadWrite/1.0,8192-32 14446 14516 +0.48% BenchmarkReadWrite/0.1,16384-32 16798 16754 -0.26% BenchmarkReadWrite/0.2,16384-32 17645 17687 +0.24% BenchmarkReadWrite/0.5,16384-32 21139 21396 +1.22% BenchmarkReadWrite/1.0,16384-32 26156 27147 +3.79% BenchmarkReadWrite/frac_0-32 194 190 -1.81% BenchmarkReadWrite/frac_1-32 168 169 +0.24% BenchmarkReadWrite/frac_2-32 171 160 -6.71% BenchmarkReadWrite/frac_3-32 183 152 -17.18% BenchmarkReadWrite/frac_4-32 131 129 -1.75% BenchmarkReadWrite/frac_5-32 122 122 +0.08% BenchmarkReadWrite/frac_6-32 117 114 -2.40% BenchmarkReadWrite/frac_7-32 97.7 93.0 -4.76% BenchmarkReadWrite/frac_8-32 79.2 68.0 -14.15% BenchmarkReadWrite/frac_9-32 54.6 59.3 +8.57% BenchmarkReadWrite/frac_10-32 6.57 8.01 +21.89% BenchmarkReadWriteMap/frac_0-32 363 369 +1.65% BenchmarkReadWriteMap/frac_1-32 344 343 -0.32% BenchmarkReadWriteMap/frac_2-32 334 338 +1.32% BenchmarkReadWriteMap/frac_3-32 345 341 -1.19% BenchmarkReadWriteMap/frac_4-32 346 350 +1.36% BenchmarkReadWriteMap/frac_5-32 354 360 +1.78% BenchmarkReadWriteMap/frac_6-32 361 357 -1.11% BenchmarkReadWriteMap/frac_7-32 376 374 -0.43% BenchmarkReadWriteMap/frac_8-32 366 364 -0.46% BenchmarkReadWriteMap/frac_9-32 312 310 -0.80% BenchmarkReadWriteMap/frac_10-32 40.1 40.0 -0.32% BenchmarkWrite-32 209 199 -4.83% BenchmarkSortedWrites/builder-32 58.4 62.1 +6.41% BenchmarkSortedWrites/skiplist-32 354 348 -1.84% BenchmarkSortedWrites/buffer-32 81.5 81.5 +0.09% BenchmarkBuilder/no_compression-32 150415843 145178786 -3.48% BenchmarkBuilder/encryption-32 202647000 201539767 -0.55% BenchmarkBuilder/snappy_compression/level_1-32 177067050 171329850 -3.24% BenchmarkBuilder/zstd_compression/level_1-32 178846817 172781467 -3.39% BenchmarkBuilder/zstd_compression/level_3-32 178101100 171115667 -3.92% BenchmarkBuilder/zstd_compression/level_15-32 179374867 174848183 -2.52% BenchmarkRead-32 658641400 483333167 -26.62% BenchmarkReadAndBuild-32 1624537000 1457130300 -10.30% BenchmarkReadMerged-32 1102582000 894604200 -18.86% BenchmarkChecksum/CRC_1024-32 68.6 68.5 -0.12% BenchmarkChecksum/xxHash64_1024-32 69.5 69.8 +0.42% BenchmarkChecksum/SHA256_1024-32 2175 2181 +0.28% BenchmarkChecksum/CRC_2048-32 128 128 +0.00% BenchmarkChecksum/xxHash64_2048-32 131 132 +0.69% BenchmarkChecksum/SHA256_2048-32 4159 4164 +0.12% BenchmarkChecksum/CRC_4096-32 250 251 +0.48% BenchmarkChecksum/xxHash64_4096-32 265 262 -1.39% BenchmarkChecksum/SHA256_4096-32 8135 8112 -0.28% BenchmarkChecksum/CRC_8192-32 499 498 -0.28% BenchmarkChecksum/xxHash64_8192-32 517 514 -0.56% BenchmarkChecksum/SHA256_8192-32 16050 16076 +0.16% BenchmarkChecksum/CRC_16384-32 986 984 -0.21% BenchmarkChecksum/xxHash64_16384-32 1016 1013 -0.30% BenchmarkChecksum/SHA256_16384-32 31963 31920 -0.13% BenchmarkChecksum/CRC_32768-32 1949 1950 +0.05% BenchmarkChecksum/xxHash64_32768-32 2016 2024 +0.40% BenchmarkChecksum/SHA256_32768-32 63541 63775 +0.37% BenchmarkChecksum/CRC_65536-32 3901 3902 +0.03% BenchmarkChecksum/xxHash64_65536-32 4028 4015 -0.32% BenchmarkChecksum/SHA256_65536-32 126903 129392 +1.96% BenchmarkChecksum/CRC_131072-32 7760 7976 +2.78% BenchmarkChecksum/xxHash64_131072-32 8030 8035 +0.06% BenchmarkChecksum/SHA256_131072-32 254342 259402 +1.99% BenchmarkChecksum/CRC_262144-32 15666 15760 +0.60% BenchmarkChecksum/xxHash64_262144-32 16080 16047 -0.21% BenchmarkChecksum/SHA256_262144-32 507193 515186 +1.58% BenchmarkChecksum/CRC_1048576-32 61978 63675 +2.74% BenchmarkChecksum/xxHash64_1048576-32 64210 64711 +0.78% BenchmarkChecksum/SHA256_1048576-32 2029004 2085432 +2.78% BenchmarkRandomRead-32 25890 18761 -27.54% BenchmarkBuffer/bytes-buffer-32 590 592 +0.32% BenchmarkBuffer/page-buffer/page-size-1024-32 164 162 -1.40% benchmark old MB/s new MB/s speedup BenchmarkBuilder/no_compression-32 553.13 573.09 1.04x BenchmarkBuilder/encryption-32 410.57 412.82 1.01x BenchmarkBuilder/snappy_compression/level_1-32 469.88 485.61 1.03x BenchmarkBuilder/zstd_compression/level_1-32 465.20 481.53 1.04x BenchmarkBuilder/zstd_compression/level_3-32 467.15 486.22 1.04x BenchmarkBuilder/zstd_compression/level_15-32 463.83 475.84 1.03x ``` Bugfix: using s2 instead of snappy
siddhant2001
force-pushed
the
siddhant/upgrade-compress2
branch
from
September 27, 2023 08:32
1953f11
to
12d48aa
Compare
siddhant2001
changed the title
WIP: compress package test and benchmark.
perf: upgrade compress package test and benchmark.
Sep 27, 2023
charithe
referenced
this pull request
in cerbos/cerbos
Sep 2, 2024
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | Type | Update | |---|---|---|---|---|---|---|---| | [github.com/Masterminds/sprig/v3](https://redirect.github.com/Masterminds/sprig) | `v3.2.3` -> `v3.3.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fMasterminds%2fsprig%2fv3/v3.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fMasterminds%2fsprig%2fv3/v3.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fMasterminds%2fsprig%2fv3/v3.2.3/v3.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fMasterminds%2fsprig%2fv3/v3.2.3/v3.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | [github.com/aws/aws-sdk-go-v2/config](https://redirect.github.com/aws/aws-sdk-go-v2) | `v1.27.30` -> `v1.27.31` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.31?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.31?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.30/v1.27.31?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2faws%2faws-sdk-go-v2%2fconfig/v1.27.30/v1.27.31?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | patch | | [github.com/bufbuild/buf](https://redirect.github.com/bufbuild/buf) | `v1.38.0` -> `v1.39.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fbufbuild%2fbuf/v1.39.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fbufbuild%2fbuf/v1.39.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fbufbuild%2fbuf/v1.38.0/v1.39.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fbufbuild%2fbuf/v1.38.0/v1.39.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | [github.com/bufbuild/protovalidate-go](https://redirect.github.com/bufbuild/protovalidate-go) | `v0.6.4` -> `v0.6.5` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fbufbuild%2fprotovalidate-go/v0.6.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fbufbuild%2fprotovalidate-go/v0.6.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fbufbuild%2fprotovalidate-go/v0.6.4/v0.6.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fbufbuild%2fprotovalidate-go/v0.6.4/v0.6.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | patch | | [github.com/cerbos/cloud-api](https://redirect.github.com/cerbos/cloud-api) | `v0.1.23` -> `v0.1.24` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fcerbos%2fcloud-api/v0.1.24?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fcerbos%2fcloud-api/v0.1.24?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fcerbos%2fcloud-api/v0.1.23/v0.1.24?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fcerbos%2fcloud-api/v0.1.23/v0.1.24?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | patch | | [github.com/dadav/helm-schema](https://redirect.github.com/dadav/helm-schema) | `4e067df` -> `f205574` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fdadav%2fhelm-schema/v0.0.0-20240831174639-f2055746722e?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fdadav%2fhelm-schema/v0.0.0-20240831174639-f2055746722e?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fdadav%2fhelm-schema/v0.0.0-20240817173722-4e067df209ea/v0.0.0-20240831174639-f2055746722e?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fdadav%2fhelm-schema/v0.0.0-20240817173722-4e067df209ea/v0.0.0-20240831174639-f2055746722e?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | digest | | [github.com/dgraph-io/badger/v4](https://redirect.github.com/dgraph-io/badger) | `v4.2.0` -> `v4.3.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fdgraph-io%2fbadger%2fv4/v4.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fdgraph-io%2fbadger%2fv4/v4.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fdgraph-io%2fbadger%2fv4/v4.2.0/v4.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fdgraph-io%2fbadger%2fv4/v4.2.0/v4.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | [github.com/fergusstrange/embedded-postgres](https://redirect.github.com/fergusstrange/embedded-postgres) | `v1.28.0` -> `v1.29.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2ffergusstrange%2fembedded-postgres/v1.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2ffergusstrange%2fembedded-postgres/v1.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2ffergusstrange%2fembedded-postgres/v1.28.0/v1.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2ffergusstrange%2fembedded-postgres/v1.28.0/v1.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | | [github.com/rs/cors](https://redirect.github.com/rs/cors) | `v1.11.0` -> `v1.11.1` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2frs%2fcors/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2frs%2fcors/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2frs%2fcors/v1.11.0/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2frs%2fcors/v1.11.0/v1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | patch | | [google.golang.org/genproto/googleapis/api](https://redirect.github.com/googleapis/go-genproto) | `4ba0660` -> `7e3bb23` | [![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20240827150818-7e3bb234dfed?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20240827150818-7e3bb234dfed?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20240823204242-4ba0660f739c/v0.0.0-20240827150818-7e3bb234dfed?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgenproto%2fgoogleapis%2fapi/v0.0.0-20240823204242-4ba0660f739c/v0.0.0-20240827150818-7e3bb234dfed?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | digest | | [google.golang.org/grpc](https://redirect.github.com/grpc/grpc-go) | `v1.65.0` -> `v1.66.0` | [![age](https://developer.mend.io/api/mc/badges/age/go/google.golang.org%2fgrpc/v1.66.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/google.golang.org%2fgrpc/v1.66.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/google.golang.org%2fgrpc/v1.65.0/v1.66.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/google.golang.org%2fgrpc/v1.65.0/v1.66.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | require | minor | --- ### Release Notes <details> <summary>Masterminds/sprig (github.com/Masterminds/sprig/v3)</summary> ### [`v3.3.0`](https://redirect.github.com/Masterminds/sprig/releases/tag/v3.3.0) [Compare Source](https://redirect.github.com/Masterminds/sprig/compare/v3.2.3...v3.3.0) #### What's Changed - Updating the Go versions used in testing by [@​mattfarina](https://redirect.github.com/mattfarina) in [https://github.com/Masterminds/sprig/pull/405](https://redirect.github.com/Masterminds/sprig/pull/405) - Change intial to initial. by [@​chrishalbert](https://redirect.github.com/chrishalbert) in [https://github.com/Masterminds/sprig/pull/391](https://redirect.github.com/Masterminds/sprig/pull/391) - Updating dependencies by [@​mattfarina](https://redirect.github.com/mattfarina) in [https://github.com/Masterminds/sprig/pull/404](https://redirect.github.com/Masterminds/sprig/pull/404) - correct value by [@​jheyduk](https://redirect.github.com/jheyduk) in [https://github.com/Masterminds/sprig/pull/376](https://redirect.github.com/Masterminds/sprig/pull/376) - Updating location of mergo by [@​mattfarina](https://redirect.github.com/mattfarina) in [https://github.com/Masterminds/sprig/pull/406](https://redirect.github.com/Masterminds/sprig/pull/406) - feature: added sha512sum function by [@​itzik-elayev](https://redirect.github.com/itzik-elayev) in [https://github.com/Masterminds/sprig/pull/400](https://redirect.github.com/Masterminds/sprig/pull/400) - docs: Add missing link to url functions by [@​carlpett](https://redirect.github.com/carlpett) in [https://github.com/Masterminds/sprig/pull/375](https://redirect.github.com/Masterminds/sprig/pull/375) - Update doc.go by [@​chey](https://redirect.github.com/chey) in [https://github.com/Masterminds/sprig/pull/369](https://redirect.github.com/Masterminds/sprig/pull/369) - Update mathf.md by [@​zzhu41](https://redirect.github.com/zzhu41) in [https://github.com/Masterminds/sprig/pull/290](https://redirect.github.com/Masterminds/sprig/pull/290) - Removing duplicate documentation by [@​mattfarina](https://redirect.github.com/mattfarina) in [https://github.com/Masterminds/sprig/pull/407](https://redirect.github.com/Masterminds/sprig/pull/407) - Updating the changelog for the 3.3.0 release by [@​mattfarina](https://redirect.github.com/mattfarina) in [https://github.com/Masterminds/sprig/pull/408](https://redirect.github.com/Masterminds/sprig/pull/408) #### New Contributors - [@​chrishalbert](https://redirect.github.com/chrishalbert) made their first contribution in [https://github.com/Masterminds/sprig/pull/391](https://redirect.github.com/Masterminds/sprig/pull/391) - [@​jheyduk](https://redirect.github.com/jheyduk) made their first contribution in [https://github.com/Masterminds/sprig/pull/376](https://redirect.github.com/Masterminds/sprig/pull/376) - [@​itzik-elayev](https://redirect.github.com/itzik-elayev) made their first contribution in [https://github.com/Masterminds/sprig/pull/400](https://redirect.github.com/Masterminds/sprig/pull/400) - [@​carlpett](https://redirect.github.com/carlpett) made their first contribution in [https://github.com/Masterminds/sprig/pull/375](https://redirect.github.com/Masterminds/sprig/pull/375) - [@​chey](https://redirect.github.com/chey) made their first contribution in [https://github.com/Masterminds/sprig/pull/369](https://redirect.github.com/Masterminds/sprig/pull/369) - [@​zzhu41](https://redirect.github.com/zzhu41) made their first contribution in [https://github.com/Masterminds/sprig/pull/290](https://redirect.github.com/Masterminds/sprig/pull/290) **Full Changelog**: Masterminds/sprig@v3.2.3...v3.3.0 </details> <details> <summary>bufbuild/buf (github.com/bufbuild/buf)</summary> ### [`v1.39.0`](https://redirect.github.com/bufbuild/buf/blob/HEAD/CHANGELOG.md#v1390---2024-08-27) [Compare Source](https://redirect.github.com/bufbuild/buf/compare/v1.38.0...v1.39.0) - Fix git input handling of relative HEAD refs without branch names. - Add `includes` key to module configurations in v2 `buf.yaml`, accepting a list of directories. - If `includes` is specified, a proto file is considered in the module only if it is in one of the directories specified. - If both `includes` and `excludes` keys are specified for a module, a proto file is considered part of this module if it is contained in any of the include paths and not in any of the exclude paths. - Allow multiple module configurations in the same v2 `buf.yaml` to have the same directory path. </details> <details> <summary>bufbuild/protovalidate-go (github.com/bufbuild/protovalidate-go)</summary> ### [`v0.6.5`](https://redirect.github.com/bufbuild/protovalidate-go/releases/tag/v0.6.5) [Compare Source](https://redirect.github.com/bufbuild/protovalidate-go/compare/v0.6.4...v0.6.5) #### What's Changed - Add `buf.gen.yaml` v2 schema example by [@​milas](https://redirect.github.com/milas) in [https://github.com/bufbuild/protovalidate-go/pull/138](https://redirect.github.com/bufbuild/protovalidate-go/pull/138) - Upgrade to support Go 1.23 by [@​rodaine](https://redirect.github.com/rodaine) in [https://github.com/bufbuild/protovalidate-go/pull/139](https://redirect.github.com/bufbuild/protovalidate-go/pull/139) - Remove Go 1.20 support by [@​rodaine](https://redirect.github.com/rodaine) in [https://github.com/bufbuild/protovalidate-go/pull/140](https://redirect.github.com/bufbuild/protovalidate-go/pull/140) - Bugfix: avoid spurious tautology pruning when dealing with certain recursive messages by [@​rodaine](https://redirect.github.com/rodaine) in [https://github.com/bufbuild/protovalidate-go/pull/142](https://redirect.github.com/bufbuild/protovalidate-go/pull/142) #### New Contributors - [@​milas](https://redirect.github.com/milas) made their first contribution in [https://github.com/bufbuild/protovalidate-go/pull/138](https://redirect.github.com/bufbuild/protovalidate-go/pull/138) **Full Changelog**: bufbuild/protovalidate-go@v0.6.4...v0.6.5 </details> <details> <summary>cerbos/cloud-api (github.com/cerbos/cloud-api)</summary> ### [`v0.1.24`](https://redirect.github.com/cerbos/cloud-api/releases/tag/v0.1.24) [Compare Source](https://redirect.github.com/cerbos/cloud-api/compare/v0.1.23...v0.1.24) [v0.1.24](https://redirect.github.com/cerbos/cloud-api/releases/tag/v0.1.24) </details> <details> <summary>dgraph-io/badger (github.com/dgraph-io/badger/v4)</summary> ### [`v4.3.0`](https://redirect.github.com/dgraph-io/badger/releases/tag/v4.3.0): Badger v4.3.0 [Compare Source](https://redirect.github.com/dgraph-io/badger/compare/v4.2.0...v4.3.0) #### What's Changed Fixes: - chore(changelog): add a missed entry in CHANGELOG for v4.2.0 by [@​mangalaman93](https://redirect.github.com/mangalaman93) in [https://github.com/dgraph-io/badger/pull/1988](https://redirect.github.com/dgraph-io/badger/pull/1988) - update README with project KVS using badger by [@​tauraamui](https://redirect.github.com/tauraamui) in [https://github.com/dgraph-io/badger/pull/1989](https://redirect.github.com/dgraph-io/badger/pull/1989) - fix edge case for watermark when index is zero by [@​mangalaman93](https://redirect.github.com/mangalaman93) in [https://github.com/dgraph-io/badger/pull/1999](https://redirect.github.com/dgraph-io/badger/pull/1999) - upgrade spf13/cobra to version v1.7.0 by [@​mangalaman93](https://redirect.github.com/mangalaman93) in [https://github.com/dgraph-io/badger/pull/2001](https://redirect.github.com/dgraph-io/badger/pull/2001) - chore: update readme by [@​joshua-goldstein](https://redirect.github.com/joshua-goldstein) in [https://github.com/dgraph-io/badger/pull/2011](https://redirect.github.com/dgraph-io/badger/pull/2011) - perf: upgrade compress package test and benchmark. by [@​siddhant2001](https://redirect.github.com/siddhant2001) in [https://github.com/dgraph-io/badger/pull/2009](https://redirect.github.com/dgraph-io/badger/pull/2009) - fix(Transactions): Fix resource consumption on empty write transaction by [@​Zach-Johnson](https://redirect.github.com/Zach-Johnson) in [https://github.com/dgraph-io/badger/pull/2018](https://redirect.github.com/dgraph-io/badger/pull/2018) - chore(deps): bump golang.org/x/net from 0.7.0 to 0.17.0 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dgraph-io/badger/pull/2017](https://redirect.github.com/dgraph-io/badger/pull/2017) - perf(compactor): optimize allocations: use buffer for priorities by [@​deff7](https://redirect.github.com/deff7) in [https://github.com/dgraph-io/badger/pull/2006](https://redirect.github.com/dgraph-io/badger/pull/2006) - fix(Transaction): discard empty transactions on CommitWith by [@​Wondertan](https://redirect.github.com/Wondertan) in [https://github.com/dgraph-io/badger/pull/2031](https://redirect.github.com/dgraph-io/badger/pull/2031) - fix(levelHandler): use lock for levelHandler sort tables instead of rlock by [@​xgzlucario](https://redirect.github.com/xgzlucario) in [https://github.com/dgraph-io/badger/pull/2034](https://redirect.github.com/dgraph-io/badger/pull/2034) - Docs: update README with project LLS using badger by [@​Boc-chi-no](https://redirect.github.com/Boc-chi-no) in [https://github.com/dgraph-io/badger/pull/2032](https://redirect.github.com/dgraph-io/badger/pull/2032) - chore: MaxTableSize has been renamed to BaseTableSize by [@​mitar](https://redirect.github.com/mitar) in [https://github.com/dgraph-io/badger/pull/2038](https://redirect.github.com/dgraph-io/badger/pull/2038) - Update CODEOWNERS by [@​ryanfoxtyler](https://redirect.github.com/ryanfoxtyler) in [https://github.com/dgraph-io/badger/pull/2043](https://redirect.github.com/dgraph-io/badger/pull/2043) - Chore(): add Stale Action by [@​ryanfoxtyler](https://redirect.github.com/ryanfoxtyler) in [https://github.com/dgraph-io/badger/pull/2070](https://redirect.github.com/dgraph-io/badger/pull/2070) - Update ristretto and refactor for use of generics by [@​paralin](https://redirect.github.com/paralin) in [https://github.com/dgraph-io/badger/pull/2047](https://redirect.github.com/dgraph-io/badger/pull/2047) - chore: Remove obsolete comment by [@​mitar](https://redirect.github.com/mitar) in [https://github.com/dgraph-io/badger/pull/2039](https://redirect.github.com/dgraph-io/badger/pull/2039) - chore(Docs): Update jQuery 3.2.1 to 3.7.1 by [@​kokizzu](https://redirect.github.com/kokizzu) in [https://github.com/dgraph-io/badger/pull/2023](https://redirect.github.com/dgraph-io/badger/pull/2023) - chore(deps): bump the go_modules group with 3 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dgraph-io/badger/pull/2074](https://redirect.github.com/dgraph-io/badger/pull/2074) - docs(): update docs path by [@​ryanfoxtyler](https://redirect.github.com/ryanfoxtyler) in [https://github.com/dgraph-io/badger/pull/2076](https://redirect.github.com/dgraph-io/badger/pull/2076) - perf: fix operation in seek by [@​harshil-goel](https://redirect.github.com/harshil-goel) in [https://github.com/dgraph-io/badger/pull/2077](https://redirect.github.com/dgraph-io/badger/pull/2077) - Add lakeFS to README.md by [@​N-o-Z](https://redirect.github.com/N-o-Z) in [https://github.com/dgraph-io/badger/pull/2078](https://redirect.github.com/dgraph-io/badger/pull/2078) - chore(): add Dependabot by [@​ryanfoxtyler](https://redirect.github.com/ryanfoxtyler) in [https://github.com/dgraph-io/badger/pull/2080](https://redirect.github.com/dgraph-io/badger/pull/2080) - chore(deps): bump golangci/golangci-lint-action from 4 to 6 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dgraph-io/badger/pull/2083](https://redirect.github.com/dgraph-io/badger/pull/2083) - chore(deps): bump actions/upload-artifact from 3 to 4 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dgraph-io/badger/pull/2081](https://redirect.github.com/dgraph-io/badger/pull/2081) - chore(deps): bump github/codeql-action from 2 to 3 by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dgraph-io/badger/pull/2082](https://redirect.github.com/dgraph-io/badger/pull/2082) - chore(deps): bump the minor group with 7 updates by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dgraph-io/badger/pull/2089](https://redirect.github.com/dgraph-io/badger/pull/2089) - Action Manager by [@​madhu72](https://redirect.github.com/madhu72) in [https://github.com/dgraph-io/badger/pull/2050](https://redirect.github.com/dgraph-io/badger/pull/2050) - chore(deps): bump golang.org/x/sys from 0.23.0 to 0.24.0 in the minor group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dgraph-io/badger/pull/2091](https://redirect.github.com/dgraph-io/badger/pull/2091) - chore(deps): bump github.com/golang/protobuf from 1.5.3 to 1.5.4 in the patch group by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dgraph-io/badger/pull/2090](https://redirect.github.com/dgraph-io/badger/pull/2090) - chore: fix some comments by [@​dufucun](https://redirect.github.com/dufucun) in [https://github.com/dgraph-io/badger/pull/2092](https://redirect.github.com/dgraph-io/badger/pull/2092) - chore(deps): bump github.com/google/flatbuffers from 1.12.1 to 24.3.25+incompatible by [@​dependabot](https://redirect.github.com/dependabot) in [https://github.com/dgraph-io/badger/pull/2084](https://redirect.github.com/dgraph-io/badger/pull/2084) CI: - ci: change cron frequency to fix ghost jobs by [@​joshua-goldstein](https://redirect.github.com/joshua-goldstein) in [https://github.com/dgraph-io/badger/pull/2010](https://redirect.github.com/dgraph-io/badger/pull/2010) - fix(CI): Update to pull_request trigger by [@​ryanfoxtyler](https://redirect.github.com/ryanfoxtyler) in [https://github.com/dgraph-io/badger/pull/2056](https://redirect.github.com/dgraph-io/badger/pull/2056) - ci/cd optimization by [@​ryanfoxtyler](https://redirect.github.com/ryanfoxtyler) in [https://github.com/dgraph-io/badger/pull/2051](https://redirect.github.com/dgraph-io/badger/pull/2051) - fix(cd): fixed cd pipeline by [@​harshil-goel](https://redirect.github.com/harshil-goel) in [https://github.com/dgraph-io/badger/pull/2093](https://redirect.github.com/dgraph-io/badger/pull/2093) - fix(cd): change name by [@​harshil-goel](https://redirect.github.com/harshil-goel) in [https://github.com/dgraph-io/badger/pull/2094](https://redirect.github.com/dgraph-io/badger/pull/2094) - fix(cd): added more debug things to cd by [@​harshil-goel](https://redirect.github.com/harshil-goel) in [https://github.com/dgraph-io/badger/pull/2095](https://redirect.github.com/dgraph-io/badger/pull/2095) - fix(cd): removing some debug items by [@​harshil-goel](https://redirect.github.com/harshil-goel) in [https://github.com/dgraph-io/badger/pull/2096](https://redirect.github.com/dgraph-io/badger/pull/2096) **Full Changelog**: dgraph-io/badger@v4.2.0...v4.3.0 </details> <details> <summary>fergusstrange/embedded-postgres (github.com/fergusstrange/embedded-postgres)</summary> ### [`v1.29.0`](https://redirect.github.com/fergusstrange/embedded-postgres/releases/tag/v1.29.0) [Compare Source](https://redirect.github.com/fergusstrange/embedded-postgres/compare/v1.28.0...v1.29.0) #### What's Changed - Update versions by [@​fergusstrange](https://redirect.github.com/fergusstrange) in [https://github.com/fergusstrange/embedded-postgres/pull/142](https://redirect.github.com/fergusstrange/embedded-postgres/pull/142) **Full Changelog**: fergusstrange/embedded-postgres@v1.28.0...v1.29.0 </details> <details> <summary>rs/cors (github.com/rs/cors)</summary> ### [`v1.11.1`](https://redirect.github.com/rs/cors/compare/v1.11.0...v1.11.1) [Compare Source](https://redirect.github.com/rs/cors/compare/v1.11.0...v1.11.1) </details> <details> <summary>grpc/grpc-go (google.golang.org/grpc)</summary> ### [`v1.66.0`](https://redirect.github.com/grpc/grpc-go/releases/tag/v1.66.0): Release 1.66.0 [Compare Source](https://redirect.github.com/grpc/grpc-go/compare/v1.65.0...v1.66.0) ### New Features - metadata: stabilize `ValueFromIncomingContext` ([#​7368](https://redirect.github.com/grpc/grpc-go/issues/7368)) - Special Thanks: [@​KarthikReddyPuli](https://redirect.github.com/KarthikReddyPuli) - client: stabilize the `WaitForStateChange` and `GetState` methods, which were previously experimental. ([#​7425](https://redirect.github.com/grpc/grpc-go/issues/7425)) - xds: Implement ADS flow control mechanism ([#​7458](https://redirect.github.com/grpc/grpc-go/issues/7458)) - See [https://github.com/grpc/grpc/issues/34099](https://redirect.github.com/grpc/grpc/issues/34099) for context. - balancer/rls: Add metrics for data cache and picker internals ([#​7484](https://redirect.github.com/grpc/grpc-go/issues/7484), [#​7495](https://redirect.github.com/grpc/grpc-go/issues/7495)) - xds: LRS load reports now include the `total_issued_requests` field. ([#​7544](https://redirect.github.com/grpc/grpc-go/issues/7544)) ### Bug Fixes - grpc: Clients now return status code INTERNAL instead of UNIMPLEMENTED when the server uses an unsupported compressor. This is consistent with the [gRPC compression spec](https://redirect.github.com/grpc/grpc/blob/master/doc/compression.md#compression-method-asymmetry-between-peers). ([#​7461](https://redirect.github.com/grpc/grpc-go/issues/7461)) - Special Thanks: [@​Gayathri625](https://redirect.github.com/Gayathri625) - transport: Fix a bug which could result in writes busy looping when the underlying `conn.Write` returns errors ([#​7394](https://redirect.github.com/grpc/grpc-go/issues/7394)) - Special Thanks: [@​veshij](https://redirect.github.com/veshij) - client: fix race that could lead to orphaned connections and associated resources. ([#​7390](https://redirect.github.com/grpc/grpc-go/issues/7390)) - xds: use locality from the connected address for load reporting with pick_first ([#​7378](https://redirect.github.com/grpc/grpc-go/issues/7378)) - without this fix, if a priority contains multiple localities with pick_first, load was reported for the wrong locality - client: prevent hanging during ClientConn.Close() when the network is unreachable ([#​7540](https://redirect.github.com/grpc/grpc-go/issues/7540)) ### Performance Improvements - transport: double buffering is avoided when using an http connect proxy and the target server waits for client to send the first message. ([#​7424](https://redirect.github.com/grpc/grpc-go/issues/7424)) - codec: Implement a new `Codec` which uses buffer recycling for encoded message ([#​7356](https://redirect.github.com/grpc/grpc-go/issues/7356)) - introduce a `mem` package to facilitate buffer reuse ([#​7432](https://redirect.github.com/grpc/grpc-go/issues/7432)) - Special Thanks: [@​PapaCharlie](https://redirect.github.com/PapaCharlie) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Monday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/cerbos/cerbos). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC41Ni4wIiwidXBkYXRlZEluVmVyIjoiMzguNTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiYXJlYS9kZXBlbmRlbmNpZXMiLCJib3RzIiwia2luZC9jaG9yZSJdfQ==--> --------- Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Signed-off-by: Charith Ellawala <[email protected]> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Charith Ellawala <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Rebased #1880 to the current main. Benchmarking in progress.
benchstat
comparison of all benchmarks with and without the upgraded compress package.: