Skip to content

Commit 472c81d

Browse files
authored
Update ORT version to 1.15.1 (#263)
1 parent a4aa781 commit 472c81d

File tree

9 files changed

+9
-19
lines changed

9 files changed

+9
-19
lines changed

Diff for: .pipelines/OneBranch.Official.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ parameters: # parameters are shown up in ADO UI in a build queue time
1919
- name: 'ortversion'
2020
displayName: 'ONNX Runtime Version'
2121
type: string
22-
default: '1.15.0'
22+
default: '1.15.1'
2323

2424
variables:
2525
CDP_DEFINITION_BUILD_COUNT: $[counter('', 0)]
@@ -53,13 +53,8 @@ extends:
5353
globalSdl:
5454
tsa:
5555
enabled: true
56-
prefast:
57-
enabled: true
5856
binskim:
5957
break: true # always break the build on binskim issues in addition to TSA upload
60-
codeql:
61-
python:
62-
enabled: true
6358
policheck:
6459
break: true # always break the build on policheck issues. You can disable it by setting to 'false'
6560
exclusionsFile: '$(REPOROOT)\ci_build\policheck_exclusions.xml'

Diff for: .pipelines/OneBranch.PullRequest.yml

+1-6
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ parameters: # parameters are shown up in ADO UI in a build queue time
1919
- name: 'ortversion'
2020
displayName: 'ONNX Runtime Version'
2121
type: string
22-
default: '1.15.0'
22+
default: '1.15.1'
2323

2424
variables:
2525
CDP_DEFINITION_BUILD_COUNT: $[counter('', 0)]
@@ -53,13 +53,8 @@ extends:
5353
globalSdl:
5454
tsa:
5555
enabled: false
56-
prefast:
57-
enabled: true
5856
binskim:
5957
break: true # always break the build on binskim issues in addition to TSA upload
60-
codeql:
61-
python:
62-
enabled: true
6358
policheck:
6459
break: true # always break the build on policheck issues. You can disable it by setting to 'false'
6560
exclusionsFile: '$(REPOROOT)\ci_build\policheck_exclusions.xml'

Diff for: c_sharp/image_classification/image_classification.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup>
9-
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.15.0" />
9+
<PackageReference Include="Microsoft.ML.OnnxRuntime" Version="1.15.1" />
1010
<PackageReference Include="SixLabors.ImageSharp" Version="2.1.1" />
1111
</ItemGroup>
1212

Diff for: js/api-usage_inference-session/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"description": "This example is a demonstration of basic usage of InferenceSession.",
66
"main": "index.js",
77
"dependencies": {
8-
"onnxruntime-node": "^1.15.0"
8+
"onnxruntime-node": "^1.15.1"
99
}
1010
}

Diff for: js/api-usage_tensor/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
"version": "1.0.0",
55
"description": "This example is a demonstration of basic usage of Tensor.",
66
"dependencies": {
7-
"onnxruntime-node": "^1.15.0"
7+
"onnxruntime-node": "^1.15.1"
88
}
99
}

Diff for: js/ort-whisper/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
},
1313
"dependencies": {
1414
"copy-webpack-plugin": "^11.0.0",
15-
"onnxruntime-web": "^1.15.0",
15+
"onnxruntime-web": "^1.15.1",
1616
"webpack": "^5.82.1",
1717
"webpack-cli": "^5.1.1"
1818
}

Diff for: js/quick-start_onnxruntime-node-bundler/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"dev": "webpack --config ./webpack.config.js --mode development"
99
},
1010
"dependencies": {
11-
"onnxruntime-node": "^1.15.0"
11+
"onnxruntime-node": "^1.15.1"
1212
},
1313
"devDependencies": {
1414
"copy-webpack-plugin": "^8.1.1",

Diff for: js/quick-start_onnxruntime-node/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@
55
"description": "This example is a demonstration of basic usage of ONNX Runtime Node.js binding.",
66
"main": "index.js",
77
"dependencies": {
8-
"onnxruntime-node": "^1.15.0"
8+
"onnxruntime-node": "^1.15.1"
99
}
1010
}

Diff for: js/quick-start_onnxruntime-web-bundler/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "1.0.0",
55
"description": "This example is a demonstration of basic usage of ONNX Runtime Web using a bundler.",
66
"dependencies": {
7-
"onnxruntime-web": "^1.15.0"
7+
"onnxruntime-web": "^1.15.1"
88
},
99
"devDependencies": {
1010
"copy-webpack-plugin": "^8.1.1",

0 commit comments

Comments
 (0)