Skip to content
This repository was archived by the owner on Jun 9, 2021. It is now read-only.

Commit daf75d6

Browse files
committed
Latest changelog plugin
1 parent 2abbb19 commit daf75d6

File tree

4 files changed

+18
-12
lines changed

4 files changed

+18
-12
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,18 @@
33
Changelog of Pull Request Notifier for Bitbucket.
44

55
## Unreleased
6+
### No issue
7+
Latest changelog plugin
8+
9+
[a2ae249fec5b6f1](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/commit/a2ae249fec5b6f1) Tomas Bjerre *2016-06-24 09:38:01*
10+
11+
## 2.26
612
### GitHub [#124](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/issues/124) PR Updated not triggering a Job
713
Using ApplicationUser from PR event
814

915
* Was taking it from AuthenticationContext when a RESCOPED event occured. At that time the getCurrentUser() returns null.
1016

11-
[b70b9d0e3b4091f](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/commit/b70b9d0e3b4091f) Tomas Bjerre *2016-06-23 14:44:29*
17+
[1964ba412ccbf84](https://github.com/tomasbjerre/pull-request-notifier-for-bitbucket/commit/1964ba412ccbf84) Tomas Bjerre *2016-06-23 19:35:41*
1218

1319
### No issue
1420
Building with BBS 4.7.1

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
<plugin>
147147
<groupId>se.bjurr.gitchangelog</groupId>
148148
<artifactId>git-changelog-maven-plugin</artifactId>
149-
<version>1.29</version>
149+
<version>1.32</version>
150150
<executions>
151151
<execution>
152152
<id>GenerateGitChangelog</id>
@@ -262,4 +262,4 @@ Changelog of Pull Request Notifier for Bitbucket.
262262
<bitbucket.data.version>${bitbucket.version}</bitbucket.data.version>
263263
<amps.version>6.1.0</amps.version>
264264
</properties>
265-
</project>
265+
</project>

src/main/resources/admin.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ define('plugin/prnfb/admin', [
1212
var buttonsAdminUrlPostUrl = AJS.contextPath() + "/rest/prnfb-admin/1.0/settings/buttons"; 
1313
var buttonsAdminUrl = buttonsAdminUrlPostUrl;
1414

15-
if ($('#prnfbRepositorySlug').length != 0) {
15+
if ($('#prnfbRepositorySlug').length !== 0) {
1616
var projectKey = $('#prnfbProjectKey').val();
1717
var repositorySlug = $('#prnfbRepositorySlug').val();
1818

19-
notificationsAdminUrl = notificationsAdminUrlPostUrl + '/projectKey/'+projectKey+'/repositorySlug/'+repositorySlug;
20-
buttonsAdminUrl = buttonsAdminUrlPostUrl + '/projectKey/'+projectKey+'/repositorySlug/'+repositorySlug;
19+
notificationsAdminUrl = notificationsAdminUrlPostUrl + '/projectKey/' + projectKey + '/repositorySlug/' + repositorySlug;
20+
buttonsAdminUrl = buttonsAdminUrlPostUrl + '/projectKey/' + projectKey + '/repositorySlug/' + repositorySlug;
2121
}
2222

2323

@@ -31,7 +31,7 @@ define('plugin/prnfb/admin', [
3131

3232
$(document).ready(function() {
3333
utils.setupForm('#prnfbsettingsadmin', settingsAdminUrl, settingsAdminUrlPostUrl);
34-
utils.setupForms('#prnfbbuttonadmin', buttonsAdminUrl ,buttonsAdminUrlPostUrl);
34+
utils.setupForms('#prnfbbuttonadmin', buttonsAdminUrl, buttonsAdminUrlPostUrl);
3535
utils.setupForms('#prnfbnotificationadmin', notificationsAdminUrl, notificationsAdminUrlPostUrl);
3636
});
3737
});

src/main/resources/admin.vm

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,11 @@
2727
<!-- //-->
2828
#if($repository)
2929
<!-- //-->
30-
<input type="hidden" id="prnfbProjectKey" name="projectKey" value="$repository.project.key" />
31-
<input type="hidden" id="prnfbRepositorySlug" name="repositorySlug" value="$repository.slug" />
32-
<!-- //-->
33-
#end
34-
<!-- //-->
30+
<input type="hidden" id="prnfbProjectKey" name="projectKey" value="$repository.project.key" />
31+
<input type="hidden" id="prnfbRepositorySlug" name="repositorySlug" value="$repository.slug" />
32+
<!-- //-->
33+
#end
34+
<!-- //-->
3535

3636
<div class="statusresponse"></div>
3737

0 commit comments

Comments
 (0)