Skip to content

Commit bd90661

Browse files
TimBroddinmatticbot
authored andcommitted
Add Meta's AI crawler to robots.txt when opted out of data sharing. (#39159)
* Disallow meta-externalagent * Add changelog Committed via a GitHub action: https://github.com/Automattic/jetpack/actions/runs/10633216653 Upstream-Ref: Automattic/jetpack@833cfd1
1 parent 6f5bf82 commit bd90661

File tree

8 files changed

+96
-92
lines changed

8 files changed

+96
-92
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"type": "wordpress-plugin",
55
"license": "GPL-2.0-or-later",
66
"require": {
7-
"automattic/jetpack-mu-wpcom": "^5.59.1-alpha"
7+
"automattic/jetpack-mu-wpcom": "^5.60.0-alpha"
88
},
99
"require-dev": {
1010
"yoast/phpunit-polyfills": "^1.1.1",

composer.lock

Lines changed: 30 additions & 30 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/automattic/jetpack-mu-wpcom/CHANGELOG.md

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,13 @@ 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-
## [5.59.1-alpha] - unreleased
8+
## [5.60.0-alpha] - unreleased
99

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

12+
### Added
13+
- Add Meta crawler.
14+
1215
### Changed
1316
- Newspack blocks: Updated from 3.5 to 4.0.1
1417
- Updated package dependencies.
@@ -1200,7 +1203,7 @@ This is an alpha version! The changes listed here are not final.
12001203

12011204
- Testing initial package release.
12021205

1203-
[5.59.1-alpha]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.59.0...v5.59.1-alpha
1206+
[5.60.0-alpha]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.59.0...v5.60.0-alpha
12041207
[5.59.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.58.0...v5.59.0
12051208
[5.58.0]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.57.1...v5.58.0
12061209
[5.57.1]: https://github.com/Automattic/jetpack-mu-wpcom/compare/v5.57.0...v5.57.1

vendor/automattic/jetpack-mu-wpcom/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
},
5454
"autotagger": true,
5555
"branch-alias": {
56-
"dev-trunk": "5.59.x-dev"
56+
"dev-trunk": "5.60.x-dev"
5757
},
5858
"textdomain": "jetpack-mu-wpcom",
5959
"version-constants": {

vendor/automattic/jetpack-mu-wpcom/src/class-jetpack-mu-wpcom.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
* Jetpack_Mu_Wpcom main class.
1616
*/
1717
class Jetpack_Mu_Wpcom {
18-
const PACKAGE_VERSION = '5.59.1-alpha';
18+
const PACKAGE_VERSION = '5.60.0-alpha';
1919
const PKG_DIR = __DIR__ . '/../';
2020
const BASE_DIR = __DIR__ . '/';
2121
const BASE_FILE = __FILE__;

vendor/automattic/jetpack-mu-wpcom/src/features/blog-privacy/blog-privacy.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ function robots_txt( string $output, $public ): string {
4444
'FacebookBot',
4545
'Google-Extended',
4646
'GPTBot',
47+
'meta-externalagent',
4748
'omgili',
4849
'omgilibot',
4950
'PerplexityBot',

0 commit comments

Comments
 (0)