File tree Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Expand file tree Collapse file tree 4 files changed +19
-3
lines changed Original file line number Diff line number Diff line change 77
88# the gradle temp dir
99.gradle
10+ * .iml
1011
1112# Avoid ignoring Gradle wrapper jar file (.jar files are usually ignored)
1213! gradle-wrapper.jar
Original file line number Diff line number Diff line change 1+ ## 2.0.0 - 2017-09-27
2+
3+ ### Added
4+
5+ - Allow admin to choose authorization using ` PersonalAccessToken ` or ` UserAccessToken `
6+ - **PersonalAccessToken:** requires an additional permission `read:org` to authorize user based on role configuration.
7+ - **UserAccessToken:** requires an additional `read:org` permission from user. This allows plugins to access private org and teams of user.
8+
9+ ### Fixed
10+
11+ - Role assignment based on team membership.
12+ - Security fix for cross login issue with v1.0.0 of the plugin due to provider caching at plugin side.
13+
114## 1.0.0 - 2017-07-25
215
316Initial release of plugin
Original file line number Diff line number Diff line change 1717apply plugin : ' java'
1818apply from : ' plugin-common.gradle'
1919
20- version = ' 1.0.0'
20+ project. ext. pluginVersion = ' 2.0.0'
21+ project. ext. fullVersion = project. distVersion ? " ${ project.pluginVersion} -${ project.distVersion} " : project. pluginVersion
22+
23+ version = project. fullVersion
2124group = ' cd.go'
2225
2326project. ext. pluginDesc = [
@@ -37,7 +40,7 @@ repositories {
3740
3841dependencies {
3942 compileOnly group : ' cd.go.plugin' , name : ' go-plugin-api' , version : ' 17.5.0'
40- compile group : ' com.google.code.gson' , name : ' gson' , version : ' 2.8.0 '
43+ compile group : ' com.google.code.gson' , name : ' gson' , version : ' 2.8.1 '
4144 compile group : ' org.kohsuke' , name : ' github-api' , version : ' 1.86'
4245 compile group : ' com.squareup.okhttp3' , name : ' okhttp' , version : ' 3.8.1'
4346
Original file line number Diff line number Diff line change @@ -36,7 +36,6 @@ def releaseRevision = { ->
3636
3737project. ext. gitRevision = gitRevision()
3838project. ext. distVersion = releaseRevision()
39- project. ext. fullVersion = " ${ version} (${ gitRevision} )"
4039
4140sourceCompatibility = 1.8
4241targetCompatibility = 1.8
You can’t perform that action at this time.
0 commit comments