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(deps): regular dependency updates #4577

Merged
merged 22 commits into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
9ca182b
chore(deps): regular dependency updates
MilosPaunovic Aug 6, 2024
6132beb
chore(deps): handling sass package update and deprecation warnings
MilosPaunovic Aug 6, 2024
aeae1c5
chore(deps): remove experimental package manager attribute
MilosPaunovic Aug 6, 2024
8878309
chore(deps): make build type module
MilosPaunovic Aug 6, 2024
83ecdea
chore(deps): make dependabot ignore unused version of a package
MilosPaunovic Aug 6, 2024
13a8ba6
chore(deps): handle eslint updates
MilosPaunovic Aug 6, 2024
ced6b53
chore(deps): handle @shikijs/markdown-it updates with small code refa…
MilosPaunovic Aug 6, 2024
f3d4e80
chore(deps): bump version in package.json to current minor one of pro…
MilosPaunovic Aug 6, 2024
ed04c8a
chore(ui): making sure shiki highlighter is created as a singleton
MilosPaunovic Aug 6, 2024
48baf62
chore(ui): reintroduce package manager attribute in `package.json` file
MilosPaunovic Aug 7, 2024
d35fdc7
chore(deps): fresh dependency updates
MilosPaunovic Aug 7, 2024
7b12529
chore(deps): making sure `npm` deps are checked every sunday at 9am f…
MilosPaunovic Aug 7, 2024
500f751
Merge branch 'develop' of https://github.com/kestra-io/kestra into deps
MilosPaunovic Aug 7, 2024
2be4ad1
chore(ui): minor tweak to .eslintignore file
MilosPaunovic Aug 7, 2024
59d5050
chore(deps): minor tweaks to dependencies
MilosPaunovic Aug 7, 2024
c404c4f
Merge branch 'develop' of https://github.com/kestra-io/kestra into deps
MilosPaunovic Aug 7, 2024
e3aa718
chore(deps): add polyfill for node `child_process` method
MilosPaunovic Aug 7, 2024
de365d8
chore(ui): updated deps
MilosPaunovic Aug 7, 2024
94b698b
chore(ui): latest deps update
MilosPaunovic Aug 7, 2024
ef68b73
chore(ui): add `process` as a node polyfill module import
MilosPaunovic Aug 7, 2024
c2443bb
chore(deps): updating polyfills library
MilosPaunovic Aug 7, 2024
a07d88c
chore(deps): remove ignored package from dependabot
MilosPaunovic Aug 7, 2024
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
14 changes: 11 additions & 3 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,20 @@ updates:
- "dependency-upgrade"
open-pull-requests-limit: 50

# Maintain dependencies for Npm modules
# Maintain dependencies for NPM modules
- package-ecosystem: "npm"
directory: "/ui"
schedule:
# Check for updates to Npm modules every week
interval: "weekly"
day: "sunday"
time: "09:00"
open-pull-requests-limit: 50
labels:
- "dependency-upgrade"
open-pull-requests-limit: 50
ignore:
# Ignore updates of version 1.x, as we're using beta of 2.x
- dependency-name: "vue-virtual-scroller"
versions: ["1.x"]
# Ignore major versions greater than 8, as it's still known to be flaky
- dependency-name: "eslint"
versions: [">8"]
3 changes: 0 additions & 3 deletions ui/.eslintignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,2 @@
public/vscode/
public/vscode-web/

node/
node_modules/
Loading