@xh/hoist 78.0.0-SNAPSHOT.1762285014309 → 78.0.0-SNAPSHOT.1762310926429

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
@@ -33,6 +33,11 @@
33
33
  * Fixed `AgGridModel.getExpandState()` not returning a full representation of expanded groups -
34
34
  an issue that primarily affected linked tree map visualizations.
35
35
 
36
+ ### ⚙️ Technical
37
+
38
+ * Support Grails 7 service name conventions in admin client (backward compatible)
39
+
40
+
36
41
  ## 76.2.0 - 2025-10-22
37
42
 
38
43
  ### ⚙️ Technical
@@ -152,7 +152,13 @@ export class ServiceModel extends BaseInstanceModel {
152
152
  }
153
153
 
154
154
  private processRawData(r: PlainObject) {
155
- const provider = r.name && r.name.startsWith('hoistCore') ? 'Hoist' : 'App';
155
+ // For Grails <=6, plugin is prefix in name.
156
+ // For Grails >7, we provide class to determine provider
157
+ // TODO: simplify when Hoist v34+ required.
158
+ const provider =
159
+ r.name.startsWith('hoistCore') || r.className?.startsWith('io.xh.hoist')
160
+ ? 'Hoist'
161
+ : 'App';
156
162
  const displayName = lowerFirst(r.name.replace('hoistCore', ''));
157
163
  return {provider, displayName, ...r};
158
164
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xh/hoist",
3
- "version": "78.0.0-SNAPSHOT.1762285014309",
3
+ "version": "78.0.0-SNAPSHOT.1762310926429",
4
4
  "description": "Hoist add-on for building and deploying React Applications.",
5
5
  "repository": "github:xh/hoist-react",
6
6
  "homepage": "https://xh.io",