Skip to content

Commit

Permalink
bump dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
akphi committed Jun 28, 2022
1 parent a7b80c1 commit f7b199e
Show file tree
Hide file tree
Showing 29 changed files with 1,007 additions and 716 deletions.
23 changes: 23 additions & 0 deletions .changeset/proud-monkeys-exist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
---
'@finos/babel-preset-legend-studio': patch
'@finos/eslint-plugin-legend-studio': patch
'@finos/legend-application': patch
'@finos/legend-art': patch
'@finos/legend-dev-utils': patch
'@finos/legend-extension-dsl-data-space': patch
'@finos/legend-extension-dsl-diagram': patch
'@finos/legend-extension-dsl-persistence': patch
'@finos/legend-extension-dsl-text': patch
'@finos/legend-extension-external-store-service': patch
'@finos/legend-extension-mapping-generation': patch
'@finos/legend-graph': patch
'@finos/legend-manual-tests': patch
'@finos/legend-query': patch
'@finos/legend-server-depot': patch
'@finos/legend-server-sdlc': patch
'@finos/legend-shared': patch
'@finos/legend-studio': patch
'@finos/legend-studio-extension-management-toolkit': patch
'@finos/legend-studio-extension-query-builder': patch
'@finos/legend-taxonomy': patch
---
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
"devDependencies": {
"@actions/core": "1.9.0",
"@actions/github": "5.0.3",
"@babel/core": "7.18.5",
"@babel/core": "7.18.6",
"@changesets/cli": "2.23.0",
"@finos/babel-preset-legend-studio": "workspace:*",
"@finos/eslint-plugin-legend-studio": "workspace:*",
Expand Down
10 changes: 5 additions & 5 deletions packages/babel-preset/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@
"publish:snapshot": "node ../../scripts/release/publishDevSnapshot.js"
},
"dependencies": {
"@babel/helper-plugin-utils": "7.17.12",
"@babel/preset-env": "7.18.2",
"@babel/preset-react": "7.17.12",
"@babel/preset-typescript": "7.17.12",
"@babel/runtime": "7.18.3",
"@babel/helper-plugin-utils": "7.18.6",
"@babel/preset-env": "7.18.6",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@babel/runtime": "7.18.6",
"react-refresh": "0.14.0"
},
"devDependencies": {
Expand Down
8 changes: 4 additions & 4 deletions packages/eslint-plugin/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@
"publish:snapshot": "node ../../scripts/release/publishDevSnapshot.js"
},
"dependencies": {
"@babel/core": "7.18.5",
"@babel/core": "7.18.6",
"@babel/eslint-parser": "7.18.2",
"@typescript-eslint/eslint-plugin": "5.29.0",
"@typescript-eslint/parser": "5.29.0",
"@typescript-eslint/eslint-plugin": "5.30.0",
"@typescript-eslint/parser": "5.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-prettier": "4.1.0",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"micromatch": "4.0.5",
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-application/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"date-fns": "2.28.0",
"fuse.js": "6.6.2",
"history": "5.3.0",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"monaco-editor": "0.33.0",
"papaparse": "5.3.2",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ export class LegendApplicationAssistantService {
(entry) =>
// NOTE: since we're searching for user-friendly docs, we will discard anything that
// doesn't come with a title, or does not have any content/url
//
// We could also consider having a flag in each documentation entry to be hidden from users
entry.title && (entry.url ?? entry.text ?? entry.markdownText),
)
.map((entry) => new VirtualAssistantDocumentationEntry(entry)),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export type LegendApplicationDocumentationEntryConfig = {
title?: string | undefined;
text?: string | undefined;
url?: string | undefined;
related?: string[] | undefined;
};

export class LegendApplicationDocumentationEntry {
Expand All @@ -48,13 +49,15 @@ export class LegendApplicationDocumentationEntry {
title?: string | undefined;
text?: string | undefined;
url?: string | undefined;
related?: string | undefined;

static readonly serialization = new SerializationFactory(
createModelSchema(LegendApplicationDocumentationEntry, {
markdownText: custom(
(val) => val,
(val) => (val.value ? val : undefined),
),
related: optional(list(primitive())),
title: optional(primitive()),
text: optional(primitive()),
url: optional(primitive()),
Expand All @@ -73,67 +76,6 @@ export class LegendApplicationDocumentationEntry {
}
}

export type LegendApplicationContextualDocumentationEntryConfig =
LegendApplicationDocumentationEntryConfig & {
related?: string[];
};

export class LegendApplicationContextualDocumentationEntry {
readonly _context!: string;

markdownText?: MarkdownText | undefined;
title?: string | undefined;
text?: string | undefined;
url?: string | undefined;
related: string[] = [];

static readonly serialization = new SerializationFactory(
createModelSchema(LegendApplicationContextualDocumentationEntry, {
markdownText: custom(
(val) => val,
(val) => (val.value ? val : undefined),
),
title: optional(primitive()),
text: optional(primitive()),
url: optional(primitive()),
related: list(primitive()),
}),
);

static create(
json: PlainObject<LegendApplicationContextualDocumentationEntry>,
context: string,
): LegendApplicationContextualDocumentationEntry {
const entry =
LegendApplicationContextualDocumentationEntry.serialization.fromJson(
json,
);
(
entry as Writable<LegendApplicationContextualDocumentationEntry>
)._context = context;
return entry;
}
}

export interface LegendApplicationKeyedContextualDocumentationEntry {
key: string;
content: LegendApplicationContextualDocumentationEntry;
}

export const collectKeyedContextualDocumentationEntriesFromConfig = (
rawEntries: Record<
string,
LegendApplicationContextualDocumentationEntryConfig
>,
): LegendApplicationKeyedContextualDocumentationEntry[] =>
Object.entries(rawEntries).map((entry) => ({
key: entry[0],
content: LegendApplicationContextualDocumentationEntry.create(
entry[1],
entry[0],
),
}));

export interface LegendApplicationKeyedDocumentationEntry {
key: string;
content: LegendApplicationDocumentationEntry;
Expand All @@ -153,7 +95,7 @@ export class LegendApplicationDocumentationService {
private docRegistry = new Map<string, LegendApplicationDocumentationEntry>();
private contextualDocRegistry = new Map<
string,
LegendApplicationContextualDocumentationEntry
LegendApplicationDocumentationEntry
>();

constructor(applicationStore: ApplicationStore<LegendApplicationConfig>) {
Expand Down Expand Up @@ -260,17 +202,17 @@ export class LegendApplicationDocumentationService {
return result;
}

publishContextualDocRegistry(): object {
const result: Record<
string,
LegendApplicationContextualDocumentationEntryConfig
> = {};
this.contextualDocRegistry.forEach((value, key) => {
result[key] =
LegendApplicationContextualDocumentationEntry.serialization.toJson(
value,
);
});
return result;
}
// publishContextualDocRegistry(): object {
// const result: Record<
// string,
// LegendApplicationContextualDocumentationEntryConfig
// > = {};
// this.contextualDocRegistry.forEach((value, key) => {
// result[key] =
// LegendApplicationContextualDocumentationEntry.serialization.toJson(
// value,
// );
// });
// return result;
// }
}
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,7 @@ const generateLanguageMonarch = (
PURE_CONNECTION_NAME.MODEL_CHAIN_CONNECTION,
PURE_CONNECTION_NAME.XML_MODEL_CONNECTION,
// mapping
'include',
'EnumerationMapping',
'Pure',
'AssociationMapping',
Expand Down
4 changes: 2 additions & 2 deletions packages/legend-art/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@
"@fontsource/roboto": "4.5.7",
"@fontsource/roboto-condensed": "4.5.8",
"@fontsource/roboto-mono": "4.5.7",
"@mui/material": "5.8.5",
"@mui/material": "5.8.6",
"@types/react": "18.0.14",
"@types/react-select": "4.0.18",
"@types/react-window": "1.8.5",
"clsx": "1.1.1",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"monaco-editor": "0.33.0",
"react": "18.2.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/legend-dev-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"test:watch": "jest --watch"
},
"dependencies": {
"@babel/core": "7.18.5",
"@babel/core": "7.18.6",
"@changesets/assemble-release-plan": "5.1.3",
"@changesets/changelog-github": "0.4.5",
"@changesets/config": "2.0.0",
Expand Down Expand Up @@ -86,7 +86,7 @@
"react-refresh": "0.14.0",
"resolve": "1.22.1",
"sass": "1.53.0",
"sass-loader": "13.0.1",
"sass-loader": "13.0.2",
"typescript": "4.7.4",
"webpack": "5.73.0"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-extension-dsl-data-space/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"@finos/legend-shared": "workspace:*",
"@finos/legend-studio": "workspace:*",
"@types/react": "18.0.14",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-extension-dsl-diagram/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"@finos/legend-shared": "workspace:*",
"@finos/legend-studio": "workspace:*",
"@types/react": "18.0.14",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"react": "18.2.0",
"react-dnd": "16.0.1",
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-extension-dsl-persistence/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"@finos/legend-shared": "workspace:*",
"@finos/legend-studio": "workspace:*",
"@types/react": "18.0.14",
"mobx": "6.6.0",
"mobx": "6.6.1",
"react": "18.2.0",
"serializr": "2.0.5"
},
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-extension-dsl-text/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"@finos/legend-shared": "workspace:*",
"@finos/legend-studio": "workspace:*",
"@types/react": "18.0.14",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"react": "18.2.0",
"serializr": "2.0.5"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"@finos/legend-shared": "workspace:*",
"@finos/legend-studio": "workspace:*",
"@types/react": "18.0.14",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"react": "18.2.0",
"serializr": "2.0.5"
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-extension-mapping-generation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"@finos/legend-server-sdlc": "workspace:*",
"@finos/legend-shared": "workspace:*",
"@finos/legend-studio": "workspace:*",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"react": "18.2.0",
"serializr": "2.0.5"
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-graph/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"@finos/legend-model-storage": "workspace:*",
"@finos/legend-shared": "workspace:*",
"date-fns": "2.28.0",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"react": "18.2.0",
"serializr": "2.0.5"
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-query/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"@types/react-router-dom": "5.3.3",
"date-fns": "2.28.0",
"history": "5.3.0",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"monaco-editor": "0.33.0",
"react": "18.2.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-server-depot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"dependencies": {
"@finos/legend-model-storage": "workspace:*",
"@finos/legend-shared": "workspace:*",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"react": "18.2.0",
"serializr": "2.0.5"
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-server-sdlc/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"dependencies": {
"@finos/legend-model-storage": "workspace:*",
"@finos/legend-shared": "workspace:*",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"react": "18.2.0",
"serializr": "2.0.5"
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-shared/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"http-status-codes": "2.2.0",
"lodash-es": "4.17.21",
"lossless-json": "1.0.5",
"mobx": "6.6.0",
"mobx": "6.6.1",
"object-hash": "3.0.0",
"pako": "2.0.4",
"pretty-format": "28.1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
"@finos/legend-studio": "workspace:*",
"@types/react": "18.0.14",
"@types/react-router-dom": "5.3.3",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"react": "18.2.0",
"react-router-dom": "5.3.3"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
"@finos/legend-shared": "workspace:*",
"@finos/legend-studio": "workspace:*",
"@types/react": "18.0.14",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"react": "18.2.0",
"react-dom": "18.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/legend-studio/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@
"@types/react-router-dom": "5.3.3",
"date-fns": "2.28.0",
"history": "5.3.0",
"mobx": "6.6.0",
"mobx": "6.6.1",
"mobx-react-lite": "3.4.0",
"mobx-utils": "6.0.5",
"monaco-editor": "0.33.0",
Expand Down
Loading

0 comments on commit f7b199e

Please sign in to comment.