Skip to content

Commit

Permalink
Update to version v3.26.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MadSchemas committed Jun 21, 2024
1 parent 357bcbe commit 043c701
Show file tree
Hide file tree
Showing 202 changed files with 5,839 additions and 2,409 deletions.
2 changes: 1 addition & 1 deletion bindings/consts.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package bindings

const CInt32Max = int(^uint32(0) >> 1)

const ReindexerVersion = "v3.25.0"
const ReindexerVersion = "v3.26.0"

// public go consts from type_consts.h and reindexer_ctypes.h
const (
Expand Down
287 changes: 154 additions & 133 deletions changelog.md

Large diffs are not rendered by default.

5 changes: 3 additions & 2 deletions clang-tidy/.clang-tidy
Original file line number Diff line number Diff line change
Expand Up @@ -13,16 +13,17 @@ Checks: 'clang-diagnostic-*,
-bugprone-assignment-in-if-condition,
-bugprone-parent-virtual-call,
-bugprone-integer-division,
-bugprone-unhandled-self-assignment
-bugprone-unhandled-self-assignment,
-bugprone-inc-dec-in-conditions,
-clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling,
-performance-no-int-to-ptr,
-performance-enum-size,
-performance-avoid-endl'
# clang-analyzer-security.insecureAPI.DeprecatedOrUnsafeBufferHandling - too many unnecessary warning in vendored code
# performance-no-int-to-ptr - consider how to fix this
# bugprone-macro-parentheses - consider fixing
WarningsAsErrors: '*'
HeaderFilterRegex: '.*(?<!\.pb\.h)$'
AnalyzeTemporaryDtors: false
FormatStyle: none
CheckOptions:
- { key: performance-unnecessary-value-param.AllowedTypes, value: 'span;IdType;ReplicationStatsCollector;KeyValueType' }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,10 +251,10 @@ def main():
action='store_true', help='allow alpha checkers from '
'clang-analyzer.')
parser.add_argument('-clang-tidy-binary', metavar='PATH',
default='clang-tidy-17',
default='clang-tidy-18',
help='path to clang-tidy binary')
parser.add_argument('-clang-apply-replacements-binary', metavar='PATH',
default='clang-apply-replacements-17',
default='clang-apply-replacements-18',
help='path to clang-apply-replacements binary')
parser.add_argument('-checks', default=None,
help='checks filter, when not specified, use clang-tidy '
Expand Down
Loading

0 comments on commit 043c701

Please sign in to comment.