@knime/hub-features 1.29.3 → 1.31.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,22 @@
1
1
  # @knime/hub-features
2
2
 
3
+ ## 1.31.0
4
+
5
+ ### Minor Changes
6
+
7
+ - fb53b9c: Add execution related events
8
+
9
+ - Executing/Cancelling/Resetting all nodes
10
+ - Executing/Cancelling/Resetting selected nodes
11
+ - Loop execution
12
+ - Node configuration apply & execute
13
+
14
+ ## 1.30.0
15
+
16
+ ### Minor Changes
17
+
18
+ - 90a327b: Adjust cloudhome events
19
+
3
20
  ## 1.29.3
4
21
 
5
22
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@knime/hub-features",
3
- "version": "1.29.3",
3
+ "version": "1.31.0",
4
4
  "description": "Vue components & composables for shared hub features",
5
5
  "repository": {
6
6
  "type": "git",
@@ -124,9 +124,9 @@ export const secretCreatedPersonalSecrets = <T extends DefaultContext>(ctx: T) =
124
124
  };
125
125
 
126
126
  /**
127
- * Fired when the user clicks the Create button in the deployment creation side panel
127
+ * Fired when the user clicks the Create button in the deployment creation side panel on the workflow details page
128
128
  */
129
- export const deploymentCreated = <T extends DefaultContext>(ctx: T) => (eventData: EventFunctionArgs<"deploymentCreated">): AnalyticsEvent => {
129
+ export const deploymentCreatedFromWorkflowDetails = <T extends DefaultContext>(ctx: T) => (eventData: EventFunctionArgs<"deploymentCreatedFromWorkflowDetails">): AnalyticsEvent => {
130
130
  const staticData = {
131
131
  ...toSnakeCaseDeep(ctx),
132
132
  unique_event_id: crypto.randomUUID(),
@@ -136,7 +136,7 @@ export const deploymentCreated = <T extends DefaultContext>(ctx: T) => (eventDat
136
136
  event_display_name: "Deployment Created",
137
137
  interaction: {
138
138
  location: "contextual_side_panel",
139
- page: "deployments",
139
+ page: "workflow_details",
140
140
  trigger: "user",
141
141
  type: "click",
142
142
  },