Skip to content
This repository was archived by the owner on Feb 23, 2024. It is now read-only.

Commit 2ff8573

Browse files
committed
Adding /vendor directory to release
1 parent cd9a41e commit 2ff8573

File tree

166 files changed

+9631
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

166 files changed

+9631
-0
lines changed

vendor/.DS_Store

10 KB
Binary file not shown.

vendor/autoload.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
// autoload.php @generated by Composer
4+
5+
if (PHP_VERSION_ID < 50600) {
6+
echo 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
7+
exit(1);
8+
}
9+
10+
require_once __DIR__ . '/composer/autoload_real.php';
11+
12+
return ComposerAutoloaderInitdc8fac0bbe0f3764972891a228674527::getLoader();

vendor/autoload_packages.php

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
/**
3+
* This file was automatically generated by automattic/jetpack-autoloader.
4+
*
5+
* @package automattic/jetpack-autoloader
6+
*/
7+
8+
namespace Automattic\Jetpack\Autoloader\jpdc8fac0bbe0f3764972891a228674527;
9+
10+
// phpcs:ignore
11+
12+
require_once __DIR__ . '/jetpack-autoloader/class-autoloader.php';
13+
Autoloader::init();
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
tests/php/tmp
Lines changed: 326 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,326 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [2.11.9] - 2022-09-27
9+
### Fixed
10+
- Tests: Clear `COMPOSER_AUTH` environment variable when running Composer for tests. [#26404]
11+
12+
## [2.11.8] - 2022-09-20
13+
### Fixed
14+
- Tests: skip test if it requires a version of Composer not compatible with the running version of PHP. [#26143]
15+
16+
## [2.11.7] - 2022-07-26
17+
### Changed
18+
- Updated package dependencies. [#25158]
19+
20+
## [2.11.6] - 2022-06-21
21+
### Changed
22+
- Renaming `master` to `trunk`.
23+
24+
## [2.11.5] - 2022-05-18
25+
### Fixed
26+
- Fix new PHPCS sniffs. [#24366]
27+
28+
## [2.11.4] - 2022-04-26
29+
### Changed
30+
- Updated package dependencies.
31+
32+
## [2.11.3] - 2022-04-19
33+
### Changed
34+
- PHPCS: Fix `WordPress.Security.ValidatedSanitizedInput`
35+
36+
## [2.11.2] - 2022-03-29
37+
### Changed
38+
- Microperformance: Use === null instead of is_null
39+
40+
## [2.11.1] - 2022-03-08
41+
### Removed
42+
- Removed the Upgrade Handler.
43+
44+
## [2.11.0] - 2022-03-08
45+
### Added
46+
- On plugin update, pre-load all (non-PSR-4) classes from the plugin to avoid mid-upgrade fatals.
47+
48+
## [2.10.13] - 2022-03-01
49+
### Fixed
50+
- Fix tests for upstream phpunit change.
51+
52+
## [2.10.12] - 2022-01-25
53+
### Changed
54+
- Updated package dependencies.
55+
56+
## [2.10.11] - 2022-01-04
57+
### Changed
58+
- Switch to pcov for code coverage.
59+
- Updated package dependencies
60+
61+
## [2.10.10] - 2021-11-16
62+
### Added
63+
- Soft return if autoloader chain is not available.
64+
65+
## [2.10.9] - 2021-11-02
66+
### Changed
67+
- Set `convertDeprecationsToExceptions` true in PHPUnit config.
68+
69+
## [2.10.8] - 2021-10-13
70+
### Changed
71+
- Updated package dependencies.
72+
73+
## [2.10.7] - 2021-10-07
74+
### Changed
75+
- Updated package dependencies
76+
77+
## [2.10.6] - 2021-09-28
78+
### Changed
79+
- Updated package dependencies.
80+
81+
## [2.10.5] - 2021-08-31
82+
### Changed
83+
- Run composer update on test-php command instead of phpunit
84+
- Tests: update PHPUnit polyfills dependency (yoast/phpunit-polyfills).
85+
86+
## [2.10.4] - 2021-08-10
87+
### Changed
88+
- Updated package dependencies.
89+
90+
## [2.10.3] - 2021-05-25
91+
### Changed
92+
- Updated package dependencies.
93+
94+
## [2.10.2] - 2021-04-27
95+
### Changed
96+
- Updated package dependencies.
97+
98+
## [2.10.1] - 2021-03-30
99+
### Added
100+
- Composer alias for dev-master, to improve dependencies
101+
- Tests: Added code coverage transformation
102+
103+
### Changed
104+
- Update package dependencies.
105+
106+
### Fixed
107+
- Fix coverage test
108+
- Fix uninstallation fatal
109+
- Update tests for changed composer 2.0.9 hash.
110+
- Use `composer update` rather than `install` in scripts, as composer.lock isn't checked in.
111+
112+
## [2.10.0] - 2021-02-09
113+
114+
- Autoloader: test suite refactor
115+
116+
## [2.9.1] - 2021-02-05
117+
118+
- CI: Make tests more generic
119+
- Autoloader: stricter type-checking on WP functions
120+
- Autoloader: prevent transitive plugin execution
121+
122+
## [2.9.0] - 2021-01-25
123+
124+
- Autoloader: revised latest autoloader inclusion semantics
125+
- Add mirror-repo information to all current composer packages
126+
- Monorepo: Reorganize all projects
127+
- Autoloader: Don't cache deactivating plugins
128+
129+
## [2.8.0] - 2020-12-18
130+
131+
## [2.7.1] - 2020-12-18
132+
133+
- Autoloader: Added realpath resolution to plugin paths
134+
135+
## [2.7.0] - 2020-12-08
136+
137+
- Autoloader: Preemptively load unknown plugins from cache
138+
- Removed unwanted dot
139+
- Pin dependencies
140+
- Packages: Update for PHP 8 testing
141+
142+
## [2.6.0] - 2020-11-19
143+
144+
- Autoloader: AutoloadGenerator no longer extends Composer's AutoloadGenerator class
145+
- Autoloader: Reuse an existing autoloader suffix if available
146+
- Updated PHPCS: Packages and Debugger
147+
148+
## [2.5.0] - 2020-10-08
149+
150+
- Autoloader: remove the defined('JETPACK_AUTOLOAD_DEV') checks from the tests
151+
152+
## [2.4.0] - 2020-09-28
153+
154+
- Autoloader: remove the plugins_loaded bullet point from the README
155+
- Packages: avoid PHPCS warnings
156+
- Autoloader: add PSR-0 support
157+
- Autoloader: Detect filtering of active_plugins
158+
- Autoloader: Support unoptimized PSR-4
159+
160+
## [2.3.0] - 2020-08-21
161+
162+
- Autoloader: remove the plugin update hook
163+
164+
## [2.2.0] - 2020-08-14
165+
166+
- Autoloader: don't reset the autoloader version during plugin update
167+
- CI: Try collect js coverage
168+
169+
## [2.1.0] - 2020-07-27
170+
171+
- Autoloader: convert '\' directory separators to '/' in plugin paths
172+
- Autoloader: Avoid a PHP warning when an empty string is passed to `is_directory_plugin()`.
173+
- Autoloader: Tests: Use a string with define
174+
175+
## [2.0.2] - 2020-07-09
176+
177+
- Autoloader: Avoid a PHP warning when an empty string is passed to `is_directory_plugin()`.
178+
179+
## [2.0.1] - 2020-07-02
180+
181+
- Autoloader: Tests: Use a string with define
182+
183+
## [2.0.0] - 2020-06-29
184+
185+
## [2.0.0-beta] - 2020-06-29
186+
187+
- Autoloader: Support Composer v2.0
188+
- Autoloader: use paths to identify plugins instead of the directories
189+
- Autoloader: fix the fatal that occurs during plugin update
190+
- Autoloader: add fallback check for plugin path in mu-plugins
191+
- Autoloader: use JETPACK__PLUGIN_DIR when looking for the jetpack plugin directory.
192+
- Feature Branch: Update the Autoloader
193+
- PHPCS: Clean up the packages
194+
- PHPCS Updates after WPCS 2.3
195+
196+
## [1.7.0] - 2020-04-23
197+
198+
- Jetpack: Move comment notification override back to the constructor
199+
200+
## [1.6.0] - 2020-03-26
201+
202+
- Autoloader: Remove file check to improve performance.
203+
204+
## [1.5.0] - 2020-02-25
205+
206+
- Jetpack: instantiate manager object if it's null
207+
208+
## [1.4.1] - 2020-02-14
209+
210+
- Autoloader: Load only latest version of autoload files to avoid conflicts.
211+
212+
## [1.4.0] - 2020-01-23
213+
214+
- Autoloader: Remove the ignored classes
215+
216+
## [1.3.8] - 2020-01-14
217+
218+
- Trying to add deterministic initialization.
219+
- Autoloader: Remove Manager_Interface and Plugin\Tracking from ignored list
220+
- Autoloader: Remove Jetpack_IXR_Client from ignore list
221+
222+
## [1.3.7] - 2019-12-10
223+
224+
## [1.3.6] - 2019-12-09
225+
226+
- Autoloader: Use long-form sytax for array
227+
228+
## [1.3.5] - 2019-11-26
229+
230+
- Fix/php notice status
231+
232+
## [1.3.4] - 2019-11-08
233+
234+
- Deprecate Jetpack::is_development_mode() in favor of the packaged Status()-&gt;is_development_mode()
235+
236+
## [1.3.3] - 2019-10-28
237+
238+
- Packages: Add gitattributes files to all packages that need th…
239+
240+
## [1.3.2] - 2019-09-24
241+
242+
- Autoloader: Cover scenarios where composer/autoload_files.php…
243+
244+
## [1.3.1] - 2019-09-20
245+
246+
- Docs: Unify usage of @package phpdoc tags
247+
248+
## [1.3.0] - 2019-09-14
249+
250+
- Fix for empty namespaces. #13459
251+
- Connection: Move the Jetpack IXR client to the package
252+
- Adds full connection cycle capability to the Connection package.
253+
- Jetpack 7.5: Back compatibility package
254+
255+
## [1.2.0] - 2019-06-24
256+
257+
- Jetpack DNA: Add full classmap support to Autoloader
258+
- Move Jetpack_Sync_Main from legacy to PSR-4
259+
260+
## [1.1.0] - 2019-06-19
261+
262+
- Packages: Move autoloader tests to the package
263+
- DNA: Move Jetpack Usage tracking to its own file
264+
- Jetpack DNA: More isolation of Tracks Package
265+
- Autoloader: Ignore XMLRPC_Connector if called too early
266+
- Autoloader: Ignore Jetpack_Signature if called too early
267+
268+
## 1.0.0 - 2019-06-11
269+
270+
- Add Custom Autoloader
271+
272+
[2.11.9]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.8...v2.11.9
273+
[2.11.8]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.7...v2.11.8
274+
[2.11.7]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.6...v2.11.7
275+
[2.11.6]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.5...v2.11.6
276+
[2.11.5]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.4...v2.11.5
277+
[2.11.4]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.3...v2.11.4
278+
[2.11.3]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.2...v2.11.3
279+
[2.11.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.1...v2.11.2
280+
[2.11.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.11.0...v2.11.1
281+
[2.11.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.13...v2.11.0
282+
[2.10.13]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.12...v2.10.13
283+
[2.10.12]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.11...v2.10.12
284+
[2.10.11]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.10...v2.10.11
285+
[2.10.10]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.9...v2.10.10
286+
[2.10.9]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.8...v2.10.9
287+
[2.10.8]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.7...v2.10.8
288+
[2.10.7]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.6...v2.10.7
289+
[2.10.6]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.5...v2.10.6
290+
[2.10.5]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.4...v2.10.5
291+
[2.10.4]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.3...v2.10.4
292+
[2.10.3]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.2...v2.10.3
293+
[2.10.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.1...v2.10.2
294+
[2.10.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.0...v2.10.1
295+
[2.10.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.9.1...v2.10.0
296+
[2.9.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.9.0...v2.9.1
297+
[2.9.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.8.0...v2.9.0
298+
[2.8.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.7.1...v2.8.0
299+
[2.7.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.7.0...v2.7.1
300+
[2.7.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.6.0...v2.7.0
301+
[2.6.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.5.0...v2.6.0
302+
[2.5.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.4.0...v2.5.0
303+
[2.4.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.3.0...v2.4.0
304+
[2.3.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.2.0...v2.3.0
305+
[2.2.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.1.0...v2.2.0
306+
[2.1.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.2...v2.1.0
307+
[2.0.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.1...v2.0.2
308+
[2.0.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.0...v2.0.1
309+
[2.0.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.0-beta...v2.0.0
310+
[2.0.0-beta]: https://github.com/Automattic/jetpack-autoloader/compare/v1.7.0...v2.0.0-beta
311+
[1.7.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.6.0...v1.7.0
312+
[1.6.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.5.0...v1.6.0
313+
[1.5.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.4.1...v1.5.0
314+
[1.4.1]: https://github.com/Automattic/jetpack-autoloader/compare/v1.4.0...v1.4.1
315+
[1.4.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.8...v1.4.0
316+
[1.3.8]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.7...v1.3.8
317+
[1.3.7]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.6...v1.3.7
318+
[1.3.6]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.5...v1.3.6
319+
[1.3.5]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.4...v1.3.5
320+
[1.3.4]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.3...v1.3.4
321+
[1.3.3]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.2...v1.3.3
322+
[1.3.2]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.1...v1.3.2
323+
[1.3.1]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.0...v1.3.1
324+
[1.3.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.2.0...v1.3.0
325+
[1.2.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.1.0...v1.2.0
326+
[1.1.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.0.0...v1.1.0

0 commit comments

Comments
 (0)