Skip to content
This repository has been archived by the owner on Dec 3, 2023. It is now read-only.

Disable changelog workflow #3028

Merged
merged 4 commits into from
Mar 8, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 0 additions & 52 deletions .github/workflows/cron_generate_changelog.yaml

This file was deleted.

13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,15 @@
<!-- changelog-linker -->
# Changelog for Symplify 9.x

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

PRs and issues are linked, so you can find more about it. Thanks to [ChangelogLinker](https://github.com/symplify/changelog-linker).

For future relases, we won't use CHANGELOG.md approach. Instead, we'll [use GitHub relases](https://github.com/symplify/symplify/releases), that will highlight main important changes and new features we've added.

See [this issue](https://github.com/symplify/symplify/issues/3027) for more.

## 9.2.5 - 2021-03-07

Expand Down
27 changes: 0 additions & 27 deletions changelog-linker.php

This file was deleted.

5 changes: 0 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -244,11 +244,6 @@
"packages/rule-doc-generator/bin/rule-doc-generator generate packages/phpstan-rules --output-file packages/phpstan-rules/docs/rules_overview.md",
"packages/easy-coding-standard/bin/ecs check-markdown packages/phpstan-rules/docs/rules_overview.md --fix"
],
"changelog": [
"packages/changelog-linker/bin/changelog-linker dump-merges --ansi",
"packages/changelog-linker/bin/changelog-linker link --ansi",
"packages/changelog-linker/bin/changelog-linker cleanup --ansi"
],
"merge": "packages/monorepo-builder/bin/monorepo-builder merge --ansi",
"propagate": "packages/monorepo-builder/bin/monorepo-builder propagate --ansi",
"rector": "vendor/bin/rector process --dry-run --ansi",
Expand Down
1 change: 0 additions & 1 deletion ecs.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@
__DIR__ . '/packages',
__DIR__ . '/tests',
__DIR__ . '/ecs.php',
__DIR__ . '/changelog-linker.php',
__DIR__ . '/monorepo-builder.php',
__DIR__ . '/rector.php',
]);
Expand Down
8 changes: 3 additions & 5 deletions packages/amnesia/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Update typo prone stringy configs to realiable PHP constants:

```php
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use function Symplify\Amnesia\Functions\env;
use Symplify\Amnesia\ValueObject\Symfony\Extension\FrameworkExtension;
use function Symplify\Amnesia\Functions\env;

return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension(FrameworkExtension::NAME, [
Expand All @@ -38,9 +38,7 @@ use Symplify\Amnesia\ValueObject\Symfony\Extension\TwigExtension;
return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension(TwigExtension::NAME, [
TwigExtension::DEFAULT_PATH => '%kernel.project_dir%/templates',
TwigExtension::PATHS => [
__DIR__ . '/../../packages/framework-stats/templates',
],
TwigExtension::PATHS => [__DIR__ . '/../../packages/framework-stats/templates'],
TwigExtension::GLOBALS => [
'site_title' => 'Tomas Votruba',
],
Expand Down Expand Up @@ -69,11 +67,11 @@ return static function (RoutingConfigurator $routes): void {

```php
use Symfony\Component\DependencyInjection\Loader\Configurator\ContainerConfigurator;
use function Symplify\Amnesia\Functions\env;
use Symplify\Amnesia\ValueObject\Symfony\Extension\Doctrine\DBAL;
use Symplify\Amnesia\ValueObject\Symfony\Extension\Doctrine\Mapping;
use Symplify\Amnesia\ValueObject\Symfony\Extension\Doctrine\ORM;
use Symplify\Amnesia\ValueObject\Symfony\Extension\DoctrineExtension;
use function Symplify\Amnesia\Functions\env;

return static function (ContainerConfigurator $containerConfigurator): void {
$containerConfigurator->extension(DoctrineExtension::NAME, [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ final class MissingClassStaticCallLatteAnalyzer
*/
public function analyze(array $fileInfos): array
{
Assert::allIsInstanceOf($fileInfos, SmartFileInfo::class);
Assert::allIsAOf($fileInfos, SmartFileInfo::class);

$errors = [];

Expand Down