Skip to content

Commit

Permalink
Merge pull request #4 from buession/development
Browse files Browse the repository at this point in the history
release 2.0.2
  • Loading branch information
eduosi authored Jul 29, 2022
2 parents fa62faa + a9c338e commit d59f013
Show file tree
Hide file tree
Showing 21 changed files with 247 additions and 18 deletions.
49 changes: 49 additions & 0 deletions .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
name: BUG 提交
about: 提交问题缺陷帮助我们更好的改进
title: '[BUG]'
labels: 'bug'
assignees: ''

---

### 问题描述

*简要描述您碰到的问题。*


### 环境信息

*请填写以下信息:*

- OS 信息: [e.g.:MacOS Monterey 6Core 2.6GHz 16GB]
- JDK 信息: [e.g.:OrcaleJDK 1.8.0_301]
- 版本信息:[e.g.:buessionframework x.x.x]


### 重现步骤

*如何操作可以重现该问题:*

1. 使用 `xxx.xxx` 方法
2. 输入 `...` 数据
3. 出现 `...` 错误

```java
//可在此输入示例代码
```

### 期待的正确结果

*对您期望发生的结果进行清晰简洁的描述。*


### 相关日志输出

*请复制并粘贴任何相关的日志输出。*


#### 附加信息

*如果您还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。*

28 changes: 28 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
---
name: 需求建议
about: 提出针对本项目的想法和建议
title: '[FEATURE]'
labels: 'enhancement'
assignees: ''

---

### 请描述您的需求或者改进建议

*对您想要需求或建议的清晰简洁的描述。*


### 请描述你建议的实现方案

*对您想要需求或建议的实现方案的详细描述。*


### 描述您考虑过的替代方案

*对您考虑过的任何替代解决方案或功能的描述。*


#### 附加信息

*如果您还有其他需要提供的信息,可以在这里填写(可以提供截图、视频等)。*

13 changes: 13 additions & 0 deletions .github/ISSUE_TEMPLATE/problem_support.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
name: 问题支持
about: 提出针对本项目使用及其他方面的问题
title: '[QUESTION]'
labels: 'question'
assignees: ''

---

### 请描述您的问题

*询问有关本项目的使用和其他方面的相关问题。*

70 changes: 70 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
# For most projects, this workflow file will not need changing; you simply need
# to commit it to your repository.
#
# You may wish to alter this file to override the set of languages analyzed,
# or to provide custom queries or build logic.
#
# ******** NOTE ********
# We have attempted to detect the languages in your repository. Please check
# the `language` matrix defined below to confirm you have the correct set of
# supported CodeQL languages.
#
name: "CodeQL"

on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
- cron: '36 17 * * 2'

jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write

strategy:
fail-fast: false
matrix:
language: [ 'java' ]
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]
# Learn more about CodeQL language support at https://git.io/codeql-language-support

steps:
- name: Checkout repository
uses: actions/checkout@v2

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
# By default, queries listed here will override any specified in a config file.
# Prefix the list here with "+" to use these queries and those in the config file.
# queries: ./path/to/local/query, your-org/your-repo/queries@main

# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v1

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl

# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
# and modify them (or add more) to build your code if your project
# uses a compiled language

#- run: |
# make bootstrap
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1
51 changes: 51 additions & 0 deletions .github/workflows/veracode-analysis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
# This workflow uses actions that are not certified by GitHub.
# They are provided by a third-party and are governed by
# separate terms of service, privacy policy, and support
# documentation.

# This workflow will initiate a Veracode Static Analysis Pipeline scan, return a results.json and convert to SARIF for upload as a code scanning alert

name: Veracode Static Analysis Pipeline Scan

on:
push:
branches: [ master ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ master ]
schedule:
- cron: '36 0 * * 0'

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a job to build and submit pipeline scan, you will need to customize the build process accordingly and make sure the artifact you build is used as the file input to the pipeline scan file parameter
build-and-pipeline-scan:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:

# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it and copies all sources into ZIP file for submitting for analysis. Replace this section with your applications build steps
- uses: actions/checkout@v2
with:
repository: ''

- run: zip -r veracode-scan-target.zip ./

# download the Veracode Static Analysis Pipeline scan jar
- run: curl --silent --show-error --fail -O https://downloads.veracode.com/securityscan/pipeline-scan-LATEST.zip
- run: unzip -o pipeline-scan-LATEST.zip

