Skip to content

Commit d290a0f

Browse files
authored
Merge pull request #10 from Automattic/release/1.0.3
2 parents b243a60 + d353c30 commit d290a0f

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.3] - 2025-05-06
9+
10+
### Fixed
11+
- Pass extra data to xprofile_cover_image_uploaded hook by @GaryJones in https://github.com/Automattic/BuddyPress-VIP-Go/pull/9
12+
813
## [1.0.2] - 2025-05-06
914

1015
### Fixed
@@ -27,5 +32,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2732
### Added
2833
- Initial release of BuddyPress for VIP Go
2934

35+
[1.0.3]: https://github.com/automattic/buddypress-vip-go/compare/1.0.2...1.0.3
3036
[1.0.2]: https://github.com/automattic/buddypress-vip-go/compare/1.0.1...1.0.2
3137
[1.0.1]: https://github.com/automattic/buddypress-vip-go/compare/1.0.0...1.0.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
**Tags:** BuddyPress, BuddyBoss, WordPress VIP
55
**Requires at least:** 4.4.2
66
**Tested up to:** 6.8
7-
**Stable tag:** 1.0.2
7+
**Stable tag:** 1.0.3
88
**License:** GPLv2 or later
99
**License URI:** https://www.gnu.org/licenses/gpl-2.0.html
1010

buddypress-vip-go.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* @wordpress-plugin
1111
* Plugin Name: BuddyPress VIP Go
1212
* Description: Makes BuddyPress' media work with WordPress VIP's hosting.
13-
* Version: 1.0.2
13+
* Version: 1.0.3
1414
* Requires at least: 4.4.2
1515
* Requires PHP: 8.2
1616
* Author: Human Made, WordPress VIP

files.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -579,7 +579,10 @@ function vip_handle_cover_image_upload( $_, $args, $needs_reset, $object_data )
579579

580580
do_action(
581581
$object_data['component'] . '_cover_image_uploaded',
582-
(int) $args['item_id']
582+
(int) $args['item_id'],
583+
basename( $result['url'] ),
584+
$result['url'],
585+
1
583586
);
584587

585588
$retval = array(

0 commit comments

Comments
 (0)