-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
126127: go.mod: bump Pebble to 24750442d372 r=RaduBerinde a=RaduBerinde Changes: * [`24750442`](cockroachdb/pebble@24750442) base: rename Trailer to InternalKeyTrailer * [`5fa5cb34`](cockroachdb/pebble@5fa5cb34) block: move ValuePrefix * [`e11f33ff`](cockroachdb/pebble@e11f33ff) sstable/block: clean up cache.Value and BufferPool union * [`0407f2fc`](cockroachdb/pebble@0407f2fc) sstable/block: add Trailer type * [`55acdee5`](cockroachdb/pebble@55acdee5) sstable/block: move Checksummer, ChecksumType * [`7df6f21a`](cockroachdb/pebble@7df6f21a) Revert "cmd/pebble: use zstd in Pebble nightly benchmarks" * [`8ba76258`](cockroachdb/pebble@8ba76258) sstable/block: new package * [`a6bf94c3`](cockroachdb/pebble@a6bf94c3) invariants: add Sometimes * [`cab9f08d`](cockroachdb/pebble@cab9f08d) Makefile: add gen-bazel target * [`1c9e33e1`](cockroachdb/pebble@1c9e33e1) db: fix TestDBCompactionCrash on Windows * [`ff83363e`](cockroachdb/pebble@ff83363e) base: add SeqNum type * [`90d691ed`](cockroachdb/pebble@90d691ed) sstable: wrap raw fragment iterators with checkers * [`34008b1e`](cockroachdb/pebble@34008b1e) tool: use DeepClone instead of ShallowClone * [`fdf0d95a`](cockroachdb/pebble@fdf0d95a) keyspan: copy Suffix/Value in CopyFrom * [`bb601903`](cockroachdb/pebble@bb601903) ssstable: temporarily disable reuse of fragment iterators * [`3fd1c0e4`](cockroachdb/pebble@3fd1c0e4) github: don't use -v flag for windows test run * [`a654bd3e`](cockroachdb/pebble@a654bd3e) batchrepr: use binfmt in tests * [`327334b2`](cockroachdb/pebble@327334b2) internal/binfmt: new package * [`09263fed`](cockroachdb/pebble@09263fed) internal: use `inf` in InternalKey.String * [`32a6b99f`](cockroachdb/pebble@32a6b99f) sstable: fix double close of fragmentBlockIter Release note: none. Epic: none. 126199: release: bump version to v24.2.0-alpha.1 r=andyyang890 a=rail Epic: none Release note: None 126207: github: run check-pebble-dep twice a week r=RaduBerinde a=RaduBerinde This commit adds a github action workflow to run `check-pebble-dep.sh` twice a week, which will automatically file issues if we forget to bump dependencies on release branches. Epic: none Release note: None Co-authored-by: Radu Berinde <[email protected]> Co-authored-by: Rail Aliiev <[email protected]>
- Loading branch information
Showing
18 changed files
with
54 additions
and
35 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Check Pebble dep | ||
on: | ||
schedule: | ||
- cron: '0 8 * * 0,3' # Every Sun and Wed at 8:00 UTC | ||
|
||
jobs: | ||
check-pebble-dep: | ||
runs-on: ubuntu-latest | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
- name: Check Pebble deps | ||
shell: bash | ||
run: scripts/check-pebble-dep.sh |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -1683,10 +1683,10 @@ def go_deps(): | |
patches = [ | ||
"@com_github_cockroachdb_cockroach//build/patches:com_github_cockroachdb_pebble.patch", | ||
], | ||
sha256 = "7724a8c27e86c0afd6b15322fec97b0b0fd3c04d142468a19ebad33ffe4db4d4", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20240620170852-1b880b3441f2", | ||
sha256 = "979d7861efb7dfd0e769f3f18da9856e6480505208cd50fe25b0f1c2d125d167", | ||
strip_prefix = "github.com/cockroachdb/[email protected]20240625162254-24750442d372", | ||
urls = [ | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20240620170852-1b880b3441f2.zip", | ||
"https://storage.googleapis.com/cockroach-godeps/gomod/github.com/cockroachdb/pebble/com_github_cockroachdb_pebble-v0.0.0-20240625162254-24750442d372.zip", | ||
], | ||
) | ||
go_repository( | ||
|
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v24.2.0-alpha.00000000 | ||
v24.2.0-alpha.1 |
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
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
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
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
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
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
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
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
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
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
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
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