Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release 7.0.3 #1395

Merged
merged 30 commits into from
Jun 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
e43848a
#1388: improve error message when folder field is missing during deploy
JoernBerkefeld Jun 27, 2024
e825981
#1388: remove setFolderId from automation class as its no longer need…
JoernBerkefeld Jun 27, 2024
2b52aab
Merge pull request #1389 from Accenture/task/1388-improve-folder-erro…
JoernBerkefeld Jun 27, 2024
ccc7fca
#1391: regression fix for switch from activity name to r__key
JoernBerkefeld Jun 28, 2024
0f599b0
#1391: ensure verification activities are correctly saved
JoernBerkefeld Jun 28, 2024
829439d
#1391: check outgoing call bodies for automation upsert
JoernBerkefeld Jun 28, 2024
efde396
#1391: ensure automation errors use the new r__key field when available
JoernBerkefeld Jun 28, 2024
645998c
Merge pull request #1392 from Accenture/bug/1391-regression-deploying…
JoernBerkefeld Jun 28, 2024
79d1338
#0: ts lint errors fixed
JoernBerkefeld Jun 28, 2024
d7d09e6
#1068: ensure order of automation activities aligns with displayOrder
JoernBerkefeld Jun 28, 2024
745647d
Merge pull request #1393 from Accenture/bug/1068-bug-order-of-automat…
JoernBerkefeld Jun 28, 2024
461199f
#1390: regression fix: align --metatdata retrieve behavior with legac…
JoernBerkefeld Jun 29, 2024
4218c07
#0: clean up
JoernBerkefeld Jun 29, 2024
91079ec
Merge pull request #1394 from Accenture/bug/1390-metadata-always-dele…
JoernBerkefeld Jun 29, 2024
44ed6ce
Bump eslint from 8.57.0 to 9.6.0
dependabot[bot] Jun 29, 2024
60928ee
#0: npx @eslint/migrate-config .eslintrc.json + npm install globals @…
JoernBerkefeld Jun 29, 2024
4b09e6b
#0: auto-formatting applied
JoernBerkefeld Jun 29, 2024
7375a6e
#0: remove now unnecessary old onfig files for eslint
JoernBerkefeld Jun 29, 2024
b4f73ab
#0: eslint --fix
JoernBerkefeld Jun 29, 2024
66f8a4a
#0: reduce globals to only use nodeBuiltin (without commonjs stuff)
JoernBerkefeld Jun 29, 2024
ad9c7cb
#0: rewrite auto-generated config to no longer use FlatCompat for pac…
JoernBerkefeld Jun 30, 2024
6f25bf3
#0: code comments + catch semver issues for contributors
JoernBerkefeld Jun 30, 2024
acfd9af
#0: add missing await
JoernBerkefeld Jun 30, 2024
505acf1
#0: bump eslint-config-ssjs from 1.1.11 to 2.0.0
JoernBerkefeld Jun 30, 2024
879e9c1
#0: load new eslint config in tests
JoernBerkefeld Jun 30, 2024
5b4aa7e
#0: correct version in which we do the switch from old to flat eslint…
JoernBerkefeld Jun 30, 2024
4c11e38
#0: cleanup
JoernBerkefeld Jun 30, 2024
ecb4779
Merge pull request #1396 from Accenture/dependabot/npm_and_yarn/devel…
JoernBerkefeld Jun 30, 2024
550ba46
7.0.3
JoernBerkefeld Jun 30, 2024
5c0f25c
#0: prep version 7.0.3
JoernBerkefeld Jun 30, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .eslintignore

This file was deleted.

116 changes: 0 additions & 116 deletions .eslintrc.json

This file was deleted.

1 change: 1 addition & 0 deletions .github/ISSUE_TEMPLATE/bug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ body:
label: Version
description: What version of our software are you running? (mcdev --version)
options:
- 7.0.3
- 7.0.2
- 7.0.1
- 7.0.0
Expand Down
2 changes: 1 addition & 1 deletion @types/lib/index.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 11 additions & 10 deletions @types/lib/metadataTypes/Asset.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,11 @@ declare class Asset extends MetadataType {
*
* @param {void | string[]} [_] parameter not used
* @param {string[]} [subTypeArr] optionally limit to a single subtype
* @param {void | string} [__] parameter not used
* @param {boolean} [loadShared] optionally retrieve assets from other BUs that were shared with the current
* @returns {Promise.<{metadata: AssetMap, type: string}>} Promise
*/
static retrieveForCache(_?: void | string[], subTypeArr?: string[], loadShared?: boolean): Promise<{
static retrieveForCache(_?: void | string[], subTypeArr?: string[], __?: void | string, loadShared?: boolean): Promise<{
metadata: AssetMap;
type: string;
}>;
Expand Down Expand Up @@ -354,9 +355,9 @@ declare class Asset extends MetadataType {
* @param {string} subType asset subtype
* @param {object} item api response for metadata
* @param {string} buName owner business unit name
* @returns {string} path to the asset's code
* @returns {Promise.<string>} path to the asset's code
*/
static "__#2@#getPath"(subType: string, item: object, buName: string): string;
static "__#2@#getPath"(subType: string, item: object, buName: string): Promise<string>;
/**
* helper for {@link Asset.resolveId} that loads the JSON file for the asset
*
Expand Down Expand Up @@ -644,14 +645,14 @@ declare namespace Asset {
isUpdateable: boolean;
retrieving: boolean;
template: boolean;
}; /**
* helper for {@link Asset.retrieve} + {@link Asset.retrieveAsTemplate}
*
* @private
* @returns {string[]} AssetSubType array
*/
};
legacyData: {
isCreateable: boolean;
isCreateable: boolean; /**
* helper for {@link Asset.retrieve} + {@link Asset.retrieveAsTemplate}
*
* @private
* @returns {string[]} AssetSubType array
*/
isUpdateable: boolean;
retrieving: boolean;
template: boolean;
Expand Down
Loading
Loading