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(lapis-docs): bump react and @types/react in /lapis-docs #1065

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 28, 2025

Bumps react and @types/react. These dependencies needed to be updated together.
Updates react from 18.3.1 to 19.0.0

Release notes

Sourced from react's releases.

19.0.0 (December 5, 2024)

Below is a list of all new features, APIs, deprecations, and breaking changes. Read React 19 release post and React 19 upgrade guide for more information.

Note: To help make the upgrade to React 19 easier, we’ve published a [email protected] release that is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19. We recommend upgrading to React 18.3.1 first to help identify any issues before upgrading to React 19.

New Features

React

  • Actions: startTransition can now accept async functions. Functions passed to startTransition are called “Actions”. A given Transition can include one or more Actions which update state in the background and update the UI with one commit. In addition to updating state, Actions can now perform side effects including async requests, and the Action will wait for the work to finish before finishing the Transition. This feature allows Transitions to include side effects like fetch() in the pending state, and provides support for error handling, and optimistic updates.
  • useActionState: is a new hook to order Actions inside of a Transition with access to the state of the action, and the pending state. It accepts a reducer that can call Actions, and the initial state used for first render. It also accepts an optional string that is used if the action is passed to a form action prop to support progressive enhancement in forms.
  • useOptimistic: is a new hook to update state while a Transition is in progress. It returns the state, and a set function that can be called inside a transition to “optimistically” update the state to expected final value immediately while the Transition completes in the background. When the transition finishes, the state is updated to the new value.
  • use: is a new API that allows reading resources in render. In React 19, use accepts a promise or Context. If provided a promise, use will suspend until a value is resolved. use can only be used in render but can be called conditionally.
  • ref as a prop: Refs can now be used as props, removing the need for forwardRef.
  • Suspense sibling pre-warming: When a component suspends, React will immediately commit the fallback of the nearest Suspense boundary, without waiting for the entire sibling tree to render. After the fallback commits, React will schedule another render for the suspended siblings to “pre-warm” lazy requests.

React DOM Client

  • <form> action prop: Form Actions allow you to manage forms automatically and integrate with useFormStatus. When a <form> action succeeds, React will automatically reset the form for uncontrolled components. The form can be reset manually with the new requestFormReset API.
  • <button> and <input> formAction prop: Actions can be passed to the formAction prop to configure form submission behavior. This allows using different Actions depending on the input.
  • useFormStatus: is a new hook that provides the status of the parent <form> action, as if the form was a Context provider. The hook returns the values: pending, data, method, and action.
  • Support for Document Metadata: We’ve added support for rendering document metadata tags in components natively. React will automatically hoist them into the <head> section of the document.
  • Support for Stylesheets: React 19 will ensure stylesheets are inserted into the <head> on the client before revealing the content of a Suspense boundary that depends on that stylesheet.
  • Support for async scripts: Async scripts can be rendered anywhere in the component tree and React will handle ordering and deduplication.
  • Support for preloading resources: React 19 ships with preinit, preload, prefetchDNS, and preconnect APIs to optimize initial page loads by moving discovery of additional resources like fonts out of stylesheet loading. They can also be used to prefetch resources used by an anticipated navigation.

React DOM Server

  • Added prerender and prerenderToNodeStream APIs for static site generation. They are designed to work with streaming environments like Node.js Streams and Web Streams. Unlike renderToString, they wait for data to load for HTML generation.

React Server Components

  • RSC features such as directives, server components, and server functions are now stable. This means libraries that ship with Server Components can now target React 19 as a peer dependency with a react-server export condition for use in frameworks that support the Full-stack React Architecture. The underlying APIs used to implement a React Server Components bundler or framework do not follow semver and may break between minors in React 19.x. See docs for how to support React Server Components.

Deprecations

  • Deprecated: element.ref access: React 19 supports ref as a prop, so we’re deprecating element.ref in favor of element.props.ref. Accessing will result in a warning.
  • react-test-renderer: In React 19, react-test-renderer logs a deprecation warning and has switched to concurrent rendering for web usage. We recommend migrating your tests to @​testinglibrary.com/docs/react-testing-library/intro/) or @​testingesting-library.com/docs/react-native-testing-library/intro)

Breaking Changes

React 19 brings in a number of breaking changes, including the removals of long-deprecated APIs. We recommend first upgrading to 18.3.1, where we've added additional deprecation warnings. Check out the upgrade guide for more details and guidance on codemodding.

