Skip to content

Commit

Permalink
Bump @testing-library/react from 12.1.2 to 15.0.5 (#186)
Browse files Browse the repository at this point in the history
* Bump @testing-library/react from 12.1.2 to 15.0.5

Bumps [@testing-library/react](https://github.com/testing-library/react-testing-library) from 12.1.2 to 15.0.5.
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v12.1.2...v15.0.5)

---
updated-dependencies:
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* update dependencies @types/react and @types/react-dom

* lint files

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Snigdha Kansal <[email protected]>
  • Loading branch information
dependabot[bot] and snigdha-kansal authored Jul 15, 2024
1 parent efc16a2 commit d1e21cf
Show file tree
Hide file tree
Showing 9 changed files with 53 additions and 43 deletions.
2 changes: 1 addition & 1 deletion components/ContributeProject.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from 'next/legacy/image';
import React, { useState } from 'react';
import { GFIProject, GitHubColors, GithubIssueAssignees } from '../util';
import ELink from './ELink';
import { GFIProject, GitHubColors, GithubIssueAssignees } from '../util';


interface ContributeProjectProps {
Expand Down
2 changes: 1 addition & 1 deletion components/GitHubEvent.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import moment from 'moment';
import React from 'react';
import { GitHubEvent } from '../util';
import ELink from './ELink';
import GitHubEventAction from './GitHubEventAction';
import { GitHubEvent } from '../util';


function GitHubEventComponent(props: GitHubEvent): JSX.Element {
Expand Down
2 changes: 1 addition & 1 deletion components/GitHubEventAction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import type {
PushEvent, PublicEvent, WatchEvent,
} from '@octokit/webhooks-types';
import React from 'react';
import { GitHubEvent } from '../util';
import ELink from './ELink';
import { GitHubEvent } from '../util';

export type GitHubEventPayloadType =
| CreateEvent
Expand Down
2 changes: 1 addition & 1 deletion components/ProjectCard.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Image from 'next/legacy/image';
import React from 'react';
import { Project, GitHubColors } from '../util/';
import ELink from './ELink';
import { Project, GitHubColors } from '../util/';

interface ProjectCardProps {
project: Project;
Expand Down
2 changes: 1 addition & 1 deletion components/SearchFilter/SearchFilter.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { ChangeEvent, useState, useEffect } from 'react';
import { Project } from '../../util';
import Searchbar from './Searchbar';
import { Project } from '../../util';

interface SearchFilterProps {
projects: Project[];
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
"@octokit/rest": "^21.0.0",
"@octokit/types": "^13.5.0",
"@octokit/webhooks-types": "^7.5.1",
"@types/react-dom": "^18.3.0",
"moment": "^2.29.4",
"next": "^14.2.5",
"next-seo": "^5.1.0",
Expand All @@ -29,10 +30,10 @@
},
"devDependencies": {
"@next/eslint-plugin-next": "^14.2.3",
"@testing-library/react": "^12.1.2",
"@testing-library/react": "^15.0.5",
"@types/jest": "^29.5.12",
"@types/node": "^18.14.2",
"@types/react": "^17.0.38",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-jest": "^29.7.0",
Expand Down
2 changes: 1 addition & 1 deletion pages/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Octokit } from '@octokit/core';
import { GetStaticProps, InferGetStaticPropsType } from 'next';
import { NextSeo } from 'next-seo';
import Link from 'next/link';
import { NextSeo } from 'next-seo';
import React from 'react';
import ELink from '../components/ELink';
import GitHubEventComponent from '../components/GitHubEvent';
Expand Down
2 changes: 1 addition & 1 deletion util/projectRequest.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { Octokit } from '@octokit/core';
import { paginateRest } from '@octokit/plugin-paginate-rest';
import githubColorsFixture from '../data/githubColors.json';
import { Project, ACMCommitteeTopics, GitHubColors, GitHubRepo, GitHubIssue, GFIProject } from './types';
import githubColorsFixture from '../data/githubColors.json';

//get projects within uclaacm org
export async function getProjects(): Promise<Project[]> {
Expand Down
77 changes: 43 additions & 34 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1290,37 +1290,38 @@
"@swc/counter" "^0.1.3"
tslib "^2.4.0"

"@testing-library/dom@^8.0.0":
version "8.11.1"
resolved "https://registry.npmjs.org/@testing-library/dom/-/dom-8.11.1.tgz"
integrity sha512-3KQDyx9r0RKYailW2MiYrSSKEfH0GTkI51UGEvJenvcoDoeRYs0PZpi2SXqtnMClQvCqdtTTpOfFETDTVADpAg==
"@testing-library/dom@^10.0.0":
version "10.3.1"
resolved "https://registry.yarnpkg.com/@testing-library/dom/-/dom-10.3.1.tgz#c960204cce7e969ac03ae5f3550e420226c61a21"
integrity sha512-q/WL+vlXMpC0uXDyfsMtc1rmotzLV8Y0gq6q1gfrrDjQeHoeLrqHbxdPvPNAh1i+xuJl7+BezywcXArz7vLqKQ==
dependencies:
"@babel/code-frame" "^7.10.4"
"@babel/runtime" "^7.12.5"
"@types/aria-query" "^4.2.0"
aria-query "^5.0.0"
"@types/aria-query" "^5.0.1"
aria-query "5.3.0"
chalk "^4.1.0"
dom-accessibility-api "^0.5.9"
lz-string "^1.4.4"
lz-string "^1.5.0"
pretty-format "^27.0.2"

"@testing-library/react@^12.1.2":
version "12.1.2"
resolved "https://registry.npmjs.org/@testing-library/react/-/react-12.1.2.tgz"
integrity sha512-ihQiEOklNyHIpo2Y8FREkyD1QAea054U0MVbwH1m8N9TxeFz+KoJ9LkqoKqJlzx2JDm56DVwaJ1r36JYxZM05g==
"@testing-library/react@^15.0.5":
version "15.0.5"
resolved "https://registry.yarnpkg.com/@testing-library/react/-/react-15.0.5.tgz#71bcc875e1142c3924cac7bdd7dc9a6db0bb1d42"
integrity sha512-ttodVWYA2i2w4hRa6krKrmS1vKxAEkwDz34y+CwbcrbZUxFzUYN3a5xZyFKo+K6LBseCRCUkwcjATpaNn/UsIA==
dependencies:
"@babel/runtime" "^7.12.5"
"@testing-library/dom" "^8.0.0"
"@testing-library/dom" "^10.0.0"
"@types/react-dom" "^18.0.0"

"@tootallnate/once@2":
version "2.0.0"
resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-2.0.0.tgz#f544a148d3ab35801c1f633a7441fd87c2e484bf"
integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==

"@types/aria-query@^4.2.0":
version "4.2.1"
resolved "https://registry.npmjs.org/@types/aria-query/-/aria-query-4.2.1.tgz"
integrity sha512-S6oPal772qJZHoRZLFc/XoZW2gFvwXusYUmXPXkgxJLuEk2vOt7jc4Yo6z/vtI0EBkbPBVrJJ0B+prLIKiWqHg==
"@types/aria-query@^5.0.1":
version "5.0.4"
resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.4.tgz#1a31c3d378850d2778dabb6374d036dcba4ba708"
integrity sha512-rfT93uj5s0PRL7EzccGMs3brplhcrghnDoV26NqKhCAS1hVo+WdNsPvE/yb6ilfr5hi2MEk6d5EWJTKdxg8jVw==

"@types/babel__core@^7.1.14":
version "7.1.18"
Expand Down Expand Up @@ -1418,20 +1419,21 @@
resolved "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.3.tgz"
integrity sha512-KfRL3PuHmqQLOG+2tGpRO26Ctg+Cq1E01D2DMriKEATHgWLfeNDmq9e29Q9WIky0dQ3NPkd1mzYH8Lm936Z9qw==

"@types/react@^17.0.38":
version "17.0.38"
resolved "https://registry.npmjs.org/@types/react/-/react-17.0.38.tgz"
integrity sha512-SI92X1IA+FMnP3qM5m4QReluXzhcmovhZnLNm3pyeQlooi02qI7sLiepEYqT678uNiyc25XfCqxREFpy3W7YhQ==
"@types/react-dom@^18.0.0", "@types/react-dom@^18.3.0":
version "18.3.0"
resolved "https://registry.yarnpkg.com/@types/react-dom/-/react-dom-18.3.0.tgz#0cbc818755d87066ab6ca74fbedb2547d74a82b0"
integrity sha512-EhwApuTmMBmXuFOikhQLIBUn6uFg81SwLMOAUgodJF14SOBOCMdU04gDoYi0WOJJHD144TL32z4yDqCW3dnkQg==
dependencies:
"@types/react" "*"

"@types/react@*", "@types/react@^18.3.3":
version "18.3.3"
resolved "https://registry.yarnpkg.com/@types/react/-/react-18.3.3.tgz#9679020895318b0915d7a3ab004d92d33375c45f"
integrity sha512-hti/R0pS0q1/xx+TsI73XIqk26eBsISZ2R0wUijXIngRK9R/e7Xw/cXVxQK7R5JjW+SV4zGcn5hXjudkN/pLIw==
dependencies:
"@types/prop-types" "*"
"@types/scheduler" "*"
csstype "^3.0.2"

"@types/scheduler@*":
version "0.16.1"
resolved "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.1.tgz"
integrity sha512-EaCxbanVeyxDRTQBkdLb3Bvl/HK7PBK6UJjsSixB0iHKoWxE5uu2Q/DgtpOhPIojN0Zl1whvOd7PoHs2P0s5eA==

"@types/stack-utils@^2.0.0":
version "2.0.0"
resolved "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.0.tgz"
Expand Down Expand Up @@ -1657,10 +1659,12 @@ argparse@^1.0.7:
dependencies:
sprintf-js "~1.0.2"

aria-query@^5.0.0:
version "5.0.0"
resolved "https://registry.npmjs.org/aria-query/-/aria-query-5.0.0.tgz"
integrity sha512-V+SM7AbUwJ+EBnB8+DXs0hPZHO0W6pqBcc0dW90OwtVG02PswOu/teuARoLQjdDOH+t9pJgGnW5/Qmouf3gPJg==
[email protected]:
version "5.3.0"
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-5.3.0.tgz#650c569e41ad90b51b3d7df5e5eed1c7549c103e"
integrity sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==
dependencies:
dequal "^2.0.3"

array-buffer-byte-length@^1.0.1:
version "1.0.1"
Expand Down Expand Up @@ -2214,6 +2218,11 @@ deprecation@^2.0.0:
resolved "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz"
integrity sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==

dequal@^2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/dequal/-/dequal-2.0.3.tgz#2644214f1997d39ed0ee0ece72335490a7ac67be"
integrity sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==

detect-newline@^3.0.0:
version "3.1.0"
resolved "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz"
Expand Down Expand Up @@ -4060,10 +4069,10 @@ lru-cache@^5.1.1:
dependencies:
yallist "^3.0.2"

lz-string@^1.4.4:
version "1.4.4"
resolved "https://registry.npmjs.org/lz-string/-/lz-string-1.4.4.tgz"
integrity sha1-wNjq82BZ9wV5bh40SBHPTEmNOiY=
lz-string@^1.5.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/lz-string/-/lz-string-1.5.0.tgz#c1ab50f77887b712621201ba9fd4e3a6ed099941"
integrity sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==

make-dir@^3.0.0:
version "3.1.0"
Expand Down

0 comments on commit d1e21cf

Please sign in to comment.