Skip to content

Commit 6e39ab5

Browse files
authored
Merge pull request #117 from jinghao1/master
release 1.3.1
2 parents 202ceff + 42fa21f commit 6e39ab5

File tree

3 files changed

+103
-2
lines changed

3 files changed

+103
-2
lines changed
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
2+
name: "Code Scanning - Action"
3+
4+
on:
5+
push:
6+
branches: [ master ]
7+
paths-ignore:
8+
- '.github/**'
9+
- '**.md'
10+
- '**.yml'
11+
- '**.json'
12+
- 'LICENSE'
13+
- '.gitignore'
14+
pull_request:
15+
branches: [ master ]
16+
paths-ignore:
17+
- '.github/**'
18+
- '**.md'
19+
- '**.yml'
20+
- '**.json'
21+
- 'LICENSE'
22+
- '.gitignore'
23+
schedule:
24+
# ┌───────────── minute (0 - 59)
25+
# │ ┌───────────── hour (0 - 23)
26+
# │ │ ┌───────────── day of the month (1 - 31)
27+
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
28+
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
29+
# │ │ │ │ │
30+
# │ │ │ │ │
31+
# │ │ │ │ │
32+
# * * * * *
33+
- cron: '30 1 * * 0'
34+
35+
jobs:
36+
CodeQL-Build:
37+
# If you're only analyzing JavaScript or Python, CodeQL runs on ubuntu-latest, windows-latest, and macos-latest.
38+
# If you're analyzing C/C++, C#, Go, or Java, CodeQL runs on ubuntu-latest, windows-2019, and macos-latest.
39+
runs-on: ubuntu-latest
40+
41+
permissions:
42+
# required for all workflows
43+
security-events: write
44+
45+
# only required for workflows in private repositories
46+
actions: read
47+
contents: read
48+
49+
steps:
50+
- name: Checkout repository
51+
uses: actions/checkout@v2
52+
53+
# Initializes the CodeQL tools for scanning.
54+
- name: Initialize CodeQL
55+
uses: github/codeql-action/init@v1
56+
# Override language selection by uncommenting this and choosing your languages
57+
with:
58+
languages: python, c
59+
60+
- name: Set up Python
61+
uses: actions/setup-python@v2
62+
with:
63+
python-version: "3.9"
64+
65+
- name: Package
66+
run: |
67+
cp dongtai_agent_python/config-example.json dongtai_agent_python/config.json
68+
python setup.py sdist
69+
70+
- name: Perform CodeQL Analysis
71+
uses: github/codeql-action/analyze@v1

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# Changelog
22

3-
## Unreleased
3+
## [1.3.1](https://github.com/HXSecurity/DongTai-agent-python/releases/tag/v1.3.1) - 2022-02-23
4+
* FEATURES
5+
* Add crypto bad cipher detection [#107](https://github.com/HXSecurity/DongTai-agent-python/pull/107)
6+
* Add regular expression DOS attack detection [#111](https://github.com/HXSecurity/DongTai-agent-python/pull/111)
7+
* Compatible with v2 version taint data reporting API [#116](https://github.com/HXSecurity/DongTai-agent-python/pull/116)
8+
* BUGFIXES
9+
* Fix exception caused when using gevent patch [#105](https://github.com/HXSecurity/DongTai-agent-python/pull/105)
10+
* Fix Django 3.1, 3.2 response header parsing error [#108](https://github.com/HXSecurity/DongTai-agent-python/pull/108)
11+
* Added documentation of packages required for compiling under alpine linux [#115](https://github.com/HXSecurity/DongTai-agent-python/pull/115)
12+
* ENHANCEMENTS
13+
* performance optimization [#116](https://github.com/HXSecurity/DongTai-agent-python/pull/116)
14+
* code cleanup [#110](https://github.com/HXSecurity/DongTai-agent-python/pull/110)
15+
* Build
16+
* When the github action runs, it automatically triggers openapi to pull the latest agent package [#113](https://github.com/HXSecurity/DongTai-agent-python/pull/113)
17+
18+
## [1.3.0](https://github.com/HXSecurity/DongTai-agent-python/releases/tag/v1.3.0) - 2022-01-07
419

520
* FEATURES
621
* Add installed packages report for SCA [#100](https://github.com/HXSecurity/DongTai-agent-python/pull/100)

CHANGELOG_CN.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,21 @@
11
# 升级日志
22

3-
## 尚未发布
3+
## [1.3.1](https://github.com/HXSecurity/DongTai-agent-python/releases/tag/v1.3.1) - 2022-02-23
4+
* 功能
5+
* 增加弱加密算法漏洞检测 [#107](https://github.com/HXSecurity/DongTai-agent-python/pull/107)
6+
* 增加正则表达式DOS攻击检测 [#111](https://github.com/HXSecurity/DongTai-agent-python/pull/111)
7+
* 兼容 v2版本污点数据上报API [#116](https://github.com/HXSecurity/DongTai-agent-python/pull/116)
8+
* 修复
9+
* 修复使用 gevent patch 时导致的异常 [#105](https://github.com/HXSecurity/DongTai-agent-python/pull/105)
10+
* 修复 Django 3.1、3.2 响应头解析错误 [#108](https://github.com/HXSecurity/DongTai-agent-python/pull/108)
11+
* 增加 alpine linux 下编译时需要的软件包文档说明 [#115](https://github.com/HXSecurity/DongTai-agent-python/pull/115)
12+
* 变更
13+
* 性能优化 [#116](https://github.com/HXSecurity/DongTai-agent-python/pull/116)
14+
* 代码清理 [#110](https://github.com/HXSecurity/DongTai-agent-python/pull/110)
15+
* 构建
16+
* github action 运行时自动触发 openapi 拉取最新的 agent 包 [#113](https://github.com/HXSecurity/DongTai-agent-python/pull/113)
17+
18+
## [1.3.0](https://github.com/HXSecurity/DongTai-agent-python/releases/tag/v1.3.0) - 2022-01-07
419

520
* 功能
621
* 组件管理: 上报已安装的软件包 [#100](https://github.com/HXSecurity/DongTai-agent-python/pull/100)

0 commit comments

Comments
 (0)