React

  • New JSX Transform is now required: We introduced a new JSX transform in 2020 to improve bundle size and use JSX without importing React. In React 19, we’re adding additional improvements like using ref as a prop and JSX speed improvements that require the new transform.
  • Errors in render are not re-thrown: Errors that are not caught by an Error Boundary are now reported to window.reportError. Errors that are caught by an Error Boundary are reported to console.error. We’ve introduced onUncaughtError and onCaughtError methods to createRoot and hydrateRoot to customize this error handling.
  • Removed: propTypes: Using propTypes will now be silently ignored. If required, we recommend migrating to TypeScript or another type-checking solution.
  • Removed: defaultProps for functions: ES6 default parameters can be used in place. Class components continue to support defaultProps since there is no ES6 alternative.
  • Removed: contextTypes and getChildContext: Legacy Context for class components has been removed in favor of the contextType API.

... (truncated)

Changelog

Sourced from react's changelog.

19.0.0 (December 5, 2024)

Below is a list of all new features, APIs, deprecations, and breaking changes. Read React 19 release post and React 19 upgrade guide for more information.

Note: To help make the upgrade to React 19 easier, we’ve published a [email protected] release that is identical to 18.2 but adds warnings for deprecated APIs and other changes that are needed for React 19. We recommend upgrading to React 18.3.1 first to help identify any issues before upgrading to React 19.

New Features

React

  • Actions: startTransition can now accept async functions. Functions passed to startTransition are called “Actions”. A given Transition can include one or more Actions which update state in the background and update the UI with one commit. In addition to updating state, Actions can now perform side effects including async requests, and the Action will wait for the work to finish before finishing the Transition. This feature allows Transitions to include side effects like fetch() in the pending state, and provides support for error handling, and optimistic updates.
  • useActionState: is a new hook to order Actions inside of a Transition with access to the state of the action, and the pending state. It accepts a reducer that can call Actions, and the initial state used for first render. It also accepts an optional string that is used if the action is passed to a form action prop to support progressive enhancement in forms.
  • useOptimistic: is a new hook to update state while a Transition is in progress. It returns the state, and a set function that can be called inside a transition to “optimistically” update the state to expected final value immediately while the Transition completes in the background. When the transition finishes, the state is updated to the new value.
  • use: is a new API that allows reading resources in render. In React 19, use accepts a promise or Context. If provided a promise, use will suspend until a value is resolved. use can only be used in render but can be called conditionally.
  • ref as a prop: Refs can now be used as props, removing the need for forwardRef.
  • Suspense sibling pre-warming: When a component suspends, React will immediately commit the fallback of the nearest Suspense boundary, without waiting for the entire sibling tree to render. After the fallback commits, React will schedule another render for the suspended siblings to “pre-warm” lazy requests.

React DOM Client

  • <form> action prop: Form Actions allow you to manage forms automatically and integrate with useFormStatus. When a <form> action succeeds, React will automatically reset the form for uncontrolled components. The form can be reset manually with the new requestFormReset API.
  • <button> and <input> formAction prop: Actions can be passed to the formAction prop to configure form submission behavior. This allows using different Actions depending on the input.
  • useFormStatus: is a new hook that provides the status of the parent <form> action, as if the form was a Context provider. The hook returns the values: pending, data, method, and action.
  • Support for Document Metadata: We’ve added support for rendering document metadata tags in components natively. React will automatically hoist them into the <head> section of the document.
  • Support for Stylesheets: React 19 will ensure stylesheets are inserted into the <head> on the client before revealing the content of a Suspense boundary that depends on that stylesheet.
  • Support for async scripts: Async scripts can be rendered anywhere in the component tree and React will handle ordering and deduplication.
  • Support for preloading resources: React 19 ships with preinit, preload, prefetchDNS, and preconnect APIs to optimize initial page loads by moving discovery of additional resources like fonts out of stylesheet loading. They can also be used to prefetch resources used by an anticipated navigation.

React DOM Server

  • Added prerender and prerenderToNodeStream APIs for static site generation. They are designed to work with streaming environments like Node.js Streams and Web Streams. Unlike renderToString, they wait for data to load for HTML generation.

React Server Components

  • RSC features such as directives, server components, and server functions are now stable. This means libraries that ship with Server Components can now target React 19 as a peer dependency with a react-server export condition for use in frameworks that support the Full-stack React Architecture. The underlying APIs used to implement a React Server Components bundler or framework do not follow semver and may break between minors in React 19.x. See docs for how to support React Server Components.

Deprecations

  • Deprecated: element.ref access: React 19 supports ref as a prop, so we’re deprecating element.ref in favor of element.props.ref. Accessing will result in a warning.
  • react-test-renderer: In React 19, react-test-renderer logs a deprecation warning and has switched to concurrent rendering for web usage. We recommend migrating your tests to @​testing-library/react or @​testing-library/react-native

