@genesislcap/blank-app-seed 3.11.2 → 3.12.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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "3.11.2",
4
+ "version": "3.12.0",
5
5
  "license": "Apache-2.0",
6
6
  "genxSeedConfig": {
7
7
  "exclude": [
@@ -1,5 +1,5 @@
1
1
  {
2
- "UI": "14.182.2",
3
- "GSF": "7.2.6",
4
- "Auth": "7.2.1"
2
+ "UI": "14.183.2",
3
+ "GSF": "8.0.0",
4
+ "Auth": "8.0.0"
5
5
  }
@@ -42,7 +42,7 @@ jobs:
42
42
 
43
43
  - name: Build sample app
44
44
  working-directory: /tmp/testapp
45
- run: ./gradlew build
45
+ run: ./gradlew build --info
46
46
 
47
47
  - name: Lint UI
48
48
  working-directory: /tmp/testapp/client
@@ -58,7 +58,7 @@ jobs:
58
58
 
59
59
  - name: Create Server Dockerfile
60
60
  working-directory: /tmp/testapp
61
- run: ./gradlew :server:testapp-app:createDockerfile
61
+ run: ./gradlew :server:testapp-app:createDockerfile --info
62
62
 
63
63
  - name: Build Docker images
64
64
  working-directory: /tmp/testapp
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.12.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.11.3...v3.12.0) (2024-05-30)
4
+
5
+
6
+ ### Features
7
+
8
+ * upgrade to GSF 8.0.0 GENC-513 (#244) 73b250b
9
+
10
+ ## [3.11.3](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.11.2...v3.11.3) (2024-05-29)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * fdc3 file to unix file endings and fix linting error GENC-292 (#242) 50471e0
16
+
3
17
  ## [3.11.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.11.1...v3.11.2) (2024-05-29)
4
18
 
5
19
 
@@ -1,32 +1,31 @@
1
- {{#if FDC3.includeDependencies}}
2
- import { DefaultFDC3 } from '@genesislcap/foundation-fdc3';
3
-
4
- {{/if}}
5
- export const isFDC3 = (): boolean => !!(window as any).fdc3;
6
- {{#if FDC3.includeDependencies}}
7
- const fdc3Service = new DefaultFDC3();
8
-
9
- export const onFDC3Ready = async (FDC3ReadyCb: () => any): Promise<void> => {
10
- isFDC3()
11
- ? await FDC3ReadyCb()
12
- : window.addEventListener('fdc3Ready', async () => {
13
- await FDC3ReadyCb();
14
- });
15
- };
16
-
17
- export const listenToChannel = async (
18
- channelName: string,
19
- type: string,
20
- callback: (result: any) => void,
21
- ): Promise<void> => {
22
- fdc3Service.addChannelListener(channelName, type, callback);
23
- };
24
-
25
- export const sendEventOnChannel = (channelName: string, type: string) => {
26
- return async (e: any) => {
27
- // check for ag-grid-specific events, fall back to standard events
28
- const payload = e.data || e.detail;
29
- await fdc3Service.broadcastOnChannel(channelName, type, payload);
30
- };
31
- };
32
- {{/if}}
1
+ {{#if FDC3.includeDependencies}}
2
+ import { DefaultFDC3 } from '@genesislcap/foundation-fdc3';
3
+ {{/if}}
4
+ export const isFDC3 = (): boolean => !!(window as any).fdc3;
5
+ {{#if FDC3.includeDependencies}}
6
+ const fdc3Service = new DefaultFDC3();
7
+
8
+ export const onFDC3Ready = async (FDC3ReadyCb: () => any): Promise<void> => {
9
+ isFDC3()
10
+ ? await FDC3ReadyCb()
11
+ : window.addEventListener('fdc3Ready', async () => {
12
+ await FDC3ReadyCb();
13
+ });
14
+ };
15
+
16
+ export const listenToChannel = async (
17
+ channelName: string,
18
+ type: string,
19
+ callback: (result: any) => void,
20
+ ): Promise<void> => {
21
+ fdc3Service.addChannelListener(channelName, type, callback);
22
+ };
23
+
24
+ export const sendEventOnChannel = (channelName: string, type: string) => {
25
+ return async (e: any) => {
26
+ // check for ag-grid-specific events, fall back to standard events
27
+ const payload = e.data || e.detail;
28
+ await fdc3Service.broadcastOnChannel(channelName, type, payload);
29
+ };
30
+ };
31
+ {{/if}}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed",
3
3
  "description": "Genesis Blank App Seed",
4
- "version": "3.11.2",
4
+ "version": "3.12.0",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"