Skip to content

Commit 35a7c64

Browse files
committed
Merge tag 'v2.3.1'
Release 2.3.1 Includes the following VCS-specific plugins: - SourceBitBucket 2.1.0 - SourceCgit 2.0.3 - SourceGithub 2.1.0 - SourceGitlab 2.0.3 - SourceGitphp 2.0.2 - SourceGitweb 2.0.3 - SourceHgWeb 2.1.3 - SourceSFSVN 2.0.0 - SourceSVN 2.2.0 - SourceViewVC 2.0.2 - SourceWebSVN 2.0.1 # Conflicts: # docs/CHANGELOG.md
2 parents d06e9b4 + 678ef2c commit 35a7c64

File tree

3 files changed

+27
-6
lines changed

3 files changed

+27
-6
lines changed

Source/MantisSourceBase.class.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ abstract class MantisSourceBase extends MantisPlugin
1919
* a change in the minimum required MantisBT version: 0=1.2; 1=1.3, 2=2.x.
2020
* The framework version is incremented when the plugin's core files change.
2121
*/
22-
const FRAMEWORK_VERSION = '2.3.0';
22+
const FRAMEWORK_VERSION = '2.3.1';
2323

2424
/**
2525
* Minimum required MantisBT version.

Source/pages/repo_delete.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010

1111
$t_repo = SourceRepo::load( $f_repo_id );
1212

13-
helper_ensure_confirmed( sprintf( plugin_lang_get( 'ensure_delete' ), $t_repo->name ), plugin_lang_get( 'delete_repository' ) );
13+
$t_message = sprintf( plugin_lang_get( 'ensure_delete' ), string_attribute( $t_repo->name ) );
14+
helper_ensure_confirmed( $t_message, plugin_lang_get( 'delete_repository' ) );
1415

1516
SourceRepo::delete( $t_repo->id );
1617

docs/CHANGELOG.md

Lines changed: 24 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,16 @@ specification.
3434
[#333](https://github.com/mantisbt-plugins/source-integration/issues/333)
3535

3636

37+
## [2.3.1] - 2020-02-13
38+
39+
Includes all changes and fixes from [1.6.1](#161---2020-02-13).
40+
41+
### Security
42+
43+
- Fix XSS in Delete Repository page (CVE request pending)
44+
[#338](https://github.com/mantisbt-plugins/source-integration/issues/338)
45+
46+
3747
## [2.3.0] - 2019-09-06
3848

3949
### Fixed
@@ -89,7 +99,7 @@ Includes all changes and fixes from [1.5.9](#159---2018-09-02).
8999

90100
### Security
91101

92-
- Fix XSS in Manage Repository and Changesets List pages (CVE request pending)
102+
- Fix XSS in Manage Repository and Changesets List pages (CVE-2018-16362)
93103
[#286](https://github.com/mantisbt-plugins/source-integration/issues/286)
94104

95105

@@ -249,6 +259,14 @@ Includes all changes and fixes from [1.5.0](#150---2017-03-06).
249259

250260
# Releases for MantisBT 1.3
251261

262+
## [1.6.2] - 2020-02-13
263+
264+
### Security
265+
266+
- Fix XSS in Delete Repository page (CVE request pending)
267+
[#338](https://github.com/mantisbt-plugins/source-integration/issues/338)
268+
269+
252270
## [1.6.1] - 2019-03-26
253271

254272
### Fixed
@@ -269,7 +287,7 @@ Includes all changes and fixes from [1.5.0](#150---2017-03-06).
269287

270288
### Security
271289

272-
- Fix XSS in Manage Repository and Changesets List pages (CVE request pending)
290+
- Fix XSS in Manage Repository and Changesets List pages (CVE-2018-16362)
273291
[#286](https://github.com/mantisbt-plugins/source-integration/issues/286)
274292

275293
## [1.5.8] - 2018-08-30
@@ -489,8 +507,9 @@ Includes all changes and fixes from master-1.2.x branch, up to commit
489507
## [0.9] - 2008-04-11
490508

491509

492-
[Unreleased 2.x]: https://github.com/mantisbt-plugins/source-integration/compare/v2.3.0...HEAD
510+
[Unreleased 2.x]: https://github.com/mantisbt-plugins/source-integration/compare/v2.3.1...HEAD
493511

512+
[2.3.1]: https://github.com/mantisbt-plugins/source-integration/compare/v2.3.0...v2.3.1
494513
[2.3.0]: https://github.com/mantisbt-plugins/source-integration/compare/v2.2.0...v2.3.0
495514
[2.2.0]: https://github.com/mantisbt-plugins/source-integration/compare/v2.1.5...v2.2.0
496515
[2.1.5]: https://github.com/mantisbt-plugins/source-integration/compare/v2.1.4...v2.1.5
@@ -506,8 +525,9 @@ Includes all changes and fixes from master-1.2.x branch, up to commit
506525
[2.0.0-beta.2]: https://github.com/mantisbt-plugins/source-integration/compare/v2.0.0-beta.1...v2.0.0-beta.2
507526
[2.0.0-beta.1]: https://github.com/mantisbt-plugins/source-integration/compare/v1.5.2...v2.0.0-beta.1
508527

509-
[Unreleased 1.x]: https://github.com/mantisbt-plugins/source-integration/compare/v1.6.1...master-1.3.x
528+
[Unreleased 1.x]: https://github.com/mantisbt-plugins/source-integration/compare/v1.6.2...master-1.3.x
510529

530+
[1.6.2]: https://github.com/mantisbt-plugins/source-integration/compare/v1.6.1...v1.6.2
511531
[1.6.1]: https://github.com/mantisbt-plugins/source-integration/compare/v1.6.0...v1.6.1
512532
[1.6.0]: https://github.com/mantisbt-plugins/source-integration/compare/v1.5.9...v1.6.0
513533
[1.5.9]: https://github.com/mantisbt-plugins/source-integration/compare/v1.5.8...v1.5.9

0 commit comments

Comments
 (0)