Breaking Changes

React 19 brings in a number of breaking changes, including the removals of long-deprecated APIs. We recommend first upgrading to 18.3.1, where we've added additional deprecation warnings. Check out the upgrade guide for more details and guidance on codemodding.

React

  • New JSX Transform is now required: We introduced a new JSX transform in 2020 to improve bundle size and use JSX without importing React. In React 19, we’re adding additional improvements like using ref as a prop and JSX speed improvements that require the new transform.
  • Errors in render are not re-thrown: Errors that are not caught by an Error Boundary are now reported to window.reportError. Errors that are caught by an Error Boundary are reported to console.error. We’ve introduced onUncaughtError and onCaughtError methods to createRoot and hydrateRoot to customize this error handling.
  • Removed: propTypes: Using propTypes will now be silently ignored. If required, we recommend migrating to TypeScript or another type-checking solution.
  • Removed: defaultProps for functions: ES6 default parameters can be used in place. Class components continue to support defaultProps since there is no ES6 alternative.

... (truncated)

Commits
  • e137890 [string-refs] cleanup string ref code (#31443)
  • d1f0472 [string-refs] remove enableLogStringRefsProd flag (#31414)
  • 3dc1e48 Followup: remove dead test code from #30346 (#31415)
  • 07aa494 Remove enableRefAsProp feature flag (#30346)
  • 45804af [flow] Eliminate usage of more than 1-arg React.AbstractComponent in React ...
  • 5636fad [string-refs] log string ref from prod (#31161)
  • b78a7f2 [rcr] Re-export useMemoCache in top level React namespace (#31139)
  • 4e9540e [Fiber] Log the Render/Commit phases and the gaps in between (#31016)
  • d4688df [Fiber] Track Event Time, startTransition Time and setState Time (#31008)
  • 15da917 Don't read currentTransition back from internals (#30991)
  • Additional commits viewable in compare view

Updates @types/react from 18.3.12 to 19.0.8

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jan 28, 2025
Copy link

vercel bot commented Jan 28, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
lapis ❌ Failed (Inspect) Feb 10, 2025 8:41am

Copy link
Contributor

github-actions bot commented Jan 28, 2025

This is a preview of the changelog of the next release. If this branch is not up-to-date with the current main branch, the changelog may not be accurate. Rebase your branch on the main branch to get the most accurate changelog.

Note that this might contain changes that are on main, but not yet released.

Changelog:

0.4.0 (2025-02-10)

⚠ BREAKING CHANGES

Features

  • add /sample to query paths #501 (7ad9746)
  • add access key parameter to /sample/info and remove downloadAsFile (340f2ac)
  • add config generator page (45c9827)
  • add info controller (78f9c69)
  • add info to lapis response (afff4ae)
  • add sample to info route (b703a9c)
  • add unaligned nucleotide sequence route (adda1dc)
  • allow loweer case for mutations (caa8713)
  • allow lower case for genes in variant queries (5434e49)
  • allow lower case for insertions (79c9f2d)
  • allow lower case for segments and genes (74b41bb)
  • allow lower case letters for mutations and insertions in variant queries (fe3f8da)
  • allow string arrays as filter for string and pango lineage fields #507 (4d06713)
  • allow that fields only contains the primary key in protected mode #623 (0ac0709)
  • also get database config from info controller as YAML (cd6536d)
  • also write logs to stdout (a31522c)
  • amino acid and nucleotide insertion filters are case-insensitive (667f487)
  • change content type to text/plain when asking for csv/tsv without headers #930 (8313996)
  • configure CORS - allow all origins (a7230f6)
  • docs: add LAPIS host to query Url #522 (305e91c)
  • docs: add more important parts of the arc42 docs #535 (13644e4)
  • docs: database config spec #561 (a1c21d9)
  • docs: description of references/fields #604 (5b02ca8)
  • docs: document how to provide data to the SILO preprocessing #565 (2e0080d)
  • docs: document that there is a cache now #137 (88906a4)
  • docs: generate correct URLs for nucleotide sequences endpoints in multi-segmented case #521 (6058b99)
  • docs: implement order by, limit and offset in query generator #524 (6995d28)
  • docs: improve introduction with ChatGPT #561 (e026ccd)
  • docs: improve reference/filters #604 (31bb706)
  • docs: list valid nucleotide and amino acid symbols #573 (35ccf58)
  • docs: move architecture docs to Starlight docs #530 (a663067)
  • docs: reference how to start LAPIS and SILO #569 #570 (0cc0d40)
  • docs: references/additional-request-properties #604 (837e474)
  • docs: separate maintainer docs from user docs #561 (98a9e30)
  • docs: transfer ambiguous symbols explanation #551 (066f5b6)
  • docs: transfer lapis and silo tutorial #547 (db4932d)
  • docs: update mutation filters to reflect the reference genomes (03079d7)
  • fix authentication, don't document authentication for now #553 (f593073)
  • forward Retry-After header when SILO is not available yet #667 (62bcc7c)
  • implement a request cache for mutation and insertion queries #137 (17ff89c)
  • implement a request id to trace requests #586 (194e7fd)
  • implement compressing the response as zstd and gzip #600 (d6e8d9d)
  • implement downloadAsFile #599 (c522296)
  • implement leftover variant query parts #498 (556552f)
  • implement maybe mutation filters #551 (fab1c72)
  • implement the header parameter "headers=false" to disable the header in the returned CSV/TSV #624 (a216e0c)
  • include link to GitHub issues in LapisInfo #692 (ea42ac2)
  • lapis-docs: document string search feature (ae098a9)
  • lapis-docs: mark sections of the docs that are generated from the config (b2009eb), closes #928
  • lapis2-docs: document url encoded forms (8c3ba60), closes #765
  • lapis2: allow filtering for null (f680305)
  • lapis2: clear cache when SILO is restarting (6100bff)
  • lapis2: delete insertions metadata types #804 (dd0ecd1)
  • lapis2: implement boolean columns (7718b4f), closes #740
  • lapis2: make "maybe" mutation queries case-insensitive #797 (0af9c7f)
  • lapis2: read data from SILO as NDJSON (767b19d), closes #741
  • lapis2: stream data from SILO (8fcf360), closes #744
  • lapis2: support url encoded form POST requests (f2f62b1), closes #754
  • lapis2: use entrypoint.sh to allow passing JVM_OPTS through env variable (#823) (9b35b8a), closes #821
  • lapis: abort on startup when silo url has invalid syntax (373d662), closes #939
  • lapis: adapt to new generalized lineage system (508bc8e), closes #961
  • lapis: add siloVersion to response info (#1066) (c1edcf3)
  • lapis: add healthcheck to Docker containers (0944990), closes #813
  • lapis: add instance name to landing page json (6c5f81b)
  • lapis: add LAPIS version to info response (#1019) (7d8d713)
  • lapis: allow customizable filename for file downloads (817d3f4), closes #869
  • lapis: auto remove entries from cache when heap limit is reached (f804004)
  • lapis: expose the lineage definition files used by SILO (#1073) (2ac977c), closes #1034
  • lapis: hint to which regex syntax is used in Swagger docs (ca4fcdc), closes #903
  • lapis: implement landing page when calling / #856 (b886b7d)
  • lapis: make it possible to fetch sequences in JSON and NDJSON format (ba18956), closes #971
  • lapis: omit sequences with null values in unaligned fasta downloads (f1931a6), closes #912
  • lapis: only allow regex search for fields that have lapisAllowsRegexSearch: true configured (d146717), closes #898
  • lapis: order CSV/TSV columns of aggregated/details data as specified in the request fields or as in the database config (6cf8704), closes #910
  • lapis: regex filtering for string columns #898 (b3e7775)
  • lapis: stream JSON responses (#1053) (bfb5f99), closes #1047
  • lapis: throw error when filtering by "equals" and "regex" for the same string field (540d63a), closes #899
  • lapis: use dot symbol as regex separator #908 (3728c7e)
  • lapis: validate that lapisAllowsRegexSearch-fields are of type string (97b3ce9)
  • lapis: validate that metadata fields do not contain the reserved character . (97b3ce9), closes #976
  • log to files again (additionally to stdout) #692 (1acedad)
  • log whether request was cached #717 (3de90f1)
  • make fields case-insensitive #502 (45e931e)
  • make headers accessible to browser despite CORS (4877c04)
  • pass on errors from SILO (7f6153d)
  • pass request id to SILO (901e08a)
  • provide default values for file locations in Docker image (e2248ac)
  • provide full reference genome, and database config to new endpoints (e406023)
  • return a standard problem detail instead of a custom error format (5f89b50)
  • return bad request error when unknown compression format in request #647 (decaea5)
  • return structured mutation and insertion responses #718 (af38e93)
  • set Content-Type header to application/gzip|zstd when the compression property in the request was set #665 (5592857)
  • show instance name on "not found" page (4e444f1)
  • stick to the default of having config value keys in camel case (b14c91e)
  • support order by random #658 (598b05f)
  • throw more specialized exception to handle bad requests (b8b86c2)
  • try whether also caching aggregated queries makes cov spectrum faster (bbfaf22)
  • use multiple access keys (3ecc11a)

Bug Fixes

  • add info route to endpoints that server aggregated data to allow access (5b10e2b)
  • allow access in authorized mode when fields is specified non-fine-grained (eaa832c)
  • allow stop codon symbol for AminoAcidMutations (74cfa74)
  • consider context path in Swagger UI link (4b12b53)
  • consider only servlet URL when checking auth (0006ac2)
  • consider only servlet URL when checking auth behind a proxy (6b1767a)
  • details does no longer return insertions (3686658)
  • docs: display everything on the mutation filters page (d912f59)
  • docs: schema for uploaded config (ecd2f9c)
  • docs: some minor improvements (c77bf6f)
  • don't set Transfer-Encoding twice #600 (7e49aa5)
  • don't store logs in files #405 (1ca90f7)
  • e2e tests with new silo ordering of insertions and mutations (4a75342)
  • end to end tests failing due to timeout and new pango lineage alias in return (d265809)
  • exact n of query with more elements than n (1402019)
  • file ending when downloading compressed file #685 (6a51de0)
  • import of property (848f4b6)
  • IntelliJ run config (435a140)
  • lapis-docs: config generator: dateToSortBy, partitionBy and features is optional (4e905e8)
  • lapis-docs: fix link on landing page (d4137b3)
  • lapis-docs: Sequence file naming scheme uses indexes now not names (1e7cd60)
  • lapis2-docs: relative links must not end with a / (992210d)
  • lapis2-docs: use relative links so that they work when deployed behind a proxy #725 (0cfa8ec)
  • lapis2: also log which line of the SILO response failed to parse (d1badea)
  • lapis2: bring back request id header in OpenAPI docs (eb75391), closes #627
  • lapis2: log request id again (26f83c9)
  • lapis2: only accept a single variant query in a request #798 (54df8e5)
  • lapis2: prefer zstd over gzip #738 (1fb67ac)
  • lapis2: throw exception on invalid variant query #797 (980806a)
  • lapis: don't show the single segmented sequence download when there are no nucleotide sequences (#1054) (f27f94b)
  • lapis: fix computation of downloaded file ending with multiple accept headers (3b679a8), closes #890
  • lapis: fix description of mutation objects in OpenApi spec (#1051) (c6f625e)
  • lapis: fix download file ending for csv-without-headers data format (65afba0), closes #871
  • lapis: get rid of logger config deprecation warnings in the log (e7c3908), closes #972
  • lapis: never show whitelabel error page (eb03345), closes #890
  • lapis: nucleotideInsertionContains correctly handles segment (4776a3e)
  • make stop codon a valid symbolFrom for amino acid mutations (43e5e9e)
  • orderBy is an array (0260036)
  • recognition of which endpoint was called to determine the filename of a download (6c1674c)
  • reduce log level when unable to read from cached request (6810696)
  • remove header output from mutations and insertion endpoints (ffd6b55)
  • remove request id header -> make Swagger UI work again #610 (0afa2a5)
  • return valid gzip when LAPIS returns an error response #656 (db1c6cb)
  • Sending unknown value in fields returns incomprehensible error (107396d)
  • set default min proportion (d033b34)
  • speed up compressing responses #717 (1624580)
  • test #685 (f52d68d)
  • update e2e tests: deletions are also mutations (from SILO) (886a8f1)
  • use authorization filter before other filters #660 (0dab1e7)
  • variant query with nextcladePangolineageQuery (9158575)
  • write empty string to CSV/TSV for null values #708 (c8872ba)

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/lapis-docs/multi-4b102aa8b0 branch from e331c90 to 44d81ec Compare January 31, 2025 10:30
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/lapis-docs/multi-4b102aa8b0 branch from 44d81ec to a8a576a Compare February 4, 2025 08:12
Bumps [react](https://github.com/facebook/react/tree/HEAD/packages/react) and [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react). These dependencies needed to be updated together.

Updates `react` from 18.3.1 to 19.0.0
- [Release notes](https://github.com/facebook/react/releases)
- [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md)
- [Commits](https://github.com/facebook/react/commits/v19.0.0/packages/react)

Updates `@types/react` from 18.3.12 to 19.0.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

---
updated-dependencies:
- dependency-name: react
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: "@types/react"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/lapis-docs/multi-4b102aa8b0 branch from a8a576a to 2354d81 Compare February 10, 2025 08:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants