mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
DOC Tweak 4.7.0-beta1 changelog
This commit is contained in:
parent
044a6ea484
commit
6c2713894a
@ -2,41 +2,83 @@
|
||||
|
||||
## Overview
|
||||
|
||||
A full list of module versions included in CMS Recipe 4.7.0-beta1 is provided below. We recommend referencing recipes in your dependencies, rather than individual modules, to simplify version tracking. See [Recipes](/getting_started/).
|
||||
- [Experimental support for PHP 8](#experimental-support-for-php-8)
|
||||
- [Support for Symfony 4 Components](#support-for-symfony-4-components)
|
||||
- [Default MySQL collation updated](#default-mysql-collation-updated)
|
||||
- [MySQL connection mode configurable](#mysql-connection-mode-now-configurable)
|
||||
- [Flysystem dependency shifted](#flysystem-dependency-shifted)
|
||||
|
||||
<details>
|
||||
<summary>Included module versions</summary>
|
||||
## New features
|
||||
|
||||
| Module | Version |
|
||||
| ------ | ------- |
|
||||
| silverstripe/admin | x.x.x |
|
||||
| silverstripe/asset-admin | x.x.x |
|
||||
| silverstripe/assets | x.x.x |
|
||||
| silverstripe/campaign-admin | x.x.x |
|
||||
| silverstripe/cms | x.x.x |
|
||||
| silverstripe/config | x.x.x |
|
||||
| silverstripe/errorpage | x.x.x |
|
||||
| silverstripe/framework | x.x.x |
|
||||
| silverstripe/graphql | x.x.x |
|
||||
| silverstripe/mimevalidator | x.x.x |
|
||||
| silverstripe/reports | x.x.x |
|
||||
| silverstripe/siteconfig | x.x.x |
|
||||
| silverstripe/versioned | x.x.x |
|
||||
| silverstripe/versioned-admin | x.x.x |
|
||||
### Experimental support for PHP 8
|
||||
|
||||
</details>
|
||||
You can now run Silverstripe CMS on PHP 8, which is due for release in November 2020. PHP 8 includes
|
||||
many exciting new features like named parameters, attributes, and union types. There are a few
|
||||
important caveats to keep in mind if you plan to adopt PHP 8 at release.
|
||||
|
||||
Upgrading to PHP 8 on projects using `SapphireTest` for unit testing requires adoption of the
|
||||
[`sminnee/phpunit`](https://packagist.org/packages/sminnee/phpunit) fork, and Prophecy is not
|
||||
currently supported. Prophecy tests can be fairly trivially ported to PHPUnit Mock Objects. We hope
|
||||
to give you better support for choosing your own testing tools, including newer versions of PHPUnit,
|
||||
in a future release.
|
||||
|
||||
<!--- Changes below this line will be automatically regenerated -->
|
||||
Support for PHP 8 does not yet extend to non-core modules, and PHP 8 itself is not yet stable, so
|
||||
compatibility issues could arise in future PHP builds. This extends to dependencies of core, many of
|
||||
which have not yet declared support for PHP 8, so you will need to run Composer with the
|
||||
`--ignore-platform-reqs` flag for the time being.
|
||||
|
||||
Finally, support for the new JIT functionality has not yet been tested.
|
||||
|
||||
We encourage early adopters to report any issues running CMS Recipe 4.7.0 against PHP 8 on the
|
||||
relevant GitHub repository.
|
||||
|
||||
### Support for Symfony 4 Components
|
||||
|
||||
Symfony 3 will become unsupported early next year, so Silverstripe CMS is now forwards-compatible
|
||||
with Symfony 4 components. This is a largely transparent upgrade, but you may encounter errors
|
||||
related to strings starting with `%` in YML files, which can be easily rectified by wrapping all
|
||||
affected strings in quotes.
|
||||
|
||||
If you'd rather retain the previous YAML parser for the time being, you can run
|
||||
`composer require symfony/yaml:^3` on your project to prevent the update to version 4.
|
||||
|
||||
### Default MySQL collation updated
|
||||
|
||||
New projects based on `silverstripe/installer` will default to the `utf8mb4_unicode_ci` collation.
|
||||
This change will not affect existing projects, but developers are encouraged to adopt this collation
|
||||
as it provides better support for multi-byte characters such as emojis.
|
||||
|
||||
Depending on the version of MySQL you are running, you may encounter issues with `Varchar` fields
|
||||
exceeding the maximum indexable size:
|
||||
|
||||
- MySQL 5.5 and lower cannot support indexes larger than 768 bytes (192 characters)
|
||||
- MySQL 5.6 supports larger indexes (3072 bytes) if the `innodb_large_prefix` setting is enabled (not by default)
|
||||
- MySQL 5.7 and newer have `innodb_large_prefix` enabled by default
|
||||
- MariaDB ~10.1 matches MySQL 5.6's behaviour, >10.2 matches 5.7's.
|
||||
|
||||
You can rectify this by upgrading MySQL, enabling the `innodb_large_prefix` setting if present, or
|
||||
reducing the size of affected fields. If none of these solutions are currently suitable, you can
|
||||
remove the new collation configuration to default back to the previous default collation.
|
||||
|
||||
### MySQL connection mode now configurable
|
||||
|
||||
In MySQL versions >=5.7.5, the `ANSI` sql_mode setting behaves differently and includes the `ONLY_FULL_GROUP_BY` setting. It is generally recommended to leave this setting as-is because it results in deterministic SQL. However, for some advanced cases, the sql_mode can now be configured on the database connection via the configuration API (see `MySQLDatabase::$sql_mode` for more details.)
|
||||
|
||||
### Flysystem dependency shifted
|
||||
|
||||
Previously the Flysystem package was pulled in via the `silverstripe/framework` module, but only
|
||||
used in the `silverstripe/assets` module. To make this dependency clearer, it has been added to
|
||||
the `silverstripe/assets` module and removed from `silverstripe/framework`. Most developers should
|
||||
not notice any issues, but if you depend on Flysystem in your own project code, you should ensure
|
||||
that you have it specified in your `composer.json`.
|
||||
|
||||
An edgecase exists where a project can update to `silverstripe/framework 4.7.0` but remain on
|
||||
`silverstripe/assets 1.6.x`, and lose the Flysystem dependency entirely. The best way to avoid this
|
||||
is by ensuring you update all core modules to the new minor release at once, ideally through a core
|
||||
recipe like `silverstripe/recipe-core`.
|
||||
|
||||
## Change Log
|
||||
|
||||
### Security
|
||||
|
||||
* 2020-02-11 [107e6c9](https://github.com/silverstripe/silverstripe-graphql/commit/107e6c918bb6a6a536dd9e3d8f5c74b4acdfd852) Ensure canView() check is run on items (Steve Boyd) - See [cve-2020-6165](https://www.silverstripe.org/download/security-releases/cve-2020-6165)
|
||||
|
||||
### API Changes
|
||||
|
||||
* 2020-10-02 [e21ad30](https://github.com/silverstripe/silverstripe-admin/commit/e21ad304e52c29672f38cdb0b7164f92694c3c9a) Introduce hooks to help components figure out what tab they are in. (Maxime Rainville)
|
||||
@ -238,416 +280,9 @@ A full list of module versions included in CMS Recipe 4.7.0-beta1 is provided be
|
||||
* 2020-05-11 [04a45a7](https://github.com/silverstripe/silverstripe-mimevalidator/commit/04a45a771a6bc23a4cfa1b5b27d0cfcd2cc11e37) Move configration info to core documentation (Maxime Rainville)
|
||||
* 2019-10-07 [4ee710276](https://github.com/silverstripe/silverstripe-framework/commit/4ee7102761bdb2e32f867de527ae4f305def7a45) Update breadcrumb template in theme rather than app. (Maxime Rainville)
|
||||
|
||||
### Merge
|
||||
|
||||
* 2020-11-02 [e554779](https://github.com/silverstripe/silverstripe-login-forms/commit/e55477900d60980f1aefb6edace61947a5604446) branch '4.2' into 4 (Maxime Rainville)
|
||||
* 2020-11-02 [b62a6c66](https://github.com/silverstripe/silverstripe-reports/commit/b62a6c66d19c952f86bdd06fe90af91b41e1c14a) branch '4.6' into 4 (Maxime Rainville)
|
||||
* 2020-11-01 [3f74cb2](https://github.com/silverstripe/silverstripe-admin/commit/3f74cb2124f1bb8ab97e5da78e179fd49a59b808) pull request #1145 from creative-commoners/pulls/1/hide-nav-on-single-tab (Maxime Rainville)
|
||||
* 2020-11-01 [6839d04](https://github.com/silverstripe/silverstripe-versioned-admin/commit/6839d04ba6e781a46218b4a8661c1c8d552a84cf) pull request #174 from creative-commoners/pulls/1/usedontable-extension (Maxime Rainville)
|
||||
* 2020-10-29 [86efaed](https://github.com/silverstripe/silverstripe-admin/commit/86efaed9e6139e34e773c8b62f3e338384e57f6c) pull request #1139 from creative-commoners/pulls/1/usedontable-usage (Maxime Rainville)
|
||||
* 2020-10-28 [773145d87](https://github.com/silverstripe/silverstripe-framework/commit/773145d87b584b3631b26657b4bb08487db403df) pull request #9735 from creative-commoners/pulls/4/dataobject-usage (Maxime Rainville)
|
||||
* 2020-10-28 [cf79be8e2](https://github.com/silverstripe/silverstripe-framework/commit/cf79be8e2c47b52b3e36a52e6ef473a45f51f62e) pull request #9744 from creative-commoners/pulls/4/improve-scalar-response-handling (Steve Boyd)
|
||||
* 2020-10-22 [495b944](https://github.com/silverstripe/silverstripe-installer/commit/495b9442d5487f02fc627d408ec17928c0840c08) pull request #290 from creative-commoners/pulls/4/php-8-builds (Serge Latyntsev)
|
||||
* 2020-10-22 [a072039](https://github.com/silverstripe/recipe-cms/commit/a0720394ff40e35d8e2e131966c4c601b2e3ca68) pull request #39 from creative-commoners/pulls/4/php-8-builds (Serge Latyntsev)
|
||||
* 2020-10-22 [be4aff4](https://github.com/silverstripe/recipe-core/commit/be4aff437b92352b6062c6561620ecd6da292dfe) pull request #61 from creative-commoners/pulls/4/php-8-builds (Serge Latyntsev)
|
||||
* 2020-10-22 [f9f440c3](https://github.com/silverstripe/silverstripe-cms/commit/f9f440c35d9dc84a84b6c739f437eacecb877b7c) pull request #2602 from creative-commoners/pulls/4/fix-pgsql-unit-test-run (Garion Herman)
|
||||
* 2020-10-22 [64672bc9](https://github.com/silverstripe/silverstripe-asset-admin/commit/64672bc93023616182fcec4e1f377926c8e4435a) branch '1.6' into 1 (Maxime Rainville)
|
||||
* 2020-10-22 [7f267623](https://github.com/silverstripe/silverstripe-siteconfig/commit/7f267623c374ba0ddca8e35ae556b0edccce6ceb) branch '4.6' into 4 (Maxime Rainville)
|
||||
* 2020-10-22 [fd2184e7](https://github.com/silverstripe/silverstripe-cms/commit/fd2184e7d15eab206d7b2e1fa34a5bce592c3a3d) branch '4.6' into 4 (Maxime Rainville)
|
||||
* 2020-10-22 [64c4a119](https://github.com/silverstripe/silverstripe-cms/commit/64c4a119b7cc5b6be01a3cc7ee576246e5a96d16) pull request #2603 from open-sausages/pulls/4.6/fix-typo (Maxime Rainville)
|
||||
* 2020-10-21 [f4edd359](https://github.com/silverstripe/silverstripe-cms/commit/f4edd35989357cbb642ba83d59491018887efb84) branch '4.5' into 4.6 (Maxime Rainville)
|
||||
* 2020-10-21 [2a8db5b](https://github.com/silverstripe/silverstripe-versioned/commit/2a8db5bc0887b930dc1603421f16b7810d290e68) branch '1.6' into 1 (Maxime Rainville)
|
||||
* 2020-10-21 [8c0ff67c5](https://github.com/silverstripe/silverstripe-framework/commit/8c0ff67c5570d9cff6ff74e90fffda7cc87d089e) branch '4.6' into 4 (Maxime Rainville)
|
||||
* 2020-10-21 [9035a5b](https://github.com/silverstripe/silverstripe-admin/commit/9035a5b23948ca17e1c6edf641313c350f2f8f82) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-10-20 [0e4cda1](https://github.com/silverstripe/silverstripe-admin/commit/0e4cda1cead8f4f47db02bd91657d38cac7d4d98) pull request #1142 from creative-commoners/pulls/1.6/search-form-size (Andre Kiste)
|
||||
* 2020-10-20 [d2f2afda](https://github.com/silverstripe/silverstripe-asset-admin/commit/d2f2afda8a2e21937a56c331f95a91eb7e81cf02) pull request #1150 from open-sausages/pulls/1/fix-symfony-yml (Steve Boyd)
|
||||
* 2020-10-20 [c56cf068](https://github.com/silverstripe/silverstripe-cms/commit/c56cf0686c2d500754cc4ddc55d054aedcea033d) pull request #2601 from open-sausages/pulls/4/fix-symfony-yml (Steve Boyd)
|
||||
* 2020-10-20 [ed8bbd23f](https://github.com/silverstripe/silverstripe-framework/commit/ed8bbd23ffae54ab0bc2855068d16e6d70939952) pull request #9738 from open-sausages/pulls/4/fix-symfony-yml (Steve Boyd)
|
||||
* 2020-10-19 [86328aa](https://github.com/silverstripe/silverstripe-admin/commit/86328aa312203965dc6490044ac5e555092a32b9) pull request #1141 from creative-commoners/pulls/1.6/entwine-one-patch (Steve Boyd)
|
||||
* 2020-10-19 [4670cd3af](https://github.com/silverstripe/silverstripe-framework/commit/4670cd3af9bd427963fdb828d3ade4211a963434) pull request #9726 from creative-commoners/pulls/4/fly-er-system (Garion Herman)
|
||||
* 2020-10-16 [9e790ae](https://github.com/silverstripe/silverstripe-versioned-admin/commit/9e790aeff86a665232631b3e420343abc0eb04d7) pull request #180 from silverstripe/dependabot/npm_and_yarn/npm-user-validate-1.0.1 (dependabot[bot])
|
||||
* 2020-10-16 [7648963c](https://github.com/silverstripe/silverstripe-cms/commit/7648963cb88822f6fdaaae72fe077f4151cbc155) pull request #2600 from silverstripe/dependabot/npm_and_yarn/npm-user-validate-1.0.1 (dependabot[bot])
|
||||
* 2020-10-16 [838f095](https://github.com/silverstripe/silverstripe-login-forms/commit/838f095283d31c6a7901d199a5132bdcde7aaa7c) pull request #73 from silverstripe/dependabot/npm_and_yarn/npm-user-validate-1.0.1 (dependabot[bot])
|
||||
* 2020-10-16 [c00b00c](https://github.com/silverstripe/silverstripe-campaign-admin/commit/c00b00cdf46d68354c581df5f4be1228759392c3) pull request #183 from silverstripe/dependabot/npm_and_yarn/npm-user-validate-1.0.1 (dependabot[bot])
|
||||
* 2020-10-16 [5212410](https://github.com/silverstripe/silverstripe-admin/commit/52124109c36dcb3dc46d863b5b09b4e9f8ee4145) pull request #1140 from silverstripe/dependabot/npm_and_yarn/npm-user-validate-1.0.1 (dependabot[bot])
|
||||
* 2020-10-16 [45d0f1d38](https://github.com/silverstripe/silverstripe-framework/commit/45d0f1d3841d930ff972f50db92b26783e5dfc8d) pull request #9737 from creative-commoners/pulls/4/php-8-support (Garion Herman)
|
||||
* 2020-10-15 [3620eccde](https://github.com/silverstripe/silverstripe-framework/commit/3620eccdee415d7196b9caf8747ad17c3fd08f4e) pull request #9728 from creative-commoners/pulls/4/docs-rfc-9687-commit-prefixes (Andre Kiste)
|
||||
* 2020-10-15 [c6e0c544](https://github.com/silverstripe/silverstripe-cms/commit/c6e0c5441a7bcea754023e5725258a5f0e056729) pull request #2599 from open-sausages/pulls/4/remove-broken-resource-dir (Steve Boyd)
|
||||
* 2020-10-14 [b8ca98d2](https://github.com/silverstripe/silverstripe-asset-admin/commit/b8ca98d2511b1d506f27819befeca7cbe8821dbc) pull request #1145 from creative-commoners/pulls/1.6/issue-896 (Andre Kiste)
|
||||
* 2020-10-13 [89f2e902](https://github.com/silverstripe/silverstripe-cms/commit/89f2e9028adfe655f6dab41de07d630a96814fa4) pull request #2597 from creative-commoners/meta-tag-label (Daniel Hensby)
|
||||
* 2020-10-13 [2775699](https://github.com/silverstripe/silverstripe-campaign-admin/commit/277569905cca86fcab9ebecc421cb4d9a5e94352) pull request #178 from creative-commoners/pulls/1/reactstrap8-fixes (Serge Latyntsev)
|
||||
* 2020-10-13 [b71b60525](https://github.com/silverstripe/silverstripe-framework/commit/b71b6052513234b83d3a41794cfc7c84fd257131) pull request #9730 from creative-commoners/pulls/4/provisional-changelogs (Serge Latyntsev)
|
||||
* 2020-10-13 [0a57853](https://github.com/silverstripe/silverstripe-installer/commit/0a57853c60f06ce937bc875647ab90f43f889226) pull request #289 from creative-commoners/pulls/4/use-changelog-template (Serge Latyntsev)
|
||||
* 2020-10-13 [a1f28b1](https://github.com/silverstripe/silverstripe-config/commit/a1f28b12a4b50d55412a629f40bd7372135ebeb5) pull request #46 from sminnee/pulls/php8 (Serge Latyntsev)
|
||||
* 2020-10-12 [e9930c4](https://github.com/silverstripe/silverstripe-versioned-admin/commit/e9930c432fcfe77839605a17c3e65aab13baa925) pull request #179 from creative-commoners/pulls/1/php8 (Andre Kiste)
|
||||
* 2020-10-12 [ac94fbe](https://github.com/silverstripe/silverstripe-versioned/commit/ac94fbe38c2de1c9a90fe7469feaf68de609b2fb) pull request #303 from creative-commoners/pulls/1/php8 (Andre Kiste)
|
||||
* 2020-10-12 [2f100f5a](https://github.com/silverstripe/silverstripe-siteconfig/commit/2f100f5a8968365fdb06cf88a0740fa2875156bf) pull request #115 from creative-commoners/pulls/4/php8 (Andre Kiste)
|
||||
* 2020-10-12 [466ec19b](https://github.com/silverstripe/silverstripe-reports/commit/466ec19b604224082ed16b4492decafdd9f9d23d) pull request #131 from creative-commoners/pulls/4/php8 (Andre Kiste)
|
||||
* 2020-10-12 [263c924](https://github.com/silverstripe/silverstripe-graphql/commit/263c92427b80136f8884bdd3890ac0a07f7ce76a) pull request #302 from creative-commoners/pulls/3/php8 (Andre Kiste)
|
||||
* 2020-10-12 [726e1111](https://github.com/silverstripe/silverstripe-cms/commit/726e1111e7c13656c170c6a69a910efea12e8636) pull request #2595 from creative-commoners/pulls/4/php8 (Daniel Hensby)
|
||||
* 2020-10-12 [01b5551a5](https://github.com/silverstripe/silverstripe-framework/commit/01b5551a5bd41b9faae78e51e0af3c8dadef2043) pull request #9733 from creative-commoners/pulls/4.6/fix-tinymce-image-configs (Serge Latyntsev)
|
||||
* 2020-10-12 [e7d52d3f9](https://github.com/silverstripe/silverstripe-framework/commit/e7d52d3f91d35eb5d002b43c66f9944e0deb215b) pull request #9732 from creative-commoners/pulls/4/fix-tinymce-image-configs (Serge Latyntsev)
|
||||
* 2020-10-12 [ce3e642b1](https://github.com/silverstripe/silverstripe-framework/commit/ce3e642b124c5738b7935c4128fd99b583c3674f) pull request #9729 from creative-commoners/pulls/4/provisional-4.7.0-changelog (Garion Herman)
|
||||
* 2020-10-09 [f5a4a15](https://github.com/silverstripe/silverstripe-admin/commit/f5a4a15d22f0cb17edd688703ea683b84a7ba804) pull request #1134 from creative-commoners/pulls/1/updatereact (Robbie Averill)
|
||||
* 2020-10-09 [825a0d4](https://github.com/silverstripe/silverstripe-admin/commit/825a0d4343ad0d205cfe7caadfd7ceb116f7cfb2) pull request #1129 from open-sausages/pulls/1/tracking-active-tab (Steve Boyd)
|
||||
* 2020-10-08 [7ddf5997](https://github.com/silverstripe/silverstripe-asset-admin/commit/7ddf5997567960e63cf779e4a503ec808d03a009) pull request #1140 from creative-commoners/pulls/1/php8 (Garion Herman)
|
||||
* 2020-10-08 [8e9b07f](https://github.com/silverstripe/silverstripe-errorpage/commit/8e9b07f659d809dadc57ded01b9909a66676a07b) pull request #57 from creative-commoners/pulls/1/php8 (Serge Latyntsev)
|
||||
* 2020-10-08 [a25a34b](https://github.com/silverstripe/silverstripe-campaign-admin/commit/a25a34bcb920a15d6cc62d68326ab063dc13bd8e) pull request #179 from creative-commoners/pulls/1/php8 (Daniel Hensby)
|
||||
* 2020-10-08 [68a6a82](https://github.com/silverstripe/silverstripe-assets/commit/68a6a820a5f99b23f784903e135655743c69c483) pull request #424 from creative-commoners/pulls/1/php-8 (Garion Herman)
|
||||
* 2020-10-07 [89d6112](https://github.com/silverstripe/recipe-core/commit/89d611239c88f611397680e9c94bce71027bc494) pull request #28 from sminnee/utf8mb4 (Robbie Averill)
|
||||
* 2020-10-07 [feb1955](https://github.com/silverstripe/silverstripe-campaign-admin/commit/feb195503fdab31f63f6cb4ef880089e56cd49d4) pull request #182 from creative-commoners/pulls/1/behat (Steve Boyd)
|
||||
* 2020-10-07 [6e7400f](https://github.com/silverstripe/silverstripe-graphql/commit/6e7400f759f00e0e1c26c91a1c19a5bc34e57734) branch '3.3' into 3 (Garion Herman)
|
||||
* 2020-10-07 [93fe8d3](https://github.com/silverstripe/silverstripe-graphql/commit/93fe8d3675b0e2dfc374b3cab284f4f481dc3c14) branch '3.2' into 3.3 (Garion Herman)
|
||||
* 2020-10-07 [4d0f45b](https://github.com/silverstripe/silverstripe-graphql/commit/4d0f45b6856ea81ae3736356ff522c2f721697a1) branch '3.1' into 3.2 (Garion Herman)
|
||||
* 2020-10-07 [6f2485a](https://github.com/silverstripe/silverstripe-graphql/commit/6f2485a7e6c865c35778acb100daa181e4e87582) pull request #301 from creative-commoners/pulls/3.1/travis-artifacts (Garion Herman)
|
||||
* 2020-10-07 [6401f79](https://github.com/silverstripe/silverstripe-campaign-admin/commit/6401f79f686ca1e350158b944bf7816e5cc95284) branch '1.6' into 1 (Garion Herman)
|
||||
* 2020-10-07 [9c692ad](https://github.com/silverstripe/silverstripe-campaign-admin/commit/9c692adc9a041da148578460e3bae4360a50c8a8) branch '1.5' into 1.6 (Garion Herman)
|
||||
* 2020-10-07 [35318d0](https://github.com/silverstripe/silverstripe-campaign-admin/commit/35318d002be6e40e0843fb71328cedd3978faefb) branch '1.4' into 1.5 (Garion Herman)
|
||||
* 2020-10-07 [624d2c0](https://github.com/silverstripe/silverstripe-campaign-admin/commit/624d2c0afe3bd6ea38696870e3a84e9d49a9767a) branch '1.3' into 1.4 (Garion Herman)
|
||||
* 2020-10-07 [ed7b4a5](https://github.com/silverstripe/silverstripe-campaign-admin/commit/ed7b4a5fdd223e81a910efb74c4d209a5a794d07) branch '1.2' into 1.3 (Garion Herman)
|
||||
* 2020-10-07 [665236a](https://github.com/silverstripe/silverstripe-campaign-admin/commit/665236a4f7118980bf206737956078ec1ab47943) pull request #181 from creative-commoners/pulls/1.2/fix-behat-artifacts (Garion Herman)
|
||||
* 2020-10-06 [fcf413b9](https://github.com/silverstripe/silverstripe-asset-admin/commit/fcf413b92f876ec28aa4ffc2703c360eff029995) pull request #1141 from creative-commoners/pulls/1/yaml (Steve Boyd)
|
||||
* 2020-10-06 [546663da](https://github.com/silverstripe/silverstripe-cms/commit/546663da56bb261890cdae1b38acdf3c5ff22100) pull request #2593 from silverstripe-terraformers/bugfix/url-segment-page-search (Daniel Hensby)
|
||||
* 2020-10-06 [bb7cf17e3](https://github.com/silverstripe/silverstripe-framework/commit/bb7cf17e3ccb8c715f47c2bab2641a7e521fc883) pull request #9722 from creative-commoners/pulls/4/fix-versioned-member-auth-tests (Robbie Averill)
|
||||
* 2020-10-06 [ad9cc2f](https://github.com/silverstripe/silverstripe-campaign-admin/commit/ad9cc2f271f00d3427b94d3d06113b52becb4fa5) pull request #180 from creative-commoners/pulls/1/yaml (Robbie Averill)
|
||||
* 2020-10-05 [ea85e23](https://github.com/silverstripe/silverstripe-admin/commit/ea85e23e5c10f7ea13df63ab562b25f55b8be45f) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-10-05 [3643b40](https://github.com/silverstripe/silverstripe-admin/commit/3643b40d0fe34dcca8e1d74d225ab94a6bacea4a) pull request #1133 from creative-commoners/pulls/1.6/webpack-config-170 (Garion Herman)
|
||||
* 2020-10-05 [d4658ff2](https://github.com/silverstripe/silverstripe-cms/commit/d4658ff2971c757196e52509f5adf7a2b79ea0f9) pull request #2594 from creative-commoners/pulls/4/quote-yaml (Garion Herman)
|
||||
* 2020-10-05 [a6c9d0c](https://github.com/silverstripe/silverstripe-versioned-admin/commit/a6c9d0cc97b1dd3ddf126e8ba491be09fca63baf) branch '1.6' into 1 (Robbie Averill)
|
||||
* 2020-10-05 [234df65](https://github.com/silverstripe/silverstripe-versioned-admin/commit/234df65b98e66dd55ee2ad01aecd81861087c527) branch '1.3' into 1.6 (Robbie Averill)
|
||||
* 2020-10-05 [a30c015](https://github.com/silverstripe/silverstripe-versioned-admin/commit/a30c015514e625c15aa1696a339de9c76cb1977c) branch '1.2' into 1.3 (Robbie Averill)
|
||||
* 2020-10-05 [1864742](https://github.com/silverstripe/silverstripe-versioned-admin/commit/18647420e74d4709e8c5f3c8fe84c90043963ddb) branch '1.1' into 1.2 (Robbie Averill)
|
||||
* 2020-10-05 [ec94db8](https://github.com/silverstripe/silverstripe-versioned-admin/commit/ec94db8d2073cce65ccdda89279de3eac442b5bd) branch '1.0' into 1.1 (Robbie Averill)
|
||||
* 2020-10-05 [797023a](https://github.com/silverstripe/silverstripe-versioned-admin/commit/797023add3bab30b75ce495e03da96660baca657) pull request #178 from ScopeyNZ/pulls/fix-unquoted-strings-in-yaml (Robbie Averill)
|
||||
* 2020-10-05 [544b13732](https://github.com/silverstripe/silverstripe-framework/commit/544b137328e3cf895291d0f86e759f8e4d0b50ff) branch '4.6' into 4 (Aaron Carlino)
|
||||
* 2020-10-05 [8053bc7a7](https://github.com/silverstripe/silverstripe-framework/commit/8053bc7a72df66c96e122a68afda8b630865aaf6) branch '4.5' into 4.6 (Aaron Carlino)
|
||||
* 2020-10-05 [a8e8ed71](https://github.com/silverstripe/silverstripe-cms/commit/a8e8ed71c56b3a8b16416a033fb4e1c124877e1f) pull request #2588 from creative-commoners/add-docs (Guy Marriott)
|
||||
* 2020-10-04 [3be9a51](https://github.com/silverstripe/silverstripe-versioned/commit/3be9a5105abb72d2dd246e7dd26ceeb2afe0232c) pull request #299 from robbieaverill/pulls/1.7/exceptions (Guy Marriott)
|
||||
* 2020-10-04 [8f40ddb5](https://github.com/silverstripe/silverstripe-reports/commit/8f40ddb5eba9f3b39d35b05732afc241a7237dc7) pull request #130 from robbieaverill/pulls/4.7/exceptions (Guy Marriott)
|
||||
* 2020-10-04 [bbcc5de8](https://github.com/silverstripe/silverstripe-cms/commit/bbcc5de8c1c6ecc846a9ffd37115e9e8551353c0) pull request #2589 from robbieaverill/pulls/4.7/exceptions (Guy Marriott)
|
||||
* 2020-10-04 [a6529dd20](https://github.com/silverstripe/silverstripe-framework/commit/a6529dd20255fee0091f8e7d4e97f41d6e10bbbb) pull request #9719 from creative-commoners/pulls/4/doc-partial-caching-aggregates-gotcha (Guy Marriott)
|
||||
* 2020-10-04 [f5629ea](https://github.com/silverstripe/silverstripe-admin/commit/f5629eaa6857464da9ea74e893e280b9c28886b1) pull request #1123 from robbieaverill/pulls/1.7/exceptions (Guy Marriott)
|
||||
* 2020-10-02 [4ab36ac21](https://github.com/silverstripe/silverstripe-framework/commit/4ab36ac210d7412442062eb272849d4f139c7d69) pull request #9717 from robbieaverill/pulls/4.7/improve-stuff (Sam Minnée)
|
||||
* 2020-10-02 [7184703a5](https://github.com/silverstripe/silverstripe-framework/commit/7184703a571ac257ea0d3fbdde2d825a46bd0268) pull request #9516 from alessandromarotta/isLockectOut-call-LoginAttempt-getByEmail (Robbie Averill)
|
||||
* 2020-10-02 [478d487f0](https://github.com/silverstripe/silverstripe-framework/commit/478d487f0e527022b5ab6153a99277cdfa83f347) pull request #9707 from robbieaverill/pulls/4.7/exceptions (Guy Marriott)
|
||||
* 2020-10-01 [ba02f5e](https://github.com/silverstripe/silverstripe-versioned/commit/ba02f5ed7c1059098fe13ebaa4c6dbfce176a977) pull request #301 from kinglozzer/300-unpublish-permissions (Daniel Hensby)
|
||||
* 2020-09-30 [fe45655a2](https://github.com/silverstripe/silverstripe-framework/commit/fe45655a2b7b49c01c69178baaddb4ab20cefa5e) pull request #9698 from sminnee/pulls/symfony4 (Daniel Hensby)
|
||||
* 2020-09-30 [887b7d8af](https://github.com/silverstripe/silverstripe-framework/commit/887b7d8af8d1bab668772b578afe167ccc398682) pull request #9714 from creative-commoners/pulls/4/did-not-have-namespace (Sam Minnée)
|
||||
* 2020-09-25 [735a7ce](https://github.com/silverstripe/silverstripe-versioned/commit/735a7ce3a8bee42aef9b356b7c858fc667368887) pull request #296 from silverstripe-terraformers/bugfix/form-action-buttons (Robbie Averill)
|
||||
* 2020-09-25 [b09e8b6](https://github.com/silverstripe/silverstripe-versioned-admin/commit/b09e8b6c0e637396148572114e6a23a5d92186e6) pull request #173 from silverstripe-terraformers/bugfix/form-action-buttons (Robbie Averill)
|
||||
* 2020-09-25 [9753d835f](https://github.com/silverstripe/silverstripe-framework/commit/9753d835fd58d26727a8cae00f80fb3f2e3a242a) pull request #9708 from RuthAdele/patch-3 (Robbie Averill)
|
||||
* 2020-09-25 [6ed13f7e](https://github.com/silverstripe/silverstripe-reports/commit/6ed13f7e0720e842dfe00f9967ccfcd7dea8f292) pull request #128 from creative-commoners/pulls/4.6/travis (Robbie Averill)
|
||||
* 2020-09-24 [c5f479f](https://github.com/silverstripe/silverstripe-admin/commit/c5f479f27c5fa9ccf07dc8e73578f17f0ebf5b81) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-09-24 [6610cdf](https://github.com/silverstripe/silverstripe-admin/commit/6610cdf8d0d7349e9f5e363667d20509eac327e2) pull request #1119 from creative-commoners/pulls/1.6/missing-translations (Steve Boyd)
|
||||
* 2020-09-24 [f94ab5b](https://github.com/silverstripe/silverstripe-admin/commit/f94ab5b506a0d585c07726233e77c053c094f0cd) pull request #1118 from sminnee/pulls/php8 (Garion Herman)
|
||||
* 2020-09-24 [d57534c](https://github.com/silverstripe/silverstripe-admin/commit/d57534c9fa5da46bbc3dfe067cf9d1fe78027a61) pull request #1111 from creative-commoners/pulls/1.6/invalid-tab-icons (Steve Boyd)
|
||||
* 2020-09-23 [81b30e7](https://github.com/silverstripe/silverstripe-mimevalidator/commit/81b30e77d9cb3c396ae20ac72aaef9e1d462878f) pull request #42 from sminnee/pulls/php8 (Garion Herman)
|
||||
* 2020-09-23 [4b345ab3](https://github.com/silverstripe/silverstripe-asset-admin/commit/4b345ab3bc21855753f6d7302383db73e9d2b2fa) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-09-23 [351405fb](https://github.com/silverstripe/silverstripe-asset-admin/commit/351405fb019d9e633544975feb0277e9b5938088) pull request #1138 from creative-commoners/pulls/1.6/error-html-tags (Garion Herman)
|
||||
* 2020-09-22 [8be9fbe](https://github.com/silverstripe/silverstripe-mimevalidator/commit/8be9fbe9984e9f0301f326a6b37e75316c046d41) pull request #41 from sminnee/pulls/symfony4 (Daniel Hensby)
|
||||
* 2020-09-22 [0f90018](https://github.com/silverstripe/recipe-core/commit/0f900180bb776336998e7d425614bdc37261d9b5) pull request #60 from sminnee/pulls/config-11 (Serge Latyntsev)
|
||||
* 2020-09-21 [fd80646](https://github.com/silverstripe/silverstripe-admin/commit/fd80646ddc5002252cd23b925b7e38060a8498fc) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-09-21 [fb24367](https://github.com/silverstripe/silverstripe-admin/commit/fb2436719ecb4600458e99fcf98799f086c675d4) branch '1.5' into 1.6 (Steve Boyd)
|
||||
* 2020-09-21 [1324610](https://github.com/silverstripe/silverstripe-admin/commit/1324610e906c8d935e1b2d6a979746b2b94bbd06) pull request #1107 from creative-commoners/pulls/1.5/revert-icon-flex (Steve Boyd)
|
||||
* 2020-09-21 [20117568](https://github.com/silverstripe/silverstripe-asset-admin/commit/201175688f2ab617fbc23e66a1a25ef1a9cd96af) branch '1.6' into 1 (Maxime Rainville)
|
||||
* 2020-09-21 [618367f](https://github.com/silverstripe/silverstripe-admin/commit/618367f4b472a31215d35be8345cc77283b087d7) branch '1.6' into 1 (Maxime Rainville)
|
||||
* 2020-09-21 [f8b6f86](https://github.com/silverstripe/silverstripe-admin/commit/f8b6f86e6a9aef8053fe75f4dcca3941b6e202c1) branch '1.5' into 1.6 (Maxime Rainville)
|
||||
* 2020-09-18 [ae0ece2b0](https://github.com/silverstripe/silverstripe-framework/commit/ae0ece2b027e112155444c41c03f5023308a85f3) pull request #9665 from creative-commoners/pulls/4/php8-fqcn-token (Dan Hensby)
|
||||
* 2020-09-18 [8959212cf](https://github.com/silverstripe/silverstripe-framework/commit/8959212cffaf3a76821d485d598d5b8f05c2bffa) pull request #9700 from Michael-HEIW/unit-test-doc (Daniel Hensby)
|
||||
* 2020-09-18 [21b2d95](https://github.com/silverstripe/silverstripe-config/commit/21b2d955ecfe9d25b51a0a6a5f88eae35e941bab) pull request #45 from sminnee/pulls/symfony4 (Robbie Averill)
|
||||
* 2020-09-18 [ecb03562d](https://github.com/silverstripe/silverstripe-framework/commit/ecb03562de21c15ce44d9dccac4aa442e44c5794) pull request #9572 from sminnee/pulls/manymanylist-add-callback (Ingo Schommer)
|
||||
* 2020-09-18 [1729957](https://github.com/silverstripe/silverstripe-admin/commit/172995705f899b53c95cfec7deb206c0ab556b2f) pull request #1112 from sachajudd/pulls/1,6/icon-attention (Steve Boyd)
|
||||
* 2020-09-16 [a71200040](https://github.com/silverstripe/silverstripe-framework/commit/a712000404526a7d58fefee73bc7eae71011ea59) pull request #9682 from silverstripe-terraformers/feature/partial-cache-docs (Garion Herman)
|
||||
* 2020-09-15 [5d38e24dd](https://github.com/silverstripe/silverstripe-framework/commit/5d38e24dd7be2c0353195c3556b5f45ef0291cb0) pull request #9692 from open-sausages/pulls/4/remove-boostrap3-class (Sacha Judd)
|
||||
* 2020-09-15 [3ea21905](https://github.com/silverstripe/silverstripe-cms/commit/3ea2190565028520b5bc0d8829766639f3d9870c) pull request #2584 from open-sausages/pulls/4/remove-boostrap3-class (Sacha Judd)
|
||||
* 2020-09-15 [90512430d](https://github.com/silverstripe/silverstripe-framework/commit/90512430d7ac0e671b441d0928629c1a53a819f6) pull request #8846 from kinglozzer/template-parser-bugs (Sam Minnée)
|
||||
* 2020-09-15 [d1883bb](https://github.com/silverstripe/silverstripe-versioned/commit/d1883bbff7a78a9034c6d445c442ba3b85ea827b) pull request #297 from silverstripe-terraformers/feature/draft-published-extension-points (Daniel Hensby)
|
||||
* 2020-09-15 [ab50e2cc5](https://github.com/silverstripe/silverstripe-framework/commit/ab50e2cc51938bbf06ab8e65d2c6ac5efe1e4190) branch '4.6' into 4 (Steve Boyd)
|
||||
* 2020-09-15 [e339549e0](https://github.com/silverstripe/silverstripe-framework/commit/e339549e0d022655ad4fbcdb3e702cf8bfaad243) pull request #9649 from kinglozzer/9648-security-titles (Steve Boyd)
|
||||
* 2020-09-15 [05e341724](https://github.com/silverstripe/silverstripe-framework/commit/05e3417249722a459b2c205d643c0192f8c3c316) pull request #9686 from sminnee/pulls/9679-guard-sapphiretest (Guy Marriott)
|
||||
* 2020-09-14 [a80f66f11](https://github.com/silverstripe/silverstripe-framework/commit/a80f66f11c45db17c6093f5c33624a09a9fb7a13) pull request #9689 from RuthAdele/patch-2 (Guy Marriott)
|
||||
* 2020-09-10 [015ea8cfc](https://github.com/silverstripe/silverstripe-framework/commit/015ea8cfc88ea60140fc9cb9995a94ec3ec93588) branch '4.6' into 4 (Steve Boyd)
|
||||
* 2020-09-10 [65b2a72](https://github.com/silverstripe/silverstripe-installer/commit/65b2a72843c2fff6f337f5fea8a2a64ce580b8d6) branch '4.6' into 4 (Steve Boyd)
|
||||
* 2020-09-10 [ae68dc4](https://github.com/silverstripe/silverstripe-installer/commit/ae68dc4299df19769ae7dcea3017d866935e7864) pull request #286 from creative-commoners/changelog-template (Steve Boyd)
|
||||
* 2020-09-10 [de61681de](https://github.com/silverstripe/silverstripe-framework/commit/de61681dec50217f1a11be9c716beaae94f0e8e1) pull request #9634 from open-sausages/pulls/4/ellipsis (Robbie Averill)
|
||||
* 2020-09-10 [b592d2105](https://github.com/silverstripe/silverstripe-framework/commit/b592d2105c246e2df9d63f9f823fb2eb7be77e12) pull request #9681 from open-sausages/pulls/4/better-hash-compare-function (Daniel Hensby)
|
||||
* 2020-09-10 [1ac80f0](https://github.com/silverstripe/silverstripe-installer/commit/1ac80f05a8c9f51c3bbe332510749d6805bfd05b) pull request #288 from open-sausages/pulls/4/ignow-dot-cow-folder-on-builds (Robbie Averill)
|
||||
* 2020-09-10 [089098ffd](https://github.com/silverstripe/silverstripe-framework/commit/089098ffdbaff3a99b1df3fb39efcf3e19523b59) pull request #9676 from creative-commoners/pulls/4/docs-preannouncement-mailing-list-denounce (Ingo Schommer)
|
||||
* 2020-09-10 [1a602608c](https://github.com/silverstripe/silverstripe-framework/commit/1a602608ce9e9f3e81c939a5e124898c65d136e2) pull request #9675 from creative-commoners/pulls/4/docs-partial-template-cache-in-a-loop (Steve Boyd)
|
||||
* 2020-09-10 [b13453c88](https://github.com/silverstripe/silverstripe-framework/commit/b13453c88d4b0f2da4aff7c6838e0cf7b7752a7d) pull request #9678 from creative-commoners/pulls/4.6/compare-select (Serge Latyntsev)
|
||||
* 2020-09-09 [eb04dea](https://github.com/silverstripe/silverstripe-assets/commit/eb04dea506163acf7ea86e6e50eb6bbe35cc1bd6) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-09-09 [589631df0](https://github.com/silverstripe/silverstripe-framework/commit/589631df00798040986c460f9a9daada2326d6d1) pull request #9280 from open-sausages/pulls/4/doc-breadcrumb (Steve Boyd)
|
||||
* 2020-09-09 [a9da084](https://github.com/silverstripe/silverstripe-assets/commit/a9da08493401fe0f541536799a4a2800a85ca261) pull request #420 from open-sausages/pulls/1.6/merge-up (Serge Latyntsev)
|
||||
* 2020-09-09 [139c1fb](https://github.com/silverstripe/silverstripe-assets/commit/139c1fbd044684dca0e30bd98d0d415209e69bbc) branch '1.5' into pulls/1.6/merge-up (Maxime Rainville)
|
||||
* 2020-09-09 [4c3a5441b](https://github.com/silverstripe/silverstripe-framework/commit/4c3a5441b2287927b06af1e85f266b30c4a91cb3) branch '4.6' into 4 (Steve Boyd)
|
||||
* 2020-09-09 [9319857](https://github.com/silverstripe/silverstripe-assets/commit/93198573c36f81dd95d6726c31c18c19da16a20d) branch '1.4' into 1.5 (Maxime Rainville)
|
||||
* 2020-09-08 [4ef3aab](https://github.com/silverstripe/silverstripe-admin/commit/4ef3aabb1e36004041b84cc4fbdbe2d3698fd11b) pull request #1101 from sminnee/pulls/fix-slug-flex (Steve Boyd)
|
||||
* 2020-09-08 [72e406aa](https://github.com/silverstripe/silverstripe-cms/commit/72e406aa63c6a08aabf32db86bd3e3b308202101) branch '4.6' into 4 (Steve Boyd)
|
||||
* 2020-09-08 [97393086](https://github.com/silverstripe/silverstripe-cms/commit/9739308601fa17b478867876b628ab70383d7ab9) branch '4.5' into 4.6 (Steve Boyd)
|
||||
* 2020-09-08 [bf5e94d2](https://github.com/silverstripe/silverstripe-cms/commit/bf5e94d2be22b7cfebbfd6b4b715d900cfe8cfb4) pull request #2581 from silverstripe-terraformers/bugfix/unpublish-permission (Steve Boyd)
|
||||
* 2020-09-07 [1a0c80ccd](https://github.com/silverstripe/silverstripe-framework/commit/1a0c80ccdbf272b66cabfef06222d2a4b4624b00) pull request #9669 from creative-commoners/pulls/4/docs-template-partial-cache (Steve Boyd)
|
||||
* 2020-09-07 [85242b1ef](https://github.com/silverstripe/silverstripe-framework/commit/85242b1efe96770bbb1a377e00424416c5e11e52) pull request #9650 from dylangrech92/patch-1 (Daniel Hensby)
|
||||
* 2020-09-07 [fc795d1](https://github.com/silverstripe/silverstripe-versioned-admin/commit/fc795d140b683753959ec521d22415f3d1fb9bda) pull request #170 from silverstripe/dependabot/npm_and_yarn/handlebars-4.7.6 (Robbie Averill)
|
||||
* 2020-09-05 [f6ac0ee5](https://github.com/silverstripe/silverstripe-cms/commit/f6ac0ee58f9c628265bd274264bf4cdd0c3db80d) pull request #2583 from silverstripe/dependabot/npm_and_yarn/handlebars-4.7.6 (Garion Herman)
|
||||
* 2020-09-05 [ef1553c7](https://github.com/silverstripe/silverstripe-cms/commit/ef1553c7763bf9afa0c66564714aebe42734c853) pull request #2582 from silverstripe/dependabot/npm_and_yarn/node-sass-4.14.1 (Garion Herman)
|
||||
* 2020-09-04 [1ddd184](https://github.com/silverstripe/silverstripe-admin/commit/1ddd1843718303e997439cf6c7426d299dd364ea) pull request #1105 from silverstripe/dependabot/npm_and_yarn/handlebars-4.7.6 (dependabot[bot])
|
||||
* 2020-09-04 [5659069](https://github.com/silverstripe/silverstripe-login-forms/commit/5659069b62f0cab841441a0a738c4936279ff1b6) pull request #72 from silverstripe/dependabot/npm_and_yarn/node-sass-4.14.1 (Robbie Averill)
|
||||
* 2020-09-04 [4884f3d](https://github.com/silverstripe/silverstripe-login-forms/commit/4884f3d44fff1882e81546e441746219c76f07fc) pull request #71 from silverstripe/dependabot/npm_and_yarn/lodash.mergewith-4.6.2 (Guy Marriott)
|
||||
* 2020-09-04 [b2ae260](https://github.com/silverstripe/silverstripe-campaign-admin/commit/b2ae26013c37d6b4521e037bcb476e9be35a2903) pull request #175 from silverstripe/dependabot/npm_and_yarn/npm-6.14.8 (dependabot[bot])
|
||||
* 2020-09-04 [46f5380](https://github.com/silverstripe/silverstripe-campaign-admin/commit/46f5380eca5d41947b116c2421f2ec3d7fe90d2c) pull request #174 from silverstripe/dependabot/npm_and_yarn/npm-registry-fetch-4.0.7 (dependabot[bot])
|
||||
* 2020-09-04 [dab8dc4](https://github.com/silverstripe/silverstripe-campaign-admin/commit/dab8dc4e13f7bb44b378709b1a56f0b15b5bf4e6) pull request #173 from silverstripe/dependabot/npm_and_yarn/node-sass-4.14.1 (dependabot[bot])
|
||||
* 2020-09-04 [4d8ff9f](https://github.com/silverstripe/silverstripe-campaign-admin/commit/4d8ff9f5c3e41d817f1fca727aa962d16f1bf8e6) pull request #172 from silverstripe/dependabot/npm_and_yarn/lodash-4.17.20 (Robbie Averill)
|
||||
* 2020-09-04 [590123e](https://github.com/silverstripe/silverstripe-versioned/commit/590123e320c573d2a4d120fc6655448aaa706075) pull request #295 from silverstripe/dependabot/npm_and_yarn/node-sass-4.14.1 (Robbie Averill)
|
||||
* 2020-09-03 [904697b](https://github.com/silverstripe/silverstripe-versioned/commit/904697b150bbb9367fab41e115e59aa6f69303ce) pull request #288 from silverstripe/dependabot/npm_and_yarn/elliptic-6.5.3 (dependabot[bot])
|
||||
* 2020-09-03 [dd63f73](https://github.com/silverstripe/silverstripe-admin/commit/dd63f73d78bea0defced88d567c9a158799dd77c) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-09-03 [f88e70c](https://github.com/silverstripe/silverstripe-admin/commit/f88e70c05644685998b548d40953a1724ad705c2) branch '1.5' into 1.6 (Steve Boyd)
|
||||
* 2020-09-03 [b22ec23](https://github.com/silverstripe/silverstripe-admin/commit/b22ec2340dbb50d9354056ec311ef591fcd56bd9) pull request #1030 from creative-commoners/pulls/1.5/fix-url-anchorss (Steve Boyd)
|
||||
* 2020-09-03 [fcc331d](https://github.com/silverstripe/silverstripe-versioned-admin/commit/fcc331de51917dc7a0c5c8c81c0329c88f0b6217) pull request #168 from creative-commoners/pulls/1.6/parent-has-breadcrumbs (Robbie Averill)
|
||||
* 2020-09-01 [1eb66e225](https://github.com/silverstripe/silverstripe-framework/commit/1eb66e22582c874d81d1e65c61ee595b9d56c693) pull request #8915 from creative-commoners/pulls/4.4/helping-performance-exist (Robbie Averill)
|
||||
* 2020-08-30 [6b78428fb](https://github.com/silverstripe/silverstripe-framework/commit/6b78428fbbe06651bdc2563091eeb1926be4dd6a) pull request #9651 from open-sausages/pulls/4/test-mysql-connection-collation (Garion Herman)
|
||||
* 2020-08-28 [88dadaf8](https://github.com/silverstripe/silverstripe-asset-admin/commit/88dadaf8952b29e158c7060a602a6afdb85f0f74) pull request #1132 from creative-commoners/pulls/1.6/insert-file-as-link-padding (Andre Kiste)
|
||||
* 2020-08-28 [f51de3e](https://github.com/silverstripe/silverstripe-login-forms/commit/f51de3ed306ec07c8829c4c173160c92786ba1fb) pull request #70 from creative-commoners/pulls/4/temporarily-disable-config (Steve Boyd)
|
||||
* 2020-08-28 [e70d736](https://github.com/silverstripe/silverstripe-assets/commit/e70d736c90b3fc7c557350336d4a8af553801697) pull request #407 from creative-commoners/pulls/1.6/travis (Serge Latyntsev)
|
||||
* 2020-08-27 [7474a76d1](https://github.com/silverstripe/silverstripe-framework/commit/7474a76d1b3fb528af5f4ef61c3ca1b16301d80c) pull request #9657 from creative-commoners/pulls/4/expose-recipe-core-version (Steve Boyd)
|
||||
* 2020-08-27 [e7ab864](https://github.com/silverstripe/silverstripe-versioned-admin/commit/e7ab864e0e25688d465699a15b31497f2f31203f) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-08-27 [14f94cb](https://github.com/silverstripe/silverstripe-campaign-admin/commit/14f94cb66a45935ec148dde070fa36fb42cca009) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-08-27 [e9eefa86](https://github.com/silverstripe/silverstripe-cms/commit/e9eefa869d2546d433d355eef77053c7a4acd14b) pull request #2576 from creative-commoners/pulls/4/embed-performance (Steve Boyd)
|
||||
* 2020-08-27 [9aa2642d0](https://github.com/silverstripe/silverstripe-framework/commit/9aa2642d039bd7cd4ff61dc9877d2126136ee12e) pull request #9639 from creative-commoners/pulls/4/embed-performance (Garion Herman)
|
||||
* 2020-08-26 [969ee0a2](https://github.com/silverstripe/silverstripe-cms/commit/969ee0a272816613d9b4cb23ed799b9345aedfa4) pull request #2578 from creative-commoners/pulls/4/version-indicator-recipes (Garion Herman)
|
||||
* 2020-08-24 [8e23acd](https://github.com/silverstripe/silverstripe-versioned-admin/commit/8e23acdbb27fd5ddd5a38c39579c2bc1bea2946c) pull request #165 from creative-commoners/pulls/1.6/tab-ordering (Andre Kiste)
|
||||
* 2020-08-24 [6a8551b](https://github.com/silverstripe/silverstripe-campaign-admin/commit/6a8551b4003bfe2a836101933e2e7a4b251cc10c) pull request #171 from creative-commoners/pulls/1.6/untitled-for-no-title (Andre Kiste)
|
||||
* 2020-08-22 [009ae3ee4](https://github.com/silverstripe/silverstripe-framework/commit/009ae3ee4f50e5329101aeee363c55a85c6969ce) pull request #9645 from MasonD/datalist-column-bug (Sam Minnée)
|
||||
* 2020-08-21 [c143941e4](https://github.com/silverstripe/silverstripe-framework/commit/c143941e4450dbc4dfa5ddbe14878cf5314cf313) pull request #9628 from creative-commoners/pulls/4/version-provider (Garion Herman)
|
||||
* 2020-08-20 [0cbf105d](https://github.com/silverstripe/silverstripe-cms/commit/0cbf105d07739bf552bcf760cf454059f96a16c4) pull request #2575 from creative-commoners/pulls/4/show-archived (Steve Boyd)
|
||||
* 2020-08-19 [f163db12](https://github.com/silverstripe/silverstripe-cms/commit/f163db12168a16c5fe07353c6ad197741c3224be) branch '4.6' into 4 (Steve Boyd)
|
||||
* 2020-08-18 [eed2f59c3](https://github.com/silverstripe/silverstripe-framework/commit/eed2f59c371f3d4877b43cd78214155ba254b99f) branch '4.6' into 4 (Steve Boyd)
|
||||
* 2020-08-18 [317cc788c](https://github.com/silverstripe/silverstripe-framework/commit/317cc788c2f266b01dd6bcf705e54154f06a423b) pull request #9643 from creative-commoners/pulls/4.6/backport-fix-groupdropdowntest (Steve Boyd)
|
||||
* 2020-08-18 [dd66a70](https://github.com/silverstripe/silverstripe-versioned/commit/dd66a70f8c1d7d11b54f15cc97b5478fcf616a8b) pull request #294 from sminnee/pulls/decoupled-test (Steve Boyd)
|
||||
* 2020-08-17 [3932dca](https://github.com/silverstripe/silverstripe-versioned/commit/3932dca8b76b491bef91f47331b64ef866b8a2e6) pull request #280 from sminnee/pulls/stageless-semantics (Robbie Averill)
|
||||
* 2020-08-13 [3c67a0d8e](https://github.com/silverstripe/silverstripe-framework/commit/3c67a0d8e4e69632340defbb23e0a70ba542d1ab) branch '4.6' into 4 (Garion Herman)
|
||||
* 2020-08-13 [842d9ca07](https://github.com/silverstripe/silverstripe-framework/commit/842d9ca07ad59eee2d063bc11f5558e4242de291) pull request #9640 from creative-commoners/pulls/4.6/fix-461-changelog-header (Steve Boyd)
|
||||
* 2020-08-13 [a35d1a3c](https://github.com/silverstripe/silverstripe-asset-admin/commit/a35d1a3cb7b02d488eff3f36613de0ef004478a0) branch '1.6' into 1 (Garion Herman)
|
||||
* 2020-08-13 [80495ba](https://github.com/silverstripe/silverstripe-admin/commit/80495ba30adbb8ebed846c59546544b13ef02afd) branch '1.6' into 1 (Garion Herman)
|
||||
* 2020-08-10 [f700ed6](https://github.com/silverstripe/silverstripe-assets/commit/f700ed6008049cc0849d8be20006d411eddbce20) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-08-10 [10cbadc5](https://github.com/silverstripe/silverstripe-asset-admin/commit/10cbadc59983f3f6e8945541627e404c492726e4) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-08-10 [b83a6ef](https://github.com/silverstripe/silverstripe-versioned/commit/b83a6ef018c72a0d98b707a28f3578a6bad4c9f4) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-08-06 [8195bb480](https://github.com/silverstripe/silverstripe-framework/commit/8195bb480dd15ffed135bcb866ed0e63d624c01b) pull request #9630 from silverstripe-terraformers/feature/with-time (Sam Minnée)
|
||||
* 2020-08-06 [0351037fa](https://github.com/silverstripe/silverstripe-framework/commit/0351037fa18c5bc1b693cc8bddb4099a95c245ae) pull request #9633 from open-sausages/pulls/4/https-on-default-controller-template (Robbie Averill)
|
||||
* 2020-08-06 [956478db](https://github.com/silverstripe/silverstripe-cms/commit/956478db830fdf8e34129054b2af57c38bc5c96b) pull request #2574 from open-sausages/pulls/4/honour-url-suffix (Robbie Averill)
|
||||
* 2020-08-06 [ac5adcf30](https://github.com/silverstripe/silverstripe-framework/commit/ac5adcf3070d43679702b17a37a1ccef3d8a0af3) pull request #9635 from open-sausages/pulls/4/fix-broken-build-in-Grouped-drown-down-field (Robbie Averill)
|
||||
* 2020-08-05 [a166ba0eb](https://github.com/silverstripe/silverstripe-framework/commit/a166ba0ebd27dd73ed60952f45fef17b82590b46) pull request #9632 from open-sausages/pulls/4/tweak-getter-setter-doc (Robbie Averill)
|
||||
* 2020-08-04 [158afe0c](https://github.com/silverstripe/silverstripe-asset-admin/commit/158afe0c5f8007b5b1861723f99bbaafd2f57637) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-08-04 [7002317](https://github.com/silverstripe/silverstripe-admin/commit/7002317c35e7a3ffca6d5b163e332266a2f7e01b) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-08-04 [65c329591](https://github.com/silverstripe/silverstripe-framework/commit/65c329591735d39014e6dc37f63638253633c164) branch '4.6' into 4 (Steve Boyd)
|
||||
* 2020-07-30 [0d6e3b51](https://github.com/silverstripe/silverstripe-asset-admin/commit/0d6e3b5114802ae70de4506a9547cf0a123b3b3c) pull request #1121 from open-sausages/pulls/1/smooth-upload (Garion Herman)
|
||||
* 2020-07-30 [70d14c6a](https://github.com/silverstripe/silverstripe-asset-admin/commit/70d14c6accfeb9c20be9459fb246f20080def34c) pull request #1126 from silverstripe/dependabot/npm_and_yarn/elliptic-6.5.3 (Garion Herman)
|
||||
* 2020-07-30 [5aabb33](https://github.com/silverstripe/silverstripe-versioned/commit/5aabb33e8c95f63a43d4178585060a66f88e976b) pull request #287 from silverstripe-terraformers/feature/extensibility-improvements (Guy Marriott)
|
||||
* 2020-07-30 [5f33679](https://github.com/silverstripe/silverstripe-admin/commit/5f336794c5f2fbb008b420dfc94eb5fedcc02c5e) pull request #1085 from silverstripe/dependabot/npm_and_yarn/elliptic-6.5.3 (Robbie Averill)
|
||||
* 2020-07-30 [65b8cc39](https://github.com/silverstripe/silverstripe-cms/commit/65b8cc3948e7cec59b26a339edfb41ee421f1017) pull request #2571 from silverstripe/dependabot/npm_and_yarn/elliptic-6.5.3 (Robbie Averill)
|
||||
* 2020-07-30 [fa3a6f2](https://github.com/silverstripe/silverstripe-campaign-admin/commit/fa3a6f2d2a8cffea77d89b17fffcafdf0532dd6a) pull request #170 from silverstripe/dependabot/npm_and_yarn/elliptic-6.5.3 (Robbie Averill)
|
||||
* 2020-07-30 [c573218](https://github.com/silverstripe/silverstripe-login-forms/commit/c57321828bc840eeb05ccba07162efd8b21b817e) pull request #67 from silverstripe/dependabot/npm_and_yarn/elliptic-6.5.3 (Robbie Averill)
|
||||
* 2020-07-30 [ec69761](https://github.com/silverstripe/silverstripe-assets/commit/ec697613d350b18df5fb8fd3389de4ff034bfc01) pull request #344 from open-sausages/pulls/1/usedon (Steve Boyd)
|
||||
* 2020-07-30 [3a342e1](https://github.com/silverstripe/silverstripe-admin/commit/3a342e1957c6077f4c4f71938e655a8e90822351) pull request #1072 from sminnee/pulls/modeladmin-slug-flex (Ingo Schommer)
|
||||
* 2020-07-29 [821ef9559](https://github.com/silverstripe/silverstripe-framework/commit/821ef9559a738511e95adbae933a10d4628f4686) pull request #9618 from open-sausages/pulls/4/docs-hostname (Robbie Averill)
|
||||
* 2020-07-29 [d3f91c3a2](https://github.com/silverstripe/silverstripe-framework/commit/d3f91c3a2ec7881168858235835c227e4b323f8e) pull request #9619 from open-sausages/pulls/4/docs-track-releases (Robbie Averill)
|
||||
* 2020-07-28 [8287fad24](https://github.com/silverstripe/silverstripe-framework/commit/8287fad24dfeb6f81f1335bffed2668378470af0) branch '4.6' into 4 (Steve Boyd)
|
||||
* 2020-07-28 [50507c49](https://github.com/silverstripe/silverstripe-asset-admin/commit/50507c4993d3bd390703c56d79f5cc9ac33c6992) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-07-28 [1a7611b](https://github.com/silverstripe/silverstripe-admin/commit/1a7611bda9de51c184702cc08cb9798993fa97fb) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-07-26 [e2443763a](https://github.com/silverstripe/silverstripe-framework/commit/e2443763a6bc104873b032b7eae26129cb113016) pull request #9064 from creative-commoners/pulls/4.5/filter-interface (Garion Herman)
|
||||
* 2020-07-26 [daa0bf0](https://github.com/silverstripe/silverstripe-installer/commit/daa0bf08aefddb226eac05fc935cdf11575dff92) pull request #271 from mandrew/patch-2 (Garion Herman)
|
||||
* 2020-07-23 [edad8a8fe](https://github.com/silverstripe/silverstripe-framework/commit/edad8a8febf83eacc9d2a3cf29c6cbbe793773e4) pull request #9611 from unclecheese/pulls/4/problem-with-common-problems (Garion Herman)
|
||||
* 2020-07-23 [0241f29af](https://github.com/silverstripe/silverstripe-framework/commit/0241f29af4b5d2dd7060a5cf01cf1a0dcd5dd1ef) pull request #9609 from sunnysideup/patch-5 (Robbie Averill)
|
||||
* 2020-07-23 [abc702e63](https://github.com/silverstripe/silverstripe-framework/commit/abc702e63a218f3fba641a4aefd8794b8ea62d11) pull request #9608 from sunnysideup/patch-3 (Loz Calver)
|
||||
* 2020-07-23 [e31f0ad](https://github.com/silverstripe/silverstripe-admin/commit/e31f0adb701eabb2200cb7ab659a51a9b3b4251b) pull request #776 from creative-commoners/pulls/1.4/titled-branch-name (Garion Herman)
|
||||
* 2020-07-22 [dea199105](https://github.com/silverstripe/silverstripe-framework/commit/dea1991056a946c03400bc20330644c0727a6329) pull request #9606 from creative-commoners/php7.4-support (Garion Herman)
|
||||
* 2020-07-21 [20828b63](https://github.com/silverstripe/silverstripe-asset-admin/commit/20828b63a00dd7d7e314e89025aeed2c2321c4c7) pull request #1113 from silverstripe/dependabot/npm_and_yarn/npm-6.14.6 (dependabot[bot])
|
||||
* 2020-07-21 [4dc69617](https://github.com/silverstripe/silverstripe-asset-admin/commit/4dc69617e14999dae137bc2b1fb56f1ab7886368) pull request #1117 from silverstripe/dependabot/npm_and_yarn/lodash-4.17.19 (dependabot[bot])
|
||||
* 2020-07-21 [8fca29d](https://github.com/silverstripe/silverstripe-campaign-admin/commit/8fca29dfcb096b8c894f54692205ab3ba0e4694b) pull request #168 from creative-commoners/pulls/1/infoscreen-links (Steve Boyd)
|
||||
* 2020-07-21 [a25e432](https://github.com/silverstripe/silverstripe-admin/commit/a25e4329a110bc94930fd2298ff9ae54da1719ac) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-07-21 [7b69179](https://github.com/silverstripe/silverstripe-admin/commit/7b69179e97deee8264e9524c6ce8859863db2265) branch '1.5' into 1.6 (Steve Boyd)
|
||||
* 2020-07-19 [caea597](https://github.com/silverstripe/silverstripe-campaign-admin/commit/caea5972ae2a5f100472dbde0cf89491d6220613) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-07-19 [01d2a16](https://github.com/silverstripe/silverstripe-versioned/commit/01d2a168a0eba6a4ee821e3c1165929b95e6b051) pull request #284 from silverstripe/dependabot/npm_and_yarn/lodash-4.17.19 (Guy Marriott)
|
||||
* 2020-07-17 [2688a3d](https://github.com/silverstripe/silverstripe-admin/commit/2688a3d7c369278d68f115ca2ae704e42de1fe83) pull request #1080 from chrispenny/bugfix/cms-validator-bc-support (Loz Calver)
|
||||
* 2020-07-16 [455f7ff](https://github.com/silverstripe/silverstripe-admin/commit/455f7ff12f70238c6cfd81fd6aedbfa217c75c12) pull request #1013 from chrispenny/feature/standardise-get-cms-validator (Robbie Averill)
|
||||
* 2020-07-16 [6562355](https://github.com/silverstripe/silverstripe-login-forms/commit/6562355ad568c6d58201c9215916926d2d758cc2) pull request #65 from silverstripe/dependabot/npm_and_yarn/lodash-4.17.19 (dependabot[bot])
|
||||
* 2020-07-16 [84b4057a9](https://github.com/silverstripe/silverstripe-framework/commit/84b4057a9a35ad432db2d50bdb3618680534c684) pull request #9406 from chrispenny/feature/standardise-get-cms-validator (Robbie Averill)
|
||||
* 2020-07-16 [d3deb2c4](https://github.com/silverstripe/silverstripe-cms/commit/d3deb2c47bf52536777135c87bc93e146f95b500) pull request #2569 from silverstripe/dependabot/npm_and_yarn/lodash-4.17.19 (Robbie Averill)
|
||||
* 2020-07-16 [8ed988a](https://github.com/silverstripe/silverstripe-admin/commit/8ed988aa035a0711667eb757f68abb0eeeb86782) pull request #1079 from silverstripe/dependabot/npm_and_yarn/lodash-4.17.19 (dependabot[bot])
|
||||
* 2020-07-16 [bb69b15c](https://github.com/silverstripe/silverstripe-asset-admin/commit/bb69b15cae98b342a78a931d73f297010eabbd2d) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-07-15 [34eb17007](https://github.com/silverstripe/silverstripe-framework/commit/34eb170075d0706942886bf5c8b81a1f9dafe71b) branch '4.6' into 4 (Maxime Rainville)
|
||||
* 2020-07-14 [71f8264a5](https://github.com/silverstripe/silverstripe-framework/commit/71f8264a51699e23c7096dacc8452f7cbe0a02f9) pull request #9593 from unclecheese/pulls/4/doc-fix-image-url (Bryn Whyman)
|
||||
* 2020-07-14 [ec87061d9](https://github.com/silverstripe/silverstripe-framework/commit/ec87061d95f44578e49691e2bc19bbd03f3e8565) pull request #9594 from unclecheese/pulls/4/doc-fix-image-path (Bryn Whyman)
|
||||
* 2020-07-13 [557358c2a](https://github.com/silverstripe/silverstripe-framework/commit/557358c2a604dbf0ae45d53b90fca1b699d48598) pull request #9590 from thesifter/4 (Guy Marriott)
|
||||
* 2020-07-13 [eaf3f00](https://github.com/silverstripe/silverstripe-login-forms/commit/eaf3f00a24cae5f6e84ddd10010b27fec83ce5fb) pull request #64 from 3Dgoo/patch-1 (Guy Marriott)
|
||||
* 2020-07-13 [423c9909a](https://github.com/silverstripe/silverstripe-framework/commit/423c9909a83ae0f2bb409e30f883d42a39ca4ecf) pull request #1 from thesifter/thesifter-patch-1 (Damen Hansen)
|
||||
* 2020-07-13 [734fc9bd](https://github.com/silverstripe/silverstripe-asset-admin/commit/734fc9bd11aa456fb380f241779ff777bb417524) branch '1.6' into 1 (Garion Herman)
|
||||
* 2020-07-13 [0e44b89](https://github.com/silverstripe/silverstripe-graphql/commit/0e44b8975ece50e448ebe39be499b40510f09b43) branch '3.3' into 3 (Garion Herman)
|
||||
* 2020-07-13 [0789ce6](https://github.com/silverstripe/silverstripe-graphql/commit/0789ce6f37a10c2ba0d39000fe4c67584c74c2d9) branch '3.2' into 3.3 (Garion Herman)
|
||||
* 2020-07-13 [bfbe5a2](https://github.com/silverstripe/silverstripe-graphql/commit/bfbe5a2ac57ffa1ee7e3a9cfdbf1c70998d90f49) tag '3.3.0' into 3.3 (Garion Herman)
|
||||
* 2020-07-13 [d408a4e71](https://github.com/silverstripe/silverstripe-framework/commit/d408a4e714d4953df9f8552f2f3536223b799b81) branch '4.6' into 4 (Garion Herman)
|
||||
* 2020-07-10 [8d6a24843](https://github.com/silverstripe/silverstripe-framework/commit/8d6a2484317289cda9f2acfdd24d6389bb5b8323) remote-tracking branch 'origin/4.6' into 4 (Ingo Schommer)
|
||||
* 2020-07-08 [1a47cde6a](https://github.com/silverstripe/silverstripe-framework/commit/1a47cde6ace698a4f898abc07cbac15b2ede8a97) pull request #9578 from creative-commoners/3.7.4-changelog (Robbie Averill)
|
||||
* 2020-07-08 [f3ceca08](https://github.com/silverstripe/silverstripe-cms/commit/f3ceca08ee346802b51b2199f31cf0149e69c4a8) pull request #2566 from sunnysideup/patch-11 (Sacha Judd)
|
||||
* 2020-07-08 [8bebeae](https://github.com/silverstripe/silverstripe-admin/commit/8bebeae067d86e1f7937d1b191e442611ab32f07) pull request #1071 from silverstripe/dependabot/npm_and_yarn/npm-6.14.6 (dependabot[bot])
|
||||
* 2020-07-08 [4a4c4eb](https://github.com/silverstripe/silverstripe-versioned/commit/4a4c4eb80515743e8aba003b96589632cb046011) pull request #281 from silverstripe/dependabot/npm_and_yarn/npm-6.14.6 (dependabot[bot])
|
||||
* 2020-07-07 [75ee6c0](https://github.com/silverstripe/silverstripe-login-forms/commit/75ee6c004da151810a4b3d4cf4705ddb00017a66) pull request #62 from silverstripe/dependabot/npm_and_yarn/npm-6.14.6 (dependabot[bot])
|
||||
* 2020-07-07 [80185198](https://github.com/silverstripe/silverstripe-cms/commit/8018519810074e74d0977130c8b35bc9857dae88) pull request #2564 from silverstripe/dependabot/npm_and_yarn/npm-6.14.6 (dependabot[bot])
|
||||
* 2020-07-07 [a05b412](https://github.com/silverstripe/silverstripe-admin/commit/a05b4129a077a0f38b779e22ac3f11527fcd6084) pull request #1070 from silverstripe/dependabot/npm_and_yarn/npm-registry-fetch-4.0.5 (Robbie Averill)
|
||||
* 2020-07-07 [621a23bb](https://github.com/silverstripe/silverstripe-cms/commit/621a23bbf6024744cbdefd6e758cb46993b1810b) pull request #2563 from creative-commoners/pulls/4/show-archived (Robbie Averill)
|
||||
* 2020-07-03 [162e4b7ff](https://github.com/silverstripe/silverstripe-framework/commit/162e4b7ff851e9b4b0cdc29f53490d7196ad1392) pull request #9574 from patricknelson/patch-4 (Daniel Hensby)
|
||||
* 2020-07-02 [ceeba9f1a](https://github.com/silverstripe/silverstripe-framework/commit/ceeba9f1aeb57cf88ec8d2ef556b2ca115d1da26) pull request #9194 from sminnee/manymany-add-joinobject (Loz Calver)
|
||||
* 2020-07-02 [fb77893](https://github.com/silverstripe/silverstripe-installer/commit/fb778937668df410c5106fc0b7be9ba8439e6fc0) pull request #278 from open-sausages/pulls/4/make-login-forms-core-module (Steve Boyd)
|
||||
* 2020-07-02 [3d842a1](https://github.com/silverstripe/silverstripe-assets/commit/3d842a160163366456ba504dba00920d1f10fa20) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-07-01 [6b62618](https://github.com/silverstripe/silverstripe-login-forms/commit/6b62618b78764eeddc47a5cd8d7094864d7f21e9) pull request #47 from silverstripe/dependabot/npm_and_yarn/mixin-deep-1.3.2 (dependabot[bot])
|
||||
* 2020-07-01 [8dc9ece6](https://github.com/silverstripe/silverstripe-asset-admin/commit/8dc9ece6a896862862f876b7b24653e972d4a239) pull request #1102 from silverstripe/dependabot/npm_and_yarn/websocket-extensions-0.1.4 (dependabot[bot])
|
||||
* 2020-06-30 [4428c58](https://github.com/silverstripe/silverstripe-versioned-admin/commit/4428c58461817edaade97a85544478fd762b91fd) pull request #158 from silverstripe/dependabot/npm_and_yarn/websocket-extensions-0.1.4 (dependabot[bot])
|
||||
* 2020-06-30 [a0d00f895](https://github.com/silverstripe/silverstripe-framework/commit/a0d00f89510124a7beecee4131c440c0cc8ca8e9) pull request #9339 from DorsetDigital/Patch-9338-sake-which (Steve Boyd)
|
||||
* 2020-06-30 [16914bfdf](https://github.com/silverstripe/silverstripe-framework/commit/16914bfdfc8f05b64436d38bf7c1bf9ea86dddc7) pull request #9531 from alessandromarotta/patch-1 (Steve Boyd)
|
||||
* 2020-06-29 [396f876](https://github.com/silverstripe/silverstripe-graphql/commit/396f8768e9b3148c7de1ea1ebd8804947219362c) pull request #263 from alessandromarotta/patch-1 (Guy Marriott)
|
||||
* 2020-06-29 [161e0a0b4](https://github.com/silverstripe/silverstripe-framework/commit/161e0a0b4ff27f06ecae902a5c096d2bacc382d3) pull request #9565 from tom890180/check_items_exist (Guy Marriott)
|
||||
* 2020-06-29 [82f096496](https://github.com/silverstripe/silverstripe-framework/commit/82f096496ed3198937576632945076e5ec88b766) pull request #9566 from purplespider/patch-3 (Robbie Averill)
|
||||
* 2020-06-29 [64688dbc1](https://github.com/silverstripe/silverstripe-framework/commit/64688dbc10653f6a0cfbaeb33fb628116aebe536) pull request #9563 from shoosah/patch-1 (Loz Calver)
|
||||
* 2020-06-29 [787e1cd6f](https://github.com/silverstripe/silverstripe-framework/commit/787e1cd6f68a4b1cb53b5dae2dad2381c3998fb1) pull request #9562 from mr-macedawg/patch-2 (Loz Calver)
|
||||
* 2020-06-26 [1d35384](https://github.com/silverstripe/silverstripe-assets/commit/1d35384ca33485b31c5b15e716d1c9de10c72166) branch '1.6' into 1 (Robbie Averill)
|
||||
* 2020-06-23 [2aba5f20](https://github.com/silverstripe/silverstripe-siteconfig/commit/2aba5f20786ab489a77aaaf188d774ea2883aa50) pull request #113 from creative-commoners/pulls/4.6/travis (Robbie Averill)
|
||||
* 2020-06-23 [fd2dd25f](https://github.com/silverstripe/silverstripe-cms/commit/fd2dd25f08ae358e77c364846cbe2b12c5448138) pull request #2560 from creative-commoners/pulls/4.6/travis (Robbie Averill)
|
||||
* 2020-06-23 [4b1b3bd](https://github.com/silverstripe/silverstripe-campaign-admin/commit/4b1b3bdacc76b4c647cd5ebf099b95e71eefa3dd) pull request #165 from creative-commoners/pulls/1.6/travis (Robbie Averill)
|
||||
* 2020-06-23 [074c9dc](https://github.com/silverstripe/silverstripe-installer/commit/074c9dc45cef19a6f5e9253fff2cfdd97baac0dd) branch '4.6' into 4 (Robbie Averill)
|
||||
* 2020-06-23 [25e33c0](https://github.com/silverstripe/silverstripe-login-forms/commit/25e33c08becceb6fd018d22546dba3d4fafb687d) pull request #60 from creative-commoners/pulls/4.2/travis (Robbie Averill)
|
||||
* 2020-06-23 [714c4cba9](https://github.com/silverstripe/silverstripe-framework/commit/714c4cba9cafc8e3392603cd583757e67e6318a7) pull request #9546 from andrewandante/feature/disambiguate_first_methods_on_lists (Sam Minnée)
|
||||
* 2020-06-18 [2f235ab5](https://github.com/silverstripe/silverstripe-cms/commit/2f235ab5a302118939705e077e2dacb0d287509b) pull request #2558 from lerni/no-fqn-on-sitetype-dropdown (Loz Calver)
|
||||
* 2020-06-17 [cd1a7c0](https://github.com/silverstripe/silverstripe-login-forms/commit/cd1a7c058e4f298d02a8e29cedac9ed96f7574dd) branch '4.2' into 4 (Steve Boyd)
|
||||
* 2020-06-17 [4df45f4fe](https://github.com/silverstripe/silverstripe-framework/commit/4df45f4fe0db64f0d4c56b43026302d6c023524d) pull request #9550 from jakxnz/pulls/4/docs-regarding-cached-get-ones (Guy Marriott)
|
||||
* 2020-06-16 [c612716](https://github.com/silverstripe/silverstripe-admin/commit/c6127169f12a7a69e856e62dedfffaa076e460dd) pull request #1057 from sminnee/fix-graphql-route (Ingo Schommer)
|
||||
* 2020-06-16 [9eadef19d](https://github.com/silverstripe/silverstripe-framework/commit/9eadef19d3a270e6525fe8676cbfc096b8d9ffa8) pull request #9544 from jakxnz/pulls/4.6/dataextension-doc-blocks (Guy Marriott)
|
||||
* 2020-06-16 [1a6e2da99](https://github.com/silverstripe/silverstripe-framework/commit/1a6e2da995dfbb843c07264baa5ff9e27adfea90) pull request #9543 from jakxnz/pulls/4.6/undeclared-private-statics (Guy Marriott)
|
||||
* 2020-06-16 [9f2a173](https://github.com/silverstripe/silverstripe-installer/commit/9f2a17337a12d48c1fd62cfa912b8906b446eca3) pull request #283 from creative-commoners/pulls/4/add-frameworktest (Andre Kiste)
|
||||
* 2020-06-15 [2cdd882](https://github.com/silverstripe/silverstripe-versioned/commit/2cdd8820d7905f59b9fcae93c628f4f872d991f5) branch '1.6' into 1 (Garion Herman)
|
||||
* 2020-06-15 [bccfd59](https://github.com/silverstripe/silverstripe-errorpage/commit/bccfd59606e16f4690dbc823aacd57d12c5df20e) branch '1.6' into 1 (Garion Herman)
|
||||
* 2020-06-15 [4009e378](https://github.com/silverstripe/silverstripe-cms/commit/4009e37847fa258233524d6d30726600d17ef4bc) branch '4.6' into 4 (Garion Herman)
|
||||
* 2020-06-15 [d3d6dcbf](https://github.com/silverstripe/silverstripe-asset-admin/commit/d3d6dcbf29451e0ed6b28a71b5cc95401c3b43f8) branch '1.6' into 1 (Garion Herman)
|
||||
* 2020-06-15 [cbcc02c](https://github.com/silverstripe/silverstripe-admin/commit/cbcc02c7b2dd55afea9dae2af97628e11180190c) branch '1.6' into 1 (Garion Herman)
|
||||
* 2020-06-15 [6161e8bf0](https://github.com/silverstripe/silverstripe-framework/commit/6161e8bf07e4d5cf2d5f10852684b8de605daa26) branch '4.6' into 4 (Garion Herman)
|
||||
* 2020-06-12 [213e97f7b](https://github.com/silverstripe/silverstripe-framework/commit/213e97f7b9c2e442580017a1af70a2d059b89eb0) pull request #9547 from jakxnz/pulls/4/mention-session-timeout-in-security-docs (Robbie Averill)
|
||||
* 2020-06-12 [7cf64cb6](https://github.com/silverstripe/silverstripe-asset-admin/commit/7cf64cb6f24e44d821aa8ab54b22c13607eea1d3) branch '1.6' into 1 (Maxime Rainville)
|
||||
* 2020-06-12 [f511456](https://github.com/silverstripe/silverstripe-admin/commit/f5114568aa89a9a6d0ab00fc5216d2b7bc8aff7b) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-06-11 [e3c9fbb](https://github.com/silverstripe/silverstripe-assets/commit/e3c9fbb7e93049316d8df89a4c66d906ef6d77c3) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-06-11 [7d87ba72d](https://github.com/silverstripe/silverstripe-framework/commit/7d87ba72d5acea1acf75679a9e34b98365d89426) branch '4.6' into 4 (Steve Boyd)
|
||||
* 2020-06-04 [0417b18](https://github.com/silverstripe/silverstripe-versioned-admin/commit/0417b185e6f3972ac95617c5f8fdbfe2a263051e) pull request #157 from open-sausages/pulls/1/set-up-47-dev (Serge Latyntsev)
|
||||
* 2020-06-04 [20d8049](https://github.com/silverstripe/silverstripe-versioned/commit/20d80494bf43d6f7a803789fede0f53b1be2edfa) pull request #275 from open-sausages/pulls/1/set-up-47-dev (Serge Latyntsev)
|
||||
* 2020-06-04 [f13f3a3](https://github.com/silverstripe/silverstripe-campaign-admin/commit/f13f3a356808f42442213999c03c3b644961e5c1) pull request #160 from open-sausages/pulls/1/set-up-47-dev (Serge Latyntsev)
|
||||
* 2020-06-04 [cc2e040a](https://github.com/silverstripe/silverstripe-asset-admin/commit/cc2e040a51f2a182b51e23283d0d689f3139db09) pull request #1099 from open-sausages/pulls/1/set-up-47-dev (Serge Latyntsev)
|
||||
* 2020-06-04 [162d36b](https://github.com/silverstripe/silverstripe-admin/commit/162d36b235870de3b6de80a471e85960596171da) pull request #1045 from open-sausages/pulls/1/set-up-47-dev (Serge Latyntsev)
|
||||
* 2020-06-04 [420daa4](https://github.com/silverstripe/silverstripe-assets/commit/420daa49c8c48714af4289dc04bf40bf34a88279) pull request #401 from open-sausages/pulls/1/set-up-47-dev (Serge Latyntsev)
|
||||
* 2020-06-04 [1d6a6247a](https://github.com/silverstripe/silverstripe-framework/commit/1d6a6247a33f342dccdd43e533735bf93757de55) pull request #9537 from open-sausages/pulls/4/set-up-47-dev (Robbie Averill)
|
||||
* 2020-06-04 [2966534](https://github.com/silverstripe/silverstripe-errorpage/commit/29665346ff747dac86c8135bc3702df82055a75a) pull request #54 from open-sausages/pulls/1/set-up-47-dev (Robbie Averill)
|
||||
* 2020-06-04 [eec0010](https://github.com/silverstripe/recipe-cms/commit/eec001001290f523bf3e318598b00657b0acfcd8) pull request #37 from open-sausages/pulls/4/set-up-47-dev (Robbie Averill)
|
||||
* 2020-06-04 [70acdde5](https://github.com/silverstripe/silverstripe-siteconfig/commit/70acdde5b0f5f8e3d3b2e042fd1468659320cb7f) pull request #112 from open-sausages/pulls/4/set-up-47-dev (Robbie Averill)
|
||||
* 2020-06-04 [275a1bc7](https://github.com/silverstripe/silverstripe-reports/commit/275a1bc7f417889412d1c54c89783b7f646946f3) pull request #127 from open-sausages/pulls/4/set-up-47-dev (Robbie Averill)
|
||||
* 2020-06-04 [0456bff](https://github.com/silverstripe/silverstripe-graphql/commit/0456bff3d6f5808f332a56603f55858d228c7ee3) pull request #262 from open-sausages/pulls/3/set-up-47-dev (Robbie Averill)
|
||||
* 2020-06-04 [10a2662](https://github.com/silverstripe/recipe-core/commit/10a2662e8b3c26ddcc78aa340b23ffc6a4a17f48) pull request #57 from open-sausages/pulls/4/set-up-47-dev (Robbie Averill)
|
||||
* 2020-06-04 [b0eb2fb38](https://github.com/silverstripe/silverstripe-framework/commit/b0eb2fb38e95040df1c11d78819dd745d2fe5ba8) branch '4.6' into pulls/4/set-up-47-dev (Maxime Rainville)
|
||||
* 2020-06-04 [fecd8944](https://github.com/silverstripe/silverstripe-cms/commit/fecd8944b5751b2e6053a1278fe1b55c342e8a49) pull request #2555 from open-sausages/pulls/4/set-up-47-dev (Robbie Averill)
|
||||
* 2020-06-03 [a7f503b](https://github.com/silverstripe/silverstripe-assets/commit/a7f503b432fb7a972fce1236b0bf699981ae1e35) branch '1.6' into pulls/1/set-up-47-dev (Maxime Rainville)
|
||||
* 2020-06-03 [588f01e7](https://github.com/silverstripe/silverstripe-asset-admin/commit/588f01e73c1c13bf95840aae0686c93ce4a52013) pull request #1091 from robbieaverill/pulls/1.6/locale-date-format (Robbie Averill)
|
||||
* 2020-06-02 [09aba3594](https://github.com/silverstripe/silverstripe-framework/commit/09aba3594d9862d3f57ae073edd5421553527bab) pull request #9533 from creative-commoners/fix-link (Bryn Whyman)
|
||||
* 2020-06-02 [1983337](https://github.com/silverstripe/silverstripe-assets/commit/19833370aff4e6a3e5effcfe49f18914a81fd33d) pull request #392 from chrometoasters/pulls/update-debug-msg-wording (Steve Boyd)
|
||||
* 2020-06-01 [18065e2](https://github.com/silverstripe/silverstripe-login-forms/commit/18065e262ef673390bb22487f081722147876762) pull request #58 from creative-commoners/pulls/4/clean-up-doc (Steve Boyd)
|
||||
* 2020-05-30 [cb753f79](https://github.com/silverstripe/silverstripe-asset-admin/commit/cb753f79c6418f951371e3e7266ce15c464e14f0) branch '1.6' into 1 (Steve Boyd)
|
||||
* 2020-05-28 [8aa3071f](https://github.com/silverstripe/silverstripe-asset-admin/commit/8aa3071f32cbeeb19805705d74c65cdd6f35b963) pull request #1083 from silverstripe/dependabot/npm_and_yarn/jquery-3.5.0 (Andre Kiste)
|
||||
* 2020-05-28 [615abf502](https://github.com/silverstripe/silverstripe-framework/commit/615abf50201e851a778513f730733c4c9411e14f) pull request #9530 from christopherdarling/patch-17 (Robbie Averill)
|
||||
* 2020-05-26 [0386728](https://github.com/silverstripe/silverstripe-config/commit/03867281071d5312097f7cd445565e3a8b810b03) branch '1.0' into 1.1 (Maxime Rainville)
|
||||
* 2020-05-20 [1d96874](https://github.com/silverstripe/silverstripe-mimevalidator/commit/1d968748b429e5443aaf55856ce57e82f9e50a37) pull request #38 from creative-commoners/pulls/2/move-doc-to-core (Robbie Averill)
|
||||
* 2020-04-27 [49c88a0](https://github.com/silverstripe/silverstripe-config/commit/49c88a0d147b3aebac69eb154d102dea95f7cf3e) pull request #43 from dhensby/pulls/1.0/psr4-fix (Robbie Averill)
|
||||
* 2020-03-16 [d536268](https://github.com/silverstripe/silverstripe-login-forms/commit/d536268f47ddae32a00269efe8f11443cf2f0efd) pull request #55 from elliot-sawyer/issue/51 (Garion Herman)
|
||||
* 2020-02-20 [43d18f9](https://github.com/silverstripe/silverstripe-config/commit/43d18f9037fd001fc298320a2de0dd05cce25bf3) branch '1.0' into 1.1 (Robbie Averill)
|
||||
* 2020-02-20 [8acf893](https://github.com/silverstripe/silverstripe-config/commit/8acf8934501798749e4c024dc46286aa31ac260f) pull request #40 from creative-commoners/pulls/1.0/php-7.4-builds (Robbie Averill)
|
||||
* 2020-02-18 [63cd7c7](https://github.com/silverstripe/silverstripe-config/commit/63cd7c78c54067a986f286860220049883470d9f) pull request #39 from creative-commoners/pulls/1.0/remove-capital-letter (Maxime Rainville)
|
||||
* 2020-02-18 [c1dda4e](https://github.com/silverstripe/silverstripe-config/commit/c1dda4efef1e155a1487e4e6bc6b255c080e2619) branch '1.0' into 1.1 (Maxime Rainville)
|
||||
* 2020-02-18 [443694d](https://github.com/silverstripe/silverstripe-config/commit/443694d87e4129a8b10da299c7c7f8f7fd84695d) pull request #38 from open-sausages/pulls/1.0/remove-extra-composer-key (Serge Latyntsev)
|
||||
* 2020-02-13 [e60dfe6](https://github.com/silverstripe/silverstripe-login-forms/commit/e60dfe67904b0e7e0a0a57d2e0fed9531b5dfd84) branch '4.1' into 4 (Steve Boyd)
|
||||
* 2019-12-13 [c064ac5](https://github.com/silverstripe/silverstripe-login-forms/commit/c064ac528df3c2c08d5ddada8dc6b96d453eb5b4) pull request #54 from silverstripe/dependabot/npm_and_yarn/npm-6.13.4 (Robbie Averill)
|
||||
* 2019-11-27 [5e970d1](https://github.com/silverstripe/silverstripe-login-forms/commit/5e970d1afc5ce6baf07cd5a60d24c44b745592f1) pull request #52 from purplespider/4 (Garion Herman)
|
||||
* 2019-11-21 [089c38f](https://github.com/silverstripe/silverstripe-mimevalidator/commit/089c38fb5aea211a6a6ac483ad6e38483066aed7) pull request #37 from creative-commoners/pulls/2/travis-ci (Serge Latyntsev)
|
||||
* 2019-11-21 [54577ba](https://github.com/silverstripe/silverstripe-login-forms/commit/54577ba3bbcf2941bb1b7a1abe4e504d0599a8b5) pull request #49 from creative-commoners/pulls/4/travis-ci (Garion Herman)
|
||||
* 2018-07-23 [eddfe8f](https://github.com/silverstripe/silverstripe-config/commit/eddfe8fce14fac3e813f5bc80d20df5c1b1e0109) branch '1.0' into 1.1 (Daniel Hensby)
|
||||
* 2018-06-17 [12c2821](https://github.com/silverstripe/silverstripe-mimevalidator/commit/12c28214d591e38ad136b27618e042e0d6f55057) pull request #35 from creative-commoners/pulls/master/add-supported-module-badge (Robbie Averill)
|
||||
* 2018-06-12 [153f2d6](https://github.com/silverstripe/silverstripe-mimevalidator/commit/153f2d6ccdb5b179e4e9164f23d492cc4772f9e7) branch '2.0' (Robbie Averill)
|
||||
* 2018-02-14 [07102c7](https://github.com/silverstripe/silverstripe-config/commit/07102c71897b01cad5235c243b2e56bec76eddbe) remote-tracking branch 'origin/1.0' into 1 (Damian Mooyman)
|
||||
* 2018-01-15 [8c5d4e3](https://github.com/silverstripe/silverstripe-config/commit/8c5d4e3208f6263ae0a6f816480f83a8f23d9bf2) branch '1.0' into 1 (Daniel Hensby)
|
||||
* 2017-12-14 [a02fa92](https://github.com/silverstripe/silverstripe-config/commit/a02fa921d41e33090f6527602149e8e406698a3a) pull request #26 from open-sausages/pulls/1.1/composer-does-prefer-dist (Damian Mooyman)
|
||||
* 2017-10-12 [4ea3c83](https://github.com/silverstripe/silverstripe-config/commit/4ea3c8316cf6c911e83d84d3295d435868f19cf3) remote-tracking branch 'origin/1.0' into 1 (Damian Mooyman)
|
||||
|
||||
### Dependencies
|
||||
|
||||
* 2020-10-08 [a7aa355](https://github.com/silverstripe/silverstripe-assets/commit/a7aa3557301f67a4205cf63bbdeaf35d77d731f4) Add explicit dependency on league/flysystem (Garion Herman)
|
||||
* 2020-10-08 [256bd5355](https://github.com/silverstripe/silverstripe-framework/commit/256bd53557f737fcb47e4871239451f84ff27d69) Remove unused league/flysystem requirement (Garion Herman)
|
||||
|
||||
### Maintenance
|
||||
|
||||
* 2020-11-02 [849acdd](https://github.com/silverstripe/silverstripe-login-forms/commit/849acdd66c7cf5fb619fdf1391e75f76b59d26df) Remove obsolete branch-alias (Maxime Rainville)
|
||||
* 2020-11-02 [baf6981](https://github.com/silverstripe/silverstripe-mimevalidator/commit/baf69815b08b9f2369899d4aecd077d74f30a6b4) Remove obsolete branch-alias (Maxime Rainville)
|
||||
* 2020-10-22 [9cc03c1b](https://github.com/silverstripe/silverstripe-siteconfig/commit/9cc03c1bc8bb0d1c7568dee4a4d2b5bf51198a63) Resolve merge conflict (Maxime Rainville)
|
||||
* 2020-10-21 [21a228fd](https://github.com/silverstripe/silverstripe-cms/commit/21a228fd23465d887026f4674a0a3006067f7ba7) Fix unit tests not running on PGSQL build (Garion Herman)
|
||||
* 2020-10-18 [362a18f](https://github.com/silverstripe/recipe-core/commit/362a18f397d37e5ced09536bde7f533c95b8bbfd) Only force topsort ^2 on PHP 8 build (Garion Herman)
|
||||
* 2020-10-15 [758e60c22](https://github.com/silverstripe/silverstripe-framework/commit/758e60c22f0e07109f5c0eff06acaed568d985ab) Update Behat config to support Symfony 4 (Garion Herman)
|
||||
* 2020-10-15 [c446a0b](https://github.com/silverstripe/recipe-core/commit/c446a0bdf58462a5478b4d0eaa68baca65894201) Force installation of marcj/topsort ^2 (Garion Herman)
|
||||
* 2020-10-15 [f955099](https://github.com/silverstripe/silverstripe-installer/commit/f955099b6e34161b241a13531da851475c1d055d) Add quotes to Behat config for Symfony 4 compat (Garion Herman)
|
||||
* 2020-10-15 [2533231](https://github.com/silverstripe/silverstripe-installer/commit/25332311ea6e3845101306f108ee6b0bac283299) Add $COMPOSER_ARG to dependency installation (Garion Herman)
|
||||
* 2020-10-15 [3ff3c8a](https://github.com/silverstripe/recipe-cms/commit/3ff3c8a196470a8e4ca7dc9f7a6be8702af00d57) Use latest build of silverstripe/cow (Garion Herman)
|
||||
* 2020-10-15 [1fb4874](https://github.com/silverstripe/recipe-core/commit/1fb4874ffc982578e195ea2aa783dd1db07c64dd) Use latest build of silverstripe/cow (Garion Herman)
|
||||
* 2020-10-14 [7278c4326](https://github.com/silverstripe/silverstripe-framework/commit/7278c43267a46320b11c35011aa500c12c726228) Expand Composer requirements to support PHP 8 (Garion Herman)
|
||||
* 2020-10-14 [4ea1f70](https://github.com/silverstripe/silverstripe-installer/commit/4ea1f7082bdcc56d687be1a9e222fce8531cc49e) Add PHP 8 builds (Garion Herman)
|
||||
* 2020-10-14 [6c96e7a](https://github.com/silverstripe/recipe-cms/commit/6c96e7a69f2c434fac8f20f4fd37e15c5be6746f) Add PHP 8 build (Garion Herman)
|
||||
* 2020-10-14 [b033ee0](https://github.com/silverstripe/recipe-core/commit/b033ee0072d2a4905bab53fd2d926c31ee90a32a) Add PHP 8 build (Garion Herman)
|
||||
* 2020-10-12 [6bd1bc4](https://github.com/silverstripe/silverstripe-config/commit/6bd1bc49bd58c5ad3fb3d0a74979373060a6a40c) Disable Xdebug during CI (Garion Herman)
|
||||
* 2020-10-09 [4ddf1a9](https://github.com/silverstripe/silverstripe-installer/commit/4ddf1a901ed9035abf12df3aa0553a040af850f8) Tweak changelog template, ensure it is used by Cow (Garion Herman)
|
||||
* 2020-10-08 [5cd7dc5](https://github.com/silverstripe/silverstripe-config/commit/5cd7dc51633135cc6f2ced4143b236cd7c0a3516) PHP8 support (Serge Latyntcev)
|
||||
* 2020-10-08 [c094f73](https://github.com/silverstripe/silverstripe-versioned-admin/commit/c094f73b585875e70c5d3fc816e210dc143c2d58) PHP8 support (Serge Latyntcev)
|
||||
* 2020-10-08 [0788d1a](https://github.com/silverstripe/silverstripe-versioned/commit/0788d1a3ec2172919e4edc9b3cac882df055ed6e) PHP8 support (Serge Latyntcev)
|
||||
* 2020-10-08 [9632a195](https://github.com/silverstripe/silverstripe-siteconfig/commit/9632a19518a79e24b6efa264a7281b164bbd4e66) PHP8 support (Serge Latyntcev)
|
||||
* 2020-10-08 [3314f95d](https://github.com/silverstripe/silverstripe-reports/commit/3314f95da600f75eca79da450e4e1054f2f51259) PHP8 support (Serge Latyntcev)
|
||||
* 2020-10-08 [b82842d](https://github.com/silverstripe/silverstripe-assets/commit/b82842d5ff099d25c462643f43af22252a45d792) Shift PHPCS run away from prefer-lowest build (Garion Herman)
|
||||
* 2020-10-07 [1b561f8](https://github.com/silverstripe/silverstripe-installer/commit/1b561f8d8076998638bf83654a1e0c0159594ca8) Update .travis.yml (Steve Boyd)
|
||||
* 2020-10-07 [0b2df5d](https://github.com/silverstripe/silverstripe-graphql/commit/0b2df5dcc938d8d62c35002f846f6900117b3add) PHP8 support (Serge Latyntcev)
|
||||
* 2020-10-07 [9476d53](https://github.com/silverstripe/silverstripe-errorpage/commit/9476d53f640c9f278421f12ef72d25b361aeab98) PHP8 support (Serge Latyntcev)
|
||||
* 2020-10-07 [a98f264](https://github.com/silverstripe/silverstripe-campaign-admin/commit/a98f264ea7c45e40b59b038a8dd9ebc7d006f3e7) Update behat test to use toast notification (Steve Boyd)
|
||||
* 2020-10-07 [aee731df](https://github.com/silverstripe/silverstripe-cms/commit/aee731df2ac47a34d725eab189f80d77365d34bc) PHP8 support (Serge Latyntcev)
|
||||
* 2020-10-07 [59112fb](https://github.com/silverstripe/silverstripe-graphql/commit/59112fb7619b5471c4caee046d3e7a7dce1ce404) Add artifact upload logic in case of Behat test failure (Garion Herman)
|
||||
* 2020-10-07 [58dfc00](https://github.com/silverstripe/silverstripe-campaign-admin/commit/58dfc0059b40177a26d101a5c4a8cc2b6332cf45) Align behat artifact upload step with asset-admin (Garion Herman)
|
||||
* 2020-10-06 [f2e210a](https://github.com/silverstripe/silverstripe-campaign-admin/commit/f2e210a32bd0cf9dc19d2a1d7e3e0f9c30d8a130) Quote yaml strings (Steve Boyd)
|
||||
* 2020-10-06 [fff679c3](https://github.com/silverstripe/silverstripe-asset-admin/commit/fff679c38ad6d760ff422d18152a2b8adfcc6ff1) - Quote yaml strings (Steve Boyd)
|
||||
* 2020-10-06 [83193dd](https://github.com/silverstripe/silverstripe-campaign-admin/commit/83193dd987a73c616e6e5578a282d9fbc5112580) PHP8 support (Serge Latyntcev)
|
||||
* 2020-10-06 [7e7c0ca5](https://github.com/silverstripe/silverstripe-asset-admin/commit/7e7c0ca51da40eb96c120904e512d64aed0546d2) PHP8 support (Serge Latyntcev)
|
||||
* 2020-10-05 [8f8dad6](https://github.com/silverstripe/silverstripe-admin/commit/8f8dad6238b41c4e41b9c474f52db67fbdf0574e) Upgrade webpack-config (Steve Boyd)
|
||||
* 2020-10-05 [acf4050c](https://github.com/silverstripe/silverstripe-cms/commit/acf4050ca6bfde261a84bd07b44150cde9db4dc0) - Quote yaml strings (Steve Boyd)
|
||||
* 2020-09-23 [30f92f0](https://github.com/silverstripe/silverstripe-admin/commit/30f92f0a18ba9f50d6a4aa88070e0e8c1cdc8c63) Fix bundle (Sam Minnee)
|
||||
* 2020-09-18 [d9d8752](https://github.com/silverstripe/recipe-core/commit/d9d8752d55efff24d3570e1ccf03da0934051123) Update recipe-core to config 1.1 (Sam Minnee)
|
||||
* 2020-09-09 [77eee7d](https://github.com/silverstripe/silverstripe-assets/commit/77eee7df427b9e39f2eaca960899c38962a8b44c) CI Re-enable test coverage in travis build (#390) (Maxime Rainville)
|
||||
* 2020-08-10 [9ca932f](https://github.com/silverstripe/silverstripe-versioned/commit/9ca932f2d8cda4f54a6a6098538c159a8b88b891) Update travis (Steve Boyd)
|
||||
* 2020-06-24 [a4cbe61](https://github.com/silverstripe/silverstripe-assets/commit/a4cbe61b232f85952d42778b04d6ef73493a2fbc) Travis 1.6 (Steve Boyd)
|
||||
* 2020-06-23 [10638da2](https://github.com/silverstripe/silverstripe-siteconfig/commit/10638da222c73ca83e4d39adb32a5b73fc4a1f1b) Update travis (Steve Boyd)
|
||||
* 2020-06-23 [b0cb0b69](https://github.com/silverstripe/silverstripe-reports/commit/b0cb0b695e09ca7c6b0b4346ed04232df7cf08ba) Update travis (Steve Boyd)
|
||||
* 2020-06-23 [6c57952](https://github.com/silverstripe/silverstripe-login-forms/commit/6c57952a5e74f7fb430b1fcb7b606f3b10c5e8bd) Update travis (Steve Boyd)
|
||||
* 2020-06-23 [1ee1db32](https://github.com/silverstripe/silverstripe-cms/commit/1ee1db3298feeba33236c1648b047bb968d394f6) Travis 4.6 (Steve Boyd)
|
||||
* 2020-06-23 [1f3576c](https://github.com/silverstripe/silverstripe-campaign-admin/commit/1f3576ce31a2f1fe75106758854775a1246d80d3) Travis 1.6 (Steve Boyd)
|
||||
* 2020-06-04 [8191f13](https://github.com/silverstripe/silverstripe-versioned-admin/commit/8191f131987c6fa18527a11b9714682435d5a523) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-04 [34c2d08](https://github.com/silverstripe/silverstripe-versioned/commit/34c2d08dece61a8748d30b938e92c1ef0392a9f7) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-04 [de13b1c6](https://github.com/silverstripe/silverstripe-siteconfig/commit/de13b1c663cd8e3c11d734a4af8f0d119298dd3a) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-04 [f931dc37](https://github.com/silverstripe/silverstripe-reports/commit/f931dc37dfda57fcc746c9f1c096e5c1ab18ac08) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-04 [ef59bf4](https://github.com/silverstripe/recipe-core/commit/ef59bf40165a0917a2e5ba89ea359ac6a8a77f89) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-04 [90b3141](https://github.com/silverstripe/recipe-cms/commit/90b3141d0b2de1168919bf643656fc2c320c53fe) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-04 [3c443b1](https://github.com/silverstripe/silverstripe-graphql/commit/3c443b119cf0744bd61a78a20bc34f538ab92e5b) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-04 [256309bc5](https://github.com/silverstripe/silverstripe-framework/commit/256309bc56cd9fffcf86910bc161acb75ace9975) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-04 [0a0d4db](https://github.com/silverstripe/silverstripe-errorpage/commit/0a0d4db055e54fc90aef8c76437aedde09eafc36) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-04 [eb9ae5de](https://github.com/silverstripe/silverstripe-cms/commit/eb9ae5de627336ab6dc1305d4ea605c9231cce14) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-03 [e6eabf4](https://github.com/silverstripe/silverstripe-campaign-admin/commit/e6eabf43c92fada919259bc4c4f8863dab1b18fb) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-03 [68fe243c](https://github.com/silverstripe/silverstripe-asset-admin/commit/68fe243cd44e3457233b622368e80db2129dd0d0) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-03 [0946033](https://github.com/silverstripe/silverstripe-admin/commit/0946033e6d3fbe43ed96be05bcd237e144199774) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-06-03 [85998ae](https://github.com/silverstripe/silverstripe-assets/commit/85998ae2eb5fd85216fe2e1dc660a44c838f47e5) Update travis config to target x-dev branches (Maxime Rainville)
|
||||
* 2020-02-20 [7862b14](https://github.com/silverstripe/silverstripe-config/commit/7862b14ff80254f075f5254d9b5a2a3d4ef38ea3) Update Travis config to include PHP 7.1 and PHP 7.4 builds (Garion Herman)
|
||||
* 2019-11-21 [6d18188](https://github.com/silverstripe/silverstripe-mimevalidator/commit/6d18188ad5e57be38bad5148e8803ce5cbf4a8c1) Travis config update (Serge Latyntcev)
|
||||
* 2019-11-21 [b3ac4ea](https://github.com/silverstripe/silverstripe-login-forms/commit/b3ac4eac42e73dd2f5a0ab25534af14d3f61734b) Travis config update (Serge Latyntcev)
|
||||
|
||||
|
||||
<!--- Changes above this line will be automatically regenerated -->
|
||||
|
Loading…
Reference in New Issue
Block a user