@saooti/octopus-sdk 41.5.7 → 41.5.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.serena/project.yml
CHANGED
|
@@ -109,3 +109,14 @@ default_modes:
|
|
|
109
109
|
# fixed set of tools to use as the base tool set (if non-empty), replacing Serena's default set of tools.
|
|
110
110
|
# This cannot be combined with non-empty excluded_tools or included_optional_tools.
|
|
111
111
|
fixed_tools: []
|
|
112
|
+
|
|
113
|
+
# override of the corresponding setting in serena_config.yml, see the documentation there.
|
|
114
|
+
# If null or missing, the value from the global config is used.
|
|
115
|
+
symbol_info_budget:
|
|
116
|
+
|
|
117
|
+
# The language backend to use for this project.
|
|
118
|
+
# If not set, the global setting from serena_config.yml is used.
|
|
119
|
+
# Valid values: LSP, JetBrains
|
|
120
|
+
# Note: the backend is fixed at startup. If a project with a different backend
|
|
121
|
+
# is activated post-init, an error will be returned.
|
|
122
|
+
language_backend:
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# CHANGELOG
|
|
2
2
|
|
|
3
|
+
## 41.5.9 (25/02/2026)
|
|
4
|
+
|
|
5
|
+
**Fix**
|
|
6
|
+
|
|
7
|
+
- Autorise les utilisateurs `PODCAST_VALIDATION` à voir les épisodes à valider
|
|
8
|
+
|
|
9
|
+
## 41.5.8 (24/02/2026)
|
|
10
|
+
|
|
11
|
+
**Fix**
|
|
12
|
+
|
|
13
|
+
- Correction "Tout sélectionner" du `ClassicMultiselect`
|
|
14
|
+
|
|
3
15
|
## 41.5.7 (20/02/2026)
|
|
4
16
|
|
|
5
17
|
**Fix**
|
package/package.json
CHANGED
|
@@ -232,7 +232,7 @@ const isSelectValidity = computed(() => {
|
|
|
232
232
|
return (
|
|
233
233
|
undefined !== organisation.value &&
|
|
234
234
|
organisationRight.value &&
|
|
235
|
-
authStore.isRoleContribution &&
|
|
235
|
+
(authStore.isRoleContribution || authStore.isRolePublication) &&
|
|
236
236
|
!isPodcastmaker.value &&
|
|
237
237
|
!props.isEmission &&
|
|
238
238
|
props.includeHidden
|
|
@@ -238,7 +238,7 @@ function afterSearch(optionsFetched: Array<T>, count: number): void {
|
|
|
238
238
|
function onOptionSelected(newValue: Array<T>|T): void {
|
|
239
239
|
// Check if selectAll is included
|
|
240
240
|
if (withSelectAll && Array.isArray(newValue) && newValue.find(o => o.id === selectAll.id)) {
|
|
241
|
-
emit("selected", options.value.slice(1
|
|
241
|
+
emit("selected", options.value.slice(1));
|
|
242
242
|
} else {
|
|
243
243
|
emit("selected", newValue);
|
|
244
244
|
}
|