Commit Graph

8283 Commits

Author SHA1 Message Date
b6d0fae856 Merge pull request #6166 from wallabag/fix/controller-as-a-service-rabbitmq
Add `RabbitMQConsumerTotalProxy` to lazy RabbitMQ services for messages
2022-12-22 14:56:03 +01:00
9ba6755054 Merge pull request #6178 from weblate/weblate-wallabag-messages
Translations update from Hosted Weblate
2022-12-22 14:53:12 +01:00
9fd35de9c2 Update messages.fr.yml 2022-12-22 14:47:57 +01:00
80e1df6ace Translated using Weblate (Polish)
Currently translated at 100.0% (577 of 577 strings)
2022-12-22 14:45:39 +01:00
8faed26e7e Translated using Weblate (French)
Currently translated at 100.0% (577 of 577 strings)
2022-12-22 14:45:39 +01:00
a355c0daec Merge pull request #6179 from wallabag/fix/remove-scrutinizer-badge
Remove Scrutinizer badge
2022-12-22 14:45:33 +01:00
7cc0d1de18 Remove Scrutinizer badge
We don't use it anymore since months.
2022-12-22 14:40:01 +01:00
99bce7c934 Merge pull request #6176 from weblate/weblate-wallabag-messages
Translations update from Hosted Weblate
2022-12-22 14:32:03 +01:00
02a58f8d5b Move entry.confirm.delete_entries 2022-12-22 14:23:41 +01:00
86dc2e43c3 Translated using Weblate (Polish)
Currently translated at 100.0% (6 of 6 strings)
2022-12-22 14:16:09 +01:00
29fb9b65ff Translated using Weblate (English)
Currently translated at 100.0% (6 of 6 strings)
2022-12-22 14:16:09 +01:00
490f804b78 Translated using Weblate (English)
Currently translated at 100.0% (577 of 577 strings)
2022-12-22 14:16:09 +01:00
b2b1e1c437 Fix database_path in Docker env
Also, add `mailer_dsn` and limit xdebug to allow installation of PHP < 8
2022-12-22 12:30:34 +01:00
c684ad2d51 Merge pull request #6172 from wallabag/dependabot/composer/phpstan/phpstan-phpunit-1.3.3 2022-12-22 06:37:16 +01:00
c6553e0ec7 Bump phpstan/phpstan-phpunit from 1.3.2 to 1.3.3
Bumps [phpstan/phpstan-phpunit](https://github.com/phpstan/phpstan-phpunit) from 1.3.2 to 1.3.3.
- [Release notes](https://github.com/phpstan/phpstan-phpunit/releases)
- [Commits](https://github.com/phpstan/phpstan-phpunit/compare/1.3.2...1.3.3)

---
updated-dependencies:
- dependency-name: phpstan/phpstan-phpunit
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-22 03:01:54 +00:00
cdd2185063 Properly handle json_array type removal
The `json_array` type was removed from DBAL v3, we should handle it using a migration to avoid error.
I've also added the remove type because we need it during migration.
2022-12-21 11:02:51 +01:00
5165133347 Merge pull request #6170 from wallabag/dependabot/composer/doctrine/dbal-3.5.2 2022-12-21 06:17:55 +01:00
36ffb3568e Bump doctrine/dbal from 3.5.1 to 3.5.2
Bumps [doctrine/dbal](https://github.com/doctrine/dbal) from 3.5.1 to 3.5.2.
- [Release notes](https://github.com/doctrine/dbal/releases)
- [Commits](https://github.com/doctrine/dbal/compare/3.5.1...3.5.2)

---
updated-dependencies:
- dependency-name: doctrine/dbal
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-21 03:01:52 +00:00
62b2eef6e4 Merge pull request #6167 from wallabag/dependabot/composer/doctrine/orm-2.14.0 2022-12-20 07:49:55 +01:00
f85a9bff43 Merge pull request #6168 from wallabag/dependabot/composer/doctrine/persistence-3.1.2 2022-12-20 07:48:47 +01:00
3d6e791a5d Bump doctrine/persistence from 3.1.1 to 3.1.2
Bumps [doctrine/persistence](https://github.com/doctrine/persistence) from 3.1.1 to 3.1.2.
- [Release notes](https://github.com/doctrine/persistence/releases)
- [Commits](https://github.com/doctrine/persistence/compare/3.1.1...3.1.2)

---
updated-dependencies:
- dependency-name: doctrine/persistence
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-20 03:01:14 +00:00
64ae958345 Bump doctrine/orm from 2.13.4 to 2.14.0
Bumps [doctrine/orm](https://github.com/doctrine/orm) from 2.13.4 to 2.14.0.
- [Release notes](https://github.com/doctrine/orm/releases)
- [Commits](https://github.com/doctrine/orm/compare/2.13.4...2.14.0)

---
updated-dependencies:
- dependency-name: doctrine/orm
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-20 03:01:01 +00:00
0a6e6abdc4 Add RabbitMQConsumerTotalProxy to lazy RabbitMQ services for messages
This is just a simple proxy because we can't lazy load RabbitMQ service just to count number of messages in the queue.
As they are automatically injected in the controller now, we can't lazy load them.

Also forgot to use `AbstractController` in previous PR about _controller as a service_.
2022-12-19 13:23:56 +01:00
c9edd15bc5 Merge pull request #6159 from wallabag/fix/controller-as-a-service
Move to controller as a service
2022-12-19 11:44:25 +01:00
6aca334d53 Move to controller as a service
Mostly using autowiring to inject deps.
The only tricky part was for import because all producer use the same class and have a different alias. So we must write them down in the service definition, autowiring doesn't work in that case.

Usually:
- if a controller has a constructor, it means injected services are at least re-used once in actions
- otherwise, service are injected per action
2022-12-19 10:38:08 +01:00
39f603e015 Merge pull request #6163 from wallabag/dependabot/composer/tecnickcom/tcpdf-6.6.2 2022-12-19 07:33:41 +01:00
2507b16987 Merge pull request #6165 from wallabag/dependabot/composer/phpstan/phpstan-1.9.4 2022-12-19 07:33:13 +01:00
8757de3997 Merge pull request #6160 from weblate/weblate-wallabag-messages 2022-12-19 07:32:54 +01:00
dbd2edcf86 Added translation using Weblate (Danish) 2022-12-19 04:08:11 +01:00
4133cc4fe4 Merge pull request #6164 from wallabag/dependabot/npm_and_yarn/sass-1.57.0
Bump sass from 1.56.2 to 1.57.0
2022-12-19 03:08:07 +00:00
fdf13afadb Merge pull request #6162 from wallabag/dependabot/npm_and_yarn/eslint-8.30.0
Bump eslint from 8.29.0 to 8.30.0
2022-12-19 03:04:47 +00:00
d52d3d4bfe Bump phpstan/phpstan from 1.9.3 to 1.9.4
Bumps [phpstan/phpstan](https://github.com/phpstan/phpstan) from 1.9.3 to 1.9.4.
- [Release notes](https://github.com/phpstan/phpstan/releases)
- [Changelog](https://github.com/phpstan/phpstan/blob/1.9.x/CHANGELOG.md)
- [Commits](https://github.com/phpstan/phpstan/compare/1.9.3...1.9.4)

---
updated-dependencies:
- dependency-name: phpstan/phpstan
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-19 03:01:28 +00:00
6fb088602f Bump sass from 1.56.2 to 1.57.0
Bumps [sass](https://github.com/sass/dart-sass) from 1.56.2 to 1.57.0.
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sass/dart-sass/compare/1.56.2...1.57.0)

---
updated-dependencies:
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-19 03:01:15 +00:00
ac00c121b6 Bump tecnickcom/tcpdf from 6.6.1 to 6.6.2
Bumps [tecnickcom/tcpdf](https://github.com/tecnickcom/TCPDF) from 6.6.1 to 6.6.2.
- [Release notes](https://github.com/tecnickcom/TCPDF/releases)
- [Changelog](https://github.com/tecnickcom/TCPDF/blob/main/CHANGELOG.TXT)
- [Commits](https://github.com/tecnickcom/TCPDF/compare/6.6.1...6.6.2)

---
updated-dependencies:
- dependency-name: tecnickcom/tcpdf
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-19 03:01:10 +00:00
b4bd11889f Bump eslint from 8.29.0 to 8.30.0
Bumps [eslint](https://github.com/eslint/eslint) from 8.29.0 to 8.30.0.
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](https://github.com/eslint/eslint/compare/v8.29.0...v8.30.0)

---
updated-dependencies:
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-19 03:01:01 +00:00
a8916425ae Merge pull request #6145 from wallabag/fix/update-pagerfanta 2022-12-16 14:35:46 +01:00
7a343aacd8 Merge pull request #6158 from wallabag/dependabot/composer/phpstan/phpstan-symfony-1.2.18
Bump phpstan/phpstan-symfony from 1.2.17 to 1.2.18
2022-12-16 13:43:58 +01:00
c19a0c6fe5 Ignore lcobucci/jwt > 4.2.0 2022-12-16 13:40:12 +01:00
67a344c2c6 Update PagerFanta 2022-12-16 12:22:56 +01:00
1fcdd38630 Bump phpstan/phpstan-symfony from 1.2.17 to 1.2.18
Bumps [phpstan/phpstan-symfony](https://github.com/phpstan/phpstan-symfony) from 1.2.17 to 1.2.18.
- [Release notes](https://github.com/phpstan/phpstan-symfony/releases)
- [Commits](https://github.com/phpstan/phpstan-symfony/compare/1.2.17...1.2.18)

---
updated-dependencies:
- dependency-name: phpstan/phpstan-symfony
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-16 11:17:40 +00:00
ef83032601 Merge pull request #6143 from wallabag/fix/update-doctrine
Update all Doctrine deps
2022-12-16 12:15:50 +01:00
b3099f68c5 Update all Doctrine deps
Also update these deps to be compatible with latest Doctrine version:
- `friendsofsymfony/oauth-server-bundle`
- `lexik/form-filter-bundle`
- `dama/doctrine-test-bundle`
2022-12-16 10:29:42 +01:00
8f473ecf5c Merge pull request #6152 from wallabag/fix/container-aware-command
Remove `ContainerAwareCommand` from commands
2022-12-16 10:25:26 +01:00
02cd3b7d52 Merge pull request #6150 from wallabag/fix/remove-swiftmailer
Replace SwiftMailer by Symfony Mailer
2022-12-16 10:25:10 +01:00
32661f380c Replace SwiftMailer by Symfony Mailer 2022-12-16 10:03:34 +01:00
5832482a10 Remove ContainerAwareCommand from commands
And use DI to retrieve services in commands (except for `RedisWorkerCommand` where the container is injected, hard to find a better way, at least for now).
2022-12-16 10:02:15 +01:00
9c16dd7bd1 Merge pull request #6154 from wallabag/fix/event-dispatcher
Fix EventDispatcher & events
2022-12-16 08:08:53 +01:00
35c77c180c Merge pull request #6155 from wallabag/dependabot/composer/lcobucci/jwt-4.2.1
Bump lcobucci/jwt from 4.1.5 to 4.2.1
2022-12-16 08:07:48 +01:00
7fdd0badc4 Bump lcobucci/jwt from 4.1.5 to 4.2.1
Bumps [lcobucci/jwt](https://github.com/lcobucci/jwt) from 4.1.5 to 4.2.1.
- [Release notes](https://github.com/lcobucci/jwt/releases)
- [Commits](https://github.com/lcobucci/jwt/compare/4.1.5...4.2.1)

---
updated-dependencies:
- dependency-name: lcobucci/jwt
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2022-12-16 03:01:00 +00:00
3cf9d01981 Merge pull request #6153 from wallabag/fix/translations-files
Move translations files to `/translations`
2022-12-15 21:48:34 +01:00