Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare release of v1.5.0 #133

Merged
merged 3 commits into from
Nov 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified .wordpress-org/screenshot-1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified .wordpress-org/screenshot-2.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# Changelog

### unreleased ###
### 1.5.0 ###
* Replace `FILTER_SANIITZE_STRING` deprecated since PHP 8.1+ (#126) (#127)
* Enforce use of custom Safe Browsing API key (#108)
* Enforce use of custom Safe Browsing API key (#104) (#108)
* Separate settings page from manual scanning with overhauled UI (#107)
* Update JS to ES2015 (IE11 no longer supported) (#32)

### 1.4.4 ###
* Fix warning on SafeBrowsing API errors with PHP 8.1+ (#123)
Expand Down
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
* Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=TD4AMD2D8EMZW
* Requires at least: 4.1
* Requires PHP: 5.2
* Tested up to: 6.2
* Stable tag: 1.4.4
* Tested up to: 6.4
* Stable tag: 1.5.0
* License: GPLv2 or later
* License URI: https://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -41,6 +41,12 @@ A complete documentation is available on the [AntiVirus website](https://antivir

## Changelog ##

### 1.5.0 ###
* Fix deprecation warning with PHP 8.1+ (#126) (#127)
* Enforce use of custom Safe Browsing API key (#104) (#108)
* Separate settings page from manual scanning with overhauled UI (#107)
* Update JS to ES2015 (IE11 no longer supported) (#32)

### 1.4.4 ###
* Fix warning on SafeBrowsing API errors with PHP 8.1+ (#123)
* Tested up to WordPress 6.2
Expand Down Expand Up @@ -90,6 +96,11 @@ For the complete changelog, check out our [GitHub repository](https://github.com

## Upgrade Notice ##

### 1.5.0 ###
This update finally removed support for Safe Browsing API without an API key.
If you are using this feature and did not provide your own key yet, it will be disabled.
Can be easily enabled again, just enter a key.

### 1.4.4 ###
This is a small maintenance release which fixes a PHP warning on Safe Browsing API errors with PHP 8.1.

Expand Down
2 changes: 1 addition & 1 deletion antivirus.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

/*
Copyright (C) 2009-2015 Sergej Müller
Copyright (C) 2016-2021 pluginkollektiv
Copyright (C) 2016-2023 pluginkollektiv

This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down
Loading