Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into locate_reuse_updates_…
Browse files Browse the repository at this point in the history
…componentUsage

* origin/main: (62 commits)
  chore: apply latest changesets
  tbi(ui5-info): includeMaintained and includeDefault combination finds the next maintained version (#2166)
  chore: apply latest changesets
  fix: cds formatting issue when deleting properties (#2178)
  chore: apply latest changesets
  fix: storybook issue after storybook update (#2180)
  fix: failing test (#2182)
  chore: apply latest changesets
  Performance/project access/cache global cds module promise (#2148)
  chore: apply latest changesets
  feat: Add Adaptation Projects' Add Annotations To OData generator prompting (#2083)
  chore: apply latest changesets
  fix: consolidates multiple export functions into a single function applyCAPUpdates (#2168)
  chore: apply latest changesets
  feature(odata-service-inquirer): Adds abap on prem prompts (#2096)
  chore: apply latest changesets
  feat(axios-extension): add support for adap cds view service generation (#2157)
  chore: apply latest changesets
  fix: Extension points break the outline tree sync for apps with UI5 version =< 1.96.33 (#2131)
  chore: apply latest changesets
  ...
  • Loading branch information
devinea committed Jul 22, 2024
2 parents 98616f1 + e21ff6d commit 77730cb
Show file tree
Hide file tree
Showing 344 changed files with 15,071 additions and 3,582 deletions.
11 changes: 11 additions & 0 deletions examples/odata-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @sap-ux/odata-cli

## 0.15.0

### Minor Changes

- 3a878f3: Add support for abap cds view service generation

### Patch Changes

- Updated dependencies [3a878f3]
- @sap-ux/axios-extension@1.16.0

## 0.14.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/odata-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sap-ux/odata-cli",
"version": "0.14.1",
"version": "0.15.0",
"description": "Simple example CLI uing the @sap-ux/axios-extension module to fetch metadata and annotations from an SAP system.",
"license": "Apache-2.0",
"private": true,
Expand Down
6 changes: 6 additions & 0 deletions examples/odata-cli/src/activities.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
ListPackageService,
FileStoreService,
BusinessObjectsService
//AbapCDSViewService
} from '@sap-ux/axios-extension';
import { logger } from './types';

Expand Down Expand Up @@ -210,6 +211,11 @@ export async function testUiServiceGenerator(
const bo = bos.find((bo) => bo.name === env.TEST_BO_NAME);
logger.debug(bos.map((bo) => bo.name));

//This is used for manually testing, this blocked commented should not be run together with business object search and can be uncommented and used for testing when needed.
// Get Abap CDS Views
// const cdsViewService = await provider.getAdtService<AbapCDSViewService>(AbapCDSViewService);
// const cdsViews = await cdsViewService.getAbapCDSViews();

// Get generator service
const generator = await provider.getUiServiceGenerator(bo);
const content = await generator.getContent(env.TEST_PACKAGE);
Expand Down
70 changes: 70 additions & 0 deletions examples/simple-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,75 @@
# @sap-ux/generator-simple-fe

## 1.0.4

### Patch Changes

- @sap-ux/axios-extension@1.16.0
- @sap-ux/system-access@0.5.2
- @sap-ux/fiori-elements-writer@1.0.3
- @sap-ux/fiori-freestyle-writer@1.0.3

## 1.0.3

### Patch Changes

- Updated dependencies [3a878f3]
- @sap-ux/axios-extension@1.16.0
- @sap-ux/system-access@0.5.2

## 1.0.2

### Patch Changes

- @sap-ux/axios-extension@1.15.1
- @sap-ux/system-access@0.5.1
- @sap-ux/fiori-elements-writer@1.0.2
- @sap-ux/fiori-freestyle-writer@1.0.2

## 1.0.1

### Patch Changes

- @sap-ux/fiori-elements-writer@1.0.1
- @sap-ux/fiori-freestyle-writer@1.0.1

## 1.0.0

### Major Changes

- 5b243ac: Add `projectType` mandatory option to `App` interface to specify the type of project being processed. This option determines file inclusion/exclusion and script updates in the template:
- For projects of type 'CAPJava' or 'CAPNodejs':
- Exclude `ui5-local.yaml` and `.gitignore` from the template.
- Update `package.json` to include only the script `deploy-config`.
- Use full URLs to determine resource URLs in `webapp/index.html` and `flpSandbox.html`.
- For projects of type 'EDMXBackend':
- Include `ui5-local.yaml` and `.gitignore` in the template.
- Update `package.json` to include the following scripts: start, start-local, build, start-noflp, start-mock, int-test, deploy, and sap-ux.
- Include relative URLs to determine resource URLs in `webapp/index.html` and `flpSandbox.html`.

### Patch Changes

- Updated dependencies [5b243ac]
- @sap-ux/fiori-freestyle-writer@1.0.0
- @sap-ux/fiori-elements-writer@1.0.0

## 0.4.3

### Patch Changes

- @sap-ux/fiori-elements-writer@0.23.2
- @sap-ux/fiori-freestyle-writer@0.23.2
- @sap-ux/axios-extension@1.15.1
- @sap-ux/system-access@0.5.1

## 0.4.2

### Patch Changes

- Updated dependencies [8b7ee1f]
- @sap-ux/fiori-elements-writer@0.23.1
- @sap-ux/fiori-freestyle-writer@0.23.1

## 0.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/simple-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@sap-ux/generator-simple-fe",
"version": "0.4.1",
"version": "1.0.4",
"description": "Simple example of a yeoman generator for Fiori elements.",
"license": "Apache-2.0",
"private": true,
Expand Down
3 changes: 2 additions & 1 deletion examples/simple-generator/src/app/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,8 @@ export default class extends Generator {
this.app = {
app: {
id: name,
flpAppId: 'app-preview'
flpAppId: 'app-preview',
projectType: 'EDMXBackend'
},
appOptions: {
loadReuseLibs: true
Expand Down
71 changes: 71 additions & 0 deletions packages/abap-deploy-config-writer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,76 @@
# @sap-ux/abap-deploy-config-writer

## 0.0.19

### Patch Changes

- Updated dependencies [a9fac04]
- @sap-ux/project-access@1.25.6
- @sap-ux/system-access@0.5.2

## 0.0.18

### Patch Changes

- @sap-ux/system-access@0.5.2

## 0.0.17

### Patch Changes

- Updated dependencies [421f3ca]
- @sap-ux/project-access@1.25.5
- @sap-ux/system-access@0.5.1

## 0.0.16

### Patch Changes

- Updated dependencies [173b5f2]
- @sap-ux/project-access@1.25.4
- @sap-ux/system-access@0.5.1

## 0.0.15

### Patch Changes

- Updated dependencies [e7b9184]
- @sap-ux/project-access@1.25.3
- @sap-ux/system-access@0.5.1

## 0.0.14

### Patch Changes

- Updated dependencies [22e4ad8]
- @sap-ux/ui5-config@0.23.1
- @sap-ux/project-access@1.25.2
- @sap-ux/system-access@0.5.1

## 0.0.13

### Patch Changes

- Updated dependencies [0f3cf6b]
- @sap-ux/project-access@1.25.1
- @sap-ux/system-access@0.5.1

## 0.0.12

### Patch Changes

- Updated dependencies [f076dd3]
- @sap-ux/project-access@1.25.0
- @sap-ux/system-access@0.5.1

## 0.0.11

### Patch Changes

- Updated dependencies [0ae685e]
- @sap-ux/project-access@1.24.0
- @sap-ux/system-access@0.5.1

## 0.0.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/abap-deploy-config-writer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"url": "https://github.com/SAP/open-ux-tools.git",
"directory": "packages/abap-deploy-config-writer"
},
"version": "0.0.10",
"version": "0.0.19",
"license": "Apache-2.0",
"main": "dist/index.js",
"scripts": {
Expand Down
113 changes: 113 additions & 0 deletions packages/adp-tooling/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,118 @@
# @sap-ux/adp-tooling

## 0.12.15

### Patch Changes

- @sap-ux/inquirer-common@0.4.2

## 0.12.14

### Patch Changes

- Updated dependencies [a9fac04]
- @sap-ux/project-access@1.25.6
- @sap-ux/axios-extension@1.16.0
- @sap-ux/system-access@0.5.2

## 0.12.13

### Patch Changes

- 4c06318: Add Adaptation Project's Add Annotations To OData generator prompting

## 0.12.12

### Patch Changes

- Updated dependencies [108336f]
- @sap-ux/inquirer-common@0.4.1

## 0.12.11

### Patch Changes

- Updated dependencies [3a878f3]
- @sap-ux/axios-extension@1.16.0
- @sap-ux/system-access@0.5.2

## 0.12.10

### Patch Changes

- Updated dependencies [421f3ca]
- @sap-ux/project-access@1.25.5
- @sap-ux/axios-extension@1.15.1
- @sap-ux/system-access@0.5.1

## 0.12.9

### Patch Changes

- Updated dependencies [173b5f2]
- @sap-ux/project-access@1.25.4
- @sap-ux/axios-extension@1.15.1
- @sap-ux/system-access@0.5.1

## 0.12.8

### Patch Changes

- 9e4ce4d: Remove safeMode from adp-tooling types and change order of ui5.yaml custom configuration

## 0.12.7

### Patch Changes

- Updated dependencies [e7b9184]
- @sap-ux/project-access@1.25.3
- @sap-ux/axios-extension@1.15.1
- @sap-ux/system-access@0.5.1

## 0.12.6

### Patch Changes

- 22e4ad8: Generate correct ui5.yaml
- Updated dependencies [22e4ad8]
- @sap-ux/ui5-config@0.23.1
- @sap-ux/project-access@1.25.2
- @sap-ux/axios-extension@1.15.1
- @sap-ux/system-access@0.5.1

## 0.12.5

### Patch Changes

- Updated dependencies [0f3cf6b]
- @sap-ux/project-access@1.25.1
- @sap-ux/axios-extension@1.15.1
- @sap-ux/system-access@0.5.1

## 0.12.4

### Patch Changes

- 5f074a7: Add toolsId in ui5.yaml for Adaptation Project writers and remove safeMode

## 0.12.3

### Patch Changes

- Updated dependencies [f076dd3]
- @sap-ux/project-access@1.25.0
- @sap-ux/axios-extension@1.15.1
- @sap-ux/system-access@0.5.1

## 0.12.2

### Patch Changes

- Updated dependencies [0ae685e]
- @sap-ux/project-access@1.24.0
- @sap-ux/axios-extension@1.15.1
- @sap-ux/system-access@0.5.1

## 0.12.1

### Patch Changes
Expand Down
8 changes: 5 additions & 3 deletions packages/adp-tooling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"bugs": {
"url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Aadp-tooling"
},
"version": "0.12.1",
"version": "0.12.15",
"license": "Apache-2.0",
"author": "@SAP/ux-tools-team",
"main": "dist/index.js",
Expand Down Expand Up @@ -49,7 +49,8 @@
"mem-fs": "2.1.0",
"mem-fs-editor": "9.4.0",
"prompts": "2.4.2",
"sanitize-filename": "1.6.3"
"sanitize-filename": "1.6.3",
"uuid": "10.0.0"
},
"devDependencies": {
"@sap-ux/store": "workspace:*",
Expand All @@ -61,6 +62,7 @@
"@types/mem-fs-editor": "7.0.1",
"@types/prompts": "2.4.4",
"@types/supertest": "2.0.12",
"@types/uuid": "10.0.0",
"dotenv": "16.3.1",
"express": "4.19.2",
"nock": "13.4.0",
Expand All @@ -70,4 +72,4 @@
"engines": {
"node": ">=18.x"
}
}
}
Loading

0 comments on commit 77730cb

Please sign in to comment.