File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
packages/toolbox-core/src/toolbox_core Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -262,9 +262,12 @@ def bind_parameters(
262
262
if p .name not in bound_params :
263
263
new_params .append (p )
264
264
265
+ all_bound_params = dict (self .__bound_parameters )
266
+ all_bound_params .update (bound_params )
267
+
265
268
return self .__copy (
266
269
params = new_params ,
267
- bound_params = bound_params ,
270
+ bound_params = types . MappingProxyType ( all_bound_params ) ,
268
271
)
269
272
270
273
Original file line number Diff line number Diff line change 4
4
"bump-minor-pre-major" : true ,
5
5
"bump-patch-for-minor-pre-major" : true ,
6
6
"separate-pull-requests" : true ,
7
- "include-component-in-tag" : true ,
8
7
"changelog-sections" : [
9
8
{ "type" : " feat" , "section" : " Features" },
10
9
{ "type" : " fix" , "section" : " Bug Fixes" },
11
10
{ "type" : " chore" , "section" : " Miscellaneous Chores" , "hidden" : false }
12
11
],
13
12
"packages" : {
14
13
"packages/toolbox-core" : {
14
+ "component" : " toolbox-core" ,
15
15
"extra-files" : [
16
16
" src/toolbox_core/version.py"
17
17
]
18
18
},
19
19
"packages/toolbox-langchain" : {
20
+ "component" : " toolbox-langchain" ,
20
21
"extra-files" : [
21
22
" src/toolbox_langchain/version.py"
22
23
]
You can’t perform that action at this time.
0 commit comments