Skip to content

Commit 4d671a5

Browse files
committed
Merge branch 'release/0.3.1'
2 parents b4da8f6 + 9d60a40 commit 4d671a5

File tree

331 files changed

+28014
-1096
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

331 files changed

+28014
-1096
lines changed

.clang-format

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ DerivePointerAlignment: true
5656
FixNamespaceComments: true
5757
IncludeBlocks: Preserve
5858
# IndentCaseBlocks: false
59-
IndentCaseLabels: true
59+
IndentCaseLabels: false
6060
# IndentExternBlock: NoIndent
6161
IndentGotoLabels: false
6262
IndentPPDirectives: None
@@ -72,7 +72,7 @@ SortIncludes: true
7272
SortUsingDeclarations: true
7373
SpaceAfterCStyleCast: false
7474
SpaceAfterLogicalNot: false
75-
SpaceAfterTemplateKeyword: false
75+
SpaceAfterTemplateKeyword: true
7676
# SpaceAroundPointerQualifiers: After
7777
SpaceBeforeAssignmentOperators: true
7878
SpaceBeforeCpp11BracedList: false

.clang-tidy

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,24 @@
1-
Checks: 'clang-diagnostic-*,clang-analyzer-*,-*,cert-*,concurrency-*,cppcoreguidelines-*,hicpp-*,misc-*,modernize-,performance-*,portability-*,readability-,-misc-unused-parameters'
2-
WarningsAsErrors: ''
3-
HeaderFilterRegex: ''
1+
Checks: >
2+
-*,
3+
cert-*,
4+
clang-analyzer-*,
5+
clang-diagnostic-*,
6+
concurrency-*,
7+
cppcoreguidelines-*,
8+
hicpp-*,
9+
misc-*,
10+
modernize-,
11+
performance-*,
12+
portability-*,
13+
readability-*,
14+
-misc-unused-parameters,
15+
-readability-function-cognitive-complexity,
16+
-readability-identifier-length,
17+
-readability-identifier-naming,
18+
-readability-magic-numbers,
19+
-readability-redundant-access-specifiers,
20+
WarningsAsErrors: ""
21+
HeaderFilterRegex: "(lib/|linux/|tests/|tools/|windows/).*\\.hxx$"
422
AnalyzeTemporaryDtors: false
523
FormatStyle: file
624
User: shadowfax
@@ -66,7 +84,7 @@ CheckOptions:
6684
- key: cppcoreguidelines-special-member-functions.AllowSoleDefaultDtor
6785
value: '0'
6886
- key: google-readability-braces-around-statements.ShortStatementLines
69-
value: '1'
87+
value: '0'
7088
- key: google-readability-function-size.StatementThreshold
7189
value: '800'
7290
- key: google-readability-namespace-comments.ShortNamespaceLines
@@ -211,3 +229,6 @@ CheckOptions:
211229
value: lower_case
212230
- key: readability-identifier-naming.GlobalConstantCase
213231
value: UPPER_CASE
232+
# Enable readability-function-cognitive-complexity and add the following config when tools supporting it (clang 16+) are available.
233+
# - key: readability-function-cognitive-complexity.IgnoreMacros
234+
# value: "true"

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
* @aep-microsoft/nofcontributors
1+
* @microsoft/near-object-collaborators

.github/ISSUE_TEMPLATE/JitAccess.md

Lines changed: 0 additions & 12 deletions
This file was deleted.
Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: 'Bug: '
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of what the bug is.
12+
13+
**Steps To Reproduce**
14+
Steps to reproduce the behavior:
15+
1. Go to '...'
16+
2. Click on '....'
17+
3. Scroll down to '....'
18+
4. See error
19+
20+
**Expected behavior**
21+
A clear and concise description of what you expected to happen.
22+
23+
**Actual behavior**
24+
A clear and concise description of what actually happened.
25+
26+
**Screenshots**
27+
If applicable, add screenshots to help explain your problem.
28+
29+
**Version Information**
30+
- Framework version
31+
- Driver version
32+
- OS and version
33+
34+
**Additional context**
35+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
**Is your feature request related to a problem? Please describe.**
11+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/acl/access.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.github/compliance/inventory.yml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/policies/branch-protection.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

.github/policies/jit.yml

Lines changed: 0 additions & 18 deletions
This file was deleted.

0 commit comments

Comments
 (0)