- uses: actions/setup-java@v1
with:
java-version: 1.8
- run: java -jar pipeline-scan.jar --veracode_api_id "${{secrets.VERACODE_API_ID}}" --veracode_api_key "${{secrets.VERACODE_API_KEY}}" --fail_on_severity="Very High, High" --file veracode-scan-target.zip
continue-on-error: true
- name: Convert pipeline scan output to SARIF format
id: convert
uses: veracode/veracode-pipeline-scan-results-to-sarif@ff08ae5b45d5384cb4679932f184c013d34da9be
with:
pipeline-results-json: results.json
- uses: github/codeql-action/upload-sarif@v1
with:
# Path to SARIF file relative to the root of the repository
sarif_file: veracode-results.sarif
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,26 @@
===========================


## [2.0.2](https://github.com/buession/buession-cas/releases/tag/v2.0.2) (2022-07-28)

### 🔨依赖升级

- [依赖库版本升级和安全漏洞修复](https://github.com/buession/buession-parent/releases/tag/v2.0.2)


---


## [2.0.1](https://github.com/buession/buession-cas/releases/tag/v2.0.1) (2022-07-18)

### 🔨依赖升级

- [依赖库版本升级和安全漏洞修复](https://github.com/buession/buession-parent/releases/tag/v2.0.1)


---


## [2.0.0](https://github.com/buession/buession-cas/releases/tag/v2.0.0) (2022-07-08)

### 🔨依赖升级
Expand Down
11 changes: 8 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
# Buession Cas

对 Apereo CAS 的二次封装和解决各依赖。

[![Build Status](https://travis-ci.org/buession/buession-cas.svg?branch=master)](https://travis-ci.org/buession/buession-cas)
[![Coverage Status](https://img.shields.io/codecov/c/github/buession/buession-cas/master.svg)](https://codecov.io/github/buession/buession-cas?branch=master&view=all#sort=coverage&dir=asc)
[![Maven Central](https://img.shields.io/maven-central/v/com.buession.cas/buession-cas-core.svg)](https://search.maven.org/search?q=g:com.buession.cas)
[![GitHub release](https://img.shields.io/github/release/buession/buession-cas.svg)](https://github.com/buession/buession-cas/releases)
[![License](https://img.shields.io/badge/license-Apache%202-4EB1BA.svg)](https://www.apache.org/licenses/LICENSE-2.0.html)
[![Java support](https://img.shields.io/badge/Java-11+-green?logo=java&logoColor=white)](https://openjdk.java.net/)
[![Javadocs](http://www.javadoc.io/badge/com.buession.cas/buession-cas-core.svg)](http://www.javadoc.io/doc/com.buession.cas/buession-cas-core)


对 Apereo CAS 的二次封装和解决各依赖。


<img src="docs/images/logo.png" alt="Buession Cas" title="Buession Cas" width="280px" />
<p align="center">
<img src="docs/images/logo.png" alt="Buession Cas" title="Buession Cas" width="280px" />
</p>

## Requirements

Expand Down
2 changes: 1 addition & 1 deletion buession-cas-audit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-audit</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down
2 changes: 1 addition & 1 deletion buession-cas-captcha/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-captcha</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down
2 changes: 1 addition & 1 deletion buession-cas-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-client</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down
2 changes: 1 addition & 1 deletion buession-cas-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-core</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down
2 changes: 1 addition & 1 deletion buession-cas-metrics/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-metrics</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down
4 changes: 2 additions & 2 deletions buession-cas-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@
<groupId>com.buession</groupId>
<artifactId>parent</artifactId>
<relativePath/>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<url>https://github.com/buession/buession-cas</url>
<description>Buession Framework CAS Parent</description>
<version>2.0.1</version>
<version>2.0.2</version>
<packaging>pom</packaging>

<organization>
Expand Down
2 changes: 1 addition & 1 deletion buession-cas-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-service</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down
2 changes: 1 addition & 1 deletion buession-cas-session/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-session</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down
2 changes: 1 addition & 1 deletion buession-cas-support/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-support</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down
2 changes: 1 addition & 1 deletion buession-cas-throttle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-throttle</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down
2 changes: 1 addition & 1 deletion buession-cas-ticket/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-ticket</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down
2 changes: 1 addition & 1 deletion buession-cas-view/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-view</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down
2 changes: 1 addition & 1 deletion buession-cas-web/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-web</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down
2 changes: 1 addition & 1 deletion buession-cas-webflow/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<groupId>com.buession.cas</groupId>
<artifactId>buession-cas-parent</artifactId>
<relativePath>../buession-cas-parent</relativePath>
<version>2.0.1</version>
<version>2.0.2</version>
</parent>
<artifactId>buession-cas-webflow</artifactId>
<url>https://github.com/buession/buession-cas</url>
Expand Down

0 comments on commit d59f013

Please sign in to comment.