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

Bump postcss from 8.4.27 to 8.4.31 #292

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
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
Bump postcss from 8.4.27 to 8.4.31
Bumps [postcss](https://github.com/postcss/postcss) from 8.4.27 to 8.4.31.
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.27...8.4.31)

---
updated-dependencies:
- dependency-name: postcss
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authored Oct 13, 2023
commit 4a04b2628d6dbb9f436a21e48cc7750d74ed0d62
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
@@ -13584,13 +13584,13 @@ __metadata:
linkType: hard

"postcss@npm:^8.4.14, postcss@npm:^8.4.16, postcss@npm:^8.4.23, postcss@npm:^8.4.27":
version: 8.4.27
resolution: "postcss@npm:8.4.27"
version: 8.4.31
resolution: "postcss@npm:8.4.31"
dependencies:
nanoid: ^3.3.6
picocolors: ^1.0.0
source-map-js: ^1.0.2
checksum: 1cdd0c298849df6cd65f7e646a3ba36870a37b65f55fd59d1a165539c263e9b4872a402bf4ed1ca1bc31f58b68b2835545e33ea1a23b161a1f8aa6d5ded81e78
checksum: 1d8611341b073143ad90486fcdfeab49edd243377b1f51834dc4f6d028e82ce5190e4f11bb2633276864503654fb7cab28e67abdc0fbf9d1f88cad4a0ff0beea
languageName: node
linkType: hard


Unchanged files with check annotations Beta

if (profile.fetched && !canAccessDashboard(profile)) {
router.push("/");
}
}, [profile.fetched]);

Check warning on line 113 in apps/web/components/admin/base-layout.tsx

GitHub Actions / lint

React Hook useEffect has missing dependencies: 'profile' and 'router'. Either include them or remove the dependency array
useEffect(() => {
if (status === "authenticated") {
dispatch(actionCreators.authChecked());
router.push(`/login?redirect=${router.asPath}`);
}
}, [status]);

Check warning on line 124 in apps/web/components/admin/base-layout.tsx

GitHub Actions / lint

React Hook useEffect has missing dependencies: 'dispatch' and 'router'. Either include them or remove the dependency array. If 'dispatch' changes too often, find the parent component that defines it and wrap that definition in useCallback
const items = getSidebarMenuItems(profile, featureFlags);
if (id) {
loadCourse(id);
}
}, [id]);

Check warning on line 21 in apps/web/components/admin/blogs/editor/course-hook.ts

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'loadCourse'. Either include it or remove the dependency array
const loadCourse = async (courseId: string) => {
const query = `
setFeaturedImage(course.featuredImage || {});
setRefreshDetails(refreshDetails + 1);
}
}, [course]);

Check warning on line 54 in apps/web/components/admin/blogs/editor/details.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'refreshDetails'. Either include it or remove the dependency array. You can also do a functional update 'setRefreshDetails(r => ...)' if you only need 'refreshDetails' in the 'setRefreshDetails' call
const updateDetails = async (e: FormEvent<HTMLFormElement>) => {
e.preventDefault();
useEffect(() => {
loadBlogs();
}, []);

Check warning on line 43 in apps/web/components/admin/blogs/index.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'loadBlogs'. Either include it or remove the dependency array
useEffect(() => {
loadBlogs();
}, [coursesPaginationOffset]);

Check warning on line 47 in apps/web/components/admin/blogs/index.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'loadBlogs'. Either include it or remove the dependency array
const loadBlogs = async () => {
const query = `
useEffect(() => {
loadMail();
}, []);

Check warning on line 50 in apps/web/components/admin/mails/editor.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'loadMail'. Either include it or remove the dependency array
useEffect(() => {
if (!mail.mailId) return;
debouncedSave();
}, [mail]);

Check warning on line 56 in apps/web/components/admin/mails/editor.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'debouncedSave'. Either include it or remove the dependency array
const fetch = new FetchBuilder()
.setUrl(`${address.backend}/api/graph`)
useEffect(() => {
loadMailsCount();
}, []);

Check warning on line 67 in apps/web/components/admin/mails/index.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'loadMailsCount'. Either include it or remove the dependency array
useEffect(() => {
loadMails();
}, [page, rowsPerPage]);

Check warning on line 71 in apps/web/components/admin/mails/index.tsx

GitHub Actions / lint

React Hook useEffect has a missing dependency: 'loadMails'. Either include it or remove the dependency array
useEffect(() => {
if (!featureFlags.includes("mail")) {