Changesets: MantisBT

dependabot/composer/ezyang/htmlpurifier-4.16.0 845a2d3a

2022-09-18 21:38

dependabot[bot]

Committer: community


Details Diff
Bump ezyang/htmlpurifier from 4.14.0 to 4.16.0

Bumps [ezyang/htmlpurifier](https://github.com/ezyang/htmlpurifier) from 4.14.0 to 4.16.0.
- [Release notes](https://github.com/ezyang/htmlpurifier/releases)
- [Changelog](https://github.com/ezyang/htmlpurifier/blob/master/CHANGELOG.md)
- [Commits](https://github.com/ezyang/htmlpurifier/compare/v4.14.0...v4.16.0)

---
updated-dependencies:
- dependency-name: ezyang/htmlpurifier
dependency-type: direct:production
update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
mod - composer.lock Diff File

master b3247209

2022-09-12 07:07

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net.
mod - lang/strings_persian.txt Diff File

master a2170dda

2022-09-08 07:07

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net.
mod - lang/strings_chinese_traditional.txt Diff File

dependabot/composer/adodb/adodb-php-5.22.3 769a8c3b

2022-09-06 21:11

dependabot[bot]

Committer: community


Details Diff
Bump adodb/adodb-php from 5.21.4 to 5.22.3

Bumps [adodb/adodb-php](https://github.com/ADOdb/ADOdb) from 5.21.4 to 5.22.3.
- [Release notes](https://github.com/ADOdb/ADOdb/releases)
- [Changelog](https://github.com/ADOdb/ADOdb/blob/master/docs/changelog.md)
- [Commits](https://github.com/ADOdb/ADOdb/compare/v5.21.4...v5.22.3)

---
updated-dependencies:
- dependency-name: adodb/adodb-php
dependency-type: direct:production
update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
mod - composer.lock Diff File

master 7c7be319

2022-09-05 07:07

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net.
mod - lang/strings_french.txt Diff File
mod - lang/strings_macedonian.txt Diff File
mod - lang/strings_russian.txt Diff File

master 3faaae32

2022-09-03 05:54

dregad


Details Diff
Markdown processing code cleanup, step 1

This addresses step 1 (cleanup quotings) of issue 0030919.

Merge PR https://github.com/mantisbt/mantisbt/pull/1841
Affected Issues
0022190, 0030919
mod - plugins/MantisCoreFormatting/MantisCoreFormatting.php Diff File
mod - plugins/MantisCoreFormatting/core/MantisMarkdown.php Diff File
add - plugins/MantisCoreFormatting/files/markdown.css Diff File
mod - plugins/MantisCoreFormatting/tests/MarkdownTest.php Diff File

master 51cbce39

2022-09-03 05:29

dregad


Details Diff
Merge branch 'master-2.25'

# Conflicts:
# core/string_api.php
mod - config_defaults_inc.php Diff File
mod - core/constant_inc.php Diff File
mod - core/helper_api.php Diff File
mod - core/string_api.php Diff File
mod - docbook/Admin_Guide/en-US/config/html.xml Diff File
mod - plugins/MantisCoreFormatting/core/MantisMarkdown.php Diff File

master 4b658c20

2022-09-03 05:09

dregad


Details Diff
Merge branch 'master-2.25'
mod - bug_view_inc.php Diff File

master bb6e6149

2022-09-01 07:08

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net.
mod - lang/strings_french.txt Diff File
mod - lang/strings_russian.txt Diff File

master 350ddd8c

2022-08-29 07:07

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net.
mod - lang/strings_breton.txt Diff File
mod - lang/strings_hungarian.txt Diff File
mod - lang/strings_slovene.txt Diff File

master 0f701bdb

2022-08-25 16:57

grummbeer

Committer: dregad


Details Diff
Markdown. external css to style the quotings.

Fix Indention. Tabs, not spaces.

Fix Indention. Tabs, not spaces.
mod - plugins/MantisCoreFormatting/MantisCoreFormatting.php Diff File
mod - plugins/MantisCoreFormatting/core/MantisMarkdown.php Diff File
add - plugins/MantisCoreFormatting/files/markdown.css Diff File
mod - plugins/MantisCoreFormatting/tests/MarkdownTest.php Diff File

master 77c4486e

2022-08-25 13:21

grummbeer

Committer: dregad


Details Diff
Remove restrictive CSS selectors.
mod - plugins/MantisCoreFormatting/files/markdown.css Diff File

master 83295b06

2022-08-25 12:05

grummbeer

Committer: dregad


Details Diff
Change css font-size from static to inherit.
mod - plugins/MantisCoreFormatting/files/markdown.css Diff File

master 80e748c9

2022-08-25 12:02

grummbeer

Committer: dregad


Details Diff
Load stylesheet only if Markdown is enabled.
mod - plugins/MantisCoreFormatting/MantisCoreFormatting.php Diff File

master 6c030e17

2022-08-25 07:07

translatewiki.net


Details Diff
Localisation updates from https://translatewiki.net.
mod - lang/strings_interlingua.txt Diff File

master-2.25 677bc72e

2022-08-24 09:50

dregad


Details Diff
Convert URLs to links in Markdown based on config

MantisMarkdown now respects MantisCoreFormatting's _process_urls_
setting, i.e. the URLs in the text are only converted to links when the
option is ON.

Fixes 0030918
Affected Issues
0030918
mod - plugins/MantisCoreFormatting/core/MantisMarkdown.php Diff File

master-2.25 881f49a0

2022-08-24 09:40

dregad


Details Diff
Set noopener/noreferrer in Markdown links

URLs wrapped in angle brackets like `<http://example.com>` are not
processed correctly (see FIXME note in MantisMarkdown::inlineUrlTag()).

This is because MantisCoreFormattingPlugin::formatted() applies
html_specialchars() first, so the < > are converted to </>
and ParseDown never calls the inlineUrlTag() method, resulting in broken
links on single-line strings (`<http://example.com>`).

On multi-line strings, the angle brackets wrapping the link remain
visible (they ought to be removed).

Fixes 0030791
Affected Issues
0030791
mod - core/helper_api.php Diff File
mod - core/string_api.php Diff File
mod - plugins/MantisCoreFormatting/core/MantisMarkdown.php Diff File

master 6540bb1a

2022-08-24 08:57

dregad


Details Diff
Merge branch 'master-2.25'
mod - bug_update_page.php Diff File
mod - core/print_api.php Diff File

master ae4f40bf

2022-08-24 08:09

dependabot[bot]

Committer: community


Details Diff
Bump phpmailer/phpmailer from 6.6.3 to 6.6.4

Bumps [phpmailer/phpmailer](https://github.com/PHPMailer/PHPMailer) from 6.6.3 to 6.6.4.
- [Release notes](https://github.com/PHPMailer/PHPMailer/releases)
- [Changelog](https://github.com/PHPMailer/PHPMailer/blob/master/changelog.md)
- [Commits](https://github.com/PHPMailer/PHPMailer/compare/v6.6.3...v6.6.4)

---
updated-dependencies:
- dependency-name: phpmailer/phpmailer
dependency-type: direct:production
update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

Fixes 0029025, PR https://github.com/mantisbt/mantisbt/pull/1845
Affected Issues
0029025
mod - composer.lock Diff File

master 1cff7d86

2022-08-23 21:16

vboctor


Details Diff
Apply PR review comments

1. Remove redundant check.
2. Refactor functions that get project users to use helper function.
3. Fix warnings when user preference for language is set to auto.

ixes 0022791
mod - api/rest/restcore/projects_rest.php Diff File
mod - api/soap/mc_project_api.php Diff File
mod - core/commands/ProjectUsersGetCommand.php Diff File

dependabot/composer/phpmailer/phpmailer-6.6.4 4ec9968a

2022-08-22 21:12

dependabot[bot]

Committer: community


Details Diff
Bump phpmailer/phpmailer from 6.6.3 to 6.6.4

Bumps [phpmailer/phpmailer](https://github.com/PHPMailer/PHPMailer) from 6.6.3 to 6.6.4.
- [Release notes](https://github.com/PHPMailer/PHPMailer/releases)
- [Changelog](https://github.com/PHPMailer/PHPMailer/blob/master/changelog.md)
- [Commits](https://github.com/PHPMailer/PHPMailer/compare/v6.6.3...v6.6.4)

---
updated-dependencies:
- dependency-name: phpmailer/phpmailer
dependency-type: direct:production
update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
mod - composer.lock Diff File

master 02682332

2022-08-21 16:40

vboctor


Details Diff
Improvements to sample responses + minor fixes

Fixes 0030908
Affected Issues
0030908
mod - api/rest/api.postman_collection.json Diff File

master 2aeebdbc

2022-08-21 15:23

vboctor


Details Diff
Remove expansion of token / url env variables from docs

Fixes 0030908
Affected Issues
0030908
mod - api/rest/api.postman_collection.json Diff File

master c61cb5a9

2022-08-20 22:50

vboctor


Details Diff
Update Postman Collection

Fixes 0030908
Affected Issues
0030908
mod - api/rest/api.postman_collection.json Diff File

master 6ab678ac

2022-08-20 22:13

vboctor


Details Diff
phpdoc improvements

Fixes 0022791
Affected Issues
0022791
mod - core/commands/ProjectUsersGetCommand.php Diff File
 First  Prev  1 2 3 ... 67 68 69 70 71 72 73 ... 140 ... 210 ... 280 ... 350 ... 420 ... 490 ... 560 ... 630 ... 700 ... 744 745 746  Next  Last