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

enh(libs): upgrade front libraries + improve dynamic import #7724

Merged
merged 29 commits into from
Aug 8, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
e23f149
fix(libs): update libs + fix systemjs global import
kduret Jul 22, 2019
0e69b1b
remove comments
kduret Jul 22, 2019
c59e029
fix dynamic default import
kduret Jul 22, 2019
f7c9241
improve dynamic import (use-default)
kduret Jul 23, 2019
4fcdafc
downgrade query-string
kduret Jul 23, 2019
22f18a0
polyfill customevent
kduret Jul 23, 2019
12d2739
improve global dynamic import alorythm
kduret Jul 23, 2019
5e2f988
feat(ui): add breadcrumb on react pages (#7731)
kduret Jul 31, 2019
b96181d
fix(remote-server): check bam on remote server is http only (#7640)
lpinsivy Jul 22, 2019
bcd95aa
fix(tooltips): close tooltip when user clicks somewhere else (#7729)
miteto Jul 25, 2019
28d68f4
Update Host.rst FR (#7658)
psamecentreon Jul 25, 2019
ca37439
fix(doc): correst SSH exchange notice #7620 (#7639)
lpinsivy Jul 25, 2019
83341e0
fix(remote): fix enableremote parameters parsing and setting (#7711)
cgagnaire Jul 25, 2019
2539ccd
fix(#7711): hostname can have dash in name
lpinsivy Jul 25, 2019
77e7471
Update README.md
sc979 Jul 26, 2019
821f4d4
fix(pagination) fix filter save with pagination (#7732)
loiclau Jul 31, 2019
c408144
fix(generate) fix meta service generation with special char (#7705)
loiclau Jul 31, 2019
c8f5ee9
fix coding style
kduret Jul 31, 2019
38eb770
Merge branch '19.04.x' into MON-3218-update-react-libs
kduret Jul 31, 2019
34d88d7
update centreon-test-lib version
kduret Jul 31, 2019
1533d98
update topology_page of poller wizard
kduret Jul 31, 2019
4997a57
update composer.lock
kduret Jul 31, 2019
6b425d6
Merge branch '19.04.x' into MON-3218-update-react-libs
kduret Aug 6, 2019
dca82fe
fix breadcrumb generation
kduret Aug 6, 2019
150a6ea
Merge branch '19.04.x' into MON-3218-update-react-libs
loiclau Aug 7, 2019
10b2868
enh(lib) update composer
loiclau Aug 8, 2019
2cc9e1a
Revert "enh(lib) update composer"
loiclau Aug 8, 2019
3eaf901
enh(lib) update composer
loiclau Aug 8, 2019
9fef0cf
Revert "update centreon-test-lib version"
loiclau Aug 8, 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
576 changes: 381 additions & 195 deletions composer.lock

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions doc/en/release_notes/centreon-19.04/centreon-19.04.4.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
====================
Centreon Web 19.04.4
====================

Enhancements
------------


Bug fixes
---------


Documentation
-------------



Security fixes
--------------



Known issue
-----------
1 change: 1 addition & 0 deletions doc/en/release_notes/centreon-19.04/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Please find here the release notes dedicated to the last 19.04.x version of Cent
.. toctree::
:maxdepth: 1

centreon-19.04.4
centreon-19.04.3
centreon-19.04.2
centreon-19.04.1
Expand Down
24 changes: 24 additions & 0 deletions doc/fr/release_notes/centreon-19.04/centreon-19.04.4.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
====================
Centreon Web 19.04.4
====================

Enhancements
------------


Bug fixes
---------


Documentation
-------------



Security fixes
--------------



Known issue
-----------
1 change: 1 addition & 0 deletions doc/fr/release_notes/centreon-19.04/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Please find here the release notes dedicated to the last 19.04.x version of Cent
.. toctree::
:maxdepth: 1

centreon-19.04.4
centreon-19.04.3
centreon-19.04.2
centreon-19.04.1
Expand Down
15 changes: 15 additions & 0 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
module.exports = {
setupFilesAfterEnv: [
'@testing-library/react/cleanup-after-each',
'@testing-library/jest-dom/extend-expect',
],
snapshotSerializers: ['jest-emotion'],
roots: ['<rootDir>/www/front_src/src/'],
transform: {
'^.+\\.jsx?$': 'babel-jest',
},
moduleNameMapper: {
'\\.(s?css|png|svg)$': 'identity-obj-proxy',
},
testPathIgnorePatterns: ['/node_modules/'],
};
Loading