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

chore(NA): assures a single version for the same dependency across the entire project #78825

Merged
merged 22 commits into from
Oct 1, 2020
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
b0592f8
chore(NA): script to check for multiple version of same dependency
mistic Sep 29, 2020
46e4a08
chore(NA): remove multiple versions for the same dependency
mistic Sep 29, 2020
998654d
Merge remote-tracking branch 'upstream/master' into single-version-deps
mistic Sep 29, 2020
fa0656f
chore(NA): hook single_version_dependencies script into the CI
mistic Sep 29, 2020
359ad1e
chore(NA): remove grunt from the CI hook integration
mistic Sep 29, 2020
6a0d049
chore(NA): update kbn pm dist
mistic Sep 29, 2020
347d4ab
chore(NA): merge and solve conflicts
mistic Sep 29, 2020
00e2593
chore(NA): fix typechecking
mistic Sep 29, 2020
0a869dc
chore(NA): update code to run under last extract-zip version
mistic Sep 29, 2020
41b2e4f
chore(NA): merge and solve conflicts with master
mistic Sep 30, 2020
aca6579
fix(NA): multiple versions of the same type dependency
mistic Sep 30, 2020
ba26357
move validation to bootstrap (#13)
Sep 30, 2020
375aa3b
chore(NA): todo to remove logic to validate single version deps once …
mistic Sep 30, 2020
16d6375
chore(NA): remove verify dependency versions jenkins task
mistic Sep 30, 2020
30434fc
Merge branch 'master' into single-version-deps
elasticmachine Sep 30, 2020
d1c4fda
Merge remote-tracking branch 'upstream/master' into single-version-deps
mistic Oct 1, 2020
96dbac1
chore(NA): update kbn pm dist file
mistic Oct 1, 2020
9077eb0
chore(NA): remove last mention to verify_dependency_versions.sh fom t…
mistic Oct 1, 2020
87c0d1e
Merge branch 'master' into single-version-deps
elasticmachine Oct 1, 2020
38bdae2
chore(NA): merge and solve conflicts with master
mistic Oct 1, 2020
a4dd0b8
Merge branch 'single-version-deps' of github.com:mistic/kibana into s…
mistic Oct 1, 2020
608c1c9
Merge branch 'master' into single-version-deps
elasticmachine Oct 1, 2020
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
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
"angular-sanitize": "^1.8.0",
"bluebird": "3.5.5",
"boom": "^7.2.0",
"chalk": "^2.4.2",
"chalk": "^4.1.0",
"check-disk-space": "^2.1.0",
"chokidar": "^3.4.2",
"color": "1.0.3",
Expand Down Expand Up @@ -331,7 +331,7 @@
"@types/selenium-webdriver": "^4.0.9",
"@types/semver": "^5.5.0",
"@types/sinon": "^7.0.13",
"@types/strip-ansi": "^3.0.0",
"@types/strip-ansi": "^5.2.1",
"@types/styled-components": "^5.1.0",
"@types/supertest": "^2.0.5",
"@types/supertest-as-promised": "^2.0.38",
Expand All @@ -343,7 +343,7 @@
"@types/uuid": "^3.4.4",
"@types/vinyl": "^2.0.4",
"@types/vinyl-fs": "^2.4.11",
"@types/webpack": "^4.41.21",
"@types/webpack": "^4.41.3",
"@types/webpack-env": "^1.15.2",
"@types/zen-observable": "^0.8.0",
"@typescript-eslint/eslint-plugin": "^3.10.0",
Expand Down Expand Up @@ -470,10 +470,10 @@
"selenium-webdriver": "^4.0.0-alpha.7",
"simple-git": "1.116.0",
"sinon": "^7.4.2",
"strip-ansi": "^3.0.1",
"strip-ansi": "^6.0.0",
"supertest": "^3.1.0",
"supertest-as-promised": "^4.0.2",
"tape": "^4.13.0",
"tape": "^5.0.1",
"topojson-client": "3.0.0",
"tree-kill": "^1.2.2",
"typescript": "4.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/kbn-apm-config-loader/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
},
"devDependencies": {
"typescript": "4.0.2",
"tsd": "^0.7.4"
"tsd": "^0.13.1"
}
}
2 changes: 1 addition & 1 deletion packages/kbn-es/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"kbn:watch": "node scripts/build --watch"
},
"dependencies": {
"@elastic/elasticsearch": "7.9.0-rc.1",
"@elastic/elasticsearch": "7.9.1",
"@kbn/dev-utils": "1.0.0",
"abort-controller": "^3.0.0",
"chalk": "^4.1.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/kbn-plugin-helpers/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"del": "^5.1.0",
"execa": "^4.0.2",
"gulp-zip": "^5.0.2",
"inquirer": "^1.2.2",
"inquirer": "^7.3.3",
"load-json-file": "^6.2.0",
"vinyl-fs": "^3.0.3"
},
Expand Down
Loading