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

Commit 053375d

Browse files
committed
Adding /vendor directory to release
1 parent a533cc9 commit 053375d

File tree

162 files changed

+9335
-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.

162 files changed

+9335
-0
lines changed

vendor/autoload.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
// autoload.php @generated by Composer
4+
5+
require_once __DIR__ . '/composer/autoload_real.php';
6+
7+
return ComposerAutoloaderInit97e8bfef4e853be9d72a96b8a6e2cba4::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\jp97e8bfef4e853be9d72a96b8a6e2cba4;
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: 228 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,228 @@
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.10.4] - 2021-08-10
9+
### Changed
10+
- Updated package dependencies.
11+
## [2.10.3] - 2021-05-25
12+
### Changed
13+
- Updated package dependencies.
14+
15+
## [2.10.2] - 2021-04-27
16+
### Changed
17+
- Updated package dependencies.
18+
19+
## [2.10.1] - 2021-03-30
20+
### Added
21+
- Composer alias for dev-master, to improve dependencies
22+
- Tests: Added code coverage transformation
23+
24+
### Changed
25+
- Update package dependencies.
26+
27+
### Fixed
28+
- Fix coverage test
29+
- Fix uninstallation fatal
30+
- Update tests for changed composer 2.0.9 hash.
31+
- Use `composer update` rather than `install` in scripts, as composer.lock isn't checked in.
32+
33+
## [2.10.0] - 2021-02-09
34+
35+
- Autoloader: test suite refactor
36+
37+
## [2.9.1] - 2021-02-05
38+
39+
- CI: Make tests more generic
40+
- Autoloader: stricter type-checking on WP functions
41+
- Autoloader: prevent transitive plugin execution
42+
43+
## [2.9.0] - 2021-01-25
44+
45+
- Autoloader: revised latest autoloader inclusion semantics
46+
- Add mirror-repo information to all current composer packages
47+
- Monorepo: Reorganize all projects
48+
- Autoloader: Don't cache deactivating plugins
49+
50+
## [2.8.0] - 2020-12-18
51+
52+
## [2.7.1] - 2020-12-18
53+
54+
- Autoloader: Added realpath resolution to plugin paths
55+
56+
## [2.7.0] - 2020-12-08
57+
58+
- Autoloader: Preemptively load unknown plugins from cache
59+
- Removed unwanted dot
60+
- Pin dependencies
61+
- Packages: Update for PHP 8 testing
62+
63+
## [2.6.0] - 2020-11-19
64+
65+
- Autoloader: AutoloadGenerator no longer extends Composer's AutoloadGenerator class
66+
- Autoloader: Reuse an existing autoloader suffix if available
67+
- Updated PHPCS: Packages and Debugger
68+
69+
## [2.5.0] - 2020-10-08
70+
71+
- Autoloader: remove the defined('JETPACK_AUTOLOAD_DEV') checks from the tests
72+
73+
## [2.4.0] - 2020-09-28
74+
75+
- Autoloader: remove the plugins_loaded bullet point from the README
76+
- Packages: avoid PHPCS warnings
77+
- Autoloader: add PSR-0 support
78+
- Autoloader: Detect filtering of active_plugins
79+
- Autoloader: Support unoptimized PSR-4
80+
81+
## [2.3.0] - 2020-08-21
82+
83+
- Autoloader: remove the plugin update hook
84+
85+
## [2.2.0] - 2020-08-14
86+
87+
- Autoloader: don't reset the autoloader version during plugin update
88+
- CI: Try collect js coverage
89+
90+
## [2.1.0] - 2020-07-27
91+
92+
- Autoloader: convert '\' directory separators to '/' in plugin paths
93+
- Autoloader: Avoid a PHP warning when an empty string is passed to `is_directory_plugin()`.
94+
- Autoloader: Tests: Use a string with define
95+
96+
## [2.0.2] - 2020-07-09
97+
98+
- Autoloader: Avoid a PHP warning when an empty string is passed to `is_directory_plugin()`.
99+
100+
## [2.0.1] - 2020-07-02
101+
102+
- Autoloader: Tests: Use a string with define
103+
104+
## [2.0.0] - 2020-06-29
105+
106+
## [2.0.0-beta] - 2020-06-29
107+
108+
- Autoloader: Support Composer v2.0
109+
- Autoloader: use paths to identify plugins instead of the directories
110+
- Autoloader: fix the fatal that occurs during plugin update
111+
- Autoloader: add fallback check for plugin path in mu-plugins
112+
- Autoloader: use JETPACK__PLUGIN_DIR when looking for the jetpack plugin directory.
113+
- Feature Branch: Update the Autoloader
114+
- PHPCS: Clean up the packages
115+
- PHPCS Updates after WPCS 2.3
116+
117+
## [1.7.0] - 2020-04-23
118+
119+
- Jetpack: Move comment notification override back to the constructor
120+
121+
## [1.6.0] - 2020-03-26
122+
123+
- Autoloader: Remove file check to improve performance.
124+
125+
## [1.5.0] - 2020-02-25
126+
127+
- Jetpack: instantiate manager object if it's null
128+
129+
## [1.4.1] - 2020-02-14
130+
131+
- Autoloader: Load only latest version of autoload files to avoid conflicts.
132+
133+
## [1.4.0] - 2020-01-23
134+
135+
- Autoloader: Remove the ignored classes
136+
137+
## [1.3.8] - 2020-01-14
138+
139+
- Trying to add deterministic initialization.
140+
- Autoloader: Remove Manager_Interface and Plugin\Tracking from ignored list
141+
- Autoloader: Remove Jetpack_IXR_Client from ignore list
142+
143+
## [1.3.7] - 2019-12-10
144+
145+
## [1.3.6] - 2019-12-09
146+
147+
- Autoloader: Use long-form sytax for array
148+
149+
## [1.3.5] - 2019-11-26
150+
151+
- Fix/php notice status
152+
153+
## [1.3.4] - 2019-11-08
154+
155+
- Deprecate Jetpack::is_development_mode() in favor of the packaged Status()-&gt;is_development_mode()
156+
157+
## [1.3.3] - 2019-10-28
158+
159+
- Packages: Add gitattributes files to all packages that need th…
160+
161+
## [1.3.2] - 2019-09-24
162+
163+
- Autoloader: Cover scenarios where composer/autoload_files.php…
164+
165+
## [1.3.1] - 2019-09-20
166+
167+
- Docs: Unify usage of @package phpdoc tags
168+
169+
## [1.3.0] - 2019-09-14
170+
171+
- Fix for empty namespaces. #13459
172+
- Connection: Move the Jetpack IXR client to the package
173+
- Adds full connection cycle capability to the Connection package.
174+
- Jetpack 7.5: Back compatibility package
175+
176+
## [1.2.0] - 2019-06-24
177+
178+
- Jetpack DNA: Add full classmap support to Autoloader
179+
- Move Jetpack_Sync_Main from legacy to PSR-4
180+
181+
## [1.1.0] - 2019-06-19
182+
183+
- Packages: Move autoloader tests to the package
184+
- DNA: Move Jetpack Usage tracking to its own file
185+
- Jetpack DNA: More isolation of Tracks Package
186+
- Autoloader: Ignore XMLRPC_Connector if called too early
187+
- Autoloader: Ignore Jetpack_Signature if called too early
188+
189+
## 1.0.0 - 2019-06-11
190+
191+
- Add Custom Autoloader
192+
193+
[2.10.4]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.3...v2.10.4
194+
[2.10.3]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.2...v2.10.3
195+
[2.10.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.1...v2.10.2
196+
[2.10.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.10.0...v2.10.1
197+
[2.10.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.9.1...v2.10.0
198+
[2.9.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.9.0...v2.9.1
199+
[2.9.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.8.0...v2.9.0
200+
[2.8.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.7.1...v2.8.0
201+
[2.7.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.7.0...v2.7.1
202+
[2.7.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.6.0...v2.7.0
203+
[2.6.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.5.0...v2.6.0
204+
[2.5.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.4.0...v2.5.0
205+
[2.4.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.3.0...v2.4.0
206+
[2.3.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.2.0...v2.3.0
207+
[2.2.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.1.0...v2.2.0
208+
[2.1.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.2...v2.1.0
209+
[2.0.2]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.1...v2.0.2
210+
[2.0.1]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.0...v2.0.1
211+
[2.0.0]: https://github.com/Automattic/jetpack-autoloader/compare/v2.0.0-beta...v2.0.0
212+
[2.0.0-beta]: https://github.com/Automattic/jetpack-autoloader/compare/v1.7.0...v2.0.0-beta
213+
[1.7.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.6.0...v1.7.0
214+
[1.6.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.5.0...v1.6.0
215+
[1.5.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.4.1...v1.5.0
216+
[1.4.1]: https://github.com/Automattic/jetpack-autoloader/compare/v1.4.0...v1.4.1
217+
[1.4.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.8...v1.4.0
218+
[1.3.8]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.7...v1.3.8
219+
[1.3.7]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.6...v1.3.7
220+
[1.3.6]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.5...v1.3.6
221+
[1.3.5]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.4...v1.3.5
222+
[1.3.4]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.3...v1.3.4
223+
[1.3.3]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.2...v1.3.3
224+
[1.3.2]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.1...v1.3.2
225+
[1.3.1]: https://github.com/Automattic/jetpack-autoloader/compare/v1.3.0...v1.3.1
226+
[1.3.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.2.0...v1.3.0
227+
[1.2.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.1.0...v1.2.0
228+
[1.1.0]: https://github.com/Automattic/jetpack-autoloader/compare/v1.0.0...v1.1.0

0 commit comments

Comments
 (0)