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

chore: merge from develop #224

Merged
merged 38 commits into from
Aug 5, 2024
Merged
Changes from 1 commit
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
98c7971
Merge pull request #117 from bytedance/main
zhangyunhao116 Jan 18, 2022
1372042
chore(ci): fix feishu notification (#118)
SilverRainZ Jan 18, 2022
0b4f238
perf(fastrand): optimize Read (#123)
zhangyunhao116 Mar 23, 2022
c38fb59
fix typos (#126)
doaspx Apr 1, 2022
65bf48f
optimize: use bits.Len64 instead of bsr (#129)
Hchenn Apr 13, 2022
87ba34a
feat: support change min/max gc percent limit (#131)
joway Apr 24, 2022
79e6caf
feat(gopool): gopool prints log only when panicHandler is nil (#133)
crimson-gao Apr 26, 2022
d1878f6
fix(xxhash3): support arm64 (#135)
zhangyunhao116 May 9, 2022
b9c1c36
feat(gopool): Pool support WorkerCount() (#137)
lvsz1 May 19, 2022
665b4f2
fix(lscq): move data escape to heap (#140)
zhangyunhao116 May 31, 2022
9d6d3df
fix(metainfo): fix value override by append (#142)
lsjbd Jun 23, 2022
984d38a
fix some typos (#148)
cuishuang Jul 28, 2022
4820298
fix: fix xxhash3 data race (#149)
HuangHongkai Aug 1, 2022
b879a72
fix logger vararg bug (#139)
Andello Aug 17, 2022
beb9000
feat: add RangePersistentValues (#151)
caimufu Aug 24, 2022
48a13c0
fix(skipmap): add missing return in Store (#158)
zhangyunhao116 Oct 9, 2022
a5420d7
feat(lscq): add arm64 support (#152)
kabu1204 Oct 11, 2022
65bdb4b
chore: fix gctuner tests (#157)
joway Oct 25, 2022
1c5718b
feat: generate the level lazily in LoadOrStore (#159)
zhangyunhao116 Oct 28, 2022
68358b8
docs: fix typo of README-CN.md (#161)
Nov 22, 2022
0b68768
feature(metainfo): filter out invalid key-value pairs when converted …
lsjbd Feb 24, 2023
5f61dd1
chore: revert unnecessary dependency change in last commit (#173)
lsjbd Mar 20, 2023
a00d805
feat(metainfo): add WithValues and WithPersistentValues for batch wit…
wzekin Mar 24, 2023
343ae5f
fix(zset): fix wrong func name (#168)
SilverRainZ Apr 18, 2023
7f5f1de
optimise(gopool): no cap by default (#178)
joway May 12, 2023
a129727
chore: downward compatibility for go1.15 (#180)
joway May 31, 2023
614d0af
fix(metainfo): old kvs missed after `WithValues()` (#186)
AsterDY Jul 28, 2023
6e071b2
chore: add owner for channel lib (#197)
joway Dec 19, 2023
a5eedbe
feat: safe and self-adaptive channel (#196)
joway Dec 19, 2023
5e26950
feat: add GetBackwardValueToSend api to get a single backward value t…
jayantxie Feb 2, 2024
21fc7a1
feat: support fastrand in Go 1.22 (#206)
NX-Official Mar 15, 2024
fefc805
perf: metainfo reduce mallocgc (#199)
joway Apr 19, 2024
197ded9
feat: optimize make bytes to reduce memclr cost (#209)
jayantxie May 7, 2024
01b2cbc
fix: channel consume left data after close (#211)
joway May 14, 2024
5df24c0
feat: add span cache (#213)
joway May 31, 2024
a03554c
feat: add GetValueToMap that sets value to the input map (#212)
ppzqh Jul 11, 2024
4d9cac1
chore: fix all unit test ci (#222)
joway Aug 2, 2024
4f14cd9
chore: rm useless and unstable tests codes (#223)
joway Aug 5, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore: downward compatibility for go1.15 (#180)
joway authored May 31, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit a129727683172f57dcc27014e82ed8a360f294e4
2 changes: 1 addition & 1 deletion .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -48,7 +48,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.15

- uses: actions/cache@v2
with:
2 changes: 1 addition & 1 deletion .github/workflows/pr-benchdiff.yml
Original file line number Diff line number Diff line change
@@ -84,7 +84,7 @@ jobs:
- name: Setup go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.15
- name: Benchdiff
uses: WillAbides/[email protected]
id: diff
2 changes: 1 addition & 1 deletion .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
@@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.15

- uses: actions/cache@v2
with:
2 changes: 1 addition & 1 deletion .github/workflows/push-check.yml
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
go-version: 1.15

- uses: actions/cache@v2
with:
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
module github.com/bytedance/gopkg

go 1.16
go 1.15

require (
github.com/stretchr/testify v1.7.0
golang.org/x/net v0.0.0-20221014081412-f15817d10f9b
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
golang.org/x/sys v0.0.0-20221010170243-090e33056c14
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10
)
7 changes: 1 addition & 6 deletions go.sum
Original file line number Diff line number Diff line change
@@ -10,13 +10,8 @@ golang.org/x/net v0.0.0-20221014081412-f15817d10f9b/go.mod h1:YDH+HFinaLZZlnHAfS
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ=
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220110181412-a018aaa089fe h1:W8vbETX/n8S6EmY0Pu4Ix7VvpsJUESTwl0oCK8MJOgk=
golang.org/x/sys v0.0.0-20220110181412-a018aaa089fe/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10 h1:WIoqL4EROvwiPdUtaip4VcDdpZ4kha7wBWZrbVKCIZg=
golang.org/x/sys v0.0.0-20220728004956-3c1f35247d10/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20220907062415-87db552b00fd h1:AZeIEzg+8RCELJYq8w+ODLVxFgLMMigSwO/ffKPEd9U=
golang.org/x/sys v0.0.0-20220907062415-87db552b00fd/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/sys v0.0.0-20221010170243-090e33056c14 h1:k5II8e6QD8mITdi+okbbmR/cIyEbeXLBhy5Ha4nevyc=
golang.org/x/sys v0.0.0-20221010170243-090e33056c14/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
golang.org/x/text v0.3.7 h1:olpwvP2KacW1ZWvsR7uQhoyTYvKAupfQrRGBFM352Gk=
golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=