Skip to content

Commit

Permalink
Changelog and readme.txt edits. (#41847)
Browse files Browse the repository at this point in the history
  • Loading branch information
zinigor authored and matticbot committed Feb 17, 2025
1 parent 442b43c commit 1777a73
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 12 deletions.
11 changes: 4 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [6.5.0-alpha] - unreleased

This is an alpha version! The changes listed here are not final.

## [6.5.0] - 2025-02-17
### Changed
- Connection: Display connection status on Users page independent of the SSO module.
- Connection: Display connection status on Users page independent of the SSO module. [#41794]

### Fixed
- Make sure wpcom_id is a string before passing it over as _ui
- Make sure wpcom_id is a string before passing it over as _ui. [#41787]

## [6.4.1] - 2025-02-11
### Changed
Expand Down Expand Up @@ -1317,7 +1314,7 @@ This is an alpha version! The changes listed here are not final.

- Separate the connection library into its own package.

[6.5.0-alpha]: https://github.com/Automattic/jetpack-connection/compare/v6.4.1...v6.5.0-alpha
[6.5.0]: https://github.com/Automattic/jetpack-connection/compare/v6.4.1...v6.5.0
[6.4.1]: https://github.com/Automattic/jetpack-connection/compare/v6.4.0...v6.4.1
[6.4.0]: https://github.com/Automattic/jetpack-connection/compare/v6.3.2...v6.4.0
[6.3.2]: https://github.com/Automattic/jetpack-connection/compare/v6.3.1...v6.3.2
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"php": ">=7.2",
"automattic/jetpack-a8c-mc-stats": "^3.0.0",
"automattic/jetpack-admin-ui": "^0.5.2",
"automattic/jetpack-assets": "^4.0.6",
"automattic/jetpack-assets": "^4.0.7",
"automattic/jetpack-constants": "^3.0.1",
"automattic/jetpack-roles": "^3.0.1",
"automattic/jetpack-status": "^5.0.3",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"watch": "pnpm run build && pnpm webpack watch"
},
"dependencies": {
"@automattic/jetpack-connection": "^0.36.6",
"@automattic/jetpack-connection": "^0.36.7",
"@automattic/jetpack-idc": "workspace:*",
"@wordpress/data": "10.17.0",
"@wordpress/element": "6.17.0"
Expand Down
2 changes: 1 addition & 1 deletion src/class-package-version.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
*/
class Package_Version {

const PACKAGE_VERSION = '6.5.0-alpha';
const PACKAGE_VERSION = '6.5.0';

const PACKAGE_SLUG = 'connection';

Expand Down
4 changes: 2 additions & 2 deletions src/sso/class-user-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -980,10 +980,10 @@ public function send_wpcom_mail_user_invite( $errors, $update, $user ) {
*
* @param array $columns User list table columns.
* @return array
* @deprecated 6.5.0-alpha
* @deprecated 6.5.0
*/
public function jetpack_user_connected_th( $columns ) {
_deprecated_function( __METHOD__, 'package-6.5.0-alpha' );
_deprecated_function( __METHOD__, 'package-6.5.0' );
return $columns;
}

Expand Down

0 comments on commit 1777a73

Please sign in to comment.