Skip to content

Commit 5b97db4

Browse files
authored
Merge pull request #614 from DocHubTeam/v3.15.0
v3.15.0
2 parents 1c8e993 + 28564aa commit 5b97db4

File tree

21 files changed

+388
-241
lines changed

21 files changed

+388
-241
lines changed

.gitignore

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ node_modules
33
/cache
44
/dist
55
/vscode-dist
6+
/plugins
67
/certs
78
/gitlab
8-
/plugins
99
/src/hidden
1010
/cache
1111
/public/temp
@@ -38,4 +38,4 @@ yarn-error.log*
3838
# Lock files
3939
# Вызвало сбой сборки докера
4040
# пока вернем до прихода DevOps
41-
# package-lock.json*
41+
# package-lock.json*
Binary file not shown.

public/documentation/docs/manual/docs/asyncapi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[сайта](https://www.asyncapi.com/blog/understanding-asyncapis).
55

66
```yaml
7-
asyncapi: 2.0.0
7+
asyncapi: 3.0.0
88
info:
99
title: Account Service
1010
version: "1.0.0"

public/documentation/docs/manual/docs/examples/asyncapi.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
asyncapi: 2.0.0
1+
asyncapi: 3.0.0
22
info:
33
title: Account Service
44
version: "1.0.0"

public/documentation/docs/manual/functions/example.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ functions:
2020
/* В items будет передан массив значений для суммирования */
2121
/* Для реализации функции используется встроенная функция JSONata $sum() */
2222
$sum(items)
23-
)
23+
)

public/favicon.ico

-110 KB
Binary file not shown.

public/favicon.svg

Lines changed: 1 addition & 0 deletions
Loading

public/metamodel/dochub/entities/contexts/base.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,10 @@ entities:
182182
$direction := $.*.direction ? $.*.direction : "--";
183183
$.*.links[$lookup($components, id)].(
184184
$title := title ? title : contract;
185-
$title := contract ? ("[[/docs/" & contract & " " & $title & "]]") : $title;
185+
$title := $match(contract, /([a-zA-Z0-1]+\:.+)/)
186+
? ("[[" & contract & " " & $title & "]]") : (
187+
contract ? ("[[/docs/" & contract & " " & $title & "]]") : $title
188+
);
186189
{
187190
"from": $from,
188191
"to": (id ? id : "undefined"),

public/metamodel/dochub/root.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ $package:
77
# Описание
88
description: Облегченная метамодель для описания прикладного слоя
99
# Версия
10-
version: 4.1.1
10+
version: 4.1.2
1111

1212
# Базовая метамодель DocHub. Включает в себя сущности
1313
# components - Архитектурные компоненты.

src/assets/libs/smartants.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)