Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Basic version & system info on Editorial Dashboard #28

Merged
merged 26 commits into from
Mar 4, 2019
Merged
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
fd81208
Extract version info on packages if root or branch alias
andrerom Dec 23, 2018
fe0d401
Keep collected packages info around for reuse
andrerom Dec 23, 2018
84ad6c3
Dashboard and eZ Platform info collector (for now not shown in admin)
andrerom Dec 21, 2018
bedfe8d
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
Jan 3, 2019
204b379
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
Jan 3, 2019
4f1e788
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
Jan 3, 2019
f472089
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
Jan 3, 2019
449773d
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
Jan 3, 2019
fadb26c
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
Jan 3, 2019
b6bd394
Change to have collapsed alert boxes expanded by clicking on badge
andrerom Feb 28, 2019
24059f5
Fix strings
andrerom Feb 28, 2019
506ac22
Change to use translation system
andrerom Mar 1, 2019
5610c88
Fix unit tests
andrerom Mar 1, 2019
fabcfb9
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
SylvainGuittard Mar 2, 2019
0da57fa
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
SylvainGuittard Mar 2, 2019
dc946af
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
SylvainGuittard Mar 2, 2019
54fd1f5
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
SylvainGuittard Mar 2, 2019
e44e4ca
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
SylvainGuittard Mar 2, 2019
fdd5155
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
SylvainGuittard Mar 2, 2019
70c3e99
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
SylvainGuittard Mar 2, 2019
26312dc
Update Resources/views/themes/admin/dashboard/block/ez.html.twig
SylvainGuittard Mar 2, 2019
8b5247b
CS
andrerom Mar 2, 2019
d24b8f4
Extract URLs to yml, change translation display
ViniTou Mar 4, 2019
2f1edea
CR fixes
ViniTou Mar 4, 2019
d09d76a
Update requirments
ViniTou Mar 4, 2019
d63f6bb
Update composer.json
ViniTou Mar 4, 2019
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
7 changes: 4 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
}
],
"require": {
"php": "^5.6 || ^7.0",
"ezsystems/ezpublish-kernel": "~6.7.8 || ~6.13.4 || ^7.0",
"php": ">=7.1",
"ezsystems/ezpublish-kernel": "^7.4@dev",
Copy link
Contributor Author

@andrerom andrerom Mar 4, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please do these kernel and php changes post merge, half the point doing this from support side it to do a 0.2.x for v2 (2.0-2.4)* users letting them know if something is wrong with their install (including which version they are on and if it is expired)

* NB: Technically 0.2 is also used on 1.13 and updated 1.7 installs, hence we can't do php bump in 0.2, but we can in master when we bump version alias to 1.0.x there.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Then I think also \EzSystems\EzSupportToolsBundle\AdminUi\Component\EzInfoTwigComponent should go to higher version, as it creates dependency on adminUI (and php7+).

"ocramius/proxy-manager": "~1.0 || ~2.0",
"symfony/proxy-manager-bridge": "^2.8.40 || ^3.4.11",
"zetacomponents/system-information": "^1.1.1"
"zetacomponents/system-information": "^1.1.1",
"ezsystems/ezplatform-admin-ui": "^1.5@dev"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.14.2",
Expand Down