Skip to content

Commit

Permalink
Merge branch 'develop' into dev/seata-server_metrics_fix
Browse files Browse the repository at this point in the history
  • Loading branch information
slievrly committed Aug 19, 2022
2 parents 3d1c992 + 592d18b commit d18e2ae
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 26 deletions.
1 change: 1 addition & 0 deletions changes/en-us/develop.md
Expand Up @@ -22,6 +22,7 @@ Add changes here for all PR submitted to the develop branch.
- [[#4761](https://github.com/seata/seata/pull/4761)] use hget replace hmget because only one field
- [[#4414](https://github.com/seata/seata/pull/4414)] exclude log4j dependencies
- [[#4836](https://github.com/seata/seata/pull/4836)] optimize BaseTransactionalExecutor#buildLockKey(TableRecords rowsIncludingPK) method more readable
- [[#4865](https://github.com/seata/seata/pull/4865)] fix some security vulnerabilities in GGEditor

### test:
- [[#4794](https://github.com/seata/seata/pull/4794)] try to fix the test `DataSourceProxyTest.getResourceIdTest()`
Expand Down
1 change: 1 addition & 0 deletions changes/zh-cn/develop.md
Expand Up @@ -22,6 +22,7 @@
- [[#4761](https://github.com/seata/seata/pull/4761)] 使用 hget 代替 RedisLocker 中的 hmget, 因为只有一个 field
- [[#4414](https://github.com/seata/seata/pull/4414)] 移除log4j依赖
- [[#4836](https://github.com/seata/seata/pull/4836)] 优化 BaseTransactionalExecutor#buildLockKey(TableRecords rowsIncludingPK) 方法可读性
- [[#4865](https://github.com/seata/seata/pull/4865)] 修复 Saga 可视化设计器 GGEditor 安全漏洞

### test:
- [[#4794](https://github.com/seata/seata/pull/4794)] 重构代码,尝试修复单元测试 `DataSourceProxyTest.getResourceIdTest()`
Expand Down
2 changes: 1 addition & 1 deletion saga/seata-saga-statemachine-designer/README.md
Expand Up @@ -16,7 +16,7 @@ $ npm start
## build a package
```sh
$ cd saga/saga-statemachine-designer
$ npm build
$ npm run build
```

copy 'index.html' and 'dist' directory to static html directory of web server
Expand Down
2 changes: 1 addition & 1 deletion saga/seata-saga-statemachine-designer/README.zh-CN.md
Expand Up @@ -16,7 +16,7 @@ $ npm start
## 打包
```sh
$ cd saga/saga-statemachine-designer
$ npm build
$ npm run build
```

然后将index.html和dist目录拷贝到web server的静态页面目录下
Expand Down
12 changes: 6 additions & 6 deletions saga/seata-saga-statemachine-designer/index.html
Expand Up @@ -6,16 +6,16 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Seata Saga StateMachine Designer</title>
<link rel="stylesheet" href="http://g.alicdn.com/code/lib/antd/3.16.1/antd.min.css">
<link rel="stylesheet" href="//g.alicdn.com/code/lib/antd/3.16.1/antd.min.css">
</head>

<body>
<div id="root"></div>
<script src="http://g.alicdn.com/code/lib/react/16.8.6/umd/react.production.min.js"></script>
<script src="http://g.alicdn.com/code/lib/react-dom/16.8.6/umd/react-dom.production.min.js"></script>
<script src="http://g.alicdn.com/code/lib/react-router-dom/5.0.0/react-router-dom.min.js"></script>
<script src="http://g.alicdn.com/code/lib/moment.js/2.24.0/moment.min.js"></script>
<script src="http://g.alicdn.com/code/lib/antd/3.16.1/antd.min.js"></script>
<script src="//g.alicdn.com/code/lib/react/16.8.6/umd/react.production.min.js"></script>
<script src="//g.alicdn.com/code/lib/react-dom/16.8.6/umd/react-dom.production.min.js"></script>
<script src="//g.alicdn.com/code/lib/react-router-dom/5.0.0/react-router-dom.min.js"></script>
<script src="//g.alicdn.com/code/lib/moment.js/2.24.0/moment.min.js"></script>
<script src="//g.alicdn.com/code/lib/antd/3.16.1/antd.min.js"></script>
<script src="./dist/bundle.js"></script>
</body>

Expand Down
34 changes: 17 additions & 17 deletions saga/seata-saga-statemachine-designer/package-lock.json

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

2 changes: 1 addition & 1 deletion saga/seata-saga-statemachine-designer/package.json
Expand Up @@ -51,7 +51,7 @@
"@antv/g6": "^2.2.6",
"codemirror": "^5.55.0",
"core-js": "^3.6.5",
"lodash": "^4.17.10",
"lodash": "^4.17.21",
"react-codemirror": "^1.0.0"
},
"devDependencies": {
Expand Down

0 comments on commit d18e2ae

Please sign in to comment.