Skip to content

Commit

Permalink
Changelog and readme.txt edits. (#40461)
Browse files Browse the repository at this point in the history
  • Loading branch information
tbradsha authored and matticbot committed Dec 4, 2024
1 parent 5167d3d commit 934e44e
Show file tree
Hide file tree
Showing 12 changed files with 130 additions and 139 deletions.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
"automattic/jetpack-autoloader": "^5.0.0",
"automattic/jetpack-composer-plugin": "^4.0.0",
"automattic/jetpack-config": "^3.0.0",
"automattic/jetpack-my-jetpack": "^5.1.1-alpha",
"automattic/jetpack-my-jetpack": "^5.1.1",
"automattic/jetpack-plugins-installer": "^0.5.0",
"automattic/jetpack-sync": "^4.0.2",
"automattic/jetpack-transport-helper": "^0.3.0-alpha",
"automattic/jetpack-plans": "^0.5.1",
"automattic/jetpack-waf": "^0.23.1",
"automattic/jetpack-status": "^5.0.1",
"automattic/jetpack-protect-status": "^0.4.0-alpha"
"automattic/jetpack-protect-status": "^0.4.0"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
Expand Down
9 changes: 3 additions & 6 deletions jetpack_vendor/automattic/jetpack-explat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@ 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).

## [0.2.2-alpha] - unreleased

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

## [0.2.2] - 2024-12-04
### Changed
- Updated package dependencies.
- Updated package dependencies. [#40363] [#40372]

## [0.2.1] - 2024-11-25
### Changed
Expand Down Expand Up @@ -90,7 +87,7 @@ This is an alpha version! The changes listed here are not final.
- ExPlat: add condition to prevent fetching the experiment assignment if there's not anon id (meaning that Tracks is likely disabled) [#38327]
- Updated package dependencies. [#38132]

[0.2.2-alpha]: https://github.com/Automattic/jetpack-explat/compare/v0.2.1...v0.2.2-alpha
[0.2.2]: https://github.com/Automattic/jetpack-explat/compare/v0.2.1...v0.2.2
[0.2.1]: https://github.com/Automattic/jetpack-explat/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/Automattic/jetpack-explat/compare/v0.1.15...v0.2.0
[0.1.15]: https://github.com/Automattic/jetpack-explat/compare/v0.1.14...v0.1.15
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ExPlat {
*
* @var string
*/
const PACKAGE_VERSION = '0.2.2-alpha';
const PACKAGE_VERSION = '0.2.2';

/**
* Initializer.
Expand Down
9 changes: 3 additions & 6 deletions jetpack_vendor/automattic/jetpack-my-jetpack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@ 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).

## [5.1.1-alpha] - unreleased

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

## [5.1.1] - 2024-12-04
### Changed
- Updated package dependencies.
- Updated package dependencies. [#40363]

## [5.1.0] - 2024-12-02
### Added
Expand Down Expand Up @@ -1859,7 +1856,7 @@ This is an alpha version! The changes listed here are not final.
### Added
- Created package

[5.1.1-alpha]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.1.0...5.1.1-alpha
[5.1.1]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.1.0...5.1.1
[5.1.0]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.0.4...5.1.0
[5.0.4]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.0.3...5.0.4
[5.0.3]: https://github.com/Automattic/jetpack-my-jetpack/compare/5.0.2...5.0.3
Expand Down
4 changes: 2 additions & 2 deletions jetpack_vendor/automattic/jetpack-my-jetpack/composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"automattic/jetpack-assets": "^4.0.1",
"automattic/jetpack-boost-speed-score": "^0.4.0",
"automattic/jetpack-connection": "^6.1.1",
"automattic/jetpack-explat": "^0.2.2-alpha",
"automattic/jetpack-explat": "^0.2.2",
"automattic/jetpack-jitm": "^4.0.2",
"automattic/jetpack-licensing": "^3.0.2",
"automattic/jetpack-plugins-installer": "^0.5.0",
Expand All @@ -18,7 +18,7 @@
"automattic/jetpack-plans": "^0.5.1",
"automattic/jetpack-status": "^5.0.1",
"automattic/jetpack-sync": "^4.0.2",
"automattic/jetpack-protect-status": "^0.4.0-alpha"
"automattic/jetpack-protect-status": "^0.4.0"
},
"require-dev": {
"yoast/phpunit-polyfills": "^1.1.1",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Initializer {
*
* @var string
*/
const PACKAGE_VERSION = '5.1.1-alpha';
const PACKAGE_VERSION = '5.1.1';

/**
* HTML container ID for the IDC screen on My Jetpack page.
Expand Down
9 changes: 3 additions & 6 deletions jetpack_vendor/automattic/jetpack-protect-status/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,9 @@ 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).

## [0.4.0-alpha] - unreleased

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

## [0.4.0] - 2024-12-04
### Added
- Add extension data to threats.
- Add extension data to threats. [#40400]

## [0.3.1] - 2024-11-25
### Changed
Expand Down Expand Up @@ -62,7 +59,7 @@ This is an alpha version! The changes listed here are not final.
### Changed
- Updated package dependencies. [#37894]

[0.4.0-alpha]: https://github.com/Automattic/jetpack-protect-status/compare/v0.3.1...v0.4.0-alpha
[0.4.0]: https://github.com/Automattic/jetpack-protect-status/compare/v0.3.1...v0.4.0
[0.3.1]: https://github.com/Automattic/jetpack-protect-status/compare/v0.3.0...v0.3.1
[0.3.0]: https://github.com/Automattic/jetpack-protect-status/compare/v0.2.2...v0.3.0
[0.2.2]: https://github.com/Automattic/jetpack-protect-status/compare/v0.2.1...v0.2.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/
class Status {

const PACKAGE_VERSION = '0.4.0-alpha';
const PACKAGE_VERSION = '0.4.0';
/**
* Name of the option where status is stored
*
Expand Down
6 changes: 3 additions & 3 deletions jetpack_vendor/i18n-map.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
),
'jetpack-explat' => array(
'path' => 'jetpack_vendor/automattic/jetpack-explat',
'ver' => '0.2.2-alpha1733170314',
'ver' => '0.2.2',
),
'jetpack-ip' => array(
'path' => 'jetpack_vendor/automattic/jetpack-ip',
Expand All @@ -46,7 +46,7 @@
),
'jetpack-my-jetpack' => array(
'path' => 'jetpack_vendor/automattic/jetpack-my-jetpack',
'ver' => '5.1.1-alpha1733261868',
'ver' => '5.1.1',
),
'jetpack-password-checker' => array(
'path' => 'jetpack_vendor/automattic/jetpack-password-checker',
Expand All @@ -62,7 +62,7 @@
),
'jetpack-protect-status' => array(
'path' => 'jetpack_vendor/automattic/jetpack-protect-status',
'ver' => '0.4.0-alpha1733197054',
'ver' => '0.4.0',
),
'jetpack-sync' => array(
'path' => 'jetpack_vendor/automattic/jetpack-sync',
Expand Down
Loading

0 comments on commit 934e44e

Please sign in to comment.