@saooti/octopus-sdk 41.5.8 → 41.5.10

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.
@@ -113,3 +113,10 @@ fixed_tools: []
113
113
  # override of the corresponding setting in serena_config.yml, see the documentation there.
114
114
  # If null or missing, the value from the global config is used.
115
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.10 (02/03/2026)
4
+
5
+ **Misc**
6
+
7
+ - Mise à jour des dépendances
8
+
9
+ ## 41.5.9 (25/02/2026)
10
+
11
+ **Fix**
12
+
13
+ - Autorise les utilisateurs `PODCAST_VALIDATION` à voir les épisodes à valider
14
+
3
15
  ## 41.5.8 (24/02/2026)
4
16
 
5
17
  **Fix**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "41.5.8",
3
+ "version": "41.5.10",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -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
@@ -194,12 +194,9 @@ const maxOptionsSelected = computed(() => {
194
194
  });
195
195
 
196
196
  //Watch
197
- watch(()=>optionChosen, (value) => {
198
- console.log('update hello')
197
+ watch(()=>optionChosen, () => {
199
198
  optionSelected.value = optionChosen;
200
- console.log(optionChosen, value)
201
199
  }, {deep: true, immediate: true});
202
-
203
200
  watch(optionSelected, () => {
204
201
  if (noDeselect || null !== optionSelected.value) {
205
202
  return;