Skip to content

Commit

Permalink
Doc
Browse files Browse the repository at this point in the history
  • Loading branch information
tomasbjerre committed Feb 27, 2018
1 parent e188207 commit 495a8cc
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 6 deletions.
43 changes: 43 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,49 @@

Changelog of Violation Comments to Bitbucket Server Plugin.

## Unreleased
### GitHub [#50](https://github.com/jenkinsci/violation-comments-to-stash-plugin/pull/50) Combined credentials and item always being null

**Combined credentials and item always being null (#50)**

* fix java classes to eol of lf to avoid commit nightmare on windows
* because of build's use of format plugin
* Combine credentials into one
* cleanup/fix findbug warnings
* missed transient on deprecated fields
* Correct find Credential to use item to get a folder credential correctly
* Correct readResolve
* Code Style bummer :sob:
* assert req is not null instead of suppressing the error
* fixup
* add DoCheck and adhere to consumer doc
* Correct usage of credentials
* Follow the import style
* use uri as name instead
* Nonnull is bad for licensing
* minor tweaks
* description and help

[e1882073fc256f5](https://github.com/jenkinsci/violation-comments-to-stash-plugin/commit/e1882073fc256f5) Joseph Petersen *2018-02-27 18:15:17*


### No issue

**Update Jenkinsfile**


[19ba0150826779c](https://github.com/jenkinsci/violation-comments-to-stash-plugin/commit/19ba0150826779c) Joseph Petersen *2018-02-24 15:01:03*


## 1.69
### No issue

**PCLint**


[6323a6c9837ff84](https://github.com/jenkinsci/violation-comments-to-stash-plugin/commit/6323a6c9837ff84) Tomas Bjerre *2018-02-13 19:07:12*


## 1.68
### GitHub [#47](https://github.com/jenkinsci/violation-comments-to-stash-plugin/issues/47) Personal Access Tokens

Expand Down
6 changes: 2 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,7 @@ git --no-pager log --max-count=10 --graph --abbrev-commit
repoSlug("\$PULL_REQUEST_TO_REPO_SLUG")
pullRequestId("\$PULL_REQUEST_ID")
usernamePasswordCredentialsId('bitbucketservercredentials') // You only need one of these
personalAccessTokenId('bitbucketservertextcredentials')
credentialsId('bitbucketservercredentials')
minSeverity('INFO')
createSingleFileComments(true)
Expand Down Expand Up @@ -245,8 +244,7 @@ node {
pullRequestId: '1', // Use environment variable here
repoSlug: 'violations-test', // Use environment variable here
usernamePasswordCredentialsId: 'theid', // You only need one of these
personalAccessTokenId: 'theid',
credentialsId: 'theid',
violationConfigs: [
// Many more formats available, check https://github.com/tomasbjerre/violations-lib
Expand Down
3 changes: 1 addition & 2 deletions sandbox/violations-test.jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,7 @@ node {
projectKey: 'PROJ',
repoSlug: 'violations-test',

usernamePasswordCredentialsId: 'bitbucketservercredentials', // You only need one of these
personalAccessTokenId: 'personalAccessTokenId',
credentialsId: 'bitbucketservercredentials',

pullRequestId: '1',
minSeverity: 'INFO',
Expand Down

0 comments on commit 495a8cc

Please sign in to comment.