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

Update deps 2025-01 #1363

Merged
merged 37 commits into from
Jan 16, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
d2cf020
Update dependencies for repo root
nygrenh Jan 13, 2025
99bab5f
npm audit for repo root
nygrenh Jan 13, 2025
24464dc
Update dependencies for system-tests
nygrenh Jan 13, 2025
a22479e
Update dependencies for cms
nygrenh Jan 13, 2025
4a1bd23
npm audit for cms
nygrenh Jan 13, 2025
39aaef1
Update dependencies for course-material
nygrenh Jan 13, 2025
eb78f6e
npm audit for course-material
nygrenh Jan 13, 2025
ccc8c32
Update dependencies for example-exercise
nygrenh Jan 13, 2025
b34a1f9
npm audit for example-exercise
nygrenh Jan 13, 2025
e7e325d
Update dependencies for main-frontend
nygrenh Jan 13, 2025
e64bde5
npm audit for main-frontend
nygrenh Jan 13, 2025
d869932
Update dependencies for quizzes
nygrenh Jan 13, 2025
5ed3e1e
npm audit for quizzes
nygrenh Jan 13, 2025
622c93b
Update dependencies for tmc
nygrenh Jan 13, 2025
0af729a
npm audit for tmc
nygrenh Jan 13, 2025
86f69a2
Update dependencies for shared-module
nygrenh Jan 13, 2025
78b2d03
Cargo upgrade
nygrenh Jan 13, 2025
c724856
Cargo update
nygrenh Jan 13, 2025
de2fe99
Update azure_core
nygrenh Jan 14, 2025
4b7143d
Fix responsiviness issue on the course objective block
nygrenh Jan 14, 2025
a8dd853
Stylelint fix
nygrenh Jan 14, 2025
0ffc292
Downgrade @wordpress/block-editor
nygrenh Jan 14, 2025
11e17bb
Generate bindings
nygrenh Jan 14, 2025
54a488a
Fix date display on end exam screen
nygrenh Jan 14, 2025
e19ee13
Remove unecessary stuff from exam results screen
nygrenh Jan 14, 2025
ed64c78
Fix scss syntax
nygrenh Jan 15, 2025
5fd9345
@kubernetes/client-node 1.0.0 changes
nygrenh Jan 15, 2025
79248bb
Remove unused imports
nygrenh Jan 15, 2025
42cd69e
Merge remote-tracking branch 'origin/master' into update-deps-2025-01
nygrenh Jan 15, 2025
f54f0fb
Fix locale issue on system tests
nygrenh Jan 15, 2025
00edf8d
System test fixes
nygrenh Jan 15, 2025
bf929c0
System test fixes
nygrenh Jan 15, 2025
ca4c068
Update storybook deps
nygrenh Jan 15, 2025
723004a
Add retries to spacer not breaking editing test
nygrenh Jan 15, 2025
676ee3b
Fix branch ready checks
nygrenh Jan 15, 2025
9cee5bd
Introduce waiting for view types for system tests
nygrenh Jan 16, 2025
4d9d1c1
Fix
nygrenh Jan 16, 2025
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
2 changes: 1 addition & 1 deletion .husky/lint-staged.branch-ready.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// These checks are slower and more likely to fail than the precommit checks.
// See lint-staged.precommit.config.js for precommit checks.
module.exports = {
"*.{js,jsx,ts,tsx}": ["eslint --cache --fix", "stylelint --fix"],
"*.{js,jsx,ts,tsx}": ["eslint --cache --fix", "stylelint --fix lax"],
nygrenh marked this conversation as resolved.
Show resolved Hide resolved
"services/example-exercise/src/**/*.{js,jsx,ts,tsx}": () =>
"npx tsc -p services/example-exercise/ --noEmit",
"services/cms/src/**/*.{js,jsx,ts,tsx}": () =>
Expand Down
2 changes: 1 addition & 1 deletion .husky/lint-staged.precommit.config.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// Runs on precommit.
// Focuses on tests that are fast to run don't fail often. For other checks, see bin/git-run-branch-ready-checks and lint-staged.branch-ready.config.js
module.exports = {
"*.{js,jsx,ts,tsx}": ["eslint --cache --fix", "stylelint --fix"],
"*.{js,jsx,ts,tsx}": ["eslint --cache --fix", "stylelint --fix lax"],
nygrenh marked this conversation as resolved.
Show resolved Hide resolved
"*.{md,json,scss,css}": "prettier --write",
"*.rs": () => [
"cargo fmt --manifest-path services/headless-lms/Cargo.toml --all -- --files-with-diff",
Expand Down
1 change: 1 addition & 0 deletions .stylelintrc
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"no-duplicate-selectors": null,
"function-no-unknown": null,
"media-query-no-invalid": null,
"declaration-property-value-no-unknown": null,
nygrenh marked this conversation as resolved.
Show resolved Hide resolved
"selector-type-no-unknown": [
true,
{
Expand Down
Loading
